diff --git a/UPDATING.md b/UPDATING.md index 707f5708bf..f590f6194b 100644 --- a/UPDATING.md +++ b/UPDATING.md @@ -33,6 +33,7 @@ assists people when migrating to a new version. ### Breaking Changes +- [23712](https://github.com/apache/superset/pull/23712) Migrates the Pivot Table v1 chart to v2 and removes v1 code. - [24029](https://github.com/apache/superset/pull/24029) Removes the `user` and `username` arguments for the `QUERY_LOGGER` and `SQL_QUERY_MUTATOR` methods respectively. If the username for the current user is required, the `superset.utils.core.get_username` method should be used. - [24128](https://github.com/apache/superset/pull/24128) The `RLS_BASE_RELATED_FIELD_FILTERS` config parameter has been removed. Now the Tables dropdown will feature the same tables that the user is able to see elsewhere in the application using the standard `DatasourceFilter`, and the Roles dropdown will be filtered using the filter defined in `EXTRA_RELATED_QUERY_FILTERS["role"]`. - [23785](https://github.com/apache/superset/pull/23785) Deprecated the following feature flags: `CLIENT_CACHE`, `DASHBOARD_CACHE`, `DASHBOARD_FILTERS_EXPERIMENTAL`, `DASHBOARD_NATIVE_FILTERS`, `DASHBOARD_NATIVE_FILTERS_SET`, `DISABLE_DATASET_SOURCE_EDIT`, `ENABLE_EXPLORE_JSON_CSRF_PROTECTION`, `REMOVE_SLICE_LEVEL_LABEL_COLORS`. It also removed `DASHBOARD_EDIT_CHART_IN_NEW_TAB` as the feature is supported without the need for a feature flag. diff --git a/superset-frontend/cypress-base/cypress/e2e/explore/visualizations/pivot_table.test.js b/superset-frontend/cypress-base/cypress/e2e/explore/visualizations/pivot_table.test.js index dfef462fc9..e1a4c7b9c8 100644 --- a/superset-frontend/cypress-base/cypress/e2e/explore/visualizations/pivot_table.test.js +++ b/superset-frontend/cypress-base/cypress/e2e/explore/visualizations/pivot_table.test.js @@ -18,25 +18,26 @@ */ describe('Visualization > Pivot Table', () => { beforeEach(() => { - cy.intercept('POST', '/superset/explore_json/**').as('getJson'); + cy.intercept('POST', '/api/v1/chart/data**').as('chartData'); }); const PIVOT_TABLE_FORM_DATA = { datasource: '3__table', - viz_type: 'pivot_table', + viz_type: 'pivot_table_v2', slice_id: 61, granularity_sqla: 'ds', time_grain_sqla: 'P1D', time_range: '100 years ago : now', metrics: ['sum__num'], adhoc_filters: [], - groupby: ['name'], - columns: ['state'], - row_limit: 5000, - pandas_aggfunc: 'sum', - pivot_margins: true, - number_format: '.3s', - combine_metric: false, + groupbyRows: ['name'], + groupbyColumns: ['state'], + series_limit: 5000, + aggregateFunction: 'Sum', + rowTotals: true, + colTotals: true, + valueFormat: '.3s', + combineMetric: false, }; const TEST_METRIC = { @@ -59,12 +60,12 @@ describe('Visualization > Pivot Table', () => { function verify(formData) { cy.visitChartByParams(formData); - cy.verifySliceSuccess({ waitAlias: '@getJson', chartSelector: 'table' }); + cy.verifySliceSuccess({ waitAlias: '@chartData', chartSelector: 'table' }); } it('should work with single groupby', () => { verify(PIVOT_TABLE_FORM_DATA); - cy.get('.chart-container tr:eq(0) th:eq(1)').contains('sum__num'); + cy.get('.chart-container tr:eq(0) th:eq(2)').contains('sum__num'); cy.get('.chart-container tr:eq(1) th:eq(0)').contains('state'); cy.get('.chart-container tr:eq(2) th:eq(0)').contains('name'); }); @@ -72,10 +73,10 @@ describe('Visualization > Pivot Table', () => { it('should work with more than one groupby', () => { verify({ ...PIVOT_TABLE_FORM_DATA, - groupby: ['name', 'gender'], + groupbyRows: ['name', 'gender'], }); cy.get('.chart-container tr:eq(0) th:eq(2)').contains('sum__num'); - cy.get('.chart-container tr:eq(1) th:eq(1)').contains('state'); + cy.get('.chart-container tr:eq(1) th:eq(0)').contains('state'); cy.get('.chart-container tr:eq(2) th:eq(0)').contains('name'); cy.get('.chart-container tr:eq(2) th:eq(1)').contains('gender'); }); @@ -85,8 +86,8 @@ describe('Visualization > Pivot Table', () => { ...PIVOT_TABLE_FORM_DATA, metrics: ['sum__num', TEST_METRIC], }); - cy.get('.chart-container tr:eq(0) th:eq(1)').contains('sum__num'); - cy.get('.chart-container tr:eq(0) th:eq(2)').contains('SUM(num_boys)'); + cy.get('.chart-container tr:eq(0) th:eq(2)').contains('sum__num'); + cy.get('.chart-container tr:eq(0) th:eq(3)').contains('SUM(num_boys)'); cy.get('.chart-container tr:eq(1) th:eq(0)').contains('state'); cy.get('.chart-container tr:eq(2) th:eq(0)').contains('name'); }); @@ -94,7 +95,7 @@ describe('Visualization > Pivot Table', () => { it('should work with multiple groupby and multiple metrics', () => { verify({ ...PIVOT_TABLE_FORM_DATA, - groupby: ['name', 'gender'], + groupbyRows: ['name', 'gender'], metrics: ['sum__num', TEST_METRIC], }); cy.get('.chart-container tr:eq(0) th:eq(2)').contains('sum__num'); diff --git a/superset-frontend/package-lock.json b/superset-frontend/package-lock.json index 2339a4ab8e..9da0b33fa1 100644 --- a/superset-frontend/package-lock.json +++ b/superset-frontend/package-lock.json @@ -34,7 +34,6 @@ "@superset-ui/legacy-plugin-chart-paired-t-test": "file:./plugins/legacy-plugin-chart-paired-t-test", "@superset-ui/legacy-plugin-chart-parallel-coordinates": "file:./plugins/legacy-plugin-chart-parallel-coordinates", "@superset-ui/legacy-plugin-chart-partition": "file:./plugins/legacy-plugin-chart-partition", - "@superset-ui/legacy-plugin-chart-pivot-table": "file:./plugins/legacy-plugin-chart-pivot-table", "@superset-ui/legacy-plugin-chart-rose": "file:./plugins/legacy-plugin-chart-rose", "@superset-ui/legacy-plugin-chart-sankey": "file:./plugins/legacy-plugin-chart-sankey", "@superset-ui/legacy-plugin-chart-sankey-loop": "file:./plugins/legacy-plugin-chart-sankey-loop", @@ -19832,10 +19831,6 @@ "resolved": "plugins/legacy-plugin-chart-partition", "link": true }, - "node_modules/@superset-ui/legacy-plugin-chart-pivot-table": { - "resolved": "plugins/legacy-plugin-chart-pivot-table", - "link": true - }, "node_modules/@superset-ui/legacy-plugin-chart-rose": { "resolved": "plugins/legacy-plugin-chart-rose", "link": true @@ -60470,7 +60465,6 @@ "@superset-ui/legacy-plugin-chart-paired-t-test": "*", "@superset-ui/legacy-plugin-chart-parallel-coordinates": "*", "@superset-ui/legacy-plugin-chart-partition": "*", - "@superset-ui/legacy-plugin-chart-pivot-table": "*", "@superset-ui/legacy-plugin-chart-rose": "*", "@superset-ui/legacy-plugin-chart-sankey": "*", "@superset-ui/legacy-plugin-chart-sankey-loop": "*", @@ -61464,20 +61458,6 @@ "react": "^16.13.1" } }, - "plugins/legacy-plugin-chart-pivot-table": { - "name": "@superset-ui/legacy-plugin-chart-pivot-table", - "version": "0.18.25", - "license": "Apache-2.0", - "dependencies": { - "d3": "^3.5.17", - "datatables.net-bs": "^1.11.3", - "prop-types": "^15.6.2" - }, - "peerDependencies": { - "@superset-ui/chart-controls": "*", - "@superset-ui/core": "*" - } - }, "plugins/legacy-plugin-chart-rose": { "name": "@superset-ui/legacy-plugin-chart-rose", "version": "0.18.25", @@ -77500,14 +77480,6 @@ "prop-types": "^15.6.2" } }, - "@superset-ui/legacy-plugin-chart-pivot-table": { - "version": "file:plugins/legacy-plugin-chart-pivot-table", - "requires": { - "d3": "^3.5.17", - "datatables.net-bs": "^1.11.3", - "prop-types": "^15.6.2" - } - }, "@superset-ui/legacy-plugin-chart-rose": { "version": "file:plugins/legacy-plugin-chart-rose", "requires": { diff --git a/superset-frontend/package.json b/superset-frontend/package.json index 97300919c1..fabdf39086 100644 --- a/superset-frontend/package.json +++ b/superset-frontend/package.json @@ -99,7 +99,6 @@ "@superset-ui/legacy-plugin-chart-paired-t-test": "file:./plugins/legacy-plugin-chart-paired-t-test", "@superset-ui/legacy-plugin-chart-parallel-coordinates": "file:./plugins/legacy-plugin-chart-parallel-coordinates", "@superset-ui/legacy-plugin-chart-partition": "file:./plugins/legacy-plugin-chart-partition", - "@superset-ui/legacy-plugin-chart-pivot-table": "file:./plugins/legacy-plugin-chart-pivot-table", "@superset-ui/legacy-plugin-chart-rose": "file:./plugins/legacy-plugin-chart-rose", "@superset-ui/legacy-plugin-chart-sankey": "file:./plugins/legacy-plugin-chart-sankey", "@superset-ui/legacy-plugin-chart-sankey-loop": "file:./plugins/legacy-plugin-chart-sankey-loop", diff --git a/superset-frontend/packages/superset-ui-demo/package.json b/superset-frontend/packages/superset-ui-demo/package.json index b560f8701a..192e79d8a8 100644 --- a/superset-frontend/packages/superset-ui-demo/package.json +++ b/superset-frontend/packages/superset-ui-demo/package.json @@ -1,22 +1,8 @@ { "name": "@superset-ui/demo", "version": "0.18.25", - "description": "Storybook for Superset UI ✨", "private": true, - "main": "index.js", - "scripts": { - "demo:clean": "rm -rf _gh-pages", - "demo:build": "npm run demo:clean && build-storybook -o _gh-pages", - "demo:publish": "gh-pages -d _gh-pages", - "deploy-demo": "npm run demo:build && npm run demo:publish && npm run demo:clean", - "storybook": "start-storybook -p 9001", - "build-storybook": "npm run demo:clean && build-storybook" - }, - "repository": { - "type": "git", - "url": "https://github.com/apache/superset.git", - "directory": "superset-frontend/packages/superset-ui-demo" - }, + "description": "Storybook for Superset UI ✨", "keywords": [ "storybook", "superset", @@ -25,11 +11,25 @@ "analysis", "data" ], - "license": "Apache-2.0", + "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/packages/superset-ui-demo#readme", "bugs": { "url": "https://github.com/apache/superset/issues" }, - "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/packages/superset-ui-demo#readme", + "repository": { + "type": "git", + "url": "https://github.com/apache/superset.git", + "directory": "superset-frontend/packages/superset-ui-demo" + }, + "license": "Apache-2.0", + "main": "index.js", + "scripts": { + "build-storybook": "npm run demo:clean && build-storybook", + "demo:build": "npm run demo:clean && build-storybook -o _gh-pages", + "demo:clean": "rm -rf _gh-pages", + "demo:publish": "gh-pages -d _gh-pages", + "deploy-demo": "npm run demo:build && npm run demo:publish && npm run demo:clean", + "storybook": "start-storybook -p 9001" + }, "dependencies": { "@data-ui/event-flow": "^0.0.84", "@emotion/cache": "^11.4.0", @@ -77,7 +77,6 @@ "@superset-ui/legacy-plugin-chart-paired-t-test": "*", "@superset-ui/legacy-plugin-chart-parallel-coordinates": "*", "@superset-ui/legacy-plugin-chart-partition": "*", - "@superset-ui/legacy-plugin-chart-pivot-table": "*", "@superset-ui/legacy-plugin-chart-rose": "*", "@superset-ui/legacy-plugin-chart-sankey": "*", "@superset-ui/legacy-plugin-chart-sankey-loop": "*", diff --git a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-pivot-table/Stories.tsx b/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-pivot-table/Stories.tsx deleted file mode 100644 index 10ea7350f5..0000000000 --- a/superset-frontend/packages/superset-ui-demo/storybook/stories/plugins/legacy-plugin-chart-pivot-table/Stories.tsx +++ /dev/null @@ -1,159 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -/* eslint-disable no-magic-numbers */ -import React from 'react'; -import { SuperChart } from '@superset-ui/core'; -import PivotTableChartPlugin from '@superset-ui/legacy-plugin-chart-pivot-table'; -import 'bootstrap/dist/css/bootstrap.min.css'; - -new PivotTableChartPlugin().configure({ key: 'pivot-table' }).register(); - -export default { - title: 'Legacy Chart Plugins/legacy-plugin-chart-pivot-table', -}; - -const datasource = { - columnFormats: {}, - verboseMap: { - sum__num: 'sum__num', - }, -}; - -export const basic = () => ( - - - - - sum__num - - - state - other - All - - - name - - - - - - - Apache Superset - 803607 - 803607 - - - David pixel - 673992 - 673992 - - - pixelApache Superset - 749686 - 749686 - - - Jennifer - 587540 - 587540 - - - John - 638450 - 638450 - - - Joshua - 548044 - 548044 - - - Matthew - 608212 - 608212 - - - Michael - 1047996 - 1047996 - - - Robert - 575592 - 575592 - - - William - 574464 - 574464 - - - All - 6807583 - 6807583 - - -`, - }, - }, - ]} - formData={{ - groupby: ['name'], - numberFormat: '.3s', - }} - /> -); - -export const withNull = () => ( - \n \n \n \n sum__num\n \n \n state\n other\n All\n \n \n name\n \n \n \n \n \n \n Christopher\n null\n 803607\n \n \n David\n null\n 673992\n \n \n James\n 749686\n null\n \n \n Jennifer\n 587540\n null\n \n \n John\n 638450\n 638450\n \n \n Joshua\n null\n 548044\n \n \n Matthew\n 608212\n 608212\n \n \n Michael\n 1047996\n 1047996\n \n \n Robert\n 575592\n 575592\n \n \n William\n 574464\n 574464\n \n \n All\n 6807583\n 6807583\n \n \n', - }, - }, - ]} - formData={{ - groupby: ['name'], - numberFormat: '.3s', - }} - /> -); diff --git a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/CHANGELOG.md b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/CHANGELOG.md deleted file mode 100644 index 885e5c500c..0000000000 --- a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/CHANGELOG.md +++ /dev/null @@ -1,43 +0,0 @@ - - -# Change Log - -All notable changes to this project will be documented in this file. -See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. - -# [0.18.0](https://github.com/apache-superset/superset-ui/compare/v0.17.87...v0.18.0) (2021-08-30) - -**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-pivot-table - - - - - -## [0.17.63](https://github.com/apache-superset/superset-ui/compare/v0.17.62...v0.17.63) (2021-07-02) - -**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-pivot-table - - - - - -## [0.17.61](https://github.com/apache-superset/superset-ui/compare/v0.17.60...v0.17.61) (2021-07-02) - -**Note:** Version bump only for package @superset-ui/legacy-plugin-chart-pivot-table diff --git a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/README.md b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/README.md deleted file mode 100644 index 4cb3bd4a22..0000000000 --- a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/README.md +++ /dev/null @@ -1,52 +0,0 @@ - - -## @superset-ui/legacy-plugin-chart-pivot-table - -[![Version](https://img.shields.io/npm/v/@superset-ui/legacy-plugin-chart-pivot-table.svg?style=flat-square)](https://www.npmjs.com/package/@superset-ui/legacy-plugin-chart-pivot-table) -[![David (path)](https://img.shields.io/david/apache-superset/superset-ui-plugins.svg?path=packages%2Fsuperset-ui-legacy-plugin-chart-pivot-table&style=flat-square)](https://david-dm.org/apache-superset/superset-ui-plugins?path=packages/superset-ui-legacy-plugin-chart-pivot-table) - -This plugin provides Pivot Table for Superset. - -### Usage - -Configure `key`, which can be any `string`, and register the plugin. This `key` will be used to -lookup this chart throughout the app. - -```js -import PivottableChartPlugin from '@superset-ui/legacy-plugin-chart-pivot-table'; - -new PivottableChartPlugin().configure({ key: 'pivot-table' }).register(); -``` - -Then use it via `SuperChart`. See -[storybook](https://apache-superset.github.io/superset-ui-plugins/?selectedKind=plugin-chart-pivot-table) -for more details. - -```js - -``` diff --git a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/package.json b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/package.json deleted file mode 100644 index 04bfeb32af..0000000000 --- a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/package.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "name": "@superset-ui/legacy-plugin-chart-pivot-table", - "version": "0.18.25", - "description": "Superset Legacy Chart - Pivot Table", - "sideEffects": [ - "*.css" - ], - "main": "lib/index.js", - "module": "esm/index.js", - "files": [ - "esm", - "lib" - ], - "repository": { - "type": "git", - "url": "https://github.com/apache/superset.git", - "directory": "superset-frontend/plugins/legacy-plugin-chart-pivot-table" - }, - "keywords": [ - "superset" - ], - "author": "Superset", - "license": "Apache-2.0", - "bugs": { - "url": "https://github.com/apache/superset/issues" - }, - "homepage": "https://github.com/apache/superset/tree/master/superset-frontend/plugins/legacy-plugin-chart-pivot-table#readme", - "publishConfig": { - "access": "public" - }, - "dependencies": { - "d3": "^3.5.17", - "datatables.net-bs": "^1.11.3", - "prop-types": "^15.6.2" - }, - "peerDependencies": { - "@superset-ui/chart-controls": "*", - "@superset-ui/core": "*" - } -} diff --git a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/PivotTable.js b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/PivotTable.js deleted file mode 100644 index cebfec288d..0000000000 --- a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/PivotTable.js +++ /dev/null @@ -1,154 +0,0 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ -/* eslint-disable react/sort-prop-types */ -import dt from 'datatables.net-bs'; -import PropTypes from 'prop-types'; -import { - getTimeFormatter, - getTimeFormatterForGranularity, - smartDateFormatter, -} from '@superset-ui/core'; -import { formatCellValue, formatDateCellValue } from './utils/formatCells'; -import fixTableHeight from './utils/fixTableHeight'; -import 'datatables.net-bs/css/dataTables.bootstrap.css'; - -if (window.$) { - dt(window, window.$); -} -const $ = window.$ || dt.$; - -const propTypes = { - data: PropTypes.shape({ - // TODO: replace this with raw data in SIP-6 - html: PropTypes.string, - columns: PropTypes.arrayOf( - PropTypes.oneOfType([ - PropTypes.string, - PropTypes.arrayOf(PropTypes.string), - ]), - ), - }), - height: PropTypes.number, - columnFormats: PropTypes.objectOf(PropTypes.string), - numberFormat: PropTypes.string, - numGroups: PropTypes.number, - verboseMap: PropTypes.objectOf(PropTypes.string), -}; - -const hasOnlyTextChild = node => - node.childNodes.length === 1 && - node.childNodes[0].nodeType === Node.TEXT_NODE; - -function PivotTable(element, props) { - const { - columnFormats, - data, - dateFormat, - granularity, - height, - numberFormat, - numGroups, - verboseMap, - } = props; - - const { html, columns } = data; - const container = element; - const $container = $(element); - let dateFormatter; - - if (dateFormat === smartDateFormatter.id && granularity) { - dateFormatter = getTimeFormatterForGranularity(granularity); - } else if (dateFormat) { - dateFormatter = getTimeFormatter(dateFormat); - } else { - dateFormatter = String; - } - - // queryData data is a string of html with a single table element - container.innerHTML = html; - - const cols = Array.isArray(columns[0]) ? columns.map(col => col[0]) : columns; - const dateRegex = /^__timestamp:(-?\d*\.?\d*)$/; - - $container.find('th').each(function formatTh() { - if (hasOnlyTextChild(this)) { - const cellValue = formatDateCellValue( - $(this).text(), - verboseMap, - dateRegex, - dateFormatter, - ); - $(this).text(cellValue); - } - }); - - $container.find('tbody tr').each(function eachRow() { - $(this) - .find('td') - .each(function eachTd(index) { - if (hasOnlyTextChild(this)) { - const tdText = $(this).text(); - const { textContent, sortAttributeValue } = formatCellValue( - index, - cols, - tdText, - columnFormats, - numberFormat, - dateRegex, - dateFormatter, - ); - $(this).text(textContent); - $(this).attr('data-sort', sortAttributeValue); - } - }); - }); - - $container.find('table').each(function fullWidth() { - this.style = 'width: 100%'; - }); - - if (numGroups === 1) { - // When there is only 1 group by column, - // we use the DataTable plugin to make the header fixed. - // The plugin takes care of the scrolling so we don't need - // overflow: 'auto' on the table. - container.style.overflow = 'hidden'; - const table = $container.find('table').DataTable({ - paging: false, - searching: false, - bInfo: false, - scrollY: `${height}px`, - scrollCollapse: true, - scrollX: true, - }); - table.column('-1').order('desc').draw(); - fixTableHeight($container.find('.dataTables_wrapper'), height); - } else { - // When there is more than 1 group by column we just render the table, without using - // the DataTable plugin, so we need to handle the scrolling ourselves. - // In this case the header is not fixed. - container.style.overflow = 'auto'; - container.style.height = `${height + 10}px`; - } -} - -PivotTable.displayName = 'PivotTable'; -PivotTable.propTypes = propTypes; - -export default PivotTable; diff --git a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/ReactPivotTable.js b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/ReactPivotTable.js deleted file mode 100644 index 3885f31b04..0000000000 --- a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/ReactPivotTable.js +++ /dev/null @@ -1,22 +0,0 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ -import { reactify } from '@superset-ui/core'; -import Component from './PivotTable'; - -export default reactify(Component); diff --git a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts deleted file mode 100644 index 11daca1e94..0000000000 --- a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts +++ /dev/null @@ -1,148 +0,0 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ -import { t } from '@superset-ui/core'; -import { - ControlPanelConfig, - D3_FORMAT_DOCS, - D3_FORMAT_OPTIONS, - D3_TIME_FORMAT_OPTIONS, - sections, -} from '@superset-ui/chart-controls'; - -const config: ControlPanelConfig = { - controlPanelSections: [ - sections.legacyTimeseriesTime, - { - label: t('Query'), - expanded: true, - controlSetRows: [ - ['metrics'], - ['adhoc_filters'], - ['groupby'], - ['columns'], - ['row_limit', null], - ['timeseries_limit_metric'], - ['order_desc'], - ], - }, - { - label: t('Pivot Options'), - controlSetRows: [ - [ - { - name: 'pandas_aggfunc', - config: { - type: 'SelectControl', - label: t('Aggregation function'), - clearable: false, - choices: [ - ['sum', t('sum')], - ['mean', t('mean')], - ['min', t('min')], - ['max', t('max')], - ['std', t('std')], - ['var', t('var')], - ], - default: 'sum', - description: t( - 'Aggregate function to apply when pivoting and ' + - 'computing the total rows and columns', - ), - }, - }, - null, - ], - [ - { - name: 'pivot_margins', - config: { - type: 'CheckboxControl', - label: t('Show totals'), - default: true, - description: t('Display total row/column'), - }, - }, - { - name: 'combine_metric', - config: { - type: 'CheckboxControl', - label: t('Combine Metrics'), - default: false, - description: t( - 'Display metrics side by side within each column, as ' + - 'opposed to each column being displayed side by side for each metric.', - ), - }, - }, - ], - [ - { - name: 'transpose_pivot', - config: { - type: 'CheckboxControl', - label: t('Transpose Pivot'), - default: false, - description: t('Swap Groups and Columns'), - }, - }, - ], - ], - }, - { - label: t('Options'), - expanded: true, - controlSetRows: [ - [ - { - name: 'number_format', - config: { - type: 'SelectControl', - freeForm: true, - label: t('Number format'), - renderTrigger: true, - default: 'SMART_NUMBER', - choices: D3_FORMAT_OPTIONS, - description: D3_FORMAT_DOCS, - }, - }, - ], - [ - { - name: 'date_format', - config: { - type: 'SelectControl', - freeForm: true, - label: t('Date format'), - renderTrigger: true, - choices: D3_TIME_FORMAT_OPTIONS, - default: 'smart_date', - description: D3_FORMAT_DOCS, - }, - }, - ], - ], - }, - ], - controlOverrides: { - groupby: { includeTime: true }, - columns: { includeTime: true }, - }, -}; - -export default config; diff --git a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/images/example.jpg b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/images/example.jpg deleted file mode 100644 index b6258eeba7..0000000000 Binary files a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/images/example.jpg and /dev/null differ diff --git a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/images/thumbnail.png b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/images/thumbnail.png deleted file mode 100644 index 7f003266eb..0000000000 Binary files a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/images/thumbnail.png and /dev/null differ diff --git a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/images/thumbnailLarge.png b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/images/thumbnailLarge.png deleted file mode 100644 index 3e4745e77a..0000000000 Binary files a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/images/thumbnailLarge.png and /dev/null differ diff --git a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js deleted file mode 100644 index 9d45be2219..0000000000 --- a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js +++ /dev/null @@ -1,47 +0,0 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ -import { t, ChartMetadata, ChartPlugin } from '@superset-ui/core'; -import transformProps from './transformProps'; -import thumbnail from './images/thumbnail.png'; -import example from './images/example.jpg'; -import controlPanel from './controlPanel'; - -const metadata = new ChartMetadata({ - category: t('Table'), - description: - t(`Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. - - This chart is being deprecated and we recommend checking out Pivot Table V2 instead!`), - exampleGallery: [{ url: example }], - name: t('Pivot Table (legacy)'), - tags: [t('Legacy')], - thumbnail, - useLegacyApi: true, -}); - -export default class PivotTableChartPlugin extends ChartPlugin { - constructor() { - super({ - loadChart: () => import('./ReactPivotTable'), - metadata, - transformProps, - controlPanel, - }); - } -} diff --git a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/transformProps.js b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/transformProps.js deleted file mode 100644 index 67a833ff9b..0000000000 --- a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/transformProps.js +++ /dev/null @@ -1,37 +0,0 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ -import { extractTimegrain } from '@superset-ui/core'; - -export default function transformProps(chartProps) { - const { height, datasource, formData, queriesData, rawFormData } = chartProps; - const { groupby, numberFormat, dateFormat } = formData; - const { columnFormats, verboseMap } = datasource; - const granularity = extractTimegrain(rawFormData); - - return { - columnFormats, - data: queriesData[0].data, - dateFormat, - granularity, - height, - numberFormat, - numGroups: groupby.length, - verboseMap, - }; -} diff --git a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/utils/fixTableHeight.js b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/utils/fixTableHeight.js deleted file mode 100644 index 4e55d27c46..0000000000 --- a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/utils/fixTableHeight.js +++ /dev/null @@ -1,33 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ - -/** - * Fix the height of the table body of a DataTable with scrollY set - */ -export default function fixTableHeight($tableDom, height) { - const headHeight = $tableDom.find('.dataTables_scrollHead').height(); - const filterHeight = $tableDom.find('.dataTables_filter').height() || 0; - const pageLengthHeight = $tableDom.find('.dataTables_length').height() || 0; - const paginationHeight = $tableDom.find('.dataTables_paginate').height() || 0; - const controlsHeight = - pageLengthHeight > filterHeight ? pageLengthHeight : filterHeight; - $tableDom - .find('.dataTables_scrollBody') - .css('max-height', height - headHeight - controlsHeight - paginationHeight); -} diff --git a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/utils/formatCells.ts b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/utils/formatCells.ts deleted file mode 100644 index 5e32235da3..0000000000 --- a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/utils/formatCells.ts +++ /dev/null @@ -1,71 +0,0 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ -import { formatNumber } from '@superset-ui/core'; - -function formatCellValue( - i: number, - cols: string[], - tdText: string, - columnFormats: any, - numberFormat: string, - dateRegex: RegExp, - dateFormatter: any, -) { - const metric: string = cols[i]; - const format: string = columnFormats[metric] || numberFormat || '.3s'; - let textContent: string = tdText; - let sortAttributeValue: any = tdText; - - if (parseFloat(tdText)) { - const parsedValue = parseFloat(tdText); - textContent = formatNumber(format, parsedValue); - sortAttributeValue = parsedValue; - } else { - const regexMatch = dateRegex.exec(tdText); - if (regexMatch) { - const date = new Date(parseFloat(regexMatch[1])); - textContent = dateFormatter(date); - sortAttributeValue = date; - } else if (tdText === 'null') { - textContent = ''; - sortAttributeValue = Number.NEGATIVE_INFINITY; - } - } - - return { textContent, sortAttributeValue }; -} - -function formatDateCellValue( - text: string, - verboseMap: any, - dateRegex: RegExp, - dateFormatter: any, -) { - const regexMatch = dateRegex.exec(text); - let cellValue; - if (regexMatch) { - const date = new Date(parseFloat(regexMatch[1])); - cellValue = dateFormatter(date); - } else { - cellValue = verboseMap[text] || text; - } - return cellValue; -} - -export { formatCellValue, formatDateCellValue }; diff --git a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/test/PivotTable.test.ts b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/test/PivotTable.test.ts deleted file mode 100644 index d70f200080..0000000000 --- a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/test/PivotTable.test.ts +++ /dev/null @@ -1,91 +0,0 @@ -/** - * Licensed to the Apache Software Foundation (ASF) under one - * or more contributor license agreements. See the NOTICE file - * distributed with this work for additional information - * regarding copyright ownership. The ASF licenses this file - * to you under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance - * with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, - * software distributed under the License is distributed on an - * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY - * KIND, either express or implied. See the License for the - * specific language governing permissions and limitations - * under the License. - */ -import { getTimeFormatterForGranularity } from '@superset-ui/core'; -import { formatCellValue } from '../src/utils/formatCells'; - -describe('pivot table plugin format cells', () => { - const i = 0; - const cols = ['SUM']; - let tdText = '2222222'; - const columnFormats = {}; - const numberFormat = 'SMART_NUMBER'; - const dateRegex = /^__timestamp:(-?\d*\.?\d*)$/; - const dateFormatter = getTimeFormatterForGranularity('P1D'); - - it('render number', () => { - const { textContent, sortAttributeValue } = formatCellValue( - i, - cols, - tdText, - columnFormats, - numberFormat, - dateRegex, - dateFormatter, - ); - expect(textContent).toEqual('2.22M'); - expect(sortAttributeValue).toEqual(2222222); - }); - - it('render date', () => { - tdText = '__timestamp:-126230400000.0'; - - const { textContent } = formatCellValue( - i, - cols, - tdText, - columnFormats, - numberFormat, - dateRegex, - dateFormatter, - ); - expect(textContent).toEqual('1966-01-01'); - }); - - it('render string', () => { - tdText = 'some-text'; - - const { textContent, sortAttributeValue } = formatCellValue( - i, - cols, - tdText, - columnFormats, - numberFormat, - dateRegex, - dateFormatter, - ); - expect(textContent).toEqual(tdText); - expect(sortAttributeValue).toEqual(tdText); - }); - - it('render null', () => { - tdText = 'null'; - - const { textContent, sortAttributeValue } = formatCellValue( - i, - cols, - tdText, - columnFormats, - numberFormat, - dateRegex, - dateFormatter, - ); - expect(textContent).toEqual(''); - expect(sortAttributeValue).toEqual(Number.NEGATIVE_INFINITY); - }); -}); diff --git a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/tsconfig.json b/superset-frontend/plugins/legacy-plugin-chart-pivot-table/tsconfig.json deleted file mode 100644 index b6bfaa2d98..0000000000 --- a/superset-frontend/plugins/legacy-plugin-chart-pivot-table/tsconfig.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "compilerOptions": { - "declarationDir": "lib", - "outDir": "lib", - "rootDir": "src" - }, - "exclude": [ - "lib", - "test" - ], - "extends": "../../tsconfig.json", - "include": [ - "src/**/*", - "types/**/*", - "../../types/**/*" - ], - "references": [ - { - "path": "../../packages/superset-ui-chart-controls" - }, - { - "path": "../../packages/superset-ui-core" - } - ] -} diff --git a/superset-frontend/src/components/ReportModal/index.tsx b/superset-frontend/src/components/ReportModal/index.tsx index 345d8b8224..5bf4c2c4d2 100644 --- a/superset-frontend/src/components/ReportModal/index.tsx +++ b/superset-frontend/src/components/ReportModal/index.tsx @@ -75,7 +75,6 @@ interface ReportProps { } const TEXT_BASED_VISUALIZATION_TYPES = [ - 'pivot_table', 'pivot_table_v2', 'table', 'paired_ttest', diff --git a/superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx b/superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx index 11e242a2e3..7eed888fc1 100644 --- a/superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx +++ b/superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx @@ -56,7 +56,7 @@ const MENU_KEYS = { RUN_IN_SQL_LAB: 'run_in_sql_lab', }; -const VIZ_TYPES_PIVOTABLE = ['pivot_table', 'pivot_table_v2']; +const VIZ_TYPES_PIVOTABLE = ['pivot_table_v2']; export const MenuItemWithCheckboxContainer = styled.div` ${({ theme }) => css` diff --git a/superset-frontend/src/features/alerts/AlertReportModal.tsx b/superset-frontend/src/features/alerts/AlertReportModal.tsx index 076aac6d8b..8ff344c97e 100644 --- a/superset-frontend/src/features/alerts/AlertReportModal.tsx +++ b/superset-frontend/src/features/alerts/AlertReportModal.tsx @@ -65,7 +65,6 @@ import { NotificationMethod } from './components/NotificationMethod'; const TIMEOUT_MIN = 1; const TEXT_BASED_VISUALIZATION_TYPES = [ - 'pivot_table', 'pivot_table_v2', 'table', 'paired_ttest', diff --git a/superset-frontend/src/visualizations/presets/MainPreset.js b/superset-frontend/src/visualizations/presets/MainPreset.js index 2bce5ae096..e719f25eed 100644 --- a/superset-frontend/src/visualizations/presets/MainPreset.js +++ b/superset-frontend/src/visualizations/presets/MainPreset.js @@ -28,7 +28,6 @@ import MapBoxChartPlugin from '@superset-ui/legacy-plugin-chart-map-box'; import PairedTTestChartPlugin from '@superset-ui/legacy-plugin-chart-paired-t-test'; import ParallelCoordinatesChartPlugin from '@superset-ui/legacy-plugin-chart-parallel-coordinates'; import PartitionChartPlugin from '@superset-ui/legacy-plugin-chart-partition'; -import PivotTableChartPlugin from '@superset-ui/legacy-plugin-chart-pivot-table'; import RoseChartPlugin from '@superset-ui/legacy-plugin-chart-rose'; import SankeyChartPlugin from '@superset-ui/legacy-plugin-chart-sankey'; import SunburstChartPlugin from '@superset-ui/legacy-plugin-chart-sunburst'; @@ -128,7 +127,6 @@ export default class MainPreset extends Preset { new ParallelCoordinatesChartPlugin().configure({ key: 'para' }), new PartitionChartPlugin().configure({ key: 'partition' }), new EchartsPieChartPlugin().configure({ key: 'pie' }), - new PivotTableChartPlugin().configure({ key: 'pivot_table' }), new PivotTableChartPluginV2().configure({ key: 'pivot_table_v2' }), new RoseChartPlugin().configure({ key: 'rose' }), new SankeyChartPlugin().configure({ key: 'sankey' }), diff --git a/superset/charts/post_processing.py b/superset/charts/post_processing.py index a6b64c08d6..2ee03a3b66 100644 --- a/superset/charts/post_processing.py +++ b/superset/charts/post_processing.py @@ -247,42 +247,6 @@ def pivot_table_v2( ) -def pivot_table( - df: pd.DataFrame, - form_data: dict[str, Any], - datasource: Optional[Union["BaseDatasource", "Query"]] = None, -) -> pd.DataFrame: - """ - Pivot table (v1). - """ - verbose_map = datasource.data["verbose_map"] if datasource else None - if form_data.get("granularity") == "all" and DTTM_ALIAS in df: - del df[DTTM_ALIAS] - - # v1 func names => v2 func names - func_map = { - "sum": "Sum", - "mean": "Average", - "min": "Minimum", - "max": "Maximum", - "std": "Sample Standard Deviation", - "var": "Sample Variance", - } - - return pivot_df( - df, - rows=get_column_names(form_data.get("groupby"), verbose_map), - columns=get_column_names(form_data.get("columns"), verbose_map), - metrics=get_metric_names(form_data["metrics"], verbose_map), - aggfunc=func_map.get(form_data.get("pandas_aggfunc", "sum"), "Sum"), - transpose_pivot=bool(form_data.get("transpose_pivot")), - combine_metrics=bool(form_data.get("combine_metric")), - show_rows_total=bool(form_data.get("pivot_margins")), - show_columns_total=bool(form_data.get("pivot_margins")), - apply_metrics_on_rows=False, - ) - - def table( df: pd.DataFrame, form_data: dict[str, Any], @@ -308,7 +272,6 @@ def table( post_processors = { - "pivot_table": pivot_table, "pivot_table_v2": pivot_table_v2, "table": table, } diff --git a/superset/examples/birth_names.py b/superset/examples/birth_names.py index 45a3b39eb3..80324ce39c 100644 --- a/superset/examples/birth_names.py +++ b/superset/examples/birth_names.py @@ -509,12 +509,12 @@ def create_slices(tbl: SqlaTable) -> tuple[list[Slice], list[Slice]]: Slice( **slice_kwargs, slice_name="Pivot Table", - viz_type="pivot_table", + viz_type="pivot_table_v2", params=get_slice_json( defaults, - viz_type="pivot_table", - groupby=["name"], - columns=["state"], + viz_type="pivot_table_v2", + groupbyRows=["name"], + groupbyColumns=["state"], metrics=metrics, ), ), diff --git a/superset/migrations/shared/migrate_viz/processors.py b/superset/migrations/shared/migrate_viz/processors.py index 6d35a974db..0766553785 100644 --- a/superset/migrations/shared/migrate_viz/processors.py +++ b/superset/migrations/shared/migrate_viz/processors.py @@ -51,3 +51,36 @@ class MigrateAreaChart(MigrateViz): if x_axis_label := self.data.get("x_axis_label"): self.data["x_axis_title"] = x_axis_label self.data["x_axis_title_margin"] = 30 + + +class MigratePivotTable(MigrateViz): + source_viz_type = "pivot_table" + target_viz_type = "pivot_table_v2" + remove_keys = {"pivot_margins"} + rename_keys = { + "columns": "groupbyColumns", + "combine_metric": "combineMetric", + "groupby": "groupbyRows", + "number_format": "valueFormat", + "pandas_aggfunc": "aggregateFunction", + "row_limit": "series_limit", + "timeseries_limit_metric": "series_limit_metric", + "transpose_pivot": "transposePivot", + } + aggregation_mapping = { + "sum": "Sum", + "mean": "Average", + "median": "Median", + "min": "Minimum", + "max": "Maximum", + "std": "Sample Standard Deviation", + "var": "Sample Variance", + } + + def _pre_action(self) -> None: + if pivot_margins := self.data.get("pivot_margins"): + self.data["colTotals"] = pivot_margins + self.data["rowTotals"] = pivot_margins + + if pandas_aggfunc := self.data.get("pandas_aggfunc"): + self.data["pandas_aggfunc"] = self.aggregation_mapping[pandas_aggfunc] diff --git a/superset/migrations/versions/2023-06-08_09-02_9ba2ce3086e5_migrate_pivot_table_v1_to_v2.py b/superset/migrations/versions/2023-06-08_09-02_9ba2ce3086e5_migrate_pivot_table_v1_to_v2.py new file mode 100644 index 0000000000..f1df097254 --- /dev/null +++ b/superset/migrations/versions/2023-06-08_09-02_9ba2ce3086e5_migrate_pivot_table_v1_to_v2.py @@ -0,0 +1,36 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +"""migrate-pivot-table-v1-to-v2 + +Revision ID: 9ba2ce3086e5 +Revises: 4ea966691069 +Create Date: 2023-08-06 09:02:10.148992 + +""" +from superset.migrations.shared.migrate_viz import MigratePivotTable + +# revision identifiers, used by Alembic. +revision = "9ba2ce3086e5" +down_revision = "4ea966691069" + + +def upgrade(): + MigratePivotTable.upgrade() + + +def downgrade(): + MigratePivotTable.downgrade() diff --git a/superset/translations/de/LC_MESSAGES/messages.json b/superset/translations/de/LC_MESSAGES/messages.json index 788f380e45..6572c4a607 100644 --- a/superset/translations/de/LC_MESSAGES/messages.json +++ b/superset/translations/de/LC_MESSAGES/messages.json @@ -5,7 +5,7 @@ "22": ["22"], "": { "domain": "superset", - "plural_forms": "nplurals=2; plural=(n != 1);", + "plural_forms": "nplurals=2; plural=(n != 1)", "lang": "de" }, "\n This filter was inherited from the dashboard's context.\n It won't be saved when saving the chart.\n ": [ @@ -214,6 +214,9 @@ "A database with the same name already exists.": [ "Eine Datenbank mit dem gleichen Namen existiert bereits." ], + "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ + "" + ], "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ "Eine vollständige URL, die auf den Speicherort des erstellten Plugins verweist (könnte beispielsweise auf einem CDN gehostet werden)" ], @@ -315,9 +318,6 @@ "Add Log": ["Protokoll hinzufügen"], "Add Metric": ["Metrik hinzufügen"], "Add Report": ["Report hinzufügen"], - "Add Row level security filter": [ - "Sicherheitsfilter auf Zeilenebene hinzufügen" - ], "Add Saved Query": ["Gespeicherte Abfrage hinzufügen"], "Add a Plugin": ["Plugin hinzufügen"], "Add a dataset": ["Datensatz hinzufügen"], @@ -338,6 +338,7 @@ "Fügen Sie berechnete Zeitspalten im Dialog \"Datenquelle bearbeiten\" zum Datensatz hinzu" ], "Add cross-filter": ["Kreuzfilter hinzufügen"], + "Add custom scoping": [""], "Add delivery method": ["Übermittlungsmethode hinzufügen"], "Add extra connection information.": [ "Zusätzliche Verbindungsinformationen hinzufügen" @@ -457,6 +458,7 @@ "All Entities": ["Alle Entitäten"], "All Text": ["Gesamter Texte"], "All charts": ["Alle Diagramme"], + "All charts/global scoping": [""], "All filters": ["Alle Filter"], "All filters (%(filterCount)d)": ["Alle Filter (%(filterCount)d)"], "All panels": ["Alle Bereiche"], @@ -1183,7 +1185,6 @@ "Choose a source": ["Wählen Sie eine Quelle"], "Choose a source and a target": ["Wählen Sie eine Quelle und ein Ziel"], "Choose a target": ["Wählen Sie ein Ziel"], - "Choose a unique name": ["Wählen Sie einen eindeutigen Namen"], "Choose chart type": ["Diagrammtyp auswählen"], "Choose one of the available databases from the panel on the left.": [ "Wählen Sie einen der verfügbaren Datensätze aus dem Bereich auf der linken Seite." @@ -1247,9 +1248,6 @@ ], "Click to cancel sorting": ["Klicken, um die Sortierung abzubrechen"], "Click to edit": ["Klicken um zu bearbeiten"], - "Click to edit %s in a new tab": [ - "Klicken Sie hier, um %s auf einer neuen Registerkarte zu bearbeiten" - ], "Click to edit %s.": ["Klicken Sie hier, um %s zu bearbeiten."], "Click to edit chart.": [ "Klicken Sie hier, um das Diagramm zu bearbeiten." @@ -1356,7 +1354,6 @@ "Spalten, nach denen in den Zeilen gruppiert werden soll" ], "Columns to show": ["Anzuzeigende Spalten"], - "Combine Metrics": ["Metriken kombinieren"], "Combine metrics": ["Metriken kombinieren"], "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ "Kommagetrennte Farbwerte für die Intervalle, z.B. 1,2,4. Ganzzahlen bezeichnen Farben aus dem gewählten Farbschema und sind 1-indiziert. Die Anzahl muss mit der der Intervallgrenzen übereinstimmen." @@ -1497,6 +1494,7 @@ "Could not load database driver: {}": [ "Datenbanktreiber konnte nicht geladen werden: {}" ], + "Could not resolve hostname: \"%(host)s\".": [""], "Count": ["Anzahl"], "Count Unique Values": ["Eindeutige Werte zählen"], "Count as Fraction of Columns": ["Als Anteil der Spalten zählen"], @@ -1929,7 +1927,6 @@ ], "Display row level total": ["Summe auf Zeilenebene anzeigen"], "Display settings": ["Darstellungs-Einstellungen"], - "Display total row/column": ["Gesamtsumme Zeile/Spalte anzeigen"], "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ "Zeigt Verbindungen zwischen Elementen in einer Graphstruktur an. Nützlich, um Beziehungen abzubilden und zu zeigen, welche Knoten in einem Netzwerk wichtig sind. Graphen-Diagramme können so konfiguriert werden, dass sie kraftgesteuert sind oder zirkulieren. Wenn Ihre Daten über eine Geodatenkomponente verfügen, versuchen Sie es mit dem deck.gl Arc-Diagramm." ], @@ -1995,22 +1992,9 @@ "Drop a temporal column here or click": [ "Legen Sie hier eine Spalte ab oder klicken Sie" ], - "Drop column here": [ - "Spalte hierhin ziehen und ablegen", - "Spalten hierhin ziehen und ablegen" - ], - "Drop column or metric here": [ - "Spalte oder Metrik hier ablegen", - "Spalten oder Metriken hier ablegen" - ], - "Drop columns here": ["Spalten hier ablegen"], - "Drop columns or metrics here": [ - "Spalten oder Metriken hierhin ziehen und ablegen" - ], "Drop columns/metrics here or click": [ "Spalten/Metriken hierhin ziehen und ablegen oder klicken" ], - "Drop temporal column here": ["Temporale Spalte hier ablegen"], "Dual Line Chart": ["Doppelliniendiagramm"], "Duplicate": ["Duplizieren"], "Duplicate column name(s): %(columns)s": [ @@ -2079,9 +2063,6 @@ "Edit Metric": ["Metrik bearbeiten"], "Edit Plugin": ["Plugin bearbeiten"], "Edit Report": ["Report bearbeiten"], - "Edit Row level security filter": [ - "Sicherheitsfilter auf Zeilenebene bearbeiten" - ], "Edit Saved Query": ["Gespeicherte Abfrage bearbeiten"], "Edit Table": ["Tabelle bearbeiten"], "Edit annotation": ["Anmerkung bearbeiten"], @@ -2354,7 +2335,6 @@ "Filter List": ["Filterliste"], "Filter Settings": ["Filtereinstellungen"], "Filter Type": ["Filtertyp"], - "Filter box": ["Filterkomponente"], "Filter charts": ["Diagramme filtern"], "Filter configuration": ["Filterkonfiguration"], "Filter configuration for the filter box": [ @@ -2504,9 +2484,6 @@ "Grid Size": ["Rastergröße"], "Group By": ["Gruppieren nach"], "Group By filter plugin": ["Gruppieren nach Filter-Plugin"], - "Group By' and 'Columns' can't overlap": [ - "„Gruppieren nach\" und \"Spalten\" dürfen sich nicht überlappen" - ], "Group By, Metrics or Percentage Metrics must have a value": [ "Group By, Metriken oder Prozentmetriken müssen einen Wert haben" ], @@ -2643,6 +2620,10 @@ ], "Instant filtering": ["Sofortige Filterung"], "Intensity": ["Intensität"], + "Intensity Radius is the radius at which the weight is distributed": [""], + "Intensity is the value multiplied by the weight to obtain the final weight": [ + "" + ], "Interpret Datetime Format Automatically": [ "Automatisches Interpretieren des Datumzeit-Formats" ], @@ -2697,6 +2678,7 @@ "Ungültige Optionen für %(rolling_type)s: %(options)s" ], "Invalid permalink key": ["Ungültiger Permalink-Schlüssel"], + "Invalid reference to column: \"%(column)s\"": [""], "Invalid result type: %(result_type)s": [ "Ungültiger Ergebnistyp: %(result_type)s" ], @@ -3180,9 +3162,6 @@ "Keine Datenbanken stimmen mit Ihrer Suche überein" ], "No description available.": ["Keine Beschreibung verfügbar."], - "No dimensions available for drill by": [ - "Keine Dimensionen verfügbar für das Hineinzoomen nach" - ], "No favorite charts yet, go click on stars!": [ "Noch keine Lieblingsdashboards, klicken Sie auf die Sterne!" ], @@ -3429,9 +3408,6 @@ "Optional warning about use of this metric": [ "Optionale Warnung zur Verwendung dieser Metrik" ], - "Optionally add a detailed description": [ - "Fügen Sie optional eine detaillierte Beschreibung hinzu" - ], "Options": ["Optionen"], "Or choose from a list of other databases we support:": [ "Oder wählen Sie aus einer Liste anderer Datenbanken, die wir unterstützen:" @@ -3587,9 +3563,7 @@ "Pie Chart": ["Kreisdiagramm"], "Pie shape": ["Kreisform"], "Pin": ["Pin"], - "Pivot Options": ["Pivot-Optionen"], "Pivot Table": ["Pivot-Tabelle"], - "Pivot Table (legacy)": ["Pivot-Tabelle (Legacy)"], "Pivot operation must include at least one aggregate": [ "Pivot-Operation muss mindestens ein Aggregat enthalten" ], @@ -3616,15 +3590,9 @@ "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ "Überprüfen Sie Ihre Vorlagenparameter auf Syntaxfehler und stellen Sie sicher, dass sie in Ihrer SQL-Abfrage und in den Parameter-Namen übereinstimmen. Versuchen Sie dann erneut, die Abfrage auszuführen." ], - "Please choose at least one 'Group by' field": [ - "Bitte wählen Sie mindestens ein Feld \"Gruppieren nach\" " - ], "Please choose at least one groupby": [ "Bitte wählen Sie mindestens ein Gruppierungs-Kriterium" ], - "Please choose at least one metric": [ - "Bitte wählen Sie mindestens eine Metrik" - ], "Please choose different metrics on left and right axis": [ "Bitte wählen Sie verschiedene Metriken für die linke und rechte Achse" ], @@ -3695,6 +3663,7 @@ "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ "Port %(port)s auf Hostname \"%(hostname)s\" verweigerte die Verbindung." ], + "Port out of range 0-65535": [""], "Position JSON": ["Anordnungs-JSON"], "Position of child node label on tree": [ "Position der Beschriftung des untergeordneten Knotens in der Struktur" @@ -3844,9 +3813,6 @@ "Refreshing charts": ["Aktualisieren von Diagrammen"], "Refreshing columns": ["Aktualisieren von Spalten"], "Regex": ["Regex"], - "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter. Base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ - "Reguläre Filter fügen Abfragen WHERE-Ausrücke hinzu, falls ein*e Benutzer*in einer im Filter referenzierten Rolle angehört. Basisfilter wenden Filter auf alle Abfragen mit Ausnahme der im Filter definierten Rollen an. Über sie lässt sich definieren, was Benutzer*innen sehen können, wenn auf sie keine RLS-Filter angewendet werden." - ], "Relational": ["Relational"], "Relationships between community channels": [ "Beziehungen zwischen Community-Kanälen" @@ -4003,7 +3969,6 @@ "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ "Zeile mit den Überschriften, die als Spaltennamen verwendet werden sollen (0 ist die erste Datenzeile). Leer lassen, wenn keine Kopfzeile vorhanden ist." ], - "Row level security filter": ["Sicherheitsfilter auf Zeilenebene"], "Row limit": ["Zeilenlimit"], "Rows": ["Zeilen"], "Rows per page, 0 means no pagination": [ @@ -4012,6 +3977,7 @@ "Rows subtotal position": ["Zeilen Zwischensummenposition"], "Rows to Read": ["Zu lesende Zeilen"], "Rule": ["Regel"], + "Rule added": [""], "Run": ["Ausführen"], "Run a query to display query history": [ "Abfrage zum Anzeigen des Abfrageverlaufs ausführen" @@ -4265,6 +4231,12 @@ "Select the Annotation Layer you would like to use.": [ "Wählen Sie den Anmerkungs-Layer aus, den Sie verwenden möchten." ], + "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" + ], + "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" + ], "Select the geojson column": ["Wählen Sie die GeoJSON-Spalte aus"], "Select the number of bins for the histogram": [ "Wählen Sie die Anzahl der Klassen für das Histogramm aus" @@ -4341,9 +4313,6 @@ "Show Metric": ["Metrik anzeigen"], "Show Metric Names": ["Metriknamen anzeigen"], "Show Range Filter": ["Bereichsfilter anzeigen"], - "Show Row level security filter": [ - "Sicherheitsfilter auf Zeilenebene anzeigen" - ], "Show Saved Query": ["Gespeicherte Abfrage anzeigen"], "Show Table": ["Tabelle anzeigen"], "Show Timestamp": ["Zeitstempel anzeigen"], @@ -4635,7 +4604,6 @@ ], "Supported databases": ["Unterstützte Datenbanken"], "Survey Responses": ["Umfrage-Antworten"], - "Swap Groups and Columns": ["Gruppen und Spalten tauschen"], "Swap dataset": ["Datensatz austauschen"], "Swap rows and columns": ["Zeilen und Spalten vertauschen"], "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ @@ -4651,6 +4619,9 @@ "Symbol size": ["Symbolgröße"], "Sync columns from source": ["Spalten aus der Quelle synchronisieren"], "Syntax": ["Syntax"], + "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ + "" + ], "TABLES": ["TABELLEN"], "TEMPORAL X-AXIS": ["ZEITLICHE X-ACHSE"], "TEMPORAL_RANGE": ["TEMPORAL_RANGE"], @@ -5053,6 +5024,9 @@ "The user seems to have been deleted": [ "Der/die Benutzer*in scheint gelöscht worden zu sein" ], + "The user/password combination is not valid (Incorrect password for user).": [ + "" + ], "The username \"%(username)s\" does not exist.": [ "Der Benutzer*innenname \"%(username)s\" existiert nicht." ], @@ -5214,9 +5188,6 @@ "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ "Dies kann entweder eine IP-Adresse (z.B. 127.0.0.1) oder ein Domainname (z.B. mydatabase.com) sein." ], - "This chart emits/applies cross-filters to other charts that use the same dataset": [ - "Dieses Diagramm gibt Kreuzfilter aus/wendet sie auf andere Diagramme an, die denselben Datensatz verwenden." - ], "This chart has been moved to a different filter scope.": [ "Dieses Diagramm wurde in einen anderen Filterbereich verschoben." ], @@ -5473,7 +5444,6 @@ "To get a readable URL for your dashboard": [ "So erhalten Sie eine sprechende URL für Ihr Dashboard" ], - "Too many columns to filter": ["Zu viele Spalten zum Filtern"], "Tools": ["Werkzeuge"], "Tooltip": ["Tooltip"], "Tooltip sort by metric": ["Tooltip nach Metrik sortieren"], @@ -5490,7 +5460,6 @@ "Track job": ["Auftrag verfolgen"], "Transformable": ["Transportierbar"], "Transparent": ["Transparent"], - "Transpose Pivot": ["Pivot transponieren"], "Transpose pivot": ["Pivot transponieren"], "Tree Chart": ["Baumdiagramm"], "Tree layout": ["Baum-Layout"], @@ -5554,6 +5523,8 @@ "Unable to create chart without a query id.": [ "Diagramm kann ohne Abfrage-ID nicht erstellt werden." ], + "Unable to decode value": [""], + "Unable to encode value": [""], "Unable to find such a holiday: [%(holiday)s]": [ "Kann einen solchen Feiertag nicht finden: [%(holiday)s]" ], @@ -5700,9 +5671,6 @@ "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ "Wird intern verwendet, um das Plugin zu identifizieren. Sollte auf den Paketnamen aus der paket.json des Plugins gesetzt werden" ], - "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location.\n\n This chart is being deprecated and we recommend checking out Pivot Table V2 instead!": [ - "Wird verwendet, um einen Datensatz zusammenzufassen, indem mehrere Statistiken entlang zweier Achsen gruppiert werden. Beispiele: Verkaufszahlen nach Region und Monat, Aufgaben nach Status und Beauftragtem, aktive Nutzer nach Alter und Standort.\n\nDieses Diagramm ist überholt, und wir empfehlen stattdessen, Pivot Table V2 auszuprobieren!" - ], "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ "Wird verwendet, um einen Datensatz zusammenzufassen, indem mehrere Statistiken entlang zweier Achsen gruppiert werden. Beispiele: Verkaufszahlen nach Region und Monat, Aufgaben nach Status und Beauftragtem, aktive Nutzer nach Alter und Standort. Nicht die visuell beeindruckendste Visualisierung, aber sehr informativ und vielseitig." ], @@ -5719,6 +5687,9 @@ ], "User query": ["Benutzer*innen-Abfrage"], "Username": ["Benutzer*innenname"], + "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ + "" + ], "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ "Verwendet ein Tachometer, um den Fortschritt einer Metrik in Richtung eines Ziels anzuzeigen. Die Position des Zifferblatts stellt den Fortschritt und der Endwert im Tachometer den Zielwert dar." ], @@ -6431,6 +6402,7 @@ "e.g., a \"user id\" column": ["z. B. eine Spalte „user id“"], "edit mode": ["Bearbeitungsmodus"], "entries": ["Einträge"], + "error dark": [""], "error_message": ["Fehlermeldung"], "every": ["jeden"], "every day of the month": ["jeden Tag des Monats"], @@ -6452,7 +6424,6 @@ ], "function type icon": ["Symbol für Funktionstyp"], "geohash (square)": ["Geohash (quadratisch)"], - "green": ["Grün"], "heatmap": ["Heatmap"], "heatmap: values are normalized across the entire heatmap": [ "Heatmap: Werte werden über die gesamte Heatmap normalisiert" @@ -6541,7 +6512,6 @@ "reboot": ["Neu starten"], "recent": ["Kürzlich"], "recents": ["Kürzlich"], - "red": ["Rot"], "report": ["Report"], "reports": ["Reports"], "restore zoom": ["Zoom wiederherstellen"], @@ -6579,7 +6549,6 @@ "use latest_partition template": ["latest_partition Vorlage verwenden"], "value ascending": ["Wert aufsteigend"], "value descending": ["Wert absteigend"], - "var": ["var"], "variance": ["Varianz"], "view instructions": ["Anleitung anzeigen"], "virtual": ["virtuell"], @@ -6597,7 +6566,6 @@ "y: Werte werden innerhalb jeder Zeile normalisiert" ], "year": ["Jahr"], - "yellow": ["Gelb"], "zoom area": ["Zoombereich"] } } diff --git a/superset/translations/de/LC_MESSAGES/messages.po b/superset/translations/de/LC_MESSAGES/messages.po index a38fc85a02..bc5e2e1f4e 100644 --- a/superset/translations/de/LC_MESSAGES/messages.po +++ b/superset/translations/de/LC_MESSAGES/messages.po @@ -18,17 +18,16 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-04-07 19:09+0200\n" +"POT-Creation-Date: 2023-05-23 16:30-0300\n" "PO-Revision-Date: 2023-04-07 19:45+0200\n" "Last-Translator: Holger Bruch \n" -"Language-Team: de \n" "Language: de\n" +"Language-Team: de \n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Generated-By: Babel 2.9.1\n" -"X-Generator: Poedit 3.2.2\n" #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 #: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 @@ -43,7 +42,7 @@ msgstr "" " Er wird beim Speichern des Diagramms nicht gespeichert.\n" " " -#: superset/reports/notifications/email.py:88 +#: superset/reports/notifications/email.py:89 #, python-format msgid "" "\n" @@ -64,14 +63,14 @@ msgid "" " Set the opacity to 0 if you do not want to override the color specified " "in the GeoJSON" msgstr "" -" Setzen Sie die Deckkraft auf 0, wenn Sie die im GeoJSON angegebene Farbe " -"nicht überschreiben möchten." +" Setzen Sie die Deckkraft auf 0, wenn Sie die im GeoJSON angegebene Farbe" +" nicht überschreiben möchten." -#: superset-frontend/src/explore/components/SaveModal.tsx:364 +#: superset-frontend/src/explore/components/SaveModal.tsx:399 msgid " a dashboard OR " msgstr " ein Dashboard ODER " -#: superset-frontend/src/explore/components/SaveModal.tsx:366 +#: superset-frontend/src/explore/components/SaveModal.tsx:401 msgid " a new one" msgstr " eine neue" @@ -94,8 +93,8 @@ msgid "" "Note\n" " currently time zones are not supported. If time is " "stored\n" -" in epoch format, put `epoch_s` or `epoch_ms`. If no " -"pattern\n" +" in epoch format, put `epoch_s` or `epoch_ms`. If no" +" pattern\n" " is specified we fall back to using the optional " "defaults on a per\n" " database/column name level via the extra parameter." @@ -112,15 +111,15 @@ msgstr "" "Zeitstempel umzuwandeln.\n" " Hinweis: Derzeit werden Zeitzonen nicht " "unterstützt. Wenn Zeit im\n" -" Epochenformat gespeichert ist, Geben Sie “epoch_s\" " -"oder \"epoch_ms\" ein. \n" -" Wenn kein Muster angegeben ist, greifen wir auf die " -"Verwendung der\n" +" Epochenformat gespeichert ist, Geben Sie “epoch_s\"" +" oder \"epoch_ms\" ein. \n" +" Wenn kein Muster angegeben ist, greifen wir auf die" +" Verwendung der\n" " \n" " über den zusätzlichen Parameter angebbaren,\n" " optionalen Standardwerte zurück." -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:334 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:340 msgid " to add calculated columns" msgstr ", um berechnete Spalten hinzuzufügen" @@ -132,8 +131,8 @@ msgstr ", um Metriken hinzuzufügen" msgid " to edit or add columns and metrics." msgstr ", um Spalten und Metriken zu bearbeiten oder hinzuzufügen." -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:323 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:358 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:364 msgid " to mark a column as a time column" msgstr " um eine Spalte als Zeitspalte zu markieren" @@ -143,7 +142,7 @@ msgstr "" " , um SQL Lab zu öffnen. Von dort aus können Sie die Abfrage als " "Datensatz speichern." -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:333 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 msgid " to visualize your data." msgstr " , um Ihre Daten zu visualisieren." @@ -151,7 +150,7 @@ msgstr " , um Ihre Daten zu visualisieren." msgid "!= (Is not equal)" msgstr "!= (Ist nicht gleich)" -#: superset/security/analytics_db_safety.py:44 +#: superset/security/analytics_db_safety.py:48 #, python-format msgid "%(dialect)s cannot be used as a data source for security reasons." msgstr "" @@ -169,7 +168,7 @@ msgstr "" "Dies kann ausgelöst werden durch: \n" "%(issues)s" -#: superset/reports/notifications/email.py:168 +#: superset/reports/notifications/email.py:171 #, python-format msgid "%(name)s.csv" msgstr "%(name)s.csv" @@ -199,14 +198,14 @@ msgstr "Aktuelle %(other)s werden hier angezeigt" msgid "%(other)s saved queries will appear here" msgstr "%(other)s gespeicherte Abfragen werden hier angezeigt" -#: superset/reports/notifications/email.py:177 +#: superset/reports/notifications/email.py:180 #, python-format msgid "%(prefix)s %(title)s" msgstr "%(prefix)s %(title)s" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:345 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:363 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:377 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:338 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:356 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:370 #, python-format msgid "%(rows)d rows returned" msgstr "%(rows)d Zeilen zurückgegeben" @@ -233,7 +232,7 @@ msgstr[1] "" "%(firstSuggestions)s oder %(lastSuggestion)s statt " "„%(undefinedParameter)s“?" -#: superset/views/core.py:384 +#: superset/views/core.py:385 #, python-format msgid "" "%(user)s was granted the role %(role)s that gives access to the " @@ -242,13 +241,12 @@ msgstr "" "%(user)s wurde die Rolle %(role)s gewährt, die den Zugriff auf " "%(datasource)s erlaubt" -#: superset/views/core.py:2672 +#: superset/views/core.py:2709 #, python-format msgid "%(user)s's profile" msgstr "Profil von %(user)s" -#: superset/databases/commands/validate_sql.py:73 -#: superset/views/core.py:2327 +#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2369 #, python-format msgid "" "%(validator)s was unable to check your query.\n" @@ -265,25 +263,25 @@ msgid "%s Error" msgstr "%s Fehler" #: superset-frontend/src/components/ImportModal/index.tsx:298 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1300 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1355 #, python-format msgid "%s PASSWORD" msgstr "%s PASSWORT" #: superset-frontend/src/components/ImportModal/index.tsx:318 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1318 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1373 #, python-format msgid "%s SSH TUNNEL PASSWORD" msgstr "%s SSH-TUNNEL-KENNWORT" #: superset-frontend/src/components/ImportModal/index.tsx:341 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1336 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1391 #, python-format msgid "%s SSH TUNNEL PRIVATE KEY" msgstr "%s PRIVATER SCHLÜSSEL FÜR DEN SSH-TUNNEL" #: superset-frontend/src/components/ImportModal/index.tsx:363 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1356 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1411 #, python-format msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" msgstr "%s PASSWORT FÜR DEN PRIVATEN SCHLÜSSEL DES SSH-TUNNELS" @@ -293,17 +291,17 @@ msgstr "%s PASSWORT FÜR DEN PRIVATEN SCHLÜSSEL DES SSH-TUNNELS" msgid "%s Selected" msgstr "%s ausgewählt" -#: superset-frontend/src/pages/DatasetList/index.tsx:808 +#: superset-frontend/src/pages/DatasetList/index.tsx:830 #, python-format msgid "%s Selected (%s Physical, %s Virtual)" msgstr "%s ausgewählt (%s physisch, %s virtuell)" -#: superset-frontend/src/pages/DatasetList/index.tsx:801 +#: superset-frontend/src/pages/DatasetList/index.tsx:823 #, python-format msgid "%s Selected (Physical)" msgstr "%s ausgewählt (physisch)" -#: superset-frontend/src/pages/DatasetList/index.tsx:794 +#: superset-frontend/src/pages/DatasetList/index.tsx:816 #, python-format msgid "%s Selected (Virtual)" msgstr "%s ausgewählt (virtuell)" @@ -313,8 +311,8 @@ msgstr "%s ausgewählt (virtuell)" msgid "%s aggregates(s)" msgstr "%s Aggregate" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:274 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:371 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:280 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:377 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:346 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 #, python-format @@ -353,8 +351,8 @@ msgstr[1] "%s Zeilen" msgid "%s saved metric(s)" msgstr "%s gespeicherte Metrik(en)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:636 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:652 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:639 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:655 #, python-format msgid "%s updated" msgstr "%s aktualisiert" @@ -371,7 +369,7 @@ msgstr "%s%s" msgid "%s-%s of %s" msgstr "%s-%s von %s" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:115 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:116 msgid "(Removed)" msgstr "(Entfernt)" @@ -435,11 +433,11 @@ msgstr "" msgid "+ %s more" msgstr "+ %s weitere" -#: superset/views/database/forms.py:153 +#: superset/views/database/forms.py:163 msgid "," msgstr "," -#: superset-frontend/src/SqlLab/actions/sqlLab.js:656 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:652 msgid "" "-- Note: Unless you save your query, these tabs will NOT persist if you " "clear your cookies or change browsers.\n" @@ -450,11 +448,11 @@ msgstr "" "Browser wechseln.\n" "\n" -#: superset/views/database/forms.py:154 +#: superset/views/database/forms.py:164 msgid "." msgstr "." -#: superset-frontend/src/pages/DatasetList/index.tsx:791 +#: superset-frontend/src/pages/DatasetList/index.tsx:813 msgid "0 Selected" msgstr "0 ausgewählt" @@ -546,7 +544,7 @@ msgstr "1 Jahres-Frequenz (Jahresende)" msgid "1 year start frequency" msgstr "1 Jahres-Frequenz (Jahresanfang)" -#: superset/db_engine_specs/base.py:101 +#: superset/db_engine_specs/base.py:102 msgid "10 minute" msgstr "10 Minuten" @@ -561,7 +559,7 @@ msgstr "104 Wochen" msgid "104 weeks ago" msgstr "vor 104 Wochen" -#: superset/db_engine_specs/base.py:102 +#: superset/db_engine_specs/base.py:103 msgid "15 minute" msgstr "15 Minuten" @@ -676,7 +674,7 @@ msgstr "30 Tage" msgid "30 days ago" msgstr "Vor 30 Tagen" -#: superset/db_engine_specs/base.py:103 +#: superset/db_engine_specs/base.py:104 msgid "30 minute" msgstr "30 Minuten" @@ -685,7 +683,7 @@ msgstr "30 Minuten" msgid "30 minutes" msgstr "30 Minuten" -#: superset/db_engine_specs/base.py:98 +#: superset/db_engine_specs/base.py:99 msgid "30 second" msgstr "30 Sekunden" @@ -705,7 +703,7 @@ msgstr "3-täglich (3D)" msgid "4 weeks (freq=4W-MON)" msgstr "4 Wochen (freq=4W-MON)" -#: superset/db_engine_specs/base.py:100 +#: superset/db_engine_specs/base.py:101 msgid "5 minute" msgstr "5 Minuten" @@ -714,7 +712,7 @@ msgstr "5 Minuten" msgid "5 minutes" msgstr "5 Minuten" -#: superset/db_engine_specs/base.py:97 +#: superset/db_engine_specs/base.py:98 msgid "5 second" msgstr "5 Sekunden" @@ -740,7 +738,7 @@ msgstr "52 Wochen, beginnend am Montag (freq=52W-MON)" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 #: superset-frontend/src/explore/controls.jsx:261 -#: superset/db_engine_specs/base.py:105 +#: superset/db_engine_specs/base.py:106 msgid "6 hour" msgstr "6 Stunden" @@ -823,21 +821,20 @@ msgstr ">= (Größer oder gleich)" msgid "A Big Number" msgstr "Eine Große Zahl" -#: superset/views/database/forms.py:184 +#: superset/views/database/forms.py:194 msgid "A comma separated list of columns that should be parsed as dates" msgstr "" "Eine durch Kommas getrennte Liste von Spalten, die als Datumsangaben " "interpretiert werden sollen" -#: superset/views/database/forms.py:367 +#: superset/views/database/forms.py:377 msgid "A comma separated list of columns that should be parsed as dates." msgstr "" "Eine durch Kommas getrennte Liste von Spalten, die als Datumsangaben " "interpretiert werden sollen." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:433 -msgid "" -"A comma-separated list of schemas that files are allowed to upload to." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 +msgid "A comma-separated list of schemas that files are allowed to upload to." msgstr "" "Eine durch Kommas getrennte Liste von Schemata, in die Dateien " "hochgeladen werden dürfen." @@ -846,6 +843,12 @@ msgstr "" msgid "A database with the same name already exists." msgstr "Eine Datenbank mit dem gleichen Namen existiert bereits." +#: superset/views/database/forms.py:145 +msgid "" +"A dictionary with column names and their data types if you need to change" +" the defaults. Example: {\"user_id\":\"integer\"}" +msgstr "" + #: superset/views/dynamic_plugins.py:52 msgid "" "A full URL pointing to the location of the built plugin (could be hosted " @@ -876,8 +879,7 @@ msgid "A list of tags that have been applied to this chart." msgstr "Eine Liste der Tags, die auf dieses Diagramm angewendet wurden." #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 -msgid "" -"A list of users who can alter the chart. Searchable by name or username." +msgid "A list of users who can alter the chart. Searchable by name or username." msgstr "" "Eine Liste der Benutzer*innen, die das Diagramm ändern können. " "Durchsuchbar nach Name oder Benutzer*innenname." @@ -888,11 +890,11 @@ msgstr "Eine Weltkarte, die Werte in verschiedenen Ländern anzeigen kann." #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:27 msgid "" -"A map that takes rendering circles with a variable radius at latitude/" -"longitude coordinates" +"A map that takes rendering circles with a variable radius at " +"latitude/longitude coordinates" msgstr "" -"Eine Karte, die Kreise mit einem variablen Radius bei Breiten-/Längengrad-" -"Koordinaten darstellt" +"Eine Karte, die Kreise mit einem variablen Radius bei Breiten" +"-/Längengrad-Koordinaten darstellt" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:230 #: superset-frontend/src/explore/controls.jsx:237 @@ -902,8 +904,8 @@ msgstr "Eine Metrik, die für die Farbe verwendet werden soll" #: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 msgid "" "A polar coordinate chart where the circle is broken into wedges of equal " -"angle, and the value represented by any wedge is illustrated by its area, " -"rather than its radius or sweep angle." +"angle, and the value represented by any wedge is illustrated by its area," +" rather than its radius or sweep angle." msgstr "" "Ein Polarkoordinatendiagramm, in dem der Kreis in Sektoren mit gleichem " "Winkel unterteilt ist und der Wert, der durch einen Sektor dargestellt " @@ -916,8 +918,7 @@ msgstr "Eine sprechende URL für Ihr Dashboard" #: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:45 #: superset-frontend/src/explore/controls.jsx:113 -msgid "" -"A reference to the [Time] configuration, taking granularity into account" +msgid "A reference to the [Time] configuration, taking granularity into account" msgstr "" "Ein Verweis auf die [Time]-Konfiguration unter Berücksichtigung der " "Granularität" @@ -927,17 +928,16 @@ msgstr "" msgid "A report named \"%(name)s\" already exists" msgstr "Ein Bericht mit dem Namen \"%(name)s\" ist bereits vorhanden" -#: superset-frontend/src/explore/components/SaveModal.tsx:333 +#: superset-frontend/src/explore/components/SaveModal.tsx:368 msgid "A reusable dataset will be saved with your chart." -msgstr "" -"Ein wiederverwendbarer Datensatz wird mit Ihrem Diagramm gespeichert." +msgstr "Ein wiederverwendbarer Datensatz wird mit Ihrem Diagramm gespeichert." -#: superset-frontend/src/components/ReportModal/index.tsx:309 +#: superset-frontend/src/components/ReportModal/index.tsx:308 msgid "A screenshot of the dashboard will be sent to your email at" msgstr "Ein Screenshot des Dashboards wird an Ihre E-Mail-Adresse gesendet" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 -#: superset/connectors/sqla/views.py:458 +#: superset/connectors/sqla/views.py:365 msgid "" "A set of parameters that become available in the query using Jinja " "templating syntax" @@ -947,8 +947,7 @@ msgstr "" #: superset/common/query_context_processor.py:417 msgid "A time column must be specified when using a Time Comparison." -msgstr "" -"Bei Verwendung eines Zeitvergleichs muss eine Zeitspalte angegeben werden." +msgstr "Bei Verwendung eines Zeitvergleichs muss eine Zeitspalte angegeben werden." #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 msgid "" @@ -956,8 +955,8 @@ msgid "" "groups vary over time. Each group is visualized using a different color." msgstr "" "Ein Zeitreihendiagramm, das visualisiert, wie sich eine verwandte Metrik " -"aus mehreren Gruppen im Laufe der Zeit ändert. Jede Gruppe wird mit einer " -"anderen Farbe visualisiert." +"aus mehreren Gruppen im Laufe der Zeit ändert. Jede Gruppe wird mit einer" +" anderen Farbe visualisiert." #: superset/reports/commands/exceptions.py:228 msgid "A timeout occurred while executing the query." @@ -987,8 +986,8 @@ msgstr "ANWENDEN" msgid "APR" msgstr "APR" -#: superset-frontend/src/pages/DatabaseList/index.tsx:312 -#: superset-frontend/src/pages/DatabaseList/index.tsx:478 +#: superset-frontend/src/pages/DatabaseList/index.tsx:323 +#: superset-frontend/src/pages/DatabaseList/index.tsx:489 msgid "AQE" msgstr "AQE" @@ -1015,7 +1014,7 @@ msgstr "Über" msgid "Access" msgstr "Zugang" -#: superset/initialization/__init__.py:431 +#: superset/initialization/__init__.py:425 msgid "Access requests" msgstr "Zugriffsanforderungen" @@ -1027,7 +1026,7 @@ msgstr "Der Zugriff auf Benutzeraktivitätsdaten ist eingeschränkt" msgid "Access token" msgstr "Zugangs-Token" -#: superset/views/core.py:317 +#: superset/views/core.py:318 msgid "Access was requested" msgstr "Zugang wurde beantragt" @@ -1035,7 +1034,7 @@ msgstr "Zugang wurde beantragt" msgid "Action" msgstr "Aktion" -#: superset/initialization/__init__.py:393 +#: superset/initialization/__init__.py:387 msgid "Action Log" msgstr "Aktionsprotokoll" @@ -1046,9 +1045,10 @@ msgstr "Aktionsprotokoll" #: superset-frontend/src/pages/ChartList/index.tsx:569 #: superset-frontend/src/pages/CssTemplateList/index.tsx:229 #: superset-frontend/src/pages/DashboardList/index.tsx:477 -#: superset-frontend/src/pages/DatabaseList/index.tsx:448 -#: superset-frontend/src/pages/DatasetList/index.tsx:488 +#: superset-frontend/src/pages/DatabaseList/index.tsx:459 +#: superset-frontend/src/pages/DatasetList/index.tsx:499 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:327 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:216 #: superset-frontend/src/pages/SavedQueryList/index.tsx:437 #: superset-frontend/src/pages/Tags/index.tsx:171 msgid "Actions" @@ -1078,18 +1078,19 @@ msgstr "Istwert" msgid "Actual values" msgstr "Aktuelle Werte" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:35 -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 #: superset-frontend/src/explore/controls.jsx:78 #: superset-frontend/src/explore/controls.jsx:101 msgid "Adaptive formatting" msgstr "Adaptative Formatierung" -#: superset-frontend/src/components/ReportModal/index.tsx:229 +#: superset-frontend/src/components/ReportModal/index.tsx:228 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 #: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 #: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 msgid "Add" msgstr "Hinzufügen" @@ -1109,7 +1110,7 @@ msgstr "CSS Vorlagen" msgid "Add Chart" msgstr "Diagramm hinzufügen" -#: superset/connectors/sqla/views.py:74 +#: superset/connectors/sqla/views.py:73 msgid "Add Column" msgstr "Spalte einfügen" @@ -1125,7 +1126,7 @@ msgstr "Datenbank hinzufügen" msgid "Add Log" msgstr "Protokoll hinzufügen" -#: superset/connectors/sqla/views.py:209 +#: superset/connectors/sqla/views.py:208 msgid "Add Metric" msgstr "Metrik hinzufügen" @@ -1133,9 +1134,10 @@ msgstr "Metrik hinzufügen" msgid "Add Report" msgstr "Report hinzufügen" -#: superset/connectors/sqla/views.py:292 -msgid "Add Row level security filter" -msgstr "Sicherheitsfilter auf Zeilenebene hinzufügen" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +#, fuzzy +msgid "Add Rule" +msgstr "Fehlerhafte Formel." #: superset/views/sql_lab/views.py:54 msgid "Add Saved Query" @@ -1149,11 +1151,11 @@ msgstr "Plugin hinzufügen" msgid "Add a dataset" msgstr "Datensatz hinzufügen" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:262 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:272 msgid "Add a new tab" msgstr "Neu Registerkarte hinzufügen" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:286 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:296 msgid "Add a new tab to create SQL Query" msgstr "Neue Registerkarte zum Erstellen einer SQL-Abfrage hinzufügen" @@ -1183,28 +1185,31 @@ msgstr "Anmerkungen hinzufügen" msgid "Add annotation layer" msgstr "Anmerkungsebene hinzufügen" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:300 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:306 msgid "Add calculated columns to dataset in \"Edit datasource\" modal" msgstr "" "Fügen Sie berechnete Spalten im Dialog \"Datenquelle bearbeiten\" zum " "Datensatz hinzu" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:297 -msgid "" -"Add calculated temporal columns to dataset in \"Edit datasource\" modal" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:303 +msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" msgstr "" -"Fügen Sie berechnete Zeitspalten im Dialog \"Datenquelle bearbeiten\" zum " -"Datensatz hinzu" +"Fügen Sie berechnete Zeitspalten im Dialog \"Datenquelle bearbeiten\" zum" +" Datensatz hinzu" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:167 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:197 msgid "Add cross-filter" msgstr "Kreuzfilter hinzufügen" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 +msgid "Add custom scoping" +msgstr "" + #: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 msgid "Add delivery method" msgstr "Übermittlungsmethode hinzufügen" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:330 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 msgid "Add extra connection information." msgstr "Zusätzliche Verbindungsinformationen hinzufügen" @@ -1288,7 +1293,7 @@ msgstr "Name des Diagramms hinzufügen" msgid "Add the name of the dashboard" msgstr "Name des Dashboards hinzufügen" -#: superset-frontend/src/explore/components/SaveModal.tsx:351 +#: superset-frontend/src/explore/components/SaveModal.tsx:386 msgid "Add to dashboard" msgstr "Zu Dashboard hinzufügen" @@ -1313,7 +1318,7 @@ msgstr[1] "Zu %s Dashboards hinzugefügt" msgid "Additional Parameters" msgstr "Zusätzliche Parameter" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1787 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1843 msgid "Additional fields may be required" msgstr "Eventuell sind weitere Felder erforderlich" @@ -1325,24 +1330,24 @@ msgstr "Zusätzliche Information" msgid "Additional metadata" msgstr "Zusätzliche Metadaten" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:54 msgid "Additional padding for legend." msgstr "Zusätzliche Einrückung für Legende." -#: superset/db_engine_specs/base.py:1847 -#: superset/db_engine_specs/clickhouse.py:214 +#: superset/db_engine_specs/base.py:1885 +#: superset/db_engine_specs/clickhouse.py:221 msgid "Additional parameters" msgstr "Zusätzliche Parameter" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:444 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 msgid "Additional settings." msgstr "Zusätzliche Einstellungen" #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 msgid "Additional text to add before or after the value, e.g. unit" msgstr "" -"Zusätzlicher Text, der vor oder nach dem Wert hinzugefügt werden kann, z. " -"B. Einheit" +"Zusätzlicher Text, der vor oder nach dem Wert hinzugefügt werden kann, z." +" B. Einheit" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:39 @@ -1351,17 +1356,18 @@ msgstr "" msgid "Additive" msgstr "Additiv" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:75 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 msgid "Adjust how this database will interact with SQL Lab." msgstr "Anpassen, wie diese Datenbank mit SQL Lab interagiert." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:221 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:231 msgid "Adjust performance settings of this database." msgstr "Leistungseinstellungen dieser Datenbank anpassen." #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:132 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:91 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:127 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:93 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 @@ -1370,7 +1376,7 @@ msgstr "Leistungseinstellungen dieser Datenbank anpassen." #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:939 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:771 #: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1811 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 msgid "Advanced" msgstr "Erweitert" @@ -1468,7 +1474,6 @@ msgstr "" "Aggregatfunktion, die auf die Liste der Punkte in jedem Cluster " "angewendet wird, um die Clusterbezeichnung zu erstellen." -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:63 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:202 msgid "" "Aggregate function to apply when pivoting and computing the total rows " @@ -1479,18 +1484,21 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:27 msgid "" -"Aggregates data within the boundary of grid cells and maps the aggregated " -"values to a dynamic color scale" +"Aggregates data within the boundary of grid cells and maps the aggregated" +" values to a dynamic color scale" msgstr "" "Aggregiert Daten innerhalb der Grenzen von Rasterzellen und ordnet die " "aggregierten Werte einer dynamischen Farbskala zu" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +#, fuzzy +msgid "Aggregation" +msgstr "Aggregat" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 msgid "Aggregation function" msgstr "Aggregationsfunktion" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:593 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:162 msgid "Alert" msgstr "Alarm" @@ -1554,8 +1562,8 @@ msgstr "Die Alarm-Abfrage hat mehr als eine Zeile zurückgegeben." #, python-format msgid "Alert query returned more than one row. %s rows returned" msgstr "" -"Die Alarmabfrage hat mehr als eine Zeile zurückgegeben. %s zurückgegebene " -"Zeilen" +"Die Alarmabfrage hat mehr als eine Zeile zurückgegeben. %s zurückgegebene" +" Zeilen" #: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 msgid "Alert running" @@ -1573,7 +1581,7 @@ msgstr "Konfigurationsfehler des Alarm-Validators." msgid "Alerts" msgstr "Alarme" -#: superset/initialization/__init__.py:410 +#: superset/initialization/__init__.py:404 msgid "Alerts & Reports" msgstr "Alarme und Reporte" @@ -1599,8 +1607,8 @@ msgstr "Ausrichten +/-" #: superset-frontend/src/pages/DashboardList/index.tsx:528 #: superset-frontend/src/pages/DashboardList/index.tsx:550 #: superset-frontend/src/pages/DashboardList/index.tsx:600 -#: superset-frontend/src/pages/DatabaseList/index.tsx:465 -#: superset-frontend/src/pages/DatabaseList/index.tsx:485 +#: superset-frontend/src/pages/DatabaseList/index.tsx:476 +#: superset-frontend/src/pages/DatabaseList/index.tsx:496 #: superset-frontend/src/pages/Home/index.tsx:205 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:354 #: superset-frontend/src/pages/SavedQueryList/index.tsx:453 @@ -1609,25 +1617,29 @@ msgid "All" msgstr "Alle" #: superset-frontend/src/pages/AllEntities/index.tsx:76 -#: superset/initialization/__init__.py:376 +#: superset/initialization/__init__.py:370 msgid "All Entities" msgstr "Alle Entitäten" #: superset/annotation_layers/annotations/filters.py:28 #: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 #: superset/css_templates/filters.py:28 -#: superset/queries/saved_queries/filters.py:31 -#: superset/reports/filters.py:44 +#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 msgid "All Text" msgstr "Gesamter Texte" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 #: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:69 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 #: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:85 #: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:128 msgid "All charts" msgstr "Alle Diagramme" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 +msgid "All charts/global scoping" +msgstr "" + #: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 msgid "All filters" msgstr "Alle Filter" @@ -1637,7 +1649,7 @@ msgstr "Alle Filter" msgid "All filters (%(filterCount)d)" msgstr "Alle Filter (%(filterCount)d)" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:49 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 msgid "All panels" msgstr "Alle Bereiche" @@ -1645,7 +1657,7 @@ msgstr "Alle Bereiche" msgid "All panels with this column will be affected by this filter" msgstr "Alle Bereiche mit dieser Spalte sind von diesem Filter betroffen" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:107 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 #: superset/views/database/mixins.py:184 msgid "Allow CREATE TABLE AS" msgstr "CREATE TABLE AS zulassen" @@ -1654,7 +1666,7 @@ msgstr "CREATE TABLE AS zulassen" msgid "Allow CREATE TABLE AS option in SQL Lab" msgstr "Option CREATE TABLE AS in SQL Lab zulassen" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:121 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 #: superset/views/database/mixins.py:185 msgid "Allow CREATE VIEW AS" msgstr "CREATE VIEW AS zulassen" @@ -1667,7 +1679,7 @@ msgstr "Option CREATE VIEW AS in SQL Lab zulassen" msgid "Allow Csv Upload" msgstr "CSV-Upload zulassen" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 #: superset/views/database/mixins.py:186 msgid "Allow DML" msgstr "DML zulassen" @@ -1676,15 +1688,15 @@ msgstr "DML zulassen" msgid "Allow columns to be rearranged" msgstr "Neuanordnung von Spalten zulassen" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:110 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 msgid "Allow creation of new tables based on queries" msgstr "Erstellen neuer Tabellen basierend auf Abfragen zulassen" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:124 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 msgid "Allow creation of new views based on queries" msgstr "Erstellen neuer Ansichten basierend auf Abfragen zulassen" -#: superset-frontend/src/pages/DatabaseList/index.tsx:329 +#: superset-frontend/src/pages/DatabaseList/index.tsx:340 msgid "Allow data manipulation language" msgstr "DML (Datenmanipulationssprache) zulassen" @@ -1697,11 +1709,11 @@ msgstr "" "anzuordnen. Beachten Sie, dass ihre Änderungen beim nächsten Öffnen des " "Diagramms nicht beibehalten werden." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:411 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:421 msgid "Allow file uploads to database" msgstr "Datei-Uploads in die Datenbank zulassen" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:157 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 msgid "" "Allow manipulation of the database using non-SELECT statements such as " "UPDATE, DELETE, CREATE, etc." @@ -1721,18 +1733,18 @@ msgstr "Knotenauswahl zulassen" msgid "Allow sending multiple polygons as a filter event" msgstr "Senden mehrerer Polygone als Filterereignis zulassen" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:186 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 msgid "Allow this database to be explored" msgstr "Abfragen dieser Datenbank in SQL Lab zulassen" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:91 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 msgid "Allow this database to be queried in SQL Lab" msgstr "Abfragen dieser Datenbank in SQL Lab zulassen" #: superset/views/database/mixins.py:114 msgid "" -"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in " -"SQL Lab" +"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" +" SQL Lab" msgstr "" "Benutzer*innen das Ausführen von Nicht-SELECT-Anweisungen (UPDATE, " "DELETE, CREATE, ...) in SQL Lab erlauben" @@ -1755,8 +1767,8 @@ msgid "" "around each box visualize the min, max, range, and outer 2 quartiles." msgstr "" "Diese Visualisierung, die auch als Box-Whisker-Plot bezeichnet wird, " -"vergleicht die Verteilungen einer Metrik über mehrere Gruppen hinweg. Der " -"Kasten in der Mitte stellt den Mittelwert, den Median und die inneren 2 " +"vergleicht die Verteilungen einer Metrik über mehrere Gruppen hinweg. Der" +" Kasten in der Mitte stellt den Mittelwert, den Median und die inneren 2 " "Quartile dar. Die sogenannten „Whisker“ um jede Box visualisieren die " "Min-, Max-, Range- und äußeren 2 Quartile." @@ -1773,7 +1785,7 @@ msgstr "Ein Fehler ist aufgetreten" msgid "An alert named \"%(name)s\" already exists" msgstr "Es existiert bereits ein Alarm mit dem Namen \"%(name)s\"" -#: superset/common/query_context_processor.py:326 superset/viz.py:1447 +#: superset/common/query_context_processor.py:326 superset/viz.py:1352 msgid "" "An enclosed time range (both start and end) must be specified when using " "a Time Comparison." @@ -1781,7 +1793,7 @@ msgstr "" "Bei Verwendung eines Zeitvergleichs muss ein geschlossener Zeitbereich " "(sowohl Anfang als auch Ende) angegeben werden." -#: superset/databases/schemas.py:285 +#: superset/databases/schemas.py:289 msgid "" "An engine must be specified when passing individual parameters to a " "database." @@ -1790,7 +1802,7 @@ msgstr "" "angegeben werden." #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:791 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:141 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:183 #: superset-frontend/src/components/Tags/utils.tsx:67 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:127 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:109 @@ -1805,7 +1817,7 @@ msgstr "Ein Fehler ist aufgetreten" msgid "An error occurred" msgstr "Ein Fehler ist aufgetreten" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:317 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:323 msgid "An error occurred saving dataset" msgstr "Beim Speichern des Datensatz ist ein Fehler aufgetreten" @@ -1816,7 +1828,7 @@ msgstr "Beim Speichern des Datensatz ist ein Fehler aufgetreten" msgid "An error occurred while accessing the value." msgstr "Beim Zugriff auf den Wert ist ein Fehler aufgetreten." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1368 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1360 msgid "" "An error occurred while collapsing the table schema. Please contact your " "administrator." @@ -1824,13 +1836,13 @@ msgstr "" "Beim Reduzieren des Tabellenschemas ist ein Fehler aufgetreten. Wenden " "Sie sich an Ihre*n Administrator*in." -#: superset-frontend/src/views/CRUD/hooks.ts:304 +#: superset-frontend/src/views/CRUD/hooks.ts:308 #, python-format msgid "An error occurred while creating %ss: %s" msgstr "Beim Erstellen von %s ist ein Fehler aufgetreten: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1529 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1551 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1530 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1552 msgid "An error occurred while creating the data source" msgstr "Beim Erstellen der Datenquelle ist ein Fehler aufgetreten" @@ -1846,13 +1858,13 @@ msgstr "Beim Erstellen des Werts ist ein Fehler aufgetreten." msgid "An error occurred while deleting the value." msgstr "Beim Löschen des Werts ist ein Fehler aufgetreten." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1344 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1336 msgid "" "An error occurred while expanding the table schema. Please contact your " "administrator." msgstr "" -"Beim Erweitern des Tabellenschemas ist ein Fehler aufgetreten. Wenden Sie " -"sich an Ihre*n Administrator*in." +"Beim Erweitern des Tabellenschemas ist ein Fehler aufgetreten. Wenden Sie" +" sich an Ihre*n Administrator*in." #: superset-frontend/src/views/CRUD/hooks.ts:106 #, python-format @@ -1860,8 +1872,8 @@ msgid "An error occurred while fetching %s info: %s" msgstr "Beim Abrufen von %s ist ein Fehler aufgetreten: %s" #: superset-frontend/src/views/CRUD/hooks.ts:174 -#: superset-frontend/src/views/CRUD/hooks.ts:261 -#: superset-frontend/src/views/CRUD/hooks.ts:349 +#: superset-frontend/src/views/CRUD/hooks.ts:265 +#: superset-frontend/src/views/CRUD/hooks.ts:353 #, python-format msgid "An error occurred while fetching %ss: %s" msgstr "Beim Abrufen von %s ist ein Fehler aufgetreten: %s" @@ -1874,15 +1886,15 @@ msgstr "Beim Abrufen verfügbarer CSS-Vorlagen ist ein Fehler aufgetreten" #, python-format msgid "An error occurred while fetching chart created by values: %s" msgstr "" -"Beim Abrufen des Diagramms, das durch die folgenden Werte erstellt wurde, " -"ist ein Fehler aufgetreten: %s" +"Beim Abrufen des Diagramms, das durch die folgenden Werte erstellt wurde," +" ist ein Fehler aufgetreten: %s" #: superset-frontend/src/pages/ChartList/index.tsx:619 #, python-format msgid "An error occurred while fetching chart owners values: %s" msgstr "" -"Beim Abrufen von Diagrammbesitzer*innenwerten ist ein Fehler aufgetreten: " -"%s" +"Beim Abrufen von Diagrammbesitzer*innenwerten ist ein Fehler aufgetreten:" +" %s" #: superset-frontend/src/pages/AlertReportList/index.tsx:479 #, python-format @@ -1913,11 +1925,10 @@ msgstr "Beim Abrufen von Dashboards ist ein Fehler aufgetreten" msgid "An error occurred while fetching dashboards: %s" msgstr "Beim Abrufen von Dashboards ist ein Fehler aufgetreten: %s" -#: superset-frontend/src/pages/DatabaseList/index.tsx:145 +#: superset-frontend/src/pages/DatabaseList/index.tsx:156 #, python-format msgid "An error occurred while fetching database related data: %s" -msgstr "" -"Beim Abrufen datenbankbezogener Daten ist ein Fehler aufgetreten: %s" +msgstr "Beim Abrufen datenbankbezogener Daten ist ein Fehler aufgetreten: %s" #: superset-frontend/src/pages/QueryHistoryList/index.tsx:360 #, python-format @@ -1930,57 +1941,56 @@ msgstr "Beim Abrufen von Datenbankwerten ist ein Fehler aufgetreten: %s" #, python-format msgid "An error occurred while fetching dataset datasource values: %s" msgstr "" -"Beim Abrufen von Datassatz-Datenquellenwerten ist ein Fehler aufgetreten: " -"%s" +"Beim Abrufen von Datassatz-Datenquellenwerten ist ein Fehler aufgetreten:" +" %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:510 +#: superset-frontend/src/pages/DatasetList/index.tsx:521 #, python-format msgid "An error occurred while fetching dataset owner values: %s" msgstr "" "Beim Abrufen von Angaben zum/zur Datensatz-Besitzer*in ist ein Fehler " "aufgetreten: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:222 +#: superset-frontend/src/pages/DatasetList/index.tsx:233 msgid "An error occurred while fetching dataset related data" msgstr "Fehler beim Abrufen von Daten des Datensatzes" -#: superset-frontend/src/pages/DatasetList/index.tsx:242 +#: superset-frontend/src/pages/DatasetList/index.tsx:253 #, python-format msgid "An error occurred while fetching dataset related data: %s" msgstr "Beim Abrufen von Datensatzdaten ist ein Fehler aufgetreten: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:530 +#: superset-frontend/src/pages/DatasetList/index.tsx:541 #, python-format msgid "An error occurred while fetching datasets: %s" msgstr "Beim Abrufen von Datensätzen ist ein Fehler aufgetreten: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1581 +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx:120 msgid "An error occurred while fetching function names." msgstr "Fehler bei Abruf von Funktionsnamen." #: superset-frontend/src/pages/AlertReportList/index.tsx:462 #, python-format msgid "An error occurred while fetching owners values: %s" -msgstr "" -"Beim Abrufen der Werte der Besitzer*innen ist ein Fehler aufgetreten: %s" +msgstr "Beim Abrufen der Werte der Besitzer*innen ist ein Fehler aufgetreten: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:546 +#: superset-frontend/src/pages/DatasetList/index.tsx:557 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:378 #: superset-frontend/src/pages/SavedQueryList/index.tsx:480 #, python-format msgid "An error occurred while fetching schema values: %s" msgstr "Beim Abrufen von Schemawerten ist ein Fehler aufgetreten: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:799 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:795 msgid "An error occurred while fetching tab state" msgstr "Beim Abrufen des Registerkartenstatus ist ein Fehler aufgetreten" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1199 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1224 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1191 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1216 msgid "An error occurred while fetching table metadata" msgstr "Beim Abrufen von Tabellen-Metadaten ist ein Fehler aufgetreten" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1296 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1288 msgid "" "An error occurred while fetching table metadata. Please contact your " "administrator." @@ -2000,7 +2010,7 @@ msgstr "" msgid "An error occurred while fetching user values: %s" msgstr "Beim Abrufen von Schemawerten ist ein Fehler aufgetreten: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:835 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:831 msgid "" "An error occurred while hiding the left bar. Please contact your " "administrator." @@ -2008,17 +2018,22 @@ msgstr "" "Beim Ausblenden der linken Leiste ist ein Fehler aufgetreten. Wenden Sie " "sich an Ihre*n Administrator*in." -#: superset-frontend/src/views/CRUD/hooks.ts:502 -#: superset-frontend/src/views/CRUD/hooks.ts:518 +#: superset-frontend/src/views/CRUD/hooks.ts:506 +#: superset-frontend/src/views/CRUD/hooks.ts:522 #, python-format msgid "An error occurred while importing %s: %s" msgstr "Beim Importieren von %s ist ein Fehler aufgetreten: %s" +#: superset-frontend/src/explore/components/SaveModal.tsx:135 +#, fuzzy +msgid "An error occurred while loading dashboard information." +msgstr "Beim Abrufen von Dashboards ist ein Fehler aufgetreten" + #: superset-frontend/src/components/Chart/chartAction.js:579 msgid "An error occurred while loading the SQL" msgstr "Beim Laden des SQL ist ein Fehler aufgetreten" -#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:332 +#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:325 msgid "An error occurred while opening Explore" msgstr "Beim Öffnen von Explore ist ein Fehler aufgetreten" @@ -2030,35 +2045,32 @@ msgstr "Beim Parsen des Schlüssels ist ein Fehler aufgetreten." msgid "An error occurred while pruning logs " msgstr "Beim Kürzen von Protokollen ist ein Fehler aufgetreten " -#: superset-frontend/src/SqlLab/actions/sqlLab.js:892 -msgid "" -"An error occurred while removing query. Please contact your administrator." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:888 +msgid "An error occurred while removing query. Please contact your administrator." msgstr "" -"Beim Entfernen der Abfrage ist ein Fehler aufgetreten. Wenden Sie sich an " -"Ihre*n Administrator*in." +"Beim Entfernen der Abfrage ist ein Fehler aufgetreten. Wenden Sie sich an" +" Ihre*n Administrator*in." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:857 -msgid "" -"An error occurred while removing tab. Please contact your administrator." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:853 +msgid "An error occurred while removing tab. Please contact your administrator." msgstr "" "Beim Entfernen der Registerkarte ist ein Fehler aufgetreten. Wenden Sie " "sich an Ihre*n Administrator*in." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1396 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1388 msgid "" "An error occurred while removing the table schema. Please contact your " "administrator." msgstr "" -"Beim Entfernen des Tabellenschemas ist ein Fehler aufgetreten. Wenden Sie " -"sich an Ihre*n Administrator*in." +"Beim Entfernen des Tabellenschemas ist ein Fehler aufgetreten. Wenden Sie" +" sich an Ihre*n Administrator*in." #: superset-frontend/src/components/Chart/chartReducer.ts:96 #, python-format msgid "An error occurred while rendering the visualization: %s" -msgstr "" -"Bei der Darstellung dieser Visualisierung ist ein Fehler aufgetreten: %s" +msgstr "Bei der Darstellung dieser Visualisierung ist ein Fehler aufgetreten: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:710 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:706 msgid "" "An error occurred while setting the active tab. Please contact your " "administrator." @@ -2066,7 +2078,7 @@ msgstr "" "Beim Festlegen der aktiven Registerkarte ist ein Fehler aufgetreten. " "Wenden Sie sich an Ihre*n Administrator*in." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:975 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:967 msgid "" "An error occurred while setting the tab autorun. Please contact your " "administrator." @@ -2074,24 +2086,24 @@ msgstr "" "Beim Festlegen der Registerkarte Autorun ist ein Fehler aufgetreten. " "Wenden Sie sich an Ihre*n Administrator*in." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:915 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:911 msgid "" "An error occurred while setting the tab database ID. Please contact your " "administrator." msgstr "" -"Beim Festlegen der Registerkartendatenbank-ID ist ein Fehler aufgetreten. " -"Wenden Sie sich an Ihre*n Administrator*in." +"Beim Festlegen der Registerkartendatenbank-ID ist ein Fehler aufgetreten." +" Wenden Sie sich an Ihre*n Administrator*in." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1004 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1128 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:996 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1120 msgid "" "An error occurred while setting the tab name. Please contact your " "administrator." msgstr "" -"Beim Festlegen des Registerkartennamens ist ein Fehler aufgetreten. Bitte " -"wenden Sie sich an Ihren Administrator." +"Beim Festlegen des Registerkartennamens ist ein Fehler aufgetreten. Bitte" +" wenden Sie sich an Ihren Administrator." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:946 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:942 msgid "" "An error occurred while setting the tab schema. Please contact your " "administrator." @@ -2099,7 +2111,7 @@ msgstr "" "Beim Festlegen des Registerkartenschemas ist ein Fehler aufgetreten. " "Wenden Sie sich an Ihre*n Administrator*in." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1154 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1146 msgid "" "An error occurred while setting the tab template parameters. Please " "contact your administrator." @@ -2111,8 +2123,8 @@ msgstr "" msgid "An error occurred while starring this chart" msgstr "Beim Favorisieren des Diagramms ist ein Fehler aufgetreten." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:251 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:297 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:255 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:301 msgid "" "An error occurred while storing the latest query id in the backend. " "Please contact your administrator if this problem persists." @@ -2121,7 +2133,7 @@ msgstr "" "aufgetreten. Wenden Sie sich an Ihre*n Administrator*in, wenn dieses " "Problem weiterhin besteht." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1095 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1087 msgid "" "An error occurred while storing your query in the backend. To avoid " "losing your changes, please save your query using the \"Save Query\" " @@ -2144,9 +2156,8 @@ msgstr "Beim Erhöhen des Werts ist ein Fehler aufgetreten." msgid "An unexpected error occurred" msgstr "Ein unerwarteter Fehler ist aufgetreten" -#: superset/views/core.py:734 -msgid "" -"An unknown error occurred. Please contact your Superset administrator" +#: superset/views/core.py:745 +msgid "An unknown error occurred. Please contact your Superset administrator" msgstr "" "Ein unbekannter Fehler ist aufgetreten. Wenden Sie sich an Ihre*n " "Superset-Administrator*in" @@ -2179,7 +2190,7 @@ msgstr "Anmerkungs-Layer %s" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:127 -#: superset/initialization/__init__.py:420 +#: superset/initialization/__init__.py:414 msgid "Annotation Layers" msgstr "Anmerkungsebenen" @@ -2327,7 +2338,8 @@ msgstr "Anmerkungen konnten nicht gelöscht werden." #: superset-frontend/src/pages/DashboardList/index.tsx:504 #: superset-frontend/src/pages/DashboardList/index.tsx:572 #: superset-frontend/src/pages/DashboardList/index.tsx:586 -#: superset-frontend/src/pages/DatasetList/index.tsx:570 +#: superset-frontend/src/pages/DatasetList/index.tsx:581 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:260 msgid "Any" msgstr "Beliebig" @@ -2346,23 +2358,22 @@ msgstr "" "Jede hier ausgewählte Farbpalette überschreibt die Farben, die auf die " "einzelnen Diagramme dieses Dashboards angewendet werden" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:953 -msgid "" -"Any databases that allow connections via SQL Alchemy URIs can be added. " +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1008 +msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " msgstr "" -"Alle Datenbanken, die Verbindungen über SQL Alchemy URIs zulassen, können " -"hinzugefügt werden. " +"Alle Datenbanken, die Verbindungen über SQL Alchemy URIs zulassen, können" +" hinzugefügt werden. " -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:967 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1022 msgid "" "Any databases that allow connections via SQL Alchemy URIs can be added. " "Learn about how to connect a database driver " msgstr "" -"Alle Datenbanken, die Verbindungen über SQL Alchemy URIs zulassen, können " -"hinzugefügt werden. Informationen zum Verbinden eines Datenbanktreibers " +"Alle Datenbanken, die Verbindungen über SQL Alchemy URIs zulassen, können" +" hinzugefügt werden. Informationen zum Verbinden eines Datenbanktreibers " -#: superset/views/database/forms.py:169 superset/views/database/forms.py:326 -#: superset/views/database/forms.py:457 +#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 +#: superset/views/database/forms.py:467 msgid "Append" msgstr "Anhängen" @@ -2381,7 +2392,7 @@ msgstr "Angewendete Filter (%d)" msgid "Applied filters: %s" msgstr "Angewendete Filter: %s" -#: superset/viz.py:246 +#: superset/viz.py:250 msgid "" "Applied rolling window did not return any data. Please make sure the " "source query satisfies the minimum periods defined in the rolling window." @@ -2393,11 +2404,16 @@ msgstr "" #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:856 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:228 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:476 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:479 msgid "Apply" msgstr "Übernehmen" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:100 +#, fuzzy +msgid "Apply conditional color formatting to metric" +msgstr "Bedingten Farbformatierung auf Metriken anwenden" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:386 msgid "Apply conditional color formatting to metrics" msgstr "Bedingten Farbformatierung auf Metriken anwenden" @@ -2432,8 +2448,7 @@ msgstr "Bogen" #: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 msgid "Are you sure you intend to overwrite the following values?" -msgstr "" -"Sind Sie sicher, dass Sie die folgenden Werte überschreiben möchten?" +msgstr "Sind Sie sicher, dass Sie die folgenden Werte überschreiben möchten?" #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 msgid "Are you sure you want to cancel?" @@ -2445,6 +2460,7 @@ msgstr "Möchten Sie wirklich abbrechen?" #: superset-frontend/src/pages/ChartList/index.tsx:509 #: superset-frontend/src/pages/DashboardList/index.tsx:418 #: superset-frontend/src/pages/DashboardList/index.tsx:739 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:173 #: superset-frontend/src/pages/Tags/index.tsx:144 msgid "Are you sure you want to delete" msgstr "Wollen Sie wirklich löschen" @@ -2471,7 +2487,7 @@ msgstr "Möchten Sie die ausgewählten Diagramme wirklich löschen?" msgid "Are you sure you want to delete the selected dashboards?" msgstr "Möchten Sie die ausgewählten Dashboards wirklich löschen?" -#: superset-frontend/src/pages/DatasetList/index.tsx:741 +#: superset-frontend/src/pages/DatasetList/index.tsx:763 msgid "Are you sure you want to delete the selected datasets?" msgstr "Möchten Sie die ausgewählten Datensätze wirklich löschen?" @@ -2483,6 +2499,11 @@ msgstr "Möchten Sie die ausgewählten Ebenen wirklich löschen?" msgid "Are you sure you want to delete the selected queries?" msgstr "Möchten Sie die ausgewählten Abfragen wirklich löschen?" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:305 +#, fuzzy +msgid "Are you sure you want to delete the selected rules?" +msgstr "Möchten Sie die ausgewählten Ebenen wirklich löschen?" + #: superset-frontend/src/pages/Tags/index.tsx:282 msgid "Are you sure you want to delete the selected tags?" msgstr "Möchten Sie die ausgewählten Tags wirklich löschen?" @@ -2491,7 +2512,7 @@ msgstr "Möchten Sie die ausgewählten Tags wirklich löschen?" msgid "Are you sure you want to delete the selected templates?" msgstr "Möchten Sie die ausgewählten Vorlagen wirklich löschen?" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:426 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:434 msgid "Are you sure you want to overwrite this dataset?" msgstr "Möchten Sie diesen Datensatz wirklich überschreiben?" @@ -2499,7 +2520,7 @@ msgstr "Möchten Sie diesen Datensatz wirklich überschreiben?" msgid "Are you sure you want to proceed?" msgstr "Möchten Sie wirklich fortfahren?" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:174 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:216 msgid "Are you sure you want to save and apply changes?" msgstr "Möchten Sie die Änderungen wirklich speichern und anwenden?" @@ -2541,7 +2562,7 @@ msgstr "Pfeil" msgid "Assign a set of parameters as" msgstr "Eines Satz von Parametern zuweisen" -#: superset/connectors/sqla/views.py:476 +#: superset/connectors/sqla/views.py:383 msgid "Associated Charts" msgstr "Zugehörige Diagramme" @@ -2549,9 +2570,9 @@ msgstr "Zugehörige Diagramme" msgid "Async Execution" msgstr "Asynchrone Ausführung" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:295 -#: superset-frontend/src/pages/DatabaseList/index.tsx:309 -#: superset-frontend/src/pages/DatabaseList/index.tsx:475 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:305 +#: superset-frontend/src/pages/DatabaseList/index.tsx:320 +#: superset-frontend/src/pages/DatabaseList/index.tsx:486 msgid "Asynchronous query execution" msgstr "Asynchrone Abfrageausführung" @@ -2568,7 +2589,7 @@ msgstr "Auto" msgid "Auto Zoom" msgstr "Auto-Zoom" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:530 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 msgid "Autocomplete" msgstr "Autovervollständigung" @@ -2593,7 +2614,7 @@ msgstr "Verfügbare Sortiermodi:" msgid "Average" msgstr "Durchschnitt" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:233 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 msgid "Average value" msgstr "Durchschnittswert" @@ -2626,10 +2647,10 @@ msgstr "Achse absteigend" msgid "BOOLEAN" msgstr "WAHRHEITSWERT" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:366 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1051 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1068 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1088 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:373 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1123 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1143 msgid "Back" msgstr "Zurück" @@ -2639,7 +2660,7 @@ msgstr "Zurück" msgid "Back to all" msgstr "Zurück zu allen" -#: superset-frontend/src/pages/DatabaseList/index.tsx:300 +#: superset-frontend/src/pages/DatabaseList/index.tsx:311 #: superset/views/database/mixins.py:200 msgid "Backend" msgstr "Backend" @@ -2653,7 +2674,7 @@ msgstr "Rückwärtsinterpolation" msgid "Bad formula." msgstr "Fehlerhafte Formel." -#: superset/viz.py:2509 superset/viz.py:2545 +#: superset/viz.py:2452 superset/viz.py:2492 msgid "Bad spatial key" msgstr "Fehlerhafter räumlicher Schlüssel" @@ -2688,6 +2709,12 @@ msgstr "Balkenwerte" msgid "Bar orientation" msgstr "Balken-Ausrichtung" +#: superset-frontend/src/features/rls/constants.ts:28 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:263 +#, fuzzy +msgid "Base" +msgstr "Datenbank" + #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:239 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 msgid "Base layer map style" @@ -2703,14 +2730,14 @@ msgstr "" "Basierend auf der Granularität, Anzahl der Zeiträume, mit denen " "verglichen werden soll" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:228 msgid "Based on what should series be ordered on the chart and legend" msgstr "" "Basierend darauf, wonach Zeitreihen im Diagramm und in der Legende " "angeordnet werden sollten" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:854 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1723 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1779 msgid "Basic" msgstr "Basic" @@ -2741,7 +2768,7 @@ msgid "Before" msgstr "Vor" #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:37 -#: superset/viz.py:1286 +#: superset/viz.py:1186 msgid "Big Number" msgstr "Große Zahl" @@ -2750,11 +2777,11 @@ msgid "Big Number Font Size" msgstr "Große Zahl Schriftgröße" #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:36 -#: superset/viz.py:1252 +#: superset/viz.py:1150 msgid "Big Number with Trendline" msgstr "Große Zahl mit Trendlinie" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 msgid "Bottom" msgstr "Unten" @@ -2771,8 +2798,7 @@ msgstr "Unten links" #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:238 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:206 msgid "Bottom margin, in pixels, allowing for more room for axis labels" -msgstr "" -"Unterer Rand in Pixeln, ermöglicht mehr Platz für Achsenbeschriftungen" +msgstr "Unterer Rand in Pixeln, ermöglicht mehr Platz für Achsenbeschriftungen" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 msgid "Bottom right" @@ -2784,7 +2810,6 @@ msgstr "Von Unten nach Oben" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:261 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:277 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:263 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:251 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:195 @@ -2803,14 +2828,42 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:246 msgid "" "Bounds for the axis. When left empty, the bounds are dynamically defined " -"based on the min/max of the data. Note that this feature will only expand " -"the axis range. It won't narrow the data's extent." +"based on the min/max of the data. Note that this feature will only expand" +" the axis range. It won't narrow the data's extent." msgstr "" "Grenzen für die Achse. Wenn sie leer gelassen werden, werden die Grenzen " "dynamisch basierend auf den Min/Max-Werten der Daten definiert. Beachten " "Sie, dass diese Funktion nur den Achsenbereich erweitert. Der Umfang der " "Daten wird dadurch nicht eingeschränkt." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 +#, fuzzy +msgid "" +"Bounds for the primary Y-axis. When left empty, the bounds are " +"dynamically defined based on the min/max of the data. Note that this " +"feature will only expand the axis range. It won't narrow the data's " +"extent." +msgstr "" +"Grenzen für die Y-Achse. Wenn sie leer gelassen werden, werden die " +"Grenzen basierend auf Min/Max der Daten dynamisch definiert. Beachten " +"Sie, dass diese Funktion nur den Achsenbereich erweitert. Es wird den " +"Umfang der Daten nicht einschränken." + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:411 +#, fuzzy +msgid "" +"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" +" bounds are enabled. When left empty, the bounds are " +"dynamically defined\n" +" based on the min/max of the data. Note that this feature " +"will only expand\n" +" the axis range. It won't narrow the data's extent." +msgstr "" +"Grenzen für die Y-Achse. Wenn sie leer gelassen werden, werden die " +"Grenzen basierend auf Min/Max der Daten dynamisch definiert. Beachten " +"Sie, dass diese Funktion nur den Achsenbereich erweitert. Es wird den " +"Umfang der Daten nicht einschränken." + #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:58 #: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/createMetadata.ts:27 @@ -2822,7 +2875,7 @@ msgid "Breakdowns" msgstr "Aufschlüsselungen" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:32 -#: superset/viz.py:1171 +#: superset/viz.py:1065 msgid "Bubble Chart" msgstr "Blasen-Diagramm" @@ -2853,14 +2906,15 @@ msgstr "Build" #: superset-frontend/src/pages/ChartList/index.tsx:789 #: superset-frontend/src/pages/CssTemplateList/index.tsx:262 #: superset-frontend/src/pages/DashboardList/index.tsx:662 -#: superset-frontend/src/pages/DatasetList/index.tsx:596 +#: superset-frontend/src/pages/DatasetList/index.tsx:607 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 #: superset-frontend/src/pages/SavedQueryList/index.tsx:177 #: superset-frontend/src/pages/Tags/index.tsx:267 msgid "Bulk select" msgstr "Massenauswahl" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 -#: superset/viz.py:1222 +#: superset/viz.py:1118 msgid "Bullet Chart" msgstr "Bullet-Diagramm" @@ -2876,7 +2930,7 @@ msgstr "Bullet-Diagramm" msgid "Business" msgstr "Geschäftlich" -#: superset/connectors/sqla/views.py:165 +#: superset/connectors/sqla/views.py:164 #, fuzzy msgid "Business Data Type" msgstr "Business Datentyp" @@ -2885,15 +2939,15 @@ msgstr "Business Datentyp" #: superset-frontend/src/filters/components/Select/controlPanel.ts:138 msgid "" "By default, each filter loads at most 1000 choices at the initial page " -"load. Check this box if you have more than 1000 filter values and want to " -"enable dynamically searching that loads filter values as users type (may " -"add stress to your database)." +"load. Check this box if you have more than 1000 filter values and want to" +" enable dynamically searching that loads filter values as users type (may" +" add stress to your database)." msgstr "" "Standardmäßig lädt jeder Filter beim ersten Laden der Seite höchstens " "1000 Auswahlmöglichkeiten. Aktivieren Sie dieses Kontrollkästchen, wenn " "Sie über mehr als 1000 Filterwerte verfügen und die dynamische Suche " -"aktivieren möchten, die Filterwerte während der Benutzereingabe lädt (was " -"die Datenbank belasten kann)." +"aktivieren möchten, die Filterwerte während der Benutzereingabe lädt (was" +" die Datenbank belasten kann)." #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:337 msgid "By key: use column names as sorting key" @@ -2913,15 +2967,15 @@ msgstr "Nach Wert: Metrikwerte als Sortierschlüssel verwenden" msgid "CANCEL" msgstr "ABBRECHEN" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1520 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1575 msgid "CREATE DATASET" msgstr "DATASET ERSTELLEN" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:585 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:579 msgid "CREATE TABLE AS" msgstr "CREATE TABLE AS" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:596 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:590 msgid "CREATE VIEW AS" msgstr "CREATE VIEW AS" @@ -2946,8 +3000,7 @@ msgstr "CSS" msgid "CSS Styles" msgstr "CSS Stile" -#: superset/initialization/__init__.py:286 -#: superset/views/css_templates.py:38 +#: superset/initialization/__init__.py:288 superset/views/css_templates.py:38 msgid "CSS Templates" msgstr "CSS Vorlagen" @@ -2980,43 +3033,43 @@ msgstr "CSS Vorlagen" msgid "CSV Upload" msgstr "CSV-Hochladen" -#: superset/views/database/views.py:287 +#: superset/views/database/views.py:290 #, python-format msgid "" "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " "database \"%(db_name)s\"" msgstr "" -"CSV-Datei \"%(csv_filename)s\" in Tabelle \"%(table_name)s\" in Datenbank " -"\"%(db_name)s\" hochgeladen" +"CSV-Datei \"%(csv_filename)s\" in Tabelle \"%(table_name)s\" in Datenbank" +" \"%(db_name)s\" hochgeladen" -#: superset/views/database/views.py:160 +#: superset/views/database/views.py:161 msgid "CSV to Database configuration" msgstr "CSV-zu-Datenbank-Konfiguration" -#: superset-frontend/src/pages/DatabaseList/index.tsx:344 +#: superset-frontend/src/pages/DatabaseList/index.tsx:355 msgid "CSV upload" msgstr "CSV-Upload" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:130 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 msgid "CTAS & CVAS SCHEMA" msgstr "CTAS & CVAS SCHEMA" -#: superset/sql_lab.py:440 +#: superset/sql_lab.py:432 msgid "" -"CTAS (create table as select) can only be run with a query where the last " -"statement is a SELECT. Please make sure your query has a SELECT as its " +"CTAS (create table as select) can only be run with a query where the last" +" statement is a SELECT. Please make sure your query has a SELECT as its " "last statement. Then, try running your query again." msgstr "" "CTAS (create table as select) kann nur mit einer Abfrage ausgeführt " "werden, bei der die letzte Anweisung ein SELECT ist. Bitte stellen Sie " -"sicher, dass Ihre Abfrage eine SELECT-Anweisung als letzte Anweisung hat. " -"Versuchen Sie dann erneut, die Abfrage auszuführen." +"sicher, dass Ihre Abfrage eine SELECT-Anweisung als letzte Anweisung hat." +" Versuchen Sie dann erneut, die Abfrage auszuführen." #: superset/views/database/mixins.py:187 msgid "CTAS Schema" msgstr "CTAS-Schema" -#: superset/sql_lab.py:457 +#: superset/sql_lab.py:449 msgid "" "CVAS (create view as select) can only be run with a query with a single " "SELECT statement. Please make sure your query has only a SELECT " @@ -3035,7 +3088,7 @@ msgstr "CVAS-Abfrage (Create View as Select) hat mehr als eine Anweisung." msgid "CVAS (create view as select) query is not a SELECT statement." msgstr "CVAS-Abfrage (Create View as Select) ist keine SELECT-Anweisung." -#: superset/connectors/sqla/views.py:486 superset/views/chart/mixin.py:76 +#: superset/connectors/sqla/views.py:393 superset/views/chart/mixin.py:76 msgid "Cache Timeout" msgstr "Cache Timeout" @@ -3053,16 +3106,16 @@ msgstr "Cache-Timeout" msgid "Cached" msgstr "Gecached" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:349 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:351 #, python-format msgid "Cached %s" msgstr "%s zwischengespeichert" -#: superset/viz.py:562 +#: superset/viz.py:578 msgid "Cached value not found" msgstr "Zwischengespeicherter Wert nicht gefunden" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:53 msgid "Calculate contribution per series or row" msgstr "Beitrag pro Serie oder Zeile berechnen" @@ -3084,7 +3137,7 @@ msgid "Calculation type" msgstr "Berechnungstyp" #: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 -#: superset/viz.py:1080 +#: superset/viz.py:972 msgid "Calendar Heatmap" msgstr "Kalender Heatmap" @@ -3099,18 +3152,17 @@ msgstr "" msgid "Can select multiple values" msgstr "Mehrere Werte können ausgewählt werden" -#: superset/viz.py:1810 +#: superset/viz.py:1727 msgid "Can't have overlap between Series and Breakdowns" -msgstr "" -"Überschneidungen zwischen Zeitreihen und Aufschlüsselungen nicht zulässig" +msgstr "Überschneidungen zwischen Zeitreihen und Aufschlüsselungen nicht zulässig" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:206 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:759 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:263 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:185 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 -#: superset-frontend/src/components/Modal/Modal.tsx:262 -#: superset-frontend/src/components/ReportModal/index.tsx:220 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:205 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:753 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:227 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:268 +#: superset-frontend/src/components/Modal/Modal.tsx:269 +#: superset-frontend/src/components/ReportModal/index.tsx:219 #: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:72 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:649 #: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 @@ -3118,14 +3170,14 @@ msgstr "" #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:76 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 -#: superset-frontend/src/explore/components/SaveModal.tsx:379 +#: superset-frontend/src/explore/components/SaveModal.tsx:413 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:843 #: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 #: superset/templates/superset/request_access.html:34 msgid "Cancel" msgstr "Abbrechen" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:314 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 msgid "Cancel query on window unload event" msgstr "Abfrage abbrechen bei ‚Window unload‘-Ereignis" @@ -3135,14 +3187,13 @@ msgstr "Zugriff auf die Abfrage nicht möglich" #: superset/databases/commands/exceptions.py:111 msgid "Cannot delete a database that has datasets attached" -msgstr "" -"Eine Datenbank mit verknüpften Datensätzen kann nicht gelöscht werden" +msgstr "Eine Datenbank mit verknüpften Datensätzen kann nicht gelöscht werden" #: superset/databases/ssh_tunnel/commands/exceptions.py:67 msgid "Cannot have multiple credentials for the SSH Tunnel" msgstr "Anmeldeinformationen für den SSH-Tunnel müssen eindeutig sein" -#: superset/views/core.py:723 +#: superset/views/core.py:734 #, python-format msgid "" "Cannot import dashboard: %(db_error)s.\n" @@ -3209,7 +3260,7 @@ msgstr "Kategorie und Prozentsatz" msgid "Category and Value" msgstr "Kategorie und Wert" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:229 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:67 msgid "Category name" msgstr "Kategoriename" @@ -3223,15 +3274,15 @@ msgstr "Kategorie der Zielknoten" msgid "Category, Value and Percentage" msgstr "Kategorie, Wert und Prozentsatz" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:103 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 msgid "Cell Padding" msgstr "Zellen Abstand" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:117 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 msgid "Cell Radius" msgstr "Zellenradius" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 msgid "Cell Size" msgstr "Zellengröße" @@ -3239,7 +3290,7 @@ msgstr "Zellengröße" msgid "Cell bars" msgstr "Zellenbalken" -#: superset-frontend/src/components/FilterableTable/index.tsx:431 +#: superset-frontend/src/components/FilterableTable/index.tsx:303 msgid "Cell content" msgstr "Zellinhalt" @@ -3251,6 +3302,7 @@ msgstr "Zellgrenze" msgid "Center" msgstr "Zentriert" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:33 msgid "Centroid (Longitude and Latitude): " msgstr "Schwerpunkt (Längen- und Breitengrad): " @@ -3272,7 +3324,7 @@ msgstr "Details zur Zertifizierung" #: superset-frontend/src/pages/ChartList/index.tsx:699 #: superset-frontend/src/pages/DashboardList/index.tsx:580 -#: superset-frontend/src/pages/DatasetList/index.tsx:564 +#: superset-frontend/src/pages/DatasetList/index.tsx:575 msgid "Certified" msgstr "Zertifiziert" @@ -3303,7 +3355,7 @@ msgstr "Reihenfolge der Spalten ändern." msgid "Change order of rows." msgstr "Reihenfolge der Zeilen ändern." -#: superset/connectors/sqla/views.py:478 +#: superset/connectors/sqla/views.py:385 msgid "Changed By" msgstr "Bearbeitet von" @@ -3320,8 +3372,8 @@ msgid "" "Changing the dataset may break the chart if the chart relies on columns " "or metadata that does not exist in the target dataset" msgstr "" -"Durch das Ändern des Datensatzes kann das Diagramm beeinträchtigt werden, " -"wenn das Diagramm auf Spalten oder Metadaten basiert, die im " +"Durch das Ändern des Datensatzes kann das Diagramm beeinträchtigt werden," +" wenn das Diagramm auf Spalten oder Metadaten basiert, die im " "Zieldatensatz nicht vorhanden sind" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1342 @@ -3356,7 +3408,7 @@ msgstr "Das Ändern dieses Diagramms ist verboten" msgid "Changing this control takes effect instantly" msgstr "Das Ändern dieses Steuerelements wird sofort wirksam" -#: superset/datasets/commands/exceptions.py:181 +#: superset/datasets/commands/exceptions.py:198 msgid "Changing this dataset is forbidden" msgstr "Das Ändern dieses Datensatz ist verboten" @@ -3373,14 +3425,15 @@ msgstr "Das Ändern dieser Datenquelle ist verboten" msgid "Changing this report is forbidden" msgstr "Das Ändern dieses Reports ist verboten" -#: superset/views/database/forms.py:196 +#: superset/views/database/forms.py:206 msgid "Character to interpret as decimal point" msgstr "Zeichen, das als Dezimaltrenner zu interpretieren ist." -#: superset/views/database/forms.py:375 +#: superset/views/database/forms.py:385 msgid "Character to interpret as decimal point." msgstr "Zeichen, das als Dezimalstelle zu interpretieren ist." +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:51 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:449 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:405 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:69 @@ -3388,11 +3441,11 @@ msgstr "Zeichen, das als Dezimalstelle zu interpretieren ist." #: superset-frontend/src/features/home/RightMenu.tsx:219 #: superset-frontend/src/pages/ChartList/index.tsx:369 #: superset-frontend/src/pages/ChartList/index.tsx:799 -#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:90 +#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 msgid "Chart" msgstr "Diagramm" -#: superset/views/core.py:1727 +#: superset/views/core.py:1762 #, python-format msgid "Chart %(id)s not found" msgstr "Diagramm %(id)s nicht gefunden" @@ -3401,7 +3454,7 @@ msgstr "Diagramm %(id)s nicht gefunden" msgid "Chart Cache Timeout" msgstr "Diagramm Cache-Timeout" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:437 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:442 #, python-format msgid "Chart Data: %s" msgstr "Diagrammdaten: %s" @@ -3411,7 +3464,7 @@ msgstr "Diagrammdaten: %s" msgid "Chart ID" msgstr "Diagramm-ID" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:53 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:55 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:61 @@ -3433,7 +3486,7 @@ msgstr "Diagramm-ID" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:59 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:131 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:107 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:74 @@ -3477,34 +3530,34 @@ msgstr "Diagrammquelle" msgid "Chart Title" msgstr "Diagrammtitel" -#: superset-frontend/src/explore/actions/saveModalActions.js:127 +#: superset-frontend/src/explore/actions/saveModalActions.js:121 #, python-format msgid "Chart [%s] has been overwritten" msgstr "Diagramm [%s] wurde überschrieben" -#: superset-frontend/src/explore/actions/saveModalActions.js:124 +#: superset-frontend/src/explore/actions/saveModalActions.js:118 #, python-format msgid "Chart [%s] has been saved" msgstr "Diagramm [%s] wurde gespeichert" -#: superset-frontend/src/explore/actions/saveModalActions.js:145 +#: superset-frontend/src/explore/actions/saveModalActions.js:139 #, python-format msgid "Chart [%s] was added to dashboard [%s]" msgstr "Diagramm [%s] wurde dem Dashboard hinzugefügt [%s]" -#: superset/views/core.py:1077 +#: superset/views/core.py:1099 msgid "Chart [{}] has been overwritten" msgstr "Diagramm [{}] wurde überschrieben" -#: superset/views/core.py:1073 +#: superset/views/core.py:1095 msgid "Chart [{}] has been saved" msgstr "Diagramm [{}] wurde gespeichert" -#: superset/views/core.py:1102 +#: superset/views/core.py:1124 msgid "Chart [{}] was added to dashboard [{}]" msgstr "Diagramm [{}] wurde dem Dashboard hinzugefügt [{}]" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:228 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:238 msgid "Chart cache timeout" msgstr "Diagramm-Cache Timeout" @@ -3516,8 +3569,8 @@ msgstr "Diagrammänderungen" msgid "" "Chart component that lets you add a custom filter UI in your dashboard. " "When added to dashboard, a filter box lets users specify specific values " -"or ranges to filter charts by. The charts that each filter box is applied " -"to can be fine tuned as well in the dashboard view.\n" +"or ranges to filter charts by. The charts that each filter box is applied" +" to can be fine tuned as well in the dashboard view.\n" "\n" " Note that this plugin is being replaced with the new Filters feature " "that lives in the dashboard view itself. It's easier to use and has more " @@ -3526,9 +3579,9 @@ msgstr "" "Diagrammkomponente, mit der Sie Ihrem Dashboard eine benutzerdefinierte " "Filter-Oberfläche hinzufügen können. Ist sie dem Dashboard zugefügt, " "können Benutzer*innen in einem Filterfeld bestimmte Werte oder Bereiche " -"angeben, nach denen Diagramme gefiltert werden sollen. Die Diagramme, auf " -"die jedes Filterfeld angewendet wird, können auch in der Dashboardansicht " -"optimiert werden.\n" +"angeben, nach denen Diagramme gefiltert werden sollen. Die Diagramme, auf" +" die jedes Filterfeld angewendet wird, können auch in der " +"Dashboardansicht optimiert werden.\n" "\n" "Beachten Sie, dass dieses Plugin durch die neue Filterfunktion ersetzt " "wird, die sich in der Dashboard-Ansicht selbst befindet. Sie ist " @@ -3553,8 +3606,8 @@ msgstr "Diagramm existiert nicht" #: superset/charts/data/api.py:130 msgid "Chart has no query context saved. Please save the chart again." msgstr "" -"Für das Diagramm ist kein Abfragekontext gespeichert. Bitte speichern Sie " -"das Diagramm erneut." +"Für das Diagramm ist kein Abfragekontext gespeichert. Bitte speichern Sie" +" das Diagramm erneut." #: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 msgid "Chart height" @@ -3572,7 +3625,7 @@ msgstr "Diagramm zuletzt geändert" msgid "Chart last modified by" msgstr "Diagramm zuletzt geändert von" -#: superset-frontend/src/explore/components/SaveModal.tsx:320 +#: superset-frontend/src/explore/components/SaveModal.tsx:355 msgid "Chart name" msgstr "Diagrammname" @@ -3601,7 +3654,7 @@ msgstr "Diagrammtitel" msgid "Chart type" msgstr "Diagrammtyp" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:315 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 msgid "Chart type requires a dataset" msgstr "Diagrammtyp erfordert einen Datensatz" @@ -3616,7 +3669,7 @@ msgstr "Diagrammbreite" #: superset-frontend/src/pages/Home/index.tsx:399 #: superset-frontend/src/profile/components/CreatedContent.tsx:104 #: superset-frontend/src/profile/components/Favorites.tsx:102 -#: superset/initialization/__init__.py:257 superset/views/chart/mixin.py:25 +#: superset/initialization/__init__.py:259 superset/views/chart/mixin.py:25 #: superset/views/dashboard/mixin.py:80 msgid "Charts" msgstr "Diagramme" @@ -3640,8 +3693,8 @@ msgstr "Überprüfen Sie die Sortierung aufsteigend" #: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 #: superset-frontend/src/explore/fixtures.tsx:44 msgid "" -"Check if the Rose Chart should use segment area instead of segment radius " -"for proportioning" +"Check if the Rose Chart should use segment area instead of segment radius" +" for proportioning" msgstr "" "Aktivieren, falls das Rose-Diagramm für die Proportionierung den " "Segmentbereich anstelle des Segmentradius verwenden soll." @@ -3650,7 +3703,7 @@ msgstr "" msgid "Check out this chart in dashboard:" msgstr "Sehen Sie sich dieses Diagramm im Dashboard an:" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:474 msgid "Check out this chart: " msgstr "Sehen Sie sich dieses Diagramm an: " @@ -3668,8 +3721,7 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:212 msgid "Check to force date partitions to have the same height" -msgstr "" -"Aktivieren, um zu erzwingen, dass Datumspartitionen die gleiche Höhe haben" +msgstr "Aktivieren, um zu erzwingen, dass Datumspartitionen die gleiche Höhe haben" #: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:87 msgid "Check to include time column dropdown" @@ -3683,14 +3735,13 @@ msgstr "Anhaken, um Zeiteinheiten Dropdown-Menü einzubinden" msgid "Child label position" msgstr "Untergeordnete Beschriftungsposition" -#: superset/viz.py:2370 +#: superset/viz.py:2307 msgid "Choice of [Label] must be present in [Group By]" msgstr "Die Auswahl von [Label] muss in [Group By] vorhanden sein." -#: superset/viz.py:2378 +#: superset/viz.py:2315 msgid "Choice of [Point Radius] must be present in [Group By]" -msgstr "" -"Die Auswahl von [Punktradius] muss in [Gruppieren nach] vorhanden sein." +msgstr "Die Auswahl von [Punktradius] muss in [Gruppieren nach] vorhanden sein." #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 #: superset/templates/superset/import_dashboards.html:47 @@ -3701,7 +3752,7 @@ msgstr "Datei wählen" msgid "Choose a chart or dashboard not both" msgstr "Diagramm oder Dashboard auswählen, nicht beides" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:924 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:979 msgid "Choose a database..." msgstr "Wählen Sie eine Datenbank..." @@ -3736,15 +3787,11 @@ msgstr "Wählen Sie eine Quelle und ein Ziel" msgid "Choose a target" msgstr "Wählen Sie ein Ziel" -#: superset/connectors/sqla/views.py:327 -msgid "Choose a unique name" -msgstr "Wählen Sie einen eindeutigen Namen" - #: superset-frontend/src/pages/ChartCreation/index.tsx:404 msgid "Choose chart type" msgstr "Diagrammtyp auswählen" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:745 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:739 msgid "Choose one of the available databases from the panel on the left." msgstr "" "Wählen Sie einen der verfügbaren Datensätze aus dem Bereich auf der " @@ -3826,10 +3873,11 @@ msgid "" "showcase a view into the underlying data or to show aggregated metrics." msgstr "" "Klassische Zeilen-für-Spalten-Tabellenansicht eines Datensatzes. " -"Verwenden Sie Tabellen, um eine Ansicht der zugrunde liegenden Daten oder " -"aggregierter Metriken anzuzeigen." +"Verwenden Sie Tabellen, um eine Ansicht der zugrunde liegenden Daten oder" +" aggregierter Metriken anzuzeigen." -#: superset/connectors/sqla/views.py:365 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:454 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:144 msgid "Clause" msgstr "Ausdruck" @@ -3841,7 +3889,7 @@ msgstr "Zurücksetzen" msgid "Clear all" msgstr "Alles löschen" -#: superset-frontend/src/components/Table/index.tsx:206 +#: superset-frontend/src/components/Table/index.tsx:210 msgid "Clear all data" msgstr "Alle Daten leeren" @@ -3850,8 +3898,7 @@ msgid "Clear form" msgstr "Formular zurücksetzen" #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:209 -msgid "" -"Click on \"+Add/Edit Filters\" button to create new dashboard filters" +msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" msgstr "" "Klicken Sie auf die Schaltfläche \"+Filter hinzufügen/bearbeiten\", um " "neue Dashboard-Filter zu erstellen" @@ -3873,7 +3920,7 @@ msgstr "Klicken Sie auf das Schloss, um Änderungen vorzunehmen." msgid "Click the lock to prevent further changes." msgstr "Klicken Sie auf die Sperre, um weitere Änderungen zu verhindern." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1955 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2012 msgid "" "Click this link to switch to an alternate form that allows you to input " "the SQLAlchemy URL for this database manually." @@ -3882,7 +3929,7 @@ msgstr "" "wechseln, mit dem Sie die SQLAlchemy-URL für diese Datenbank manuell " "eingeben können." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1771 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1827 msgid "" "Click this link to switch to an alternate form that exposes only the " "required fields needed to connect this database." @@ -3891,7 +3938,7 @@ msgstr "" "wechseln, das nur die zum Verbinden dieser Datenbank erforderlichen " "Felder verfügbar macht." -#: superset-frontend/src/components/Table/index.tsx:213 +#: superset-frontend/src/components/Table/index.tsx:217 msgid "Click to cancel sorting" msgstr "Klicken, um die Sortierung abzubrechen" @@ -3901,16 +3948,10 @@ msgstr "Klicken um zu bearbeiten" #: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 #, python-format -msgid "Click to edit %s in a new tab" -msgstr "Klicken Sie hier, um %s auf einer neuen Registerkarte zu bearbeiten" - -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:32 -#, python-format msgid "Click to edit %s." msgstr "Klicken Sie hier, um %s zu bearbeiten." #: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:33 msgid "Click to edit chart." msgstr "Klicken Sie hier, um das Diagramm zu bearbeiten." @@ -3931,25 +3972,25 @@ msgstr "Klicken Sie hier, um die Aktualisierung zu erzwingen" msgid "Click to see difference" msgstr "Klicken zum Anzeigen der Unterschiede" -#: superset-frontend/src/components/Table/index.tsx:212 +#: superset-frontend/src/components/Table/index.tsx:216 msgid "Click to sort ascending" msgstr "Klicken Sie hier, um aufsteigend zu sortieren" -#: superset-frontend/src/components/Table/index.tsx:211 +#: superset-frontend/src/components/Table/index.tsx:215 msgid "Click to sort descending" msgstr "Klicken Sie hier, um absteigend zu sortieren" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:83 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:132 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:52 #: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:209 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:219 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:224 #: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:786 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:408 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:414 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:339 #: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:36 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1109 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1164 msgid "Close" msgstr "Schließen" @@ -3982,15 +4023,15 @@ msgstr "Alle einklappen" msgid "Collapse data panel" msgstr "Datenbereich ausblenden" -#: superset-frontend/src/components/Table/index.tsx:210 +#: superset-frontend/src/components/Table/index.tsx:214 msgid "Collapse row" msgstr "Zeile zusammenklappen" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:598 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:599 msgid "Collapse tab content" msgstr "Inhalt der Registerkarte ausblenden" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:197 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 msgid "Collapse table preview" msgstr "Tabellenvorschau komprimieren" @@ -4012,7 +4053,7 @@ msgstr "Farbmetrik" msgid "Color Scheme" msgstr "Farbschema" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:129 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 msgid "Color Steps" msgstr "Farbschritte" @@ -4033,8 +4074,8 @@ msgid "Color of the target location" msgstr "Farbe des Zielortes" #: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:214 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:218 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 #: superset-frontend/src/explore/controlPanels/sections.tsx:60 #: superset-frontend/src/explore/controls.jsx:460 msgid "Color scheme" @@ -4057,8 +4098,8 @@ msgstr "Farben" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 #: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:204 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:250 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:256 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:137 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:140 #: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 @@ -4066,7 +4107,7 @@ msgstr "Farben" #: superset-frontend/src/filters/components/Range/controlPanel.ts:39 #: superset-frontend/src/filters/components/Select/controlPanel.ts:49 #: superset-frontend/src/filters/components/Time/controlPanel.ts:37 -#: superset/connectors/sqla/views.py:155 +#: superset/connectors/sqla/views.py:154 msgid "Column" msgstr "Spalte" @@ -4076,19 +4117,24 @@ msgid "" "Column \"%(column)s\" is not numeric or does not exists in the query " "results." msgstr "" -"Die Spalte \"%(column)s\" ist nicht numerisch oder existiert nicht in den " -"Abfrageergebnissen." +"Die Spalte \"%(column)s\" ist nicht numerisch oder existiert nicht in den" +" Abfrageergebnissen." #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:361 msgid "Column Configuration" msgstr "Spaltenkonfiguration" +#: superset/views/database/forms.py:144 +#, fuzzy +msgid "Column Data Types" +msgstr "Erweiterter Datentyp" + #: superset-frontend/src/explore/components/DataTableControl/index.tsx:194 msgid "Column Formatting" msgstr "Spaltenformatierung" -#: superset/views/database/forms.py:222 superset/views/database/forms.py:383 -#: superset/views/database/forms.py:474 +#: superset/views/database/forms.py:232 superset/views/database/forms.py:393 +#: superset/views/database/forms.py:484 msgid "Column Label(s)" msgstr "Spaltenbezeichnung(en)" @@ -4096,8 +4142,7 @@ msgstr "Spaltenbezeichnung(en)" msgid "" "Column containing ISO 3166-2 codes of region/province/department in your " "table." -msgstr "" -"Spalte mit ISO 3166-2-Codes der Region/Provinz/Kreis in Ihrer Tabelle." +msgstr "Spalte mit ISO 3166-2-Codes der Region/Provinz/Kreis in Ihrer Tabelle." #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:74 msgid "Column containing latitude data" @@ -4107,6 +4152,11 @@ msgstr "Spalte mit Breitengraddaten" msgid "Column containing longitude data" msgstr "Spalte mit Längengraddaten" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:69 +#, fuzzy +msgid "Column datatype" +msgstr "Spaltenname" + #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 msgid "Column header tooltip" msgstr "Tooltip zur Spaltenüberschrift" @@ -4115,23 +4165,23 @@ msgstr "Tooltip zur Spaltenüberschrift" msgid "Column is required" msgstr "Spalte ist erforderlich" -#: superset/views/database/forms.py:384 superset/views/database/forms.py:475 +#: superset/views/database/forms.py:394 superset/views/database/forms.py:485 msgid "" -"Column label for index column(s). If None is given and Dataframe Index is " -"True, Index Names are used." +"Column label for index column(s). If None is given and Dataframe Index is" +" True, Index Names are used." msgstr "" "Spaltenbezeichnung für Indexspalte(n). Wenn None angegeben ist und " "Dataframe Index den Wert True hat, werden Indexnamen verwendet." -#: superset/views/database/forms.py:223 +#: superset/views/database/forms.py:233 msgid "" -"Column label for index column(s). If None is given and Dataframe Index is " -"checked, Index Names are used" +"Column label for index column(s). If None is given and Dataframe Index is" +" checked, Index Names are used" msgstr "" "Spaltenbeschriftung für Indexspalten. Wenn „None“ angegeben und " "„Dataframe Index“ aktiviert ist, werden Indexnamen verwendet." -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:77 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:90 msgid "Column name" msgstr "Spaltenname" @@ -4151,27 +4201,27 @@ msgstr "" msgid "Column select" msgstr "Spaltenauswahl" -#: superset/views/database/forms.py:211 +#: superset/views/database/forms.py:221 msgid "" -"Column to use as the row labels of the dataframe. Leave empty if no index " -"column" +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column" msgstr "" -"Spalte, die als Zeilenbeschriftungen des Dataframe verwendet werden soll. " -"Leer lassen, wenn keine Indexspalte existiert." +"Spalte, die als Zeilenbeschriftungen des Dataframe verwendet werden soll." +" Leer lassen, wenn keine Indexspalte existiert." -#: superset/views/database/forms.py:342 +#: superset/views/database/forms.py:352 msgid "" -"Column to use as the row labels of the dataframe. Leave empty if no index " -"column." +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column." msgstr "" "Spalte, die als Zeilenbeschriftungen des Datenrahmens verwendet werden " "soll. Leer lassen, wenn keine Indexspalte vorhanden." -#: superset/views/database/forms.py:414 +#: superset/views/database/forms.py:424 msgid "Columnar File" msgstr "Tabellen-Datei" -#: superset/views/database/views.py:565 +#: superset/views/database/views.py:568 #, python-format msgid "" "Columnar file \"%(columnar_filename)s\" uploaded to table " @@ -4180,7 +4230,7 @@ msgstr "" "Spaltendatei \"%(columnar_filename)s\" in Tabelle \"%(table_name)s\" in " "Datenbank \"%(db_name)s\" hochgeladen" -#: superset/views/database/views.py:440 +#: superset/views/database/views.py:443 msgid "Columnar to Database configuration" msgstr "Spalten-zu-Datenbank-Konfiguration" @@ -4196,15 +4246,15 @@ msgstr "Spalten-zu-Datenbank-Konfiguration" #: superset-frontend/src/explore/controls.jsx:244 #: superset-frontend/src/explore/fixtures.tsx:97 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 -#: superset/connectors/sqla/views.py:72 +#: superset/connectors/sqla/views.py:71 msgid "Columns" msgstr "Spalten" -#: superset/views/database/forms.py:183 +#: superset/views/database/forms.py:193 msgid "Columns To Be Parsed as Dates" msgstr "Spalten, die als Datumsangaben interpretiert werden sollen" -#: superset/views/database/forms.py:231 +#: superset/views/database/forms.py:241 msgid "Columns To Read" msgstr "Zu lesende Spalten" @@ -4213,7 +4263,7 @@ msgstr "Zu lesende Spalten" msgid "Columns missing in dataset: %(invalid_columns)s" msgstr "Im Datensatz fehlende Spalten: %(invalid_columns)s" -#: superset/viz.py:577 +#: superset/viz.py:593 #, python-format msgid "Columns missing in datasource: %(invalid_columns)s" msgstr "Fehlende Spalten in Datenquelle: %(invalid_columns)s" @@ -4252,10 +4302,6 @@ msgstr "Spalten, nach denen in den Zeilen gruppiert werden soll" msgid "Columns to show" msgstr "Anzuzeigende Spalten" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:85 -msgid "Combine Metrics" -msgstr "Metriken kombinieren" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:250 msgid "Combine metrics" msgstr "Metriken kombinieren" @@ -4263,8 +4309,8 @@ msgstr "Metriken kombinieren" #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 msgid "" "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " -"denote colors from the chosen color scheme and are 1-indexed. Length must " -"be matching that of interval bounds." +"denote colors from the chosen color scheme and are 1-indexed. Length must" +" be matching that of interval bounds." msgstr "" "Kommagetrennte Farbwerte für die Intervalle, z.B. 1,2,4. Ganzzahlen " "bezeichnen Farben aus dem gewählten Farbschema und sind 1-indiziert. Die " @@ -4276,8 +4322,8 @@ msgid "" "4-5. Last number should match the value provided for MAX." msgstr "" "Durch Kommas getrennte Intervallgrenzen, z.B. 2,4,5 für die Intervalle " -"0-2, 2-4 und 4-5. Die letzte Zahl sollte mit dem für MAX angegebenen Wert " -"übereinstimmen." +"0-2, 2-4 und 4-5. Die letzte Zahl sollte mit dem für MAX angegebenen Wert" +" übereinstimmen." #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:371 msgid "Comparator option" @@ -4303,9 +4349,9 @@ msgid "" "group is mapped to a row and change over time is visualized bar lengths " "and color." msgstr "" -"Vergleicht, wie sich eine Metrik im Laufe der Zeit zwischen verschiedenen " -"Gruppen ändert. Jede Gruppe wird einer Zeile zugeordnet und die Änderung " -"im Laufe der Zeit werden als Balkenlängen und -farben visualisiert." +"Vergleicht, wie sich eine Metrik im Laufe der Zeit zwischen verschiedenen" +" Gruppen ändert. Jede Gruppe wird einer Zeile zugeordnet und die Änderung" +" im Laufe der Zeit werden als Balkenlängen und -farben visualisiert." #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:35 msgid "" @@ -4331,6 +4377,7 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:35 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:35 @@ -4377,6 +4424,11 @@ msgstr "Berechnen des Beitrags zur Gesamtsumme" msgid "Condition" msgstr "Bedingung" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 +#, fuzzy +msgid "Conditional Formatting" +msgstr "Bedingte Formatierung" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:385 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:504 msgid "Conditional formatting" @@ -4419,8 +4471,7 @@ msgid "Configure the basics of your Annotation Layer." msgstr "Konfigurieren Sie die Grundeinstellungen der Anmerkungsebene." #: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:177 -msgid "" -"Configure this dashboard to embed it into an external web application." +msgid "Configure this dashboard to embed it into an external web application." msgstr "" "Konfigurieren Sie dieses Dashboard, um es in eine externe Webanwendung " "einzubetten." @@ -4433,15 +4484,15 @@ msgstr "Konfigurieren Sie hier, wie Ihr Overlay angezeigt wird." msgid "Confirm overwrite" msgstr "Überschreiben bestätigen" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:180 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:222 msgid "Confirm save" msgstr "Speichern bestätigen" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1059 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1097 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1656 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1695 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1857 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1152 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1712 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 msgid "Connect" msgstr "Verbinden" @@ -4453,9 +4504,9 @@ msgstr "Google Sheet verbinden" msgid "Connect Google Sheets as tables to this database" msgstr "Google Tabellen als Tabellen mit dieser Datenbank verbinden" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1660 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1700 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1861 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1716 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1918 msgid "Connect a database" msgstr "Eine Datenbank verbinden" @@ -4463,30 +4514,30 @@ msgstr "Eine Datenbank verbinden" msgid "Connect database" msgstr "Datenbank verbinden" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1768 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 msgid "Connect this database using the dynamic form instead" msgstr "" "Verbinden Sie diese Datenbank stattdessen mithilfe des dynamischen " "Formulars" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1950 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2007 msgid "Connect this database with a SQLAlchemy URI string instead" msgstr "" "Verbinden Sie diese Datenbank stattdessen mit einer SQLAlchemy-URI-" "Zeichenfolge" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:225 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 msgid "Connection" msgstr "Verbindung" #: superset/databases/commands/exceptions.py:107 -#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1430 +#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1471 msgid "Connection failed, please check your connection settings" msgstr "" "Verbindung fehlgeschlagen, bitte überprüfen Sie Ihre " "Verbindungseinstellungen" -#: superset-frontend/src/views/CRUD/hooks.ts:697 +#: superset-frontend/src/views/CRUD/hooks.ts:701 msgid "Connection looks good!" msgstr "Verbindung möglich!" @@ -4510,7 +4561,7 @@ msgstr "Kontinuierlich" msgid "Contribution" msgstr "Beitrag" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:42 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 msgid "Contribution Mode" msgstr "Beitragsmodus" @@ -4564,8 +4615,8 @@ msgstr "Link kopieren" msgid "Copy message" msgstr "Meldung kopieren" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:683 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1469 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:679 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1461 #: superset-frontend/src/SqlLab/reducers/sqlLab.js:107 #, python-format msgid "Copy of %s" @@ -4576,7 +4627,7 @@ msgid "Copy partition query to clipboard" msgstr "Partitionsabfrage in Zwischenablage kopieren" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:329 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:468 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:340 msgid "Copy permalink to clipboard" msgstr "Permalink in Zwischenablage kopieren" @@ -4605,7 +4656,7 @@ msgstr "" "Kopieren Sie den Namen der Datenbank, mit der Sie eine Verbindung " "herstellen möchten." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:273 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:271 msgid "Copy to Clipboard" msgstr "In Zwischenablage kopieren" @@ -4625,7 +4676,14 @@ msgstr "Korrelation" msgid "Cost estimate" msgstr "Kostenschätzung" -#: superset/views/utils.py:498 +#: superset/db_engine_specs/ocient.py:259 +#, fuzzy, python-format +msgid "Could not connect to database: \"%(database)s\"" +msgstr "" +"Es konnte keine Verbindung zur Datenbank \"%(database)s\" hergestellt " +"werden." + +#: superset/views/utils.py:496 msgid "Could not determine datasource type" msgstr "Datenquellentyp konnte nicht ermittelt werden" @@ -4634,7 +4692,7 @@ msgstr "Datenquellentyp konnte nicht ermittelt werden" msgid "Could not fetch all saved charts" msgstr "Nicht alle gespeicherten Diagramme konnten abgerufen werden" -#: superset/views/utils.py:514 +#: superset/views/utils.py:512 msgid "Could not find viz object" msgstr "Visualisierungsobjekt konnte nicht gefunden werden" @@ -4642,7 +4700,7 @@ msgstr "Visualisierungsobjekt konnte nicht gefunden werden" msgid "Could not load database driver" msgstr "Datenbanktreiber konnte nicht geladen werden" -#: superset/views/core.py:1413 +#: superset/views/core.py:1454 #, python-format msgid "Could not load database driver: %(driver_name)s" msgstr "Datenbanktreiber konnte nicht geladen werden: %(driver_name)s" @@ -4651,6 +4709,11 @@ msgstr "Datenbanktreiber konnte nicht geladen werden: %(driver_name)s" msgid "Could not load database driver: {}" msgstr "Datenbanktreiber konnte nicht geladen werden: {}" +#: superset/db_engine_specs/ocient.py:264 +#, python-format +msgid "Could not resolve hostname: \"%(host)s\"." +msgstr "" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 msgid "Count" msgstr "Anzahl" @@ -4690,12 +4753,12 @@ msgid "Country Field Type" msgstr "Feldtyp \"Land\"" #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 -#: superset/viz.py:2044 +#: superset/viz.py:1969 msgid "Country Map" msgstr "Länderkarte" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:767 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:761 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:770 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:96 msgid "Create" msgstr "Erstellen" @@ -4705,10 +4768,10 @@ msgid "Create Chart" msgstr "Diagramm erstellen" #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:331 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:321 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:332 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:356 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:327 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:338 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:362 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 msgid "Create a dataset" msgstr "Datensatz erstellen" @@ -4754,7 +4817,7 @@ msgstr "Neues Diagramm erstellen" msgid "Create new filter set" msgstr "Erstelle neue Filtergruppe" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 msgid "Create or select schema..." msgstr "Schema erstellen oder auswählen…" @@ -4777,7 +4840,7 @@ msgstr "Erstellt am" #: superset-frontend/src/pages/CssTemplateList/index.tsx:273 #: superset-frontend/src/pages/DashboardList/index.tsx:358 #: superset-frontend/src/pages/DashboardList/index.tsx:545 -#: superset-frontend/src/pages/DatabaseList/index.tsx:365 +#: superset-frontend/src/pages/DatabaseList/index.tsx:376 #: superset-frontend/src/pages/Tags/index.tsx:128 #: superset-frontend/src/pages/Tags/index.tsx:183 msgid "Created by" @@ -4800,17 +4863,14 @@ msgstr "Erstellt am" #: superset/databases/ssh_tunnel/commands/exceptions.py:46 msgid "Creating SSH Tunnel failed for an unknown reason" -msgstr "" -"Das Erstellen eines SSH-Tunnels ist aus unbekanntem Grund fehlgeschlagen" +msgstr "Das Erstellen eines SSH-Tunnels ist aus unbekanntem Grund fehlgeschlagen" #: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 msgid "Creating a data source and creating a new tab" msgstr "Erstelle eine Datenquelle und eine neue Registerkarte" -#: superset/connectors/sqla/views.py:366 superset/views/chart/mixin.py:77 -#: superset/views/dashboard/mixin.py:84 -#: superset/views/dashboard/views.py:185 -#: superset/views/database/mixins.py:189 +#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 +#: superset/views/dashboard/views.py:185 superset/views/database/mixins.py:189 msgid "Creator" msgstr "Ersteller*in" @@ -4818,17 +4878,28 @@ msgstr "Ersteller*in" msgid "Crimson" msgstr "Purpur" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:122 -msgid "" -"Cross-filter will be applied to all of the charts that use this dataset." +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:152 +msgid "Cross-filter will be applied to all of the charts that use this dataset." msgstr "" -"Der Kreuzfilter wird auf alle Diagramme angewendet, die diesenn Datensatz " -"verwenden." +"Der Kreuzfilter wird auf alle Diagramme angewendet, die diesenn Datensatz" +" verwenden." -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:134 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:164 msgid "Cross-filtering is not enabled for this dashboard." msgstr "Die Kreuzfilterung ist für dieses Dashboard nicht aktiviert." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 +#, fuzzy +msgid "Cross-filtering is not enabled in this dashboard" +msgstr "Die Kreuzfilterung ist für dieses Dashboard nicht aktiviert." + +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:414 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 +#, fuzzy +msgid "Cross-filtering scoping" +msgstr "Kreuzfilterung aktivieren" + #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 msgid "Cross-filters" msgstr "Kreuzfilter" @@ -4854,7 +4925,7 @@ msgstr "Benutzerdefiniertes Plugin" msgid "Custom Plugins" msgstr "Benutzerdefinierte Plugins" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:385 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:391 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 @@ -4867,8 +4938,7 @@ msgstr "" "Benutzerdefinierte SQL-Ad-hoc-Metriken sind für diesen Datasatz nicht " "aktiviert" -#: superset/connectors/sqla/utils.py:194 superset/errors.py:145 -#: superset/models/helpers.py:129 superset/models/helpers.py:864 +#: superset/errors.py:145 superset/models/helpers.py:138 msgid "Custom SQL fields cannot contain sub-queries." msgstr "Benutzerdefinierte SQL-Felder dürfen keine Unterabfragen enthalten." @@ -4892,7 +4962,7 @@ msgstr "Spalten anpassen" msgid "Cyclic dependency detected" msgstr "Zyklische Abhängigkeit erkannt" -#: superset/connectors/sqla/views.py:256 +#: superset/connectors/sqla/views.py:255 msgid "D3 Format" msgstr "D3-Format" @@ -4902,7 +4972,7 @@ msgstr "D3-Format" msgid "D3 format" msgstr "D3 Format" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:22 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:146 msgid "D3 format syntax: https://github.com/d3/d3-format" msgstr "D3-Formatsyntax: https://github.com/d3/d3-format" @@ -4921,7 +4991,7 @@ msgstr "" msgid "D3 time format for datetime columns" msgstr "D3-Zeitformat für datetime-Spalten" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:53 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 msgid "D3 time format syntax: https://github.com/d3/d3-time-format" msgstr "D3-Zeitformatsyntax: https://github.com/d3/d3-time-format" @@ -4943,7 +5013,7 @@ msgstr "DEZ" msgid "DELETE" msgstr "LÖSCHEN" -#: superset-frontend/src/pages/DatabaseList/index.tsx:332 +#: superset-frontend/src/pages/DatabaseList/index.tsx:343 msgid "DML" msgstr "DML" @@ -4968,20 +5038,18 @@ msgstr "Dunkelmodus" #: superset-frontend/src/features/home/DashboardTable.tsx:194 #: superset-frontend/src/features/home/RightMenu.tsx:228 #: superset-frontend/src/pages/DashboardList/index.tsx:672 -#: superset/views/dashboard/mixin.py:77 -#: superset/views/dashboard/views.py:183 +#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:183 msgid "Dashboard" msgstr "Dashboard" -#: superset-frontend/src/explore/actions/saveModalActions.js:135 +#: superset-frontend/src/explore/actions/saveModalActions.js:129 #, python-format msgid "Dashboard [%s] just got created and chart [%s] was added to it" msgstr "Dashboard [%s] wurde gerade erstellt und Diagramm [%s] hinzugefügt" -#: superset/views/core.py:1122 +#: superset/views/core.py:1144 msgid "Dashboard [{}] just got created and chart [{}] was added to it" -msgstr "" -"Dashboard [{}] wurde gerade erstellt und Diagramm [{}] wurde hinzugefügt" +msgstr "Dashboard [{}] wurde gerade erstellt und Diagramm [{}] wurde hinzugefügt" #: superset/dashboards/commands/exceptions.py:54 msgid "Dashboard could not be created." @@ -5046,7 +5114,7 @@ msgstr "Dashboard-Nutzung" #: superset-frontend/src/pages/Home/index.tsx:385 #: superset-frontend/src/profile/components/CreatedContent.tsx:101 #: superset-frontend/src/profile/components/Favorites.tsx:99 -#: superset/initialization/__init__.py:249 superset/views/chart/mixin.py:78 +#: superset/initialization/__init__.py:251 superset/views/chart/mixin.py:78 #: superset/views/dashboard/mixin.py:24 msgid "Dashboards" msgstr "Dashboards" @@ -5070,7 +5138,7 @@ msgstr "Gestrichelt" #: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:708 #: superset-frontend/src/features/home/RightMenu.tsx:169 -#: superset/initialization/__init__.py:244 +#: superset/initialization/__init__.py:246 msgid "Data" msgstr "Daten" @@ -5078,7 +5146,7 @@ msgstr "Daten" msgid "Data Table" msgstr "Datentabelle" -#: superset/datasets/commands/exceptions.py:197 +#: superset/datasets/commands/exceptions.py:214 msgid "Data URI is not allowed." msgstr "Daten-URI ist nicht zulässig." @@ -5092,7 +5160,7 @@ msgstr "Daten-URI ist nicht zulässig." msgid "Data Zoom" msgstr "Datenzoom" -#: superset/sqllab/commands/results.py:116 superset/views/core.py:2195 +#: superset/sqllab/commands/results.py:116 superset/views/core.py:2231 msgid "" "Data could not be deserialized from the results backend. The storage " "format might have changed, rendering the old data stake. You need to re-" @@ -5102,13 +5170,13 @@ msgstr "" "Speicherformat hat sich möglicherweise geändert, wodurch die alten Daten " "ungültig wurden. Sie müssen die ursprüngliche Abfrage erneut ausführen." -#: superset/sqllab/commands/results.py:75 superset/views/core.py:2148 +#: superset/sqllab/commands/results.py:75 superset/views/core.py:2184 msgid "" "Data could not be retrieved from the results backend. You need to re-run " "the original query." msgstr "" -"Daten konnten nicht deserialisiert werden. Möglicherweise möchten Sie die " -"Abfrage erneut ausführen." +"Daten konnten nicht deserialisiert werden. Möglicherweise möchten Sie die" +" Abfrage erneut ausführen." #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/components/PlaySlider.jsx:182 msgid "Data has no time steps" @@ -5118,7 +5186,7 @@ msgstr "Daten haben keine Zeitschritte" msgid "Data preview" msgstr "Datenvorschau" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:283 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:278 msgid "Data refreshed" msgstr "Daten aktualisiert" @@ -5137,26 +5205,25 @@ msgstr "DataFrame mit mindestens eine Zeitreihe enhalten" msgid "DataFrame must include temporal column" msgstr "DataFrame muss temporale Spalte enthalten" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:275 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:274 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -#: superset-frontend/src/pages/DatabaseList/index.tsx:267 -#: superset-frontend/src/pages/DatabaseList/index.tsx:296 -#: superset-frontend/src/pages/DatasetList/index.tsx:349 -#: superset-frontend/src/pages/DatasetList/index.tsx:520 +#: superset-frontend/src/pages/DatabaseList/index.tsx:278 +#: superset-frontend/src/pages/DatabaseList/index.tsx:307 +#: superset-frontend/src/pages/DatasetList/index.tsx:360 +#: superset-frontend/src/pages/DatasetList/index.tsx:531 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:241 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:349 #: superset-frontend/src/pages/SavedQueryList/index.tsx:287 #: superset-frontend/src/pages/SavedQueryList/index.tsx:448 -#: superset/connectors/sqla/views.py:479 -#: superset/connectors/sqla/views.py:480 +#: superset/connectors/sqla/views.py:386 superset/connectors/sqla/views.py:387 #: superset/templates/superset/import_dashboards.html:53 -#: superset/views/database/forms.py:137 superset/views/database/forms.py:305 -#: superset/views/database/forms.py:436 -#: superset/views/database/mixins.py:188 superset/views/sql_lab/views.py:83 +#: superset/views/database/forms.py:137 superset/views/database/forms.py:315 +#: superset/views/database/forms.py:446 superset/views/database/mixins.py:188 +#: superset/views/sql_lab/views.py:83 msgid "Database" msgstr "Datenbank" -#: superset/views/database/views.py:478 +#: superset/views/database/views.py:481 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " @@ -5166,7 +5233,7 @@ msgstr "" "spaltenförmige Uploads nicht zulässig. Bitte wenden Sie sich an Ihre*n " "Superset-Administrator*in." -#: superset/views/database/views.py:179 +#: superset/views/database/views.py:180 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " @@ -5176,7 +5243,7 @@ msgstr "" "Uploads nicht zulässig. Bitte wenden Sie sich an Ihre*n Superset-" "Administrator*in." -#: superset/views/database/views.py:318 +#: superset/views/database/views.py:321 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " @@ -5186,11 +5253,11 @@ msgstr "" "Uploads nicht zulässig. Bitte wenden Sie sich an Ihre*n Superset-" "Administrator*in." -#: superset/initialization/__init__.py:241 +#: superset/initialization/__init__.py:243 msgid "Database Connections" msgstr "Datenbankverbindungen" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1467 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1522 msgid "Database Creation Error" msgstr "Fehler bei der Datenbankerstellung" @@ -5199,9 +5266,9 @@ msgid "Database URL" msgstr "Datenbank URL" #: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:827 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:849 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1150 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:882 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:904 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1205 msgid "Database connected" msgstr "Datenbank verbunden" @@ -5227,7 +5294,7 @@ msgstr "Die Datenbank lässt keine Datenbearbeitung zu." msgid "Database does not exist" msgstr "Datenbank existiert nicht" -#: superset/connectors/sqla/models.py:1793 superset/models/helpers.py:1966 +#: superset/models/helpers.py:2063 msgid "Database does not support subqueries" msgstr "Datenbank unterstützt keine Unterabfragen" @@ -5237,9 +5304,10 @@ msgid "" "documentation page for installation instructions: " msgstr "" "Datenbanktreiber für den Import ist möglicherweise nicht installiert. " -"Installationsanweisungen finden Sie auf der Superset-Dokumentationsseite: " +"Installationsanweisungen finden Sie auf der Superset-Dokumentationsseite:" +" " -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:429 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 msgid "Database error" msgstr "Datenbankfehler" @@ -5252,8 +5320,8 @@ msgid "Database is required for alerts" msgstr "Für Alarme ist eine Datenbank erforderlich" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:113 -#: superset/db_engine_specs/base.py:1845 -#: superset/db_engine_specs/clickhouse.py:209 +#: superset/db_engine_specs/base.py:1880 +#: superset/db_engine_specs/clickhouse.py:212 msgid "Database name" msgstr "Datenbank" @@ -5265,7 +5333,7 @@ msgstr "Datenbank darf nicht geändert werden" msgid "Database not found." msgstr "Datenbank nicht gefunden." -#: superset/views/core.py:1179 +#: superset/views/core.py:1201 #, python-format msgid "Database not found: %(id)s" msgstr "Datenbank nicht gefunden: %(id)s" @@ -5278,24 +5346,24 @@ msgstr "Datenbankparameter sind ungültig." msgid "Database passwords" msgstr "Datenbank-Kennwörter" -#: superset/db_engine_specs/base.py:1842 -#: superset/db_engine_specs/clickhouse.py:206 +#: superset/db_engine_specs/base.py:1876 +#: superset/db_engine_specs/clickhouse.py:208 #: superset/db_engine_specs/databricks.py:52 msgid "Database port" msgstr "Datenbankport" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:811 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:853 msgid "Database settings updated" msgstr "Datenbankeinstellungen aktualisiert" -#: superset-frontend/src/pages/DatabaseList/index.tsx:258 +#: superset-frontend/src/pages/DatabaseList/index.tsx:269 #: superset-frontend/src/profile/components/Security.tsx:47 #: superset/views/database/mixins.py:33 msgid "Databases" msgstr "Datenbanken" -#: superset/views/database/forms.py:219 superset/views/database/forms.py:380 -#: superset/views/database/forms.py:471 +#: superset/views/database/forms.py:229 superset/views/database/forms.py:390 +#: superset/views/database/forms.py:481 msgid "Dataframe Index" msgstr "Dataframe-Index" @@ -5307,7 +5375,7 @@ msgstr "Dataframe-Index" #: superset-frontend/src/pages/ChartCreation/index.tsx:390 #: superset-frontend/src/pages/ChartList/index.tsx:391 #: superset-frontend/src/pages/ChartList/index.tsx:678 -#: superset-frontend/src/pages/DatasetList/index.tsx:606 +#: superset-frontend/src/pages/DatasetList/index.tsx:617 msgid "Dataset" msgstr "Datensatz" @@ -5316,7 +5384,7 @@ msgstr "Datensatz" msgid "Dataset %(name)s already exists" msgstr "Datensatz %(name)s bereits vorhanden" -#: superset-frontend/src/explore/components/SaveModal.tsx:331 +#: superset-frontend/src/explore/components/SaveModal.tsx:366 msgid "Dataset Name" msgstr "Datensatzbezeichnung" @@ -5328,28 +5396,28 @@ msgstr "Fehler beim Löschen der Datensatzspalte." msgid "Dataset column not found." msgstr "Datensatz-Spalte nicht gefunden." -#: superset/datasets/commands/exceptions.py:157 +#: superset/datasets/commands/exceptions.py:174 msgid "Dataset could not be created." msgstr "Datensatz konnte nicht erstellt werden." -#: superset/datasets/commands/exceptions.py:165 +#: superset/datasets/commands/exceptions.py:182 msgid "Dataset could not be deleted." msgstr "Datensatz konnte nicht gelöscht werden." -#: superset/datasets/commands/exceptions.py:193 +#: superset/datasets/commands/exceptions.py:210 msgid "Dataset could not be duplicated." msgstr "Der Datensatz konnte nicht dupliziert werden." -#: superset/datasets/commands/exceptions.py:161 -#: superset/datasets/commands/exceptions.py:173 +#: superset/datasets/commands/exceptions.py:178 +#: superset/datasets/commands/exceptions.py:190 msgid "Dataset could not be updated." msgstr "Datensatz konnte nicht aktualisiert werden." -#: superset/datasets/commands/exceptions.py:149 +#: superset/datasets/commands/exceptions.py:166 msgid "Dataset does not exist" msgstr "Datensatz existiert nicht" -#: superset-frontend/src/pages/DatasetList/index.tsx:185 +#: superset-frontend/src/pages/DatasetList/index.tsx:196 msgid "Dataset imported" msgstr "Datensatz importiert" @@ -5370,22 +5438,22 @@ msgstr "Datensatz-Metrik nicht gefunden." msgid "Dataset name" msgstr "Datensatzname" -#: superset/datasets/commands/exceptions.py:153 +#: superset/datasets/commands/exceptions.py:170 msgid "Dataset parameters are invalid." msgstr "Datensatz-Parameter sind ungültig." -#: superset/dashboards/api.py:430 +#: superset/dashboards/api.py:415 #, python-format msgid "Dataset schema is invalid, caused by: %(error)s" msgstr "Das Datensatz-Schema ist ungültig, verursacht durch: %(error)s" -#: superset/datasets/commands/exceptions.py:169 +#: superset/datasets/commands/exceptions.py:186 msgid "Dataset(s) could not be bulk deleted." msgstr "Datensätze konnten nicht massengelöscht werden." -#: superset-frontend/src/pages/DatasetList/index.tsx:589 +#: superset-frontend/src/pages/DatasetList/index.tsx:600 #: superset-frontend/src/profile/components/Security.tsx:61 -#: superset/initialization/__init__.py:265 +#: superset/initialization/__init__.py:267 msgid "Datasets" msgstr "Datensätze" @@ -5410,11 +5478,11 @@ msgstr "Datenquelle" msgid "Datasource & Chart Type" msgstr "Datenquelle & Diagrammtyp" -#: superset/commands/exceptions.py:131 +#: superset/commands/exceptions.py:135 msgid "Datasource does not exist" msgstr "Datenquelle ist nicht vorhanden" -#: superset/commands/exceptions.py:123 +#: superset/commands/exceptions.py:127 msgid "Datasource type is invalid" msgstr "Datenquellen-Typ ist ungültig" @@ -5431,8 +5499,7 @@ msgstr "Datum-Zeit-Format" msgid "Date filter" msgstr "Datumsfilter" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:71 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:151 #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:135 @@ -5452,23 +5519,23 @@ msgstr "Datumsformat-Zeichenfolge" msgid "Date/Time" msgstr "Datum/Zeit" -#: superset/connectors/sqla/views.py:163 +#: superset/connectors/sqla/views.py:162 msgid "Datetime Format" msgstr "Zeit/Datum-Format" -#: superset/connectors/sqla/models.py:1237 superset/models/helpers.py:1427 +#: superset/models/helpers.py:1502 msgid "" "Datetime column not provided as part table configuration and is required " "by this type of chart" msgstr "" -"Datetime-Spalte wird nicht als Teil-Tabellenkonfiguration bereitgestellt, " -"ist aber für diesen Diagrammtyp erforderlich" +"Datetime-Spalte wird nicht als Teil-Tabellenkonfiguration bereitgestellt," +" ist aber für diesen Diagrammtyp erforderlich" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:300 msgid "Datetime format" msgstr "Datum Zeit Format" -#: superset/db_engine_specs/base.py:106 +#: superset/db_engine_specs/base.py:107 msgid "Day" msgstr "Tag" @@ -5481,7 +5548,7 @@ msgstr "Tag (freq=D)" msgid "Days %s" msgstr "Tage %s" -#: superset/connectors/sqla/models.py:1936 superset/models/helpers.py:988 +#: superset/connectors/sqla/models.py:1222 superset/models/helpers.py:1024 msgid "Db engine did not return all queried columns" msgstr "Db-Modul hat nicht alle abgefragten Spalten zurückgegeben" @@ -5493,48 +5560,57 @@ msgstr "Deaktivieren" msgid "December" msgstr "Dezember" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:70 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:89 msgid "Decides which column to sort the base axis by." -msgstr "" -"Entscheidet, nach welcher Spalte die Basisachse sortiert werden soll." +msgstr "Entscheidet, nach welcher Spalte die Basisachse sortiert werden soll." -#: superset/views/database/forms.py:194 superset/views/database/forms.py:373 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:160 +#, fuzzy +msgid "Decides which measure to sort the base axis by." +msgstr "Entscheidet, nach welcher Spalte die Basisachse sortiert werden soll." + +#: superset/views/database/forms.py:204 superset/views/database/forms.py:383 msgid "Decimal Character" msgstr "Dezimalzeichen" -#: superset/viz.py:2743 +#: superset/viz.py:2700 msgid "Deck.gl - 3D Grid" msgstr "Deck.gl - 3D-Raster" -#: superset/viz.py:2859 +#: superset/viz.py:2825 msgid "Deck.gl - 3D HEX" msgstr "Deck.gl - 3D HEX" -#: superset/viz.py:2899 +#: superset/viz.py:2890 msgid "Deck.gl - Arc" msgstr "Deck.gl - Bogen" -#: superset/viz.py:2880 +#: superset/viz.py:2869 msgid "Deck.gl - GeoJSON" msgstr "Deck.gl - GeoJSON" -#: superset/viz.py:2468 +#: superset/viz.py:2848 +#, fuzzy +msgid "Deck.gl - Heatmap" +msgstr "Deck.gl - Diagramme" + +#: superset/viz.py:2406 msgid "Deck.gl - Multiple Layers" msgstr "Deck.gl - Mehrere Ebenen" -#: superset/viz.py:2775 +#: superset/viz.py:2735 msgid "Deck.gl - Paths" msgstr "Deck.gl - Pfade" -#: superset/viz.py:2826 +#: superset/viz.py:2789 msgid "Deck.gl - Polygon" msgstr "Deck.gl - Polygon" -#: superset/viz.py:2662 +#: superset/viz.py:2612 msgid "Deck.gl - Scatter plot" msgstr "Deck.gl - Streudiagramm" -#: superset/viz.py:2714 +#: superset/viz.py:2668 msgid "Deck.gl - Screen Grid" msgstr "Deck.gl - Bildschirmraster" @@ -5542,7 +5618,7 @@ msgstr "Deck.gl - Bildschirmraster" msgid "Default" msgstr "Standard" -#: superset/connectors/sqla/views.py:484 +#: superset/connectors/sqla/views.py:391 msgid "Default Endpoint" msgstr "Standard-Endpunkt" @@ -5586,15 +5662,13 @@ msgid "Default value is required" msgstr "Standardwert ist erforderlich" #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 -msgid "" -"Default value must be set when \"Filter has default value\" is checked" +msgid "Default value must be set when \"Filter has default value\" is checked" msgstr "" "Standardwert muss festgelegt werden, wenn \"Filter hat Standardwert\" " "aktiviert ist" #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 -msgid "" -"Default value must be set when \"Filter value is required\" is checked" +msgid "Default value must be set when \"Filter value is required\" is checked" msgstr "" "Der Standardwert muss festgelegt werden, wenn „Filterwert ist " "erforderlich\" aktiviert ist" @@ -5612,8 +5686,8 @@ msgid "" "Define a function that receives the input and outputs the content for a " "tooltip" msgstr "" -"Definieren Sie eine Funktion, die die Eingabe empfängt und den Inhalt für " -"einen Tooltip ausgibt" +"Definieren Sie eine Funktion, die die Eingabe empfängt und den Inhalt für" +" einen Tooltip ausgibt" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 msgid "Define a function that returns a URL to navigate to when user clicks" @@ -5624,8 +5698,8 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 msgid "" "Define a javascript function that receives the data array used in the " -"visualization and is expected to return a modified version of that array. " -"This can be used to alter properties of the data, filter, or enrich the " +"visualization and is expected to return a modified version of that array." +" This can be used to alter properties of the data, filter, or enrich the " "array." msgstr "" "Definieren Sie eine JavaScript-Funktion, die das in der Visualisierung " @@ -5699,11 +5773,13 @@ msgstr "" #: superset-frontend/src/pages/CssTemplateList/index.tsx:338 #: superset-frontend/src/pages/DashboardList/index.tsx:427 #: superset-frontend/src/pages/DashboardList/index.tsx:712 -#: superset-frontend/src/pages/DatasetList/index.tsx:418 -#: superset-frontend/src/pages/DatasetList/index.tsx:751 +#: superset-frontend/src/pages/DatasetList/index.tsx:429 +#: superset-frontend/src/pages/DatasetList/index.tsx:773 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:182 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:313 #: superset-frontend/src/pages/SavedQueryList/index.tsx:542 #: superset-frontend/src/pages/Tags/index.tsx:153 -#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:663 +#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:664 msgid "Delete" msgstr "Löschen" @@ -5716,11 +5792,11 @@ msgstr "%s löschen?" msgid "Delete Annotation?" msgstr "Anmerkung löschen?" -#: superset-frontend/src/pages/DatabaseList/index.tsx:529 +#: superset-frontend/src/pages/DatabaseList/index.tsx:551 msgid "Delete Database?" msgstr "Datenbank löschen?" -#: superset-frontend/src/pages/DatasetList/index.tsx:723 +#: superset-frontend/src/pages/DatasetList/index.tsx:745 msgid "Delete Dataset?" msgstr "Datensatz löschen?" @@ -5741,7 +5817,7 @@ msgstr "Report löschen?" msgid "Delete Template?" msgstr "Vorlage löschen?" -#: superset/views/base.py:663 +#: superset/views/base.py:664 msgid "Delete all Really?" msgstr "Wirklich alle löschen?" @@ -5753,7 +5829,7 @@ msgstr "Anmerkung löschen" msgid "Delete dashboard tab?" msgstr "Dashboard-Reiter löschen?" -#: superset-frontend/src/pages/DatabaseList/index.tsx:405 +#: superset-frontend/src/pages/DatabaseList/index.tsx:416 msgid "Delete database" msgstr "Datenbank löschen" @@ -5777,6 +5853,11 @@ msgstr "" "Löschen Sie diesen Container und speichern Sie, um diese Nachricht zu " "entfernen." +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:108 +#, fuzzy +msgid "Deleted" +msgstr "Löschen" + #: superset/annotation_layers/annotations/api.py:504 #, python-format msgid "Deleted %(num)d annotation" @@ -5791,7 +5872,7 @@ msgid_plural "Deleted %(num)d annotation layers" msgstr[0] "%(num)d Anmerkungebene gelöscht" msgstr[1] "%(num)d Anmerkungsebenen gelöscht" -#: superset/charts/api.py:524 +#: superset/charts/api.py:521 #, python-format msgid "Deleted %(num)d chart" msgid_plural "Deleted %(num)d charts" @@ -5805,14 +5886,14 @@ msgid_plural "Deleted %(num)d css templates" msgstr[0] "Gelöschte %(num)d CSS-Vorlage" msgstr[1] "Gelöschte %(num)d CSS-Vorlagen" -#: superset/dashboards/api.py:760 +#: superset/dashboards/api.py:745 #, python-format msgid "Deleted %(num)d dashboard" msgid_plural "Deleted %(num)d dashboards" msgstr[0] "%(num)d Dashboard gelöscht" msgstr[1] "%(num)d Dashboards gelöscht" -#: superset/datasets/api.py:783 +#: superset/datasets/api.py:789 #, python-format msgid "Deleted %(num)d dataset" msgid_plural "Deleted %(num)d datasets" @@ -5826,6 +5907,13 @@ msgid_plural "Deleted %(num)d report schedules" msgstr[0] "%(num)d Report-Ausführungspläne gelöscht" msgstr[1] "%(num)d Report-Ausführungspläne gelöscht" +#: superset/row_level_security/api.py:349 +#, fuzzy, python-format +msgid "Deleted %(num)d rules" +msgid_plural "Deleted %(num)d rules" +msgstr[0] "%(num)d Diagramm gelöscht" +msgstr[1] "%(num)d Diagramme gelöscht" + #: superset/queries/saved_queries/api.py:222 #, python-format msgid "Deleted %(num)d saved query" @@ -5833,13 +5921,18 @@ msgid_plural "Deleted %(num)d saved queries" msgstr[0] "%(num)d gespeicherte Abfrage gelöscht" msgstr[1] "%(num)d gespeicherte Abfragen gelöscht" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:94 +#, fuzzy, python-format +msgid "Deleted %s" +msgstr "Gelöscht: %s" + #: superset-frontend/src/features/home/SavedQueries.tsx:172 #: superset-frontend/src/pages/AlertReportList/index.tsx:183 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 #: superset-frontend/src/pages/AnnotationList/index.tsx:117 #: superset-frontend/src/pages/CssTemplateList/index.tsx:93 -#: superset-frontend/src/pages/DatabaseList/index.tsx:158 -#: superset-frontend/src/pages/DatasetList/index.tsx:653 +#: superset-frontend/src/pages/DatabaseList/index.tsx:169 +#: superset-frontend/src/pages/DatasetList/index.tsx:664 #: superset-frontend/src/pages/SavedQueryList/index.tsx:242 #: superset-frontend/src/reports/actions/reports.js:158 #: superset-frontend/src/views/CRUD/utils.tsx:272 @@ -5861,7 +5954,7 @@ msgstr "" msgid "Delimited long & lat single column" msgstr "Länge und Breite in einer Spalte mit Trennzeichen" -#: superset/views/database/forms.py:150 +#: superset/views/database/forms.py:160 msgid "Delimiter" msgstr "Trennzeichen" @@ -5888,33 +5981,33 @@ msgstr "Abhängig von" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:40 +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 msgid "Deprecated" msgstr "Veraltet" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:83 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:114 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:96 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:127 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:55 #: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:157 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:156 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:265 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1206 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1210 -#: superset-frontend/src/components/ReportModal/index.tsx:294 +#: superset-frontend/src/components/ReportModal/index.tsx:293 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1158 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:465 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 #: superset-frontend/src/pages/AnnotationList/index.tsx:161 -#: superset/connectors/sqla/views.py:157 -#: superset/connectors/sqla/views.py:251 -#: superset/connectors/sqla/views.py:362 -#: superset/connectors/sqla/views.py:491 superset/views/chart/mixin.py:80 +#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:398 superset/views/chart/mixin.py:80 #: superset/views/sql_lab/views.py:84 msgid "Description" msgstr "Beschreibung" @@ -5928,7 +6021,7 @@ msgstr "Beschreibung (diese ist in der Liste zu sehen)" msgid "Description Columns" msgstr "Beschreibungsspalten" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:50 msgid "Description text that shows up below your Big Number" msgstr "Beschreibungstext, der unter Ihrer Großen Zahl angezeigt wird" @@ -5950,8 +6043,7 @@ msgstr "Bestimmt, wie „Whisker“ und Ausreißer berechnet werden." msgid "" "Determines whether or not this dashboard is visible in the list of all " "dashboards" -msgstr "" -"Bestimmt, ob dieses Dashboard in der Liste aller Dashboards sichtbar ist" +msgstr "Bestimmt, ob dieses Dashboard in der Liste aller Dashboards sichtbar ist" #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:231 msgid "Diamond" @@ -5995,7 +6087,7 @@ msgstr "Dimension der y-Achse." msgid "Dimensions" msgstr "Dimensionen" -#: superset/viz.py:2005 +#: superset/viz.py:1928 msgid "Directed Force Layout" msgstr "Kraftbasierte Anordnung" @@ -6005,18 +6097,18 @@ msgstr "Kraftbasierte Anordnung" msgid "Directional" msgstr "Direktional" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:202 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 msgid "Disable SQL Lab data preview queries" msgstr "Deaktivieren von SQL Lab-Datenvorschau-Abfragen" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:205 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 msgid "" "Disable data preview when fetching table metadata in SQL Lab. Useful to " "avoid browser performance issues when using databases with very wide " "tables." msgstr "" -"Datenvorschau beim Abrufen von Tabellenmetadaten in SQL Lab deaktivieren. " -"Nützlich, um Probleme mit der Browserleistung bei der Verwendung von " +"Datenvorschau beim Abrufen von Tabellenmetadaten in SQL Lab deaktivieren." +" Nützlich, um Probleme mit der Browserleistung bei der Verwendung von " "Datenbanken mit sehr breiten Tabellen zu vermeiden." #: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:98 @@ -6051,37 +6143,32 @@ msgstr "Summe auf Spaltenebene anzeigen" msgid "Display configuration" msgstr "Anzeige-Konfiguration" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:87 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:252 msgid "" "Display metrics side by side within each column, as opposed to each " "column being displayed side by side for each metric." msgstr "" -"Zeigen Sie Metriken innerhalb jeder Spalte nebeneinander an, im Gegensatz " -"zur Darstellung einer Spalte je Metrik." +"Zeigen Sie Metriken innerhalb jeder Spalte nebeneinander an, im Gegensatz" +" zur Darstellung einer Spalte je Metrik." #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:217 msgid "Display row level total" msgstr "Summe auf Zeilenebene anzeigen" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:39 msgid "Display settings" msgstr "Darstellungs-Einstellungen" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:78 -msgid "Display total row/column" -msgstr "Gesamtsumme Zeile/Spalte anzeigen" - #: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:35 msgid "" "Displays connections between entities in a graph structure. Useful for " -"mapping relationships and showing which nodes are important in a network. " -"Graph charts can be configured to be force-directed or circulate. If your " -"data has a geospatial component, try the deck.gl Arc chart." +"mapping relationships and showing which nodes are important in a network." +" Graph charts can be configured to be force-directed or circulate. If " +"your data has a geospatial component, try the deck.gl Arc chart." msgstr "" "Zeigt Verbindungen zwischen Elementen in einer Graphstruktur an. " -"Nützlich, um Beziehungen abzubilden und zu zeigen, welche Knoten in einem " -"Netzwerk wichtig sind. Graphen-Diagramme können so konfiguriert werden, " +"Nützlich, um Beziehungen abzubilden und zu zeigen, welche Knoten in einem" +" Netzwerk wichtig sind. Graphen-Diagramme können so konfiguriert werden, " "dass sie kraftgesteuert sind oder zirkulieren. Wenn Ihre Daten über eine " "Geodatenkomponente verfügen, versuchen Sie es mit dem deck.gl Arc-" "Diagramm." @@ -6097,7 +6184,7 @@ msgstr "Verteilen über" msgid "Distribution" msgstr "Verteilung" -#: superset/viz.py:1801 +#: superset/viz.py:1717 msgid "Distribution - Bar Chart" msgstr "Verteilung - Balkendiagramm" @@ -6115,7 +6202,7 @@ msgstr "Donut oder Torten-Diagramm?" msgid "Documentation" msgstr "Dokumentation" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:40 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 msgid "Domain" msgstr "Wertebereich" @@ -6128,18 +6215,18 @@ msgstr "Donut" msgid "Dotted" msgstr "Gepunktet" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:480 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:482 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:292 msgid "Download" msgstr "Herunterladen" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:317 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:504 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:512 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:329 msgid "Download as image" msgstr "Herunterladen als Bild" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:264 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:262 msgid "Download to CSV" msgstr "Als CSV herunterladen" @@ -6152,8 +6239,7 @@ msgstr "Entwurf" #: superset-frontend/src/dashboard/components/DashboardGrid.jsx:194 msgid "Drag and drop components and charts to the dashboard" -msgstr "" -"Ziehen Sie Komponenten und Diagramme per Drag & Drop auf das Dashboard" +msgstr "Ziehen Sie Komponenten und Diagramme per Drag & Drop auf das Dashboard" #: superset-frontend/src/dashboard/components/DashboardGrid.jsx:217 #: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:185 @@ -6167,8 +6253,7 @@ msgstr "Ziehen Sie Komponenten per Drag & Drop auf diese Registerkarte" #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 msgid "Draw a marker on data points. Only applicable for line types." -msgstr "" -"Zeichnen Sie eine Markierung auf Datenpunkten. Gilt nur für Linientypen." +msgstr "Zeichnen Sie eine Markierung auf Datenpunkten. Gilt nur für Linientypen." #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:173 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 @@ -6178,8 +6263,7 @@ msgstr "Zeichnen Sie den Bereich unter Kurven. Gilt nur für Linientypen." #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:177 msgid "Draw line from Pie to label when labels outside?" -msgstr "" -"Linie von Torte zur Beschriftung ziehen, wenn Beschriftungen außerhalb?" +msgstr "Linie von Torte zur Beschriftung ziehen, wenn Beschriftungen außerhalb?" #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:218 msgid "Draw split lines for minor axis ticks" @@ -6194,22 +6278,22 @@ msgstr "Zeichnen von Trennlinien für kleinere Achsenteilstriche" msgid "Draw split lines for minor y-axis ticks" msgstr "Geteilten Linien für kleinere Ticks der y-Achse zeichnen" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:181 -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:191 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 msgid "Drill by" msgstr "Ins-Detail-Zoomen" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:172 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 msgid "Drill by is not available for this data point" msgstr "Heinzoomem ist für diesen Datenpunkt nicht verfügbar" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:170 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 msgid "Drill by is not yet supported for this chart type" msgstr "" "Das Ins-Detail-Zoomen (Drilldown) nach Wert wird für diesen Diagrammtyp " "noch nicht unterstützt." -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:154 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:420 #, python-format msgid "Drill by: %s" msgstr "Hineinzogen nach %s" @@ -6242,60 +6326,36 @@ msgstr "" msgid "Drill to detail: %s" msgstr "Zu Detail zoomen: %s" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:206 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:184 msgid "Drop a column here or click" msgid_plural "Drop columns here or click" msgstr[0] "Legen Sie hier eine Spalte ab oder klicken Sie" msgstr[1] "Legen Sie hier Spalten ab oder klicken Sie" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:335 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:330 msgid "Drop a column/metric here or click" msgid_plural "Drop columns/metrics here or click" msgstr[0] "Legen Sie hier eine Spalte/Metrik ab oder klicken Sie" msgstr[1] "Legen Sie hier eine Spalten/Metriken ab oder klicken Sie" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:248 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 msgid "Drop a temporal column here or click" msgstr "Legen Sie hier eine Spalte ab oder klicken Sie" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:216 -msgid "Drop column here" -msgid_plural "Drop columns here" -msgstr[0] "Spalte hierhin ziehen und ablegen" -msgstr[1] "Spalten hierhin ziehen und ablegen" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:340 -msgid "Drop column or metric here" -msgid_plural "Drop columns or metrics here" -msgstr[0] "Spalte oder Metrik hier ablegen" -msgstr[1] "Spalten oder Metriken hier ablegen" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndSelectLabel.tsx:83 -msgid "Drop columns here" -msgstr "Spalten hier ablegen" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:402 -msgid "Drop columns or metrics here" -msgstr "Spalten oder Metriken hierhin ziehen und ablegen" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:401 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:405 msgid "Drop columns/metrics here or click" msgstr "Spalten/Metriken hierhin ziehen und ablegen oder klicken" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 -msgid "Drop temporal column here" -msgstr "Temporale Spalte hier ablegen" - #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:32 msgid "Dual Line Chart" msgstr "Doppelliniendiagramm" #: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 -#: superset-frontend/src/pages/DatasetList/index.tsx:472 +#: superset-frontend/src/pages/DatasetList/index.tsx:483 msgid "Duplicate" msgstr "Duplizieren" -#: superset/views/datasource/views.py:122 +#: superset/views/datasource/views.py:124 #, python-format msgid "Duplicate column name(s): %(columns)s" msgstr "Doppelte Spaltenname(n): %(columns)s" @@ -6307,7 +6367,8 @@ msgid "" "and metrics have a unique label." msgstr "" "Doppelte Spalten-/Metrikbeschriftungen: %(labels)s. Bitte stellen Sie " -"sicher, dass alle Spalten und Metriken eine eindeutige Beschriftung haben." +"sicher, dass alle Spalten und Metriken eine eindeutige Beschriftung " +"haben." #: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 msgid "Duplicate dataset" @@ -6322,10 +6383,10 @@ msgstr "Registerkarte duplizieren" msgid "Duration" msgstr "Dauer" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:239 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:249 msgid "" -"Duration (in seconds) of the caching timeout for charts of this database. " -"A timeout of 0 indicates that the cache never expires, and -1 bypasses " +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires, and -1 bypasses " "the cache. Note this defaults to the global timeout if undefined." msgstr "" "Dauer (in Sekunden) des Caching-Timeouts für Diagramme dieser Datenbank. " @@ -6335,14 +6396,14 @@ msgstr "" #: superset/views/database/mixins.py:172 msgid "" -"Duration (in seconds) of the caching timeout for charts of this database. " -"A timeout of 0 indicates that the cache never expires. Note this defaults " -"to the global timeout if undefined." +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires. Note this " +"defaults to the global timeout if undefined." msgstr "" "Dauer (in Sekunden) des Caching-Timeouts für Diagramme dieser Datenbank. " -"Ein Timeout von 0 gibt an, dass der Cache nie abläuft. Beachten Sie, dass " -"standardmäßig das globale Timeout verwendet wird, wenn es nicht definiert " -"ist." +"Ein Timeout von 0 gibt an, dass der Cache nie abläuft. Beachten Sie, dass" +" standardmäßig das globale Timeout verwendet wird, wenn es nicht " +"definiert ist." #: superset/views/chart/mixin.py:69 msgid "" @@ -6350,13 +6411,13 @@ msgid "" "defaults to the datasource/table timeout if undefined." msgstr "" "Dauer (in Sekunden) des Caching-Timeouts für dieses Diagramm. Beachten " -"Sie, dass standardmäßig das Datenquellen-/Tabellentimeout verwendet wird, " -"wenn es nicht definiert ist." +"Sie, dass standardmäßig das Datenquellen-/Tabellentimeout verwendet wird," +" wenn es nicht definiert ist." #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 msgid "" -"Duration (in seconds) of the caching timeout for this chart. Set to -1 to " -"bypass the cache. Note this defaults to the dataset's timeout if " +"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" +" bypass the cache. Note this defaults to the dataset's timeout if " "undefined." msgstr "" "Dauer (in Sekunden) des Caching-Timeouts für dieses Diagramm. Setzen Sie " @@ -6364,10 +6425,10 @@ msgstr "" "standardmäßig das Timeout des Datensatzes verwendet wird, wenn kein Wert " "definiert wurde." -#: superset/connectors/sqla/views.py:462 +#: superset/connectors/sqla/views.py:369 msgid "" -"Duration (in seconds) of the caching timeout for this table. A timeout of " -"0 indicates that the cache never expires. Note this defaults to the " +"Duration (in seconds) of the caching timeout for this table. A timeout of" +" 0 indicates that the cache never expires. Note this defaults to the " "database timeout if undefined." msgstr "" "Dauer (in Sekunden) des Caching-Timeouts für diese Tabelle. Ein Timeout " @@ -6375,27 +6436,27 @@ msgstr "" "standardmäßig das Datenbanktimeout verwendet wird, wenn es nicht " "definiert ist." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:261 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:271 msgid "" -"Duration (in seconds) of the metadata caching timeout for schemas of this " -"database. If left unset, the cache never expires." +"Duration (in seconds) of the metadata caching timeout for schemas of this" +" database. If left unset, the cache never expires." msgstr "" "Dauer (in Sekunden) des Cache-Timeouts für Diagramme dieser Datenbank. " -"Ein Timeout von 0 gibt an, dass der Cache nie abläuft. Beachten Sie, dass " -"standardmäßig der globale Timeout verwendet wird, wenn keiner definiert " +"Ein Timeout von 0 gibt an, dass der Cache nie abläuft. Beachten Sie, dass" +" standardmäßig der globale Timeout verwendet wird, wenn keiner definiert " "ist." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:282 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:292 msgid "" "Duration (in seconds) of the metadata caching timeout for tables of this " "database. If left unset, the cache never expires. " msgstr "" -"Dauer (in Sekunden) der Caching-Zeitdauer für Diagramme dieser Datenbank. " -"Ein Timeout von 0 gibt an, dass der Cache nie abläuft. Beachten Sie, dass " -"standardmäßig der globale Timeout verwendet wird, wenn keiner definiert " -"ist. " +"Dauer (in Sekunden) der Caching-Zeitdauer für Diagramme dieser Datenbank." +" Ein Timeout von 0 gibt an, dass der Cache nie abläuft. Beachten Sie, " +"dass standardmäßig der globale Timeout verwendet wird, wenn keiner " +"definiert ist. " -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:50 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" msgstr "Dauer in ms (1,40008 => 1ms 400μs 80ns)" @@ -6403,7 +6464,7 @@ msgstr "Dauer in ms (1,40008 => 1ms 400μs 80ns)" msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" msgstr "Dauer in ms (100,40008 => 100ms 400μs 80ns)" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:49 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 #: superset-frontend/src/explore/controls.jsx:89 msgid "Duration in ms (66000 => 1m 6s)" msgstr "Dauer in ms (66000 => 1m 6s)" @@ -6441,7 +6502,7 @@ msgstr "Alle Filterwerte dynamisch durchsuchen" msgid "ECharts" msgstr "ECharts" -#: superset/reports/notifications/email.py:130 +#: superset/reports/notifications/email.py:133 msgid "EMAIL_REPORTS_CTA" msgstr "EMAIL_REPORTS_CTA" @@ -6451,11 +6512,11 @@ msgstr "EMAIL_REPORTS_CTA" msgid "END (EXCLUSIVE)" msgstr "ENDE (EXKLUSIV)" -#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:171 +#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 msgid "ERROR" msgstr "FEHLER" -#: superset-frontend/src/views/CRUD/hooks.ts:700 +#: superset-frontend/src/views/CRUD/hooks.ts:704 #, python-format msgid "ERROR: %s" msgstr "FEHLER: %s" @@ -6486,8 +6547,9 @@ msgstr "Kantenbreite" #: superset-frontend/src/pages/AlertReportList/index.tsx:385 #: superset-frontend/src/pages/ChartList/index.tsx:553 #: superset-frontend/src/pages/DashboardList/index.tsx:461 -#: superset-frontend/src/pages/DatabaseList/index.tsx:431 -#: superset-frontend/src/pages/DatasetList/index.tsx:452 +#: superset-frontend/src/pages/DatabaseList/index.tsx:442 +#: superset-frontend/src/pages/DatasetList/index.tsx:463 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:200 msgid "Edit" msgstr "Bearbeiten" @@ -6515,7 +6577,7 @@ msgstr "Diagramm bearbeiten" msgid "Edit Chart Properties" msgstr "Diagrammeigenschaften bearbeiten" -#: superset/connectors/sqla/views.py:75 +#: superset/connectors/sqla/views.py:74 msgid "Edit Column" msgstr "Spalte bearbeiten" @@ -6527,7 +6589,7 @@ msgstr "Dashboard bearbeiten" msgid "Edit Database" msgstr "Datenbank bearbeiten" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:199 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:241 msgid "Edit Dataset " msgstr "Datensatz bearbeiten " @@ -6535,7 +6597,7 @@ msgstr "Datensatz bearbeiten " msgid "Edit Log" msgstr "Protokoll bearbeiten" -#: superset/connectors/sqla/views.py:210 +#: superset/connectors/sqla/views.py:209 msgid "Edit Metric" msgstr "Metrik bearbeiten" @@ -6547,15 +6609,16 @@ msgstr "Plugin bearbeiten" msgid "Edit Report" msgstr "Report bearbeiten" -#: superset/connectors/sqla/views.py:293 -msgid "Edit Row level security filter" -msgstr "Sicherheitsfilter auf Zeilenebene bearbeiten" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +#, fuzzy +msgid "Edit Rule" +msgstr "Bearbeitungsmodus" #: superset/views/sql_lab/views.py:55 msgid "Edit Saved Query" msgstr "Gespeicherte Abfrage bearbeiten" -#: superset/connectors/sqla/views.py:387 +#: superset/connectors/sqla/views.py:294 msgid "Edit Table" msgstr "Tabelle bearbeiten" @@ -6572,9 +6635,9 @@ msgstr "Anmerkungsebene bearbeiten" msgid "Edit annotation layer properties" msgstr "Eigenschaften der Anmerkungsebene bearbeiten" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:74 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:122 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:44 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:212 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:217 #: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:405 msgid "Edit chart" msgstr "Diagramm bearbeiten" @@ -6588,7 +6651,7 @@ msgstr "Diagrammeigenschaften bearbeiten" msgid "Edit dashboard" msgstr "Dashboard bearbeiten" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1700 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 msgid "Edit database" msgstr "Datenbank bearbeiten" @@ -6598,7 +6661,7 @@ msgstr "Datensatz bearbeiten" #: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:243 #: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:264 -#: superset-frontend/src/components/ReportModal/index.tsx:212 +#: superset-frontend/src/components/ReportModal/index.tsx:211 msgid "Edit email report" msgstr "E-Mail-Report bearbeiten" @@ -6623,7 +6686,7 @@ msgstr "Vorlage bearbeiten" msgid "Edit template parameters" msgstr "Vorlagenparameter bearbeiten" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:717 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:718 #: superset-frontend/src/dashboard/components/DashboardGrid.jsx:242 msgid "Edit the dashboard" msgstr "Dashboard bearbeiten" @@ -6648,9 +6711,9 @@ msgstr "Filterguppe bearbeiten:" msgid "Either the database is spelled incorrectly or does not exist." msgstr "Entweder ist die Datenbank falsch geschrieben oder existiert nicht." -#: superset/db_engine_specs/mysql.py:150 -#: superset/db_engine_specs/presto.py:654 -#: superset/db_engine_specs/redshift.py:67 +#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:681 +#: superset/db_engine_specs/redshift.py:71 +#: superset/db_engine_specs/starrocks.py:122 #, python-format msgid "Either the username \"%(username)s\" or the password is incorrect." msgstr "" @@ -6720,11 +6783,11 @@ msgstr "Leere Sammlung" msgid "Empty column" msgstr "Leere Spalte" -#: superset/charts/data/api.py:363 +#: superset/charts/data/api.py:366 msgid "Empty query result" msgstr "Leeres Abfrageergebnis" -#: superset/connectors/sqla/models.py:1243 superset/models/helpers.py:1433 +#: superset/models/helpers.py:1508 msgid "Empty query?" msgstr "Leere Abfrage?" @@ -6739,11 +6802,11 @@ msgstr "" "Aktivieren Sie \"Datei-Uploads in Datenbank zulassen\" in den " "Einstellungen einer beliebigen Datenbank" -#: superset/connectors/sqla/views.py:482 +#: superset/connectors/sqla/views.py:389 msgid "Enable Filter Select" msgstr "Filterauswahl aktivieren" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:139 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 msgid "Enable cross-filtering" msgstr "Kreuzfilterung aktivieren" @@ -6778,7 +6841,7 @@ msgstr "Graph-Roaming aktivieren" msgid "Enable node dragging" msgstr "Aktivieren des Ziehens von Knoten" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:170 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 msgid "Enable query cost estimation" msgstr "Abfragekostenschätzung aktivieren" @@ -6789,11 +6852,11 @@ msgstr "" "Aktivieren der serverseitigen Paginierung der Ergebnisse (experimentelle " "Funktion)" -#: superset/viz.py:2567 +#: superset/viz.py:2514 msgid "" -"Encountered invalid NULL spatial " -"entry, please consider filtering " -"those out" +"Encountered invalid NULL spatial entry," +" please consider filtering those " +"out" msgstr "" "Ungültiger räumlicher NULL-Eintrag gefunden, bitte erwägen Sie, diese " "herauszufiltern" @@ -6840,12 +6903,12 @@ msgstr "" "Die Engine-Spezifikation \"%(engine)s\" unterstützt keine Konfiguration " "über Parameter." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:476 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:512 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:516 msgid "Engine Parameters" msgstr "Engine-Parameter" -#: superset/databases/schemas.py:298 +#: superset/databases/schemas.py:302 msgid "" "Engine spec \"InvalidEngine\" does not support being configured via " "individual parameters." @@ -6853,7 +6916,7 @@ msgstr "" "Die Engine-Spezifikation \"%(engine_spec)s\" unterstützt keine " "Konfiguration über einzelne Parameter." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:366 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:376 msgid "Enter CA_BUNDLE" msgstr "Geben Sie CA_BUNDLE ein" @@ -6861,7 +6924,7 @@ msgstr "Geben Sie CA_BUNDLE ein" msgid "Enter Primary Credentials" msgstr "Primäre Anmeldeinformationen eingeben" -#: superset/views/database/forms.py:151 +#: superset/views/database/forms.py:161 msgid "Enter a delimiter for this data" msgstr "Geben Sie ein Trennzeichen für diese Daten ein" @@ -6873,14 +6936,14 @@ msgstr "Geben Sie einen neuen Titel für die Registerkarte ein" msgid "Enter a new title for the tab" msgstr "Geben Sie einen neuen Titel für die Registerkarte ein" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:234 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:255 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:276 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:244 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:286 msgid "Enter duration in seconds" msgstr "Dauer in Sekunden eingeben" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:265 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:367 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:369 msgid "Enter fullscreen" msgstr "Vollbild öffnen" @@ -6888,8 +6951,7 @@ msgstr "Vollbild öffnen" #: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 #, python-format msgid "Enter the required %(dbModelName)s credentials" -msgstr "" -"Geben Sie die erforderlichen %(dbModelName)s Anmeldeinformationen ein." +msgstr "Geben Sie die erforderlichen %(dbModelName)s Anmeldeinformationen ein." #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:128 #: superset-frontend/src/explore/controls.jsx:392 @@ -6908,7 +6970,7 @@ msgstr "Gleiche Datumsgrößen" msgid "Equal to (=)" msgstr "Ist gleich (==)" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:140 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:182 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:139 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:298 #: superset-frontend/src/explore/components/EmbedCodeContent.jsx:57 @@ -6917,22 +6979,22 @@ msgstr "Ist gleich (==)" msgid "Error" msgstr "Fehler" -#: superset/connectors/sqla/models.py:1650 superset/models/helpers.py:1843 +#: superset/models/helpers.py:1919 #, python-format msgid "Error in jinja expression in HAVING clause: %(msg)s" msgstr "Fehler im Jinja-Ausdruck in HAVING-Klausel: %(msg)s" -#: superset/connectors/sqla/models.py:1145 +#: superset/connectors/sqla/models.py:1105 superset/models/helpers.py:835 #, python-format msgid "Error in jinja expression in RLS filters: %(msg)s" msgstr "Fehler im Jinja-Ausdruck in RLS-Filtern: %(msg)s" -#: superset/connectors/sqla/models.py:1633 superset/models/helpers.py:1831 +#: superset/models/helpers.py:1901 #, python-format msgid "Error in jinja expression in WHERE clause: %(msg)s" msgstr "Fehler im Jinja-Ausdruck in WHERE-Klausel: %(msg)s" -#: superset/connectors/sqla/models.py:826 +#: superset/connectors/sqla/models.py:789 #, python-format msgid "Error in jinja expression in fetch values predicate: %(msg)s" msgstr "Fehler im Jinja-Ausdruck im Fetch Values-Prädikat: %(msg)s" @@ -6958,7 +7020,7 @@ msgstr "Fehler beim Abrufen von Diagrammen" msgid "Error while fetching data: %s" msgstr "Fehler beim Abrufen von Daten: %s" -#: superset/connectors/sqla/models.py:953 superset/models/helpers.py:1029 +#: superset/connectors/sqla/models.py:914 superset/models/helpers.py:1072 #, python-format msgid "Error while rendering virtual dataset query: %(msg)s" msgstr "Fehler bei Anzeige der virtuellen Datensatzabfrage: %(msg)s" @@ -6968,12 +7030,12 @@ msgstr "Fehler bei Anzeige der virtuellen Datensatzabfrage: %(msg)s" msgid "Error: %(error)s" msgstr "Fehler: %(error)s" -#: superset/views/core.py:820 superset/views/core.py:1918 +#: superset/views/core.py:842 superset/views/core.py:1955 #, python-format msgid "Error: %(msg)s" msgstr "Fehler: %(msg)s" -#: superset/views/core.py:817 +#: superset/views/core.py:839 msgid "Error: permalink state not found" msgstr "Fehler: Permalink-Status nicht gefunden" @@ -6985,7 +7047,7 @@ msgstr "Kosten schätzen" msgid "Estimate selected query cost" msgstr "Schätze Kosten für ausgewählte Abfragen" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:621 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:615 msgid "Estimate the cost before running a query" msgstr "Schätzen der Kosten vor dem Ausführen einer Abfrage" @@ -7006,7 +7068,7 @@ msgstr "Ereignisnamen" msgid "Event definition" msgstr "Ereignisdefinition" -#: superset/viz.py:2933 +#: superset/viz.py:2927 msgid "Event flow" msgstr "Ereignisablauf" @@ -7053,20 +7115,20 @@ msgstr "Beispiel" msgid "Examples" msgstr "Beispiele" -#: superset/views/database/forms.py:278 +#: superset/views/database/forms.py:288 msgid "Excel File" msgstr "Excel-Datei" -#: superset/views/database/views.py:424 +#: superset/views/database/views.py:427 #, python-format msgid "" -"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in " -"database \"%(db_name)s\"" +"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" +" database \"%(db_name)s\"" msgstr "" "Excel-Datei \"%(excel_filename)s\" in Tabelle \"%(table_name)s\" in " "Datenbank \"%(db_name)s\" hochgeladen" -#: superset/views/database/views.py:303 +#: superset/views/database/views.py:306 msgid "Excel to Database configuration" msgstr "Excel-zu-Datenbank-Konfiguration" @@ -7074,6 +7136,11 @@ msgstr "Excel-zu-Datenbank-Konfiguration" msgid "Exclude selected values" msgstr "Auswahlwerte ausschließen" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:405 +#, fuzzy +msgid "Excluded roles" +msgstr "Zeitreihen einschließen" + #: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 msgid "Executed SQL" msgstr "Ausgeführtes SQL" @@ -7090,16 +7157,16 @@ msgstr "Ausführungs-ID" msgid "Execution log" msgstr "Aktionsprotokoll" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:411 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:419 msgid "Existing dataset" msgstr "Vorhandener Datensatz" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:264 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:366 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:368 msgid "Exit fullscreen" msgstr "Vollbildanzeige beenden" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 msgid "Expand" msgstr "Erweitern" @@ -7111,11 +7178,11 @@ msgstr "Alle aufklappen" msgid "Expand data panel" msgstr "Datenbereich erweitern" -#: superset-frontend/src/components/Table/index.tsx:209 +#: superset-frontend/src/components/Table/index.tsx:213 msgid "Expand row" msgstr "Zeile erweitern" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:197 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 msgid "Expand table preview" msgstr "Tabellenvorschau erweitern" @@ -7136,6 +7203,7 @@ msgstr "" " Beispiel: '2x+5'" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:38 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:37 @@ -7150,11 +7218,11 @@ msgid "Experimental" msgstr "Experimentell" #: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 -#: superset/views/core.py:987 +#: superset/views/core.py:1009 msgid "Explore" msgstr "Erkunden" -#: superset/views/core.py:985 +#: superset/views/core.py:1007 #, python-format msgid "Explore - %(table)s" msgstr "Erkunden - %(table)s" @@ -7170,9 +7238,9 @@ msgstr "Untersuchen der Ergebnismenge in der Datenexplorations-Ansicht" #: superset-frontend/src/pages/ChartList/index.tsx:854 #: superset-frontend/src/pages/DashboardList/index.tsx:445 #: superset-frontend/src/pages/DashboardList/index.tsx:720 -#: superset-frontend/src/pages/DatabaseList/index.tsx:415 -#: superset-frontend/src/pages/DatasetList/index.tsx:434 -#: superset-frontend/src/pages/DatasetList/index.tsx:759 +#: superset-frontend/src/pages/DatabaseList/index.tsx:426 +#: superset-frontend/src/pages/DatasetList/index.tsx:445 +#: superset-frontend/src/pages/DatasetList/index.tsx:781 #: superset-frontend/src/pages/SavedQueryList/index.tsx:550 #: superset/views/dashboard/views.py:65 msgid "Export" @@ -7186,7 +7254,7 @@ msgstr "Dashboards exportieren?" msgid "Export query" msgstr "Abfrage exportieren" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:485 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:487 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:316 msgid "Export to .CSV" msgstr "Export nach .CSV" @@ -7195,19 +7263,20 @@ msgstr "Export nach .CSV" msgid "Export to .JSON" msgstr "Exportieren nach . JSON" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:335 msgid "Export to Excel" msgstr "Exportieren nach Excel" -#: superset/views/base.py:606 +#: superset/views/base.py:607 msgid "Export to YAML" msgstr "Exportieren als YAML" -#: superset/views/base.py:606 +#: superset/views/base.py:607 msgid "Export to YAML?" msgstr "Als YAML exportieren?" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:496 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:498 msgid "Export to full .CSV" msgstr "Export in vollständiges . .CSV" @@ -7219,12 +7288,12 @@ msgstr "Export in das ursprüngliche .CSV" msgid "Export to pivoted .CSV" msgstr "Export in das pivotierte .CSV" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:88 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 msgid "Expose database in SQL Lab" msgstr "Datenbank in SQL Lab verfügbar machen" -#: superset-frontend/src/pages/DatabaseList/index.tsx:354 -#: superset-frontend/src/pages/DatabaseList/index.tsx:460 +#: superset-frontend/src/pages/DatabaseList/index.tsx:365 +#: superset-frontend/src/pages/DatabaseList/index.tsx:471 #: superset/views/database/mixins.py:183 msgid "Expose in SQL Lab" msgstr "Verfügbarmachen in SQL Lab" @@ -7233,13 +7302,12 @@ msgstr "Verfügbarmachen in SQL Lab" msgid "Expose this DB in SQL Lab" msgstr "Diese Datenbank in SQL Lab verfügbar machen" -#: superset/connectors/sqla/views.py:161 +#: superset/connectors/sqla/views.py:160 msgid "Expression" msgstr "Ausdruck" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:908 -#: superset/connectors/sqla/views.py:257 -#: superset/connectors/sqla/views.py:494 +#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:401 #: superset/views/database/mixins.py:193 msgid "Extra" msgstr "Extra" @@ -7260,8 +7328,8 @@ msgstr "Zusätzliche Daten für JS" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:909 msgid "" "Extra data to specify table metadata. Currently supports metadata of the " -"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", " -"\"details\": \"This table is the source of truth.\" }, " +"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," +" \"details\": \"This table is the source of truth.\" }, " "\"warning_markdown\": \"This is a warning.\" }`." msgstr "" "Zusätzliche Daten zum Angeben von Tabellenmetadaten. Unterstützt derzeit " @@ -7269,8 +7337,7 @@ msgstr "" "Platform Team\", \"details\": \"This table is the source of truth.\" }, " "\"warning_markdown\": \"This is a warning.\" } `." -#: superset/views/database/mixins.py:240 -#: superset/views/database/mixins.py:264 +#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:264 #, python-format msgid "Extra field cannot be decoded by JSON. %(msg)s" msgstr "Zusätzliches Feld kann nicht durch JSON decodiert werden. %(msg)s" @@ -7289,8 +7356,7 @@ msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:90 msgid "Extra url parameters for use in Jinja templated queries" -msgstr "" -"Zusätzliche URL-Parameter für die Verwendung in Jinja-Vorlagenabfragen" +msgstr "Zusätzliche URL-Parameter für die Verwendung in Jinja-Vorlagenabfragen" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:270 msgid "Extruded" @@ -7312,8 +7378,8 @@ msgstr "Faktor" msgid "Factor to multiply the metric by" msgstr "Faktor, mit dem die Metrik multipliziert wird" -#: superset/views/database/forms.py:167 superset/views/database/forms.py:324 -#: superset/views/database/forms.py:455 +#: superset/views/database/forms.py:177 superset/views/database/forms.py:334 +#: superset/views/database/forms.py:465 msgid "Fail" msgstr "Fehlschlagen" @@ -7324,16 +7390,16 @@ msgid "Failed" msgstr "Fehlgeschlagen" #: superset-frontend/src/SqlLab/actions/sqlLab.js:210 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:346 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:350 msgid "Failed at retrieving results" msgstr "Fehler beim Abrufen der Ergebnisse" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:500 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:496 #, python-format msgid "Failed at stopping query. %s" msgstr "Fehler beim Beenden der Abfrage. %s" -#: superset-frontend/src/components/ReportModal/index.tsx:343 +#: superset-frontend/src/components/ReportModal/index.tsx:342 msgid "Failed to create report" msgstr "Bericht konnte nicht erstellt werden" @@ -7342,23 +7408,39 @@ msgstr "Bericht konnte nicht erstellt werden" msgid "Failed to execute %(query)s" msgstr "Fehler beim Ausführen %(query)s" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:97 +#, fuzzy +msgid "Failed to generate chart edit URL" +msgstr "Diagrammdaten konnten nicht geladen werden" + #: superset-frontend/src/pages/Chart/index.tsx:57 msgid "Failed to load chart data" msgstr "Diagrammdaten konnten nicht geladen werden" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:402 #: superset-frontend/src/pages/Chart/index.tsx:69 msgid "Failed to load chart data." msgstr "Diagrammdaten konnten nicht geladen werden." +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 +#, fuzzy +msgid "Failed to load dimensions for drill by" +msgstr "Keine Dimensionen verfügbar für das Hineinzoomen nach" + #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 msgid "Failed to retrieve advanced type" msgstr "Fehler beim Abrufen des erweiterten Typs" +#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +#, fuzzy +msgid "Failed to save cross-filter scoping" +msgstr "Kreuzfilterung aktivieren" + #: superset/errors.py:143 superset/sqllab/sql_json_executer.py:189 msgid "Failed to start remote query on a worker." msgstr "Remoteabfrage für einen Worker konnte nicht gestartet werden." -#: superset-frontend/src/components/ReportModal/index.tsx:342 +#: superset-frontend/src/components/ReportModal/index.tsx:341 msgid "Failed to update report" msgstr "Fehler beim Aktualisieren des Berichts" @@ -7382,15 +7464,15 @@ msgstr "Favoriten" msgid "February" msgstr "Februar" -#: superset/connectors/sqla/views.py:488 +#: superset/connectors/sqla/views.py:395 msgid "Fetch Values Predicate" msgstr "Werte-Prädikate abrufen" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:538 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:531 msgid "Fetch data preview" msgstr "Datenvorschau abrufen" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:352 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:354 #, python-format msgid "Fetched %s" msgstr "%s abgerufen" @@ -7456,12 +7538,18 @@ msgid "Filter Settings" msgstr "Filtereinstellungen" #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:825 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:362 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:373 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:134 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:255 msgid "Filter Type" msgstr "Filtertyp" #: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:28 -msgid "Filter box" -msgstr "Filterkomponente" +#, fuzzy +msgid "Filter box (deprecated)" +msgstr "Kein Filter ausgewählt." #: superset-frontend/src/dashboard/components/SliceAdder.jsx:351 msgid "Filter charts" @@ -7479,7 +7567,7 @@ msgstr "Filterkonfiguration für die Filterkomponente" msgid "Filter has default value" msgstr "Filter hat den Standardwert" -#: superset-frontend/src/components/Table/index.tsx:197 +#: superset-frontend/src/components/Table/index.tsx:201 msgid "Filter menu" msgstr "Filter-Menü" @@ -7494,13 +7582,12 @@ msgid "Filter name" msgstr "Tabellenname" #: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 -msgid "" -"Filter only displays values relevant to selections made in other filters." +msgid "Filter only displays values relevant to selections made in other filters." msgstr "" "Filter zeigt nur Werte an, die für die Auswahl in anderen Filtern " "relevant sind." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:289 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:283 msgid "Filter results" msgstr "Ergebnisse filtern" @@ -7536,7 +7623,7 @@ msgstr "Filterwert (Groß-/Kleinschreibung beachten)" msgid "Filter value is required" msgstr "Filterwert ist erforderlich" -#: superset/connectors/sqla/models.py:1549 superset/models/helpers.py:1754 +#: superset/models/helpers.py:1815 msgid "Filter value list cannot be empty" msgstr "Filterwertliste darf nicht leer sein" @@ -7544,7 +7631,7 @@ msgstr "Filterwertliste darf nicht leer sein" msgid "Filter your charts" msgstr "Filtern Sie Ihre Diagramme" -#: superset/connectors/sqla/views.py:159 +#: superset/connectors/sqla/views.py:158 msgid "Filterable" msgstr "Filterbar" @@ -7552,7 +7639,7 @@ msgstr "Filterbar" #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 #: superset-frontend/src/explore/controls.jsx:446 #: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:35 -#: superset/viz.py:2142 +#: superset/viz.py:2071 msgid "Filters" msgstr "Filter" @@ -7578,7 +7665,7 @@ msgstr "Filterkonfiguration" msgid "Filters out of scope (%d)" msgstr "Filter außerhalb des Gültigkeitsbereichs (%d)" -#: superset/connectors/sqla/views.py:342 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:435 msgid "" "Filters with the same group key will be ORed together within the group, " "while different filter groups will be ANDed together. Undefined group " @@ -7586,8 +7673,8 @@ msgid "" "example, if a table has three filters, of which two are for departments " "Finance and Marketing (group key = 'department'), and one refers to the " "region Europe (group key = 'region'), the filter clause would apply the " -"filter (department = 'Finance' OR department = 'Marketing') AND (region = " -"'Europe')." +"filter (department = 'Finance' OR department = 'Marketing') AND (region =" +" 'Europe')." msgstr "" "Filter mit demselben Gruppenschlüssel werden innerhalb der Gruppe ODER-" "verknüpft, während verschiedene Filtergruppen zusammen UND-verknüpft " @@ -7595,13 +7682,13 @@ msgstr "" "behandelt, d.h. nicht gruppiert. Wenn eine Tabelle beispielsweise drei " "Filter hat, von denen zwei für die Abteilungen Finanzen und Marketing " "(Gruppenschlüssel = 'Abteilung') sind und einer sich auf die Region " -"Europa bezieht (Gruppenschlüssel = 'Region'), würde die Filterklausel den " -"Filter anwenden (Abteilung = 'Finanzen' ODER Abteilung = 'Marketing') UND " -"(Region = 'Europa')." +"Europa bezieht (Gruppenschlüssel = 'Region'), würde die Filterklausel den" +" Filter anwenden (Abteilung = 'Finanzen' ODER Abteilung = 'Marketing') " +"UND (Region = 'Europa')." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1077 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1125 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1857 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1132 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1180 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 msgid "Finish" msgstr "Fertigstellen" @@ -7650,8 +7737,7 @@ msgstr "Schriftgröße" #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:130 msgid "Font size for axis labels, detail value and other text elements" -msgstr "" -"Schriftgröße für Achsenbeschriftungen, Detailwerte und andere Textelemente" +msgstr "Schriftgröße für Achsenbeschriftungen, Detailwerte und andere Textelemente" #: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:75 msgid "Font size for the biggest value in the list" @@ -7661,7 +7747,7 @@ msgstr "Schriftgröße für den größten Wert in der Liste" msgid "Font size for the smallest value in the list" msgstr "Schriftgröße für den kleinsten Wert in der Liste" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:173 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 msgid "" "For Bigquery, Presto and Postgres, shows a button to compute cost before " "running a query." @@ -7681,7 +7767,7 @@ msgstr "" "Weitere Informationen zu Objekten im Kontext dieser Funktion finden Sie " "im Abschnitt" -#: superset/connectors/sqla/views.py:336 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:408 msgid "" "For regular filters, these are the roles this filter will be applied to. " "For base filters, these are the roles that the filter DOES NOT apply to, " @@ -7696,28 +7782,28 @@ msgstr "" msgid "Force" msgstr "Kraft" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:141 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 msgid "" "Force all tables and views to be created in this schema when clicking " "CTAS or CVAS in SQL Lab." msgstr "" -"Erzwingen Sie, dass alle Tabellen und Ansichten in diesem Schema erstellt " -"werden, wenn Sie in SQL Lab auf CTAS oder CVAS klicken." +"Erzwingen Sie, dass alle Tabellen und Ansichten in diesem Schema erstellt" +" werden, wenn Sie in SQL Lab auf CTAS oder CVAS klicken." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:84 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 msgid "Force date format" msgstr "Datumsformat erzwingen" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:381 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 msgid "Force refresh" msgstr "Aktualisierung erzwingen" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:292 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:291 msgid "Force refresh schema list" msgstr "Aktualisierung der Schemaliste erzwingen" -#: superset-frontend/src/components/TableSelector/index.tsx:317 +#: superset-frontend/src/components/TableSelector/index.tsx:307 msgid "Force refresh table list" msgstr "Aktualisierung erzwingen" @@ -7733,13 +7819,13 @@ msgstr "Fremdschlüssel" msgid "Forest Green" msgstr "Waldgrün" -#: superset/explore/commands/get.py:87 superset/views/core.py:834 +#: superset/explore/commands/get.py:87 superset/views/core.py:856 msgid "Form data not found in cache, reverting to chart metadata." msgstr "" "Formulardaten nicht im Cache gefunden, es wird auf Diagramm-Metadaten " "zurückgesetzt." -#: superset/explore/commands/get.py:95 superset/views/core.py:840 +#: superset/explore/commands/get.py:95 superset/views/core.py:862 msgid "Form data not found in cache, reverting to dataset metadata." msgstr "" "Formulardaten nicht im Cache gefunden. Es wird auf Datensatz-Metadaten " @@ -7751,7 +7837,7 @@ msgstr "" msgid "Formattable" msgstr "Formattabelle" -#: superset-frontend/src/components/ReportModal/index.tsx:255 +#: superset-frontend/src/components/ReportModal/index.tsx:254 msgid "Formatted CSV attached in email" msgstr "Formatierte CSV-Datei in E-Mail angehängt" @@ -7802,7 +7888,7 @@ msgstr "Reibung zwischen Knoten" msgid "Friday" msgstr "Freitag" -#: superset/utils/date_parser.py:267 superset/viz.py:392 +#: superset/utils/date_parser.py:267 superset/viz.py:403 msgid "From date cannot be larger than to date" msgstr "‚Von Datum' kann nicht größer als ‚Bis-Datum' sein" @@ -7820,8 +7906,7 @@ msgstr "Weitere Anpassungen der Anzeige der Spaltenanzeige" #: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:166 msgid "Further customize how to display each metric" -msgstr "" -"Passen Sie weiter an, wie die einzelnen Metriken angezeigt werden sollen" +msgstr "Passen Sie weiter an, wie die einzelnen Metriken angezeigt werden sollen" #: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 #: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 @@ -7873,11 +7958,11 @@ msgstr "Das letzte Datum anhand der Datumseinheit anfordern." msgid "Get the specify date for the holiday" msgstr "Abrufen des angegebenen Datums für den Feiertag" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:713 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:714 msgid "Go to the edit mode to configure the dashboard and add charts" msgstr "" -"Gehen Sie in den Bearbeitungsmodus, um das Dashboard zu konfigurieren und " -"Diagramme hinzuzufügen" +"Gehen Sie in den Bearbeitungsmodus, um das Dashboard zu konfigurieren und" +" Diagramme hinzuzufügen" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:45 msgid "Gold" @@ -7928,20 +8013,23 @@ msgstr "Gruppieren nach" msgid "Group By filter plugin" msgstr "Gruppieren nach Filter-Plugin" -#: superset/viz.py:927 -msgid "Group By' and 'Columns' can't overlap" -msgstr "„Gruppieren nach\" und \"Spalten\" dürfen sich nicht überlappen" - #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:84 msgid "Group By, Metrics or Percentage Metrics must have a value" msgstr "Group By, Metriken oder Prozentmetriken müssen einen Wert haben" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:433 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:139 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:267 +#, fuzzy +msgid "Group Key" +msgstr "Gruppieren nach" + #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 msgid "Group by" msgstr "Gruppieren nach" -#: superset/connectors/sqla/views.py:158 +#: superset/connectors/sqla/views.py:157 msgid "Groupable" msgstr "Gruppierbar" @@ -7970,12 +8058,12 @@ msgstr "Hat „Erstellt von“" msgid "Header" msgstr "Header" -#: superset/views/database/forms.py:244 superset/views/database/forms.py:331 +#: superset/views/database/forms.py:254 superset/views/database/forms.py:341 msgid "Header Row" msgstr "Kopfzeile" #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 -#: superset/viz.py:2249 +#: superset/viz.py:2183 msgid "Heatmap" msgstr "Heatmap" @@ -7999,7 +8087,7 @@ msgstr "Höhe der Sparkline" msgid "Hide Line" msgstr "Linie ausblenden" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:394 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:396 msgid "Hide chart description" msgstr "Diagrammbeschreibung ausblenden" @@ -8025,12 +8113,12 @@ msgid "Hierarchy" msgstr "Hierarchie" #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 -#: superset/viz.py:1743 +#: superset/viz.py:1656 msgid "Histogram" msgstr "Histogramm" #: superset-frontend/src/pages/Home/index.tsx:333 -#: superset/initialization/__init__.py:233 +#: superset/initialization/__init__.py:235 msgid "Home" msgstr "Startseite" @@ -8038,7 +8126,7 @@ msgstr "Startseite" msgid "Horizon Chart" msgstr "Horizont-Diagramm" -#: superset/viz.py:2310 +#: superset/viz.py:2246 msgid "Horizon Charts" msgstr "Horizontdiagramme" @@ -8046,7 +8134,7 @@ msgstr "Horizontdiagramme" msgid "Horizontal" msgstr "Horizontal" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:166 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 msgid "Horizontal (Top)" msgstr "Horizontal (oben)" @@ -8058,12 +8146,12 @@ msgstr "Horizontale Ausrichtung" msgid "Host" msgstr "Host" -#: superset/db_engine_specs/base.py:1839 -#: superset/db_engine_specs/clickhouse.py:203 +#: superset/db_engine_specs/base.py:1872 +#: superset/db_engine_specs/clickhouse.py:204 msgid "Hostname or IP address" msgstr "Hostname oder IP-Adresse" -#: superset/db_engine_specs/base.py:104 +#: superset/db_engine_specs/base.py:105 msgid "Hour" msgstr "Stunde" @@ -8078,8 +8166,7 @@ msgstr "Stunden-Versatz" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 msgid "How do you want to enter service account credentials?" -msgstr "" -"Wie möchten Sie die Anmeldeinformationen für das Dienstkonto eingeben?" +msgstr "Wie möchten Sie die Anmeldeinformationen für das Dienstkonto eingeben?" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:139 msgid "How many buckets should the data be grouped in." @@ -8101,8 +8188,8 @@ msgid "" msgstr "" "So zeigen Sie Zeitverschiebungen an: als einzelne Linien; als absolute " "Differenz zwischen der Hauptzeitreihe und jeder Zeitverschiebung; als " -"prozentuale Veränderung; oder wenn sich das Verhältnis zwischen Reihe und " -"Zeit verschiebt." +"prozentuale Veränderung; oder wenn sich das Verhältnis zwischen Reihe und" +" Zeit verschiebt." #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 @@ -8125,51 +8212,50 @@ msgstr "ID" msgid "Id of root node of the tree." msgstr "ID des Stammknotens der Struktur." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:391 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:401 msgid "" "If Presto or Trino, all the queries in SQL Lab are going to be executed " "as the currently logged on user who must have permission to run them. If " "Hive and hive.server2.enable.doAs is enabled, will run the queries as " -"service account, but impersonate the currently logged on user via hive." -"server2.proxy.user property." +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." msgstr "" "Für Presto oder Trino werden alle Abfragen in SQL Lab mit aktuell " "angemeldeter Benutzer*in ausgeführt, der über die Berechtigung zum " "Ausführen verfügen muss. Für Hive und falls hive.server2.enable.doAs " "aktiviert sind, werden die Abfragen über das Service-Konto ausgeführt, " -"die Identität der aktuell angemeldeten Benutzer*in jedoch über die hive." -"server2.proxy.user-Eigenschaft berücksichtigt." +"die Identität der aktuell angemeldeten Benutzer*in jedoch über die " +"hive.server2.proxy.user-Eigenschaft berücksichtigt." #: superset/views/database/mixins.py:165 msgid "" "If Presto, all the queries in SQL Lab are going to be executed as the " "currently logged on user who must have permission to run them.
If " "Hive and hive.server2.enable.doAs is enabled, will run the queries as " -"service account, but impersonate the currently logged on user via hive." -"server2.proxy.user property." +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." msgstr "" "Für Presto werden alle Abfragen in SQL Lab als aktuell angemeldete " "Benutzer*in ausgeführt, der über die Berechtigung zum Ausführen verfügen " "muss.
Für Hive und falls hive.server2.enable.doAs aktiviert sind, " -"werden die Abfragen als Dienstkonto ausgeführt, die Identität der aktuell " -"angemeldeten Benutzer*in erfolgt jedoch über die hive.server2.proxy.user-" -"Eigenschaft." +"werden die Abfragen als Dienstkonto ausgeführt, die Identität der aktuell" +" angemeldeten Benutzer*in erfolgt jedoch über die hive.server2.proxy" +".user-Eigenschaft." -#: superset/views/database/forms.py:164 +#: superset/views/database/forms.py:174 msgid "If Table Already Exists" msgstr "Wenn Tabelle bereits vorhanden ist" #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1076 -msgid "" -"If a metric is specified, sorting will be done based on the metric value" +msgid "If a metric is specified, sorting will be done based on the metric value" msgstr "" -"Wenn eine Metrik angegeben wird, erfolgt die Sortierung basierend auf dem " -"Metrikwert" +"Wenn eine Metrik angegeben wird, erfolgt die Sortierung basierend auf dem" +" Metrikwert" -#: superset/views/database/forms.py:238 +#: superset/views/database/forms.py:248 msgid "" -"If duplicate columns are not overridden, they will be presented as \"X.1, " -"X.2 ...X.x\"" +"If duplicate columns are not overridden, they will be presented as \"X.1," +" X.2 ...X.x\"" msgstr "" "Wenn doppelte Spalten nicht überschrieben werden, werden sie als \"X.1, " "X.2 ... X.x\" dargestellt" @@ -8180,10 +8266,10 @@ msgstr "" "Falls ausgewählt, legen Sie bitte die Schemata fest, die für den CSV-" "Upload in Extra zulässig sind." -#: superset/views/database/forms.py:318 superset/views/database/forms.py:449 +#: superset/views/database/forms.py:328 superset/views/database/forms.py:459 msgid "" -"If table exists do one of the following: Fail (do nothing), Replace (drop " -"and recreate table) or Append (insert data)." +"If table exists do one of the following: Fail (do nothing), Replace (drop" +" and recreate table) or Append (insert data)." msgstr "" "Wenn eine Tabelle vorhanden ist, soll folgendes passieren: Fehlschlagen " "(Nichts tun), Ersetzen (Tabelle löschen und neu erstellen) oder Anhängen " @@ -8201,16 +8287,15 @@ msgstr "Angesetzte (Null) Örtlichkeiten ignorieren" msgid "Ignore time" msgstr "Zeit ignorieren" -#: superset-frontend/src/components/ReportModal/index.tsx:252 +#: superset-frontend/src/components/ReportModal/index.tsx:251 msgid "Image (PNG) embedded in email" msgstr "Bild (PNG) in E-Mail eingebettet" #: superset-frontend/src/utils/downloadAsImage.ts:55 msgid "Image download failed, please refresh and try again." -msgstr "" -"Bilddownload fehlgeschlagen, bitte aktualisieren und erneut versuchen." +msgstr "Bilddownload fehlgeschlagen, bitte aktualisieren und erneut versuchen." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:386 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:396 msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" msgstr "" "Identität von angemeldeter Benutzer*in annehmen (Presto, Trino, Drill & " @@ -8233,11 +8318,11 @@ msgstr "Importiere %s" msgid "Import Dashboard(s)" msgstr "Dashboards importieren" -#: superset/initialization/__init__.py:337 +#: superset/initialization/__init__.py:331 msgid "Import Dashboards" msgstr "Dashboards importieren" -#: superset/connectors/sqla/views.py:386 +#: superset/connectors/sqla/views.py:293 msgid "Import a table definition" msgstr "Tabellendefinition importieren" @@ -8262,15 +8347,15 @@ msgstr "Dashboards importieren" msgid "Import database failed for an unknown reason" msgstr "Fehler beim Importieren der Datenbank aus unbekanntem Grund" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1912 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1969 msgid "Import database from file" msgstr "Datenbank aus Datei importieren" -#: superset/datasets/commands/exceptions.py:185 +#: superset/datasets/commands/exceptions.py:202 msgid "Import dataset failed for an unknown reason" msgstr "Fehler beim Importieren des Datasatzes aus unbekanntem Grund" -#: superset-frontend/src/pages/DatasetList/index.tsx:620 +#: superset-frontend/src/pages/DatasetList/index.tsx:631 msgid "Import datasets" msgstr "Datensätze importieren" @@ -8301,10 +8386,9 @@ msgstr "in" msgid "Include Series" msgstr "Zeitreihen einschließen" -#: superset-frontend/src/components/ReportModal/index.tsx:295 +#: superset-frontend/src/components/ReportModal/index.tsx:294 msgid "Include a description that will be sent with your report" -msgstr "" -"Fügen Sie eine Beschreibung hinzu, die mit Ihrem Bericht gesendet wird" +msgstr "Fügen Sie eine Beschreibung hinzu, die mit Ihrem Bericht gesendet wird" #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:60 msgid "Include series name as an axis" @@ -8319,7 +8403,7 @@ msgstr "Zeit einschließen" msgid "Index" msgstr "Index" -#: superset/views/database/forms.py:210 superset/views/database/forms.py:341 +#: superset/views/database/forms.py:220 superset/views/database/forms.py:351 msgid "Index Column" msgstr "Index Spalte" @@ -8343,8 +8427,7 @@ msgstr "Innerer Radius des Donutlochs" #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:137 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:189 msgid "Input field supports custom rotation. e.g. 30 for 30°" -msgstr "" -"Das Eingabefeld unterstützt benutzerdefinierte Drehung. z.B. 30 für 30°" +msgstr "Das Eingabefeld unterstützt benutzerdefinierte Drehung. z.B. 30 für 30°" #: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:60 msgid "Instant filtering" @@ -8359,11 +8442,24 @@ msgstr "Sofortige Filterung" msgid "Intensity" msgstr "Intensität" -#: superset/views/database/forms.py:190 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:85 +#, fuzzy +msgid "Intensity Radius" +msgstr "Punktradius" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:86 +msgid "Intensity Radius is the radius at which the weight is distributed" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:69 +msgid "Intensity is the value multiplied by the weight to obtain the final weight" +msgstr "" + +#: superset/views/database/forms.py:200 msgid "Interpret Datetime Format Automatically" msgstr "Automatisches Interpretieren des Datumzeit-Formats" -#: superset/views/database/forms.py:191 +#: superset/views/database/forms.py:201 msgid "Interpret the datetime format automatically" msgstr "Automatisches Interpretieren des Datumzeit-Formats" @@ -8392,6 +8488,20 @@ msgstr "Spalte \"Intervallstart\"" msgid "Intervals" msgstr "Intervalle" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:68 +#, fuzzy +msgid "Intesity" +msgstr "Intensität" + +#: superset/db_engine_specs/ocient.py:274 +#, fuzzy +msgid "" +"Invalid Connection String: Expecting String of the form " +"'ocient://user:pass@host:port/database'." +msgstr "" +"Ungültige Verbindungszeichenfolge, eine gültige Zeichenfolge folgt " +"normalerweise: treiber://konto:passwort@datenbank-host/datenbank-name" + #: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 msgid "Invalid JSON" msgstr "Ungültiges JSON" @@ -8405,7 +8515,7 @@ msgstr "Ungültiger erweiterter Datentyp: %(advanced_data_type)s" msgid "Invalid certificate" msgstr "Ungültiges Zertifikat" -#: superset/views/core.py:1422 +#: superset/views/core.py:1463 msgid "" "Invalid connection string, a valid string usually follows:\n" "'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" @@ -8424,14 +8534,15 @@ msgstr "" #: superset/views/database/validators.py:40 msgid "" -"Invalid connection string, a valid string usually follows:'DRIVER://USER:" -"PASSWORD@DB-HOST/DATABASE-NAME'

Example:'postgresql://user:" -"password@your-postgres-db/database'

" +"Invalid connection string, a valid string usually " +"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" +"NAME'

Example:'postgresql://user:password@your-postgres-" +"db/database'

" msgstr "" "Ungültige Verbindungszeichenfolge, eine gültige Zeichenfolge lautet " "normalerweise:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" -"NAME'

Beispiel:'postgresql://user:password@your-postgres-db/database'" +"NAME'

Beispiel:'postgresql://user:password@your-postgres-" +"db/database'

" #: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 msgid "Invalid cron expression" @@ -8442,15 +8553,15 @@ msgstr "Ungültiger Cron-Ausdruck" msgid "Invalid cumulative operator: %(operator)s" msgstr "Ungültiger kumulativer Operator: %(operator)s" -#: superset/connectors/sqla/views.py:181 superset/datasets/schemas.py:44 +#: superset/connectors/sqla/views.py:180 superset/datasets/schemas.py:44 msgid "Invalid date/timestamp format" msgstr "Ungültiges Datums-/Zeitstempelformat" -#: superset/viz.py:2160 +#: superset/viz.py:2091 msgid "Invalid filter configuration, please select a column" msgstr "Ungültige Filterkonfiguration, bitte Spalte auswählen" -#: superset/connectors/sqla/models.py:1623 superset/models/helpers.py:1820 +#: superset/models/helpers.py:1891 #, python-format msgid "Invalid filter operation type: %(op)s" msgstr "Ungültiger Filtervorgangstyp: %(op)s" @@ -8475,7 +8586,7 @@ msgstr "Ungültige Längen-/Breitengrad-Konfiguration." msgid "Invalid longitude/latitude" msgstr "Ungültiger Längen-/Breitengrad" -#: superset/utils/core.py:1364 +#: superset/utils/core.py:1373 #, python-format msgid "Invalid metric object: %(metric)s" msgstr "Ungültiges Metrik-Objekt: %(metric)s" @@ -8494,7 +8605,12 @@ msgstr "Ungültige Optionen für %(rolling_type)s: %(options)s" msgid "Invalid permalink key" msgstr "Ungültiger Permalink-Schlüssel" -#: superset/common/query_actions.py:228 +#: superset/db_engine_specs/ocient.py:292 +#, python-format +msgid "Invalid reference to column: \"%(column)s\"" +msgstr "" + +#: superset/common/query_actions.py:227 #, python-format msgid "Invalid result type: %(result_type)s" msgstr "Ungültiger Ergebnistyp: %(result_type)s" @@ -8504,7 +8620,7 @@ msgstr "Ungültiger Ergebnistyp: %(result_type)s" msgid "Invalid rolling_type: %(type)s" msgstr "Ungültiger rolling_type: %(type)s" -#: superset/viz.py:2530 +#: superset/viz.py:2474 #, python-format msgid "Invalid spatial point encountered: %s" msgstr "Ungültiger räumlicher Punkt: %s" @@ -8514,7 +8630,7 @@ msgstr "Ungültiger räumlicher Punkt: %s" msgid "Invalid state." msgstr "Ungültiger Zustand." -#: superset/reports/commands/create.py:144 +#: superset/reports/commands/create.py:142 #, python-format msgid "Invalid tab ids: %s(tab_ids)" msgstr "Ungültige Tab-IDs: %s(tab_ids)" @@ -8523,7 +8639,7 @@ msgstr "Ungültige Tab-IDs: %s(tab_ids)" msgid "Inverse selection" msgstr "Auswahl umkehren" -#: superset-frontend/src/components/Table/index.tsx:205 +#: superset-frontend/src/components/Table/index.tsx:209 msgid "Invert current page" msgstr "Aktuelle Seite umkehren" @@ -8541,7 +8657,7 @@ msgstr "Ist Dimension" msgid "Is false" msgstr "Ist falsch" -#: superset/views/base_api.py:143 +#: superset/views/base_api.py:149 msgid "Is favorite" msgstr "Favoriten" @@ -8558,13 +8674,13 @@ msgstr "Ist nicht null" msgid "Is null" msgstr "Ist null" -#: superset/views/base_api.py:171 +#: superset/views/base_api.py:177 msgid "Is tagged" msgstr "Ist markiert" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:362 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 -#: superset/connectors/sqla/views.py:162 +#: superset/connectors/sqla/views.py:161 msgid "Is temporal" msgstr "Ist zeitlich" @@ -8607,7 +8723,7 @@ msgstr "JSON Metadaten" msgid "JSON metadata is invalid!" msgstr "JSON-Metadaten sind ungültig!" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 msgid "" "JSON string containing additional connection configuration. This is used " "to provide connection information for systems like Hive, Presto and " @@ -8647,11 +8763,11 @@ msgstr "JavaScript-Tooltip-Generator" msgid "Jinja templating" msgstr "Jinja Vorlagen" -#: superset/views/database/forms.py:233 +#: superset/views/database/forms.py:243 msgid "Json list of the column names that should be read" msgstr "Json-Liste der Spaltennamen, die gelesen werden sollen" -#: superset/views/database/forms.py:464 +#: superset/views/database/forms.py:474 msgid "" "Json list of the column names that should be read. If not None, only " "these columns will be read from the file." @@ -8659,7 +8775,7 @@ msgstr "" "JSON-Liste der Spaltennamen, die gelesen werden sollen. Wenn nicht " "‚Keine‘, werden nur diese Spalten aus der Datei gelesen." -#: superset/views/database/forms.py:203 +#: superset/views/database/forms.py:213 msgid "" "Json list of the values that should be treated as null. Examples: [\"\"] " "for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " @@ -8669,11 +8785,11 @@ msgstr "" "[\"\"] für leere Zeichenketten, [\"Keine\", \"N/A\"], [\"nan\", " "\"null\"]. Warnung: Hive-Datenbank unterstützt nur einen einzigen Wert" -#: superset/views/database/forms.py:394 +#: superset/views/database/forms.py:404 msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"], " -"[\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports " -"only single value. Use [\"\"] for empty string." +"Json list of the values that should be treated as null. Examples: [\"\"]," +" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " +"supports only single value. Use [\"\"] for empty string." msgstr "" "Json-Liste der Werte, die als NULL behandelt werden sollen. Beispiele: " "[\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warnung: Die Hive-" @@ -8720,8 +8836,8 @@ msgstr "Kilometer" msgid "LIMIT" msgstr "GRENZE" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:80 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:109 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:93 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:122 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:251 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:255 @@ -8798,8 +8914,7 @@ msgstr "Groß" msgid "Last" msgstr "Letzte" -#: superset/connectors/sqla/views.py:481 -#: superset/views/database/mixins.py:190 +#: superset/connectors/sqla/views.py:388 superset/views/database/mixins.py:190 msgid "Last Changed" msgstr "Zuletzt geändert" @@ -8826,7 +8941,7 @@ msgstr "Letzter verfügbarer Wert auf %s" #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:177 #: superset-frontend/src/pages/ChartList/index.tsx:445 #: superset-frontend/src/pages/CssTemplateList/index.tsx:158 -#: superset-frontend/src/pages/DatabaseList/index.tsx:380 +#: superset-frontend/src/pages/DatabaseList/index.tsx:391 msgid "Last modified" msgstr "Zuletzt geändert" @@ -8886,7 +9001,7 @@ msgstr "Zuletzt geändert" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:28 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:90 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:371 msgid "Left" msgstr "Links" @@ -8912,14 +9027,13 @@ msgstr "Linker Abstand" #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:213 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:88 msgid "Left margin, in pixels, allowing for more room for axis labels" -msgstr "" -"Linker Rand in Pixeln, um mehr Platz für Achsenbeschriftungen zu schaffen" +msgstr "Linker Rand in Pixeln, um mehr Platz für Achsenbeschriftungen zu schaffen" #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 msgid "Left to Right" msgstr "Links nach rechts" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:144 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 msgid "Left value" msgstr "Linker Wert" @@ -8932,7 +9046,6 @@ msgstr "Linker Wert" #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:33 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 #: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 #: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 @@ -8948,15 +9061,16 @@ msgstr "Linker Wert" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:35 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 #: superset-frontend/src/visualizations/TimeTable/index.ts:35 msgid "Legacy" msgstr "Veraltet" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:154 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:289 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:115 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:99 msgid "Legend" msgstr "Legende" @@ -8964,7 +9078,7 @@ msgstr "Legende" msgid "Legend Format" msgstr "Legendenformat" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:95 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:92 msgid "Legend Orientation" msgstr "Legenden-Ausrichtung" @@ -8972,7 +9086,7 @@ msgstr "Legenden-Ausrichtung" msgid "Legend Position" msgstr "Position der Legende" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:72 msgid "Legend type" msgstr "Legendentyp" @@ -9023,8 +9137,8 @@ msgid "" "Consider filtering or grouping source/target names instead." msgstr "" "Das Einschränken von Zeilen kann zu unvollständigen Daten und " -"irreführenden Diagrammen führen. Erwägen Sie stattdessen, Quell-/" -"Zielnamen zu filtern oder zu gruppieren." +"irreführenden Diagrammen führen. Erwägen Sie stattdessen, " +"Quell-/Zielnamen zu filtern oder zu gruppieren." #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:136 msgid "Limits the number of cells that get retrieved." @@ -9081,15 +9195,15 @@ msgstr "Linien Stil" #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:66 msgid "" -"Line chart is used to visualize measurements taken over a given category. " -"Line chart is a type of chart which displays information as a series of " +"Line chart is used to visualize measurements taken over a given category." +" Line chart is a type of chart which displays information as a series of " "data points connected by straight line segments. It is a basic type of " "chart common in many fields." msgstr "" "Liniendiagramm wird verwendet, um Messungen zu visualisieren, die über " -"eine bestimmte Kategorie durchgeführt wurden. Liniendiagramm ist eine Art " -"Diagramm, das Informationen als eine Reihe von Datenpunkten anzeigt, die " -"durch gerade Liniensegmente verbunden sind. Es ist ein grundlegender " +"eine bestimmte Kategorie durchgeführt wurden. Liniendiagramm ist eine Art" +" Diagramm, das Informationen als eine Reihe von Datenpunkten anzeigt, die" +" durch gerade Liniensegmente verbunden sind. Es ist ein grundlegender " "Diagrammtyp, der in vielen Bereichen üblich ist." #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:131 @@ -9124,7 +9238,7 @@ msgid "Lines encoding" msgstr "Zeilenkodierung" #: superset-frontend/src/pages/SavedQueryList/index.tsx:226 -#: superset-frontend/src/views/CRUD/hooks.ts:673 +#: superset-frontend/src/views/CRUD/hooks.ts:677 msgid "Link Copied!" msgstr "Link kopiert!" @@ -9154,7 +9268,7 @@ msgstr "Liste der Werte, die mit Linien markiert werden sollen" msgid "List of values to mark with triangles" msgstr "Liste der Werte, die mit Dreiecken markiert werden sollen" -#: superset-frontend/src/components/TableSelector/index.tsx:187 +#: superset-frontend/src/components/TableSelector/index.tsx:184 msgid "List updated" msgstr "Liste aktualisiert" @@ -9183,8 +9297,8 @@ msgid "Loading" msgstr "Lädt" #: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:495 -#: superset-frontend/src/components/Select/Select.tsx:470 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:496 +#: superset-frontend/src/components/Select/Select.tsx:477 #: superset-frontend/src/components/Select/utils.tsx:152 #: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 #: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 @@ -9212,13 +9326,13 @@ msgstr "Logarithmische Achse" msgid "Logarithmic scale on primary y-axis" msgstr "Logarithmische Skala auf primärer y-Achse" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:432 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:449 msgid "Logarithmic scale on secondary y-axis" msgstr "Logarithmische Skala auf sekundärer y-Achse" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:396 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:420 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:429 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:437 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:446 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:222 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:225 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:210 @@ -9287,11 +9401,11 @@ msgstr "MAI" msgid "MON" msgstr "MO" -#: superset/connectors/sqla/views.py:490 +#: superset/connectors/sqla/views.py:397 msgid "Main Datetime Column" msgstr "Haupt-Datums/Zeit-Spalte" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:283 +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:292 msgid "" "Make sure that the controls are configured properly and the datasource " "contains data for the selected time range" @@ -9299,7 +9413,7 @@ msgstr "" "Stellen Sie sicher, dass die Steuerelemente ordnungsgemäß konfiguriert " "sind und die Datenquelle Daten für den ausgewählten Zeitraum enthält." -#: superset/views/core.py:1717 +#: superset/views/core.py:1752 msgid "" "Malformed request. slice_id or table_name and db_name arguments are " "expected" @@ -9307,11 +9421,11 @@ msgstr "" "Fehlerhafte Anforderung. slice_id oder table_name und db_name Argumente " "werden erwartet" -#: superset/initialization/__init__.py:277 -#: superset/initialization/__init__.py:289 -#: superset/initialization/__init__.py:341 -#: superset/initialization/__init__.py:412 -#: superset/initialization/__init__.py:425 +#: superset/initialization/__init__.py:279 +#: superset/initialization/__init__.py:291 +#: superset/initialization/__init__.py:335 +#: superset/initialization/__init__.py:406 +#: superset/initialization/__init__.py:419 msgid "Manage" msgstr "Verwalten" @@ -9329,7 +9443,7 @@ msgstr "Verwalten Sie Ihre Datenbanken" msgid "Mandatory" msgstr "Notwendig" -#: superset/views/database/forms.py:350 +#: superset/views/database/forms.py:360 msgid "Mangle Duplicate Columns" msgstr "Doppelte Spalten zusammenführen" @@ -9348,6 +9462,8 @@ msgstr "Min/Max-Werte für die y-Achse manuell festlegen." #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:67 @@ -9370,7 +9486,7 @@ msgstr "Karten Stil" msgid "MapBox" msgstr "MapBox" -#: superset/viz.py:2322 +#: superset/viz.py:2258 msgid "Mapbox" msgstr "Mapbox" @@ -9378,14 +9494,13 @@ msgstr "Mapbox" msgid "March" msgstr "März" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:50 msgid "Margin" msgstr "Rand" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:348 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:354 msgid "Mark a column as temporal in \"Edit datasource\" modal" -msgstr "" -"Markieren einer Spalte als temporär im Modal \"Datenquelle bearbeiten\"" +msgstr "Markieren einer Spalte als temporär im Modal \"Datenquelle bearbeiten\"" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:213 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:142 @@ -9465,7 +9580,7 @@ msgstr "" "ändert, wird sichergestellt, dass der Kreis diesen maximalen Radius " "einhält." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:232 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 msgid "Maximum value" msgstr "Maximalwert" @@ -9494,15 +9609,13 @@ msgstr "Median" msgid "" "Median edge width, the thickest edge will be 4 times thicker than the " "thinnest." -msgstr "" -"Mittlere Kantenbreite, die dickste Kante ist 4-mal dicker als die dünnste." +msgstr "Mittlere Kantenbreite, die dickste Kante ist 4-mal dicker als die dünnste." #: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:218 msgid "" "Median node size, the largest node will be 4 times larger than the " "smallest" -msgstr "" -"Mittlere Knotengröße, der größte Knoten ist 4-mal größer als der kleinste" +msgstr "Mittlere Knotengröße, der größte Knoten ist 4-mal größer als der kleinste" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 @@ -9517,7 +9630,7 @@ msgstr "Mittel" msgid "Menu actions trigger" msgstr "Auslöser von Menüaktionen" -#: superset-frontend/src/components/ReportModal/index.tsx:237 +#: superset-frontend/src/components/ReportModal/index.tsx:236 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 msgid "Message content" msgstr "Nachrichteninhalt" @@ -9526,8 +9639,8 @@ msgstr "Nachrichteninhalt" msgid "Metadata" msgstr "Metadaten" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:450 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:454 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:486 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:490 msgid "Metadata Parameters" msgstr "Metadaten Parameter" @@ -9552,13 +9665,12 @@ msgstr "Methode" #: superset-frontend/src/explore/controls.jsx:167 #: superset-frontend/src/explore/controls.jsx:168 #: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 -#: superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:249 msgid "Metric" msgstr "Metrik" -#: superset/connectors/sqla/models.py:1264 -#: superset/connectors/sqla/models.py:1847 superset/models/helpers.py:1192 -#: superset/models/helpers.py:1448 +#: superset/connectors/sqla/models.py:1133 superset/models/helpers.py:1236 +#: superset/models/helpers.py:1529 #, python-format msgid "Metric '%(metric)s' does not exist" msgstr "Metrik '%(metric)s' existiert nicht" @@ -9593,7 +9705,7 @@ msgstr "Änderung des metrischen Faktors von \"seit\" zu \"bis\"" msgid "Metric for node values" msgstr "Metrik für Knotenwerte" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:106 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:119 msgid "Metric name" msgstr "Name der Metrik" @@ -9618,6 +9730,7 @@ msgstr "Metrik zur Anzeige des unteren Titels" msgid "Metric to sort the results by" msgstr "Metrik zum Sortieren der Ergebnisse nach" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:139 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:78 msgid "Metric used as a weight for the grid's coloring" msgstr "Metrik, die als Gewicht für die Färbung des Rasters verwendet wird" @@ -9636,10 +9749,10 @@ msgid "" "limit is present. If undefined reverts to the first metric (where " "appropriate)." msgstr "" -"Metrik, die verwendet wird, um zu definieren, wie die obersten Zeitreihen " -"sortiert werden, wenn ein Zeitreihen- oder ein Zellen-Limit vorhanden " -"ist. Wenn nicht definiert, wird auf die erste Metrik zurückgesetzt (falls " -"zutreffend)." +"Metrik, die verwendet wird, um zu definieren, wie die obersten Zeitreihen" +" sortiert werden, wenn ein Zeitreihen- oder ein Zellen-Limit vorhanden " +"ist. Wenn nicht definiert, wird auf die erste Metrik zurückgesetzt (falls" +" zutreffend)." #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 #: superset-frontend/src/explore/controls.jsx:367 @@ -9655,8 +9768,8 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 msgid "" -"Metric used to order the limit if a series limit is present. If undefined " -"reverts to the first metric (where appropriate)." +"Metric used to order the limit if a series limit is present. If undefined" +" reverts to the first metric (where appropriate)." msgstr "" "Metrik, die verwendet wird, um das Limit zu ordnen, wenn ein " "Zeitreihenlimit vorhanden ist. Wenn nicht definiert, wird auf die erste " @@ -9667,7 +9780,7 @@ msgstr "" #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 #: superset-frontend/src/explore/controls.jsx:152 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 -#: superset/connectors/sqla/views.py:207 +#: superset/connectors/sqla/views.py:206 msgid "Metrics" msgstr "Metriken" @@ -9751,19 +9864,17 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:85 #: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:152 msgid "Minimum threshold in percentage points for showing labels." -msgstr "" -"Mindestschwelle in Prozentpunkten für die Anzeige von Beschriftungen." +msgstr "Mindestschwelle in Prozentpunkten für die Anzeige von Beschriftungen." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:231 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:69 msgid "Minimum value" msgstr "Minimalwert" #: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:203 msgid "Minimum value for label to be displayed on graph." -msgstr "" -"Mindestwert für die Beschriftung, die im Diagramm angezeigt werden soll." +msgstr "Mindestwert für die Beschriftung, die im Diagramm angezeigt werden soll." #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:86 msgid "Minimum value on the gauge axis" @@ -9779,7 +9890,7 @@ msgstr "Minimalwert auf der Messgerät-Skala" msgid "Minor Split Line" msgstr "Kleine geteilte Linie" -#: superset/db_engine_specs/base.py:99 +#: superset/db_engine_specs/base.py:100 msgid "Minute" msgstr "Minute" @@ -9809,14 +9920,13 @@ msgstr "Gemischte Zeitreihen" #: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:278 #: superset-frontend/src/pages/AlertReportList/index.tsx:335 #: superset-frontend/src/pages/DashboardList/index.tsx:347 -#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:375 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:152 #: superset-frontend/src/pages/SavedQueryList/index.tsx:369 #: superset-frontend/src/pages/Tags/index.tsx:118 -#: superset/connectors/sqla/views.py:367 -#: superset/connectors/sqla/views.py:495 -#: superset/views/dashboard/mixin.py:85 -#: superset/views/dashboard/views.py:186 -#: superset/views/database/mixins.py:199 superset/views/sql_lab/views.py:85 +#: superset/connectors/sqla/views.py:402 superset/views/dashboard/mixin.py:85 +#: superset/views/dashboard/views.py:186 superset/views/database/mixins.py:199 +#: superset/views/sql_lab/views.py:85 msgid "Modified" msgstr "Geändert" @@ -9831,7 +9941,7 @@ msgstr "Geändert %s" #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 #: superset-frontend/src/pages/ChartList/index.tsx:431 #: superset-frontend/src/pages/DashboardList/index.tsx:326 -#: superset-frontend/src/pages/DatasetList/index.tsx:374 +#: superset-frontend/src/pages/DatasetList/index.tsx:385 msgid "Modified by" msgstr "Geändert durch" @@ -9844,7 +9954,7 @@ msgstr "Geänderte Spalten: %s" msgid "Monday" msgstr "Montag" -#: superset/db_engine_specs/base.py:108 +#: superset/db_engine_specs/base.py:109 msgid "Month" msgstr "Monat" @@ -9910,13 +10020,13 @@ msgstr "Mehrfach" msgid "Multiple Line Charts" msgstr "Mehr-Liniendiagramme" -#: superset/views/database/views.py:465 +#: superset/views/database/views.py:468 msgid "" "Multiple file extensions are not allowed for columnar uploads. Please " "make sure all files are of the same extension." msgstr "" -"Unterschiedliche Dateierweiterungen sind für spaltenförmige Uploads nicht " -"zulässig. Bitte stellen Sie sicher, dass alle Dateien die gleiche " +"Unterschiedliche Dateierweiterungen sind für spaltenförmige Uploads nicht" +" zulässig. Bitte stellen Sie sicher, dass alle Dateien die gleiche " "Erweiterung haben." #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:173 @@ -9932,8 +10042,7 @@ msgstr "" "Bibliothek nach weiteren Details" #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:218 -msgid "" -"Multiple selections allowed, otherwise filter is limited to a single value" +msgid "Multiple selections allowed, otherwise filter is limited to a single value" msgstr "" "Mehrfachauswahl zulässig, andernfalls ist der Filter auf einen einzelnen " "Wert beschränkt" @@ -9950,13 +10059,13 @@ msgstr "Muss eindeutig sein" msgid "Must choose either a chart or a dashboard" msgstr "Sie müssen entweder ein Diagramm oder ein Dashboard auswählen" -#: superset/viz.py:2346 +#: superset/viz.py:2283 msgid "Must have a [Group By] column to have 'count' as the [Label]" msgstr "" "Muss eine Spalte [Gruppieren nach] haben, um 'count' als [Label] zu " "verwenden" -#: superset/viz.py:1752 +#: superset/viz.py:1666 msgid "Must have at least one numeric column specified" msgstr "Mindestens eine numerische Spalte erforderlich" @@ -9964,7 +10073,7 @@ msgstr "Mindestens eine numerische Spalte erforderlich" msgid "Must provide credentials for the SSH Tunnel" msgstr "Anmeldeinformationen für den SSH-Tunnel sind verpflichtend" -#: superset/connectors/sqla/models.py:1582 superset/models/helpers.py:1780 +#: superset/models/helpers.py:1848 msgid "Must specify a value for filters with comparison operators" msgstr "Muss einen Wert für Filter mit Vergleichsoperatoren angeben" @@ -10003,19 +10112,21 @@ msgid "NUMERIC" msgstr "NUMERISCH" #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:149 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:782 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:212 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:148 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:789 #: superset-frontend/src/pages/AlertReportList/index.tsx:272 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 #: superset-frontend/src/pages/CssTemplateList/index.tsx:131 -#: superset-frontend/src/pages/DatasetList/index.tsx:334 +#: superset-frontend/src/pages/DatasetList/index.tsx:345 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:130 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:248 #: superset-frontend/src/pages/SavedQueryList/index.tsx:283 #: superset-frontend/src/pages/Tags/index.tsx:109 -#: superset/connectors/sqla/views.py:361 superset/views/chart/mixin.py:85 +#: superset/views/chart/mixin.py:85 msgid "Name" msgstr "Name" @@ -10028,12 +10139,11 @@ msgstr "Name ist erforderlich" msgid "Name must be unique" msgstr "Name muss eindeutig sein" -#: superset/views/database/forms.py:406 +#: superset/views/database/forms.py:416 msgid "Name of table to be created from columnar data." -msgstr "" -"Name der Tabelle, die aus tabellarischen Daten erstellt werden soll." +msgstr "Name der Tabelle, die aus tabellarischen Daten erstellt werden soll." -#: superset/views/database/forms.py:270 +#: superset/views/database/forms.py:280 msgid "Name of table to be created from excel data." msgstr "Name der Tabelle, die aus Excel-Daten erstellt werden soll." @@ -10053,7 +10163,7 @@ msgstr "Name der ID-Spalte" msgid "Name of the source nodes" msgstr "Name der Quellknoten" -#: superset/connectors/sqla/views.py:428 +#: superset/connectors/sqla/views.py:335 msgid "Name of the table that exists in the source database" msgstr "Name der Tabelle in der Quell-Datenbank" @@ -10107,17 +10217,17 @@ msgstr "Neue Filtergruppe" msgid "New header" msgstr "Neue Überschrift" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:329 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:331 msgid "New tab" msgstr "Neuer Tab" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:268 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:310 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:278 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:320 msgid "New tab (Ctrl + q)" msgstr "Neue Registerkarte (Strg + q)" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:269 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:311 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:279 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:321 msgid "New tab (Ctrl + t)" msgstr "Neue Registerkarte (Strg + t)" @@ -10139,9 +10249,9 @@ msgstr "Nightingale Rose Diagramm" #: superset-frontend/src/pages/ChartList/index.tsx:708 #: superset-frontend/src/pages/DashboardList/index.tsx:507 #: superset-frontend/src/pages/DashboardList/index.tsx:589 -#: superset-frontend/src/pages/DatabaseList/index.tsx:468 -#: superset-frontend/src/pages/DatabaseList/index.tsx:488 -#: superset-frontend/src/pages/DatasetList/index.tsx:573 +#: superset-frontend/src/pages/DatabaseList/index.tsx:479 +#: superset-frontend/src/pages/DatabaseList/index.tsx:499 +#: superset-frontend/src/pages/DatasetList/index.tsx:584 msgid "No" msgstr "Nein" @@ -10163,6 +10273,11 @@ msgstr "Keine Daten" msgid "No Results" msgstr "Keine Ergebnisse" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:235 +#, fuzzy +msgid "No Rules yet" +msgstr "Noch keine aktuellen" + #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:116 msgid "No annotation layers" msgstr "Keine Anmerkungs-Layer" @@ -10196,7 +10311,7 @@ msgstr "Noch keine Diagramme" msgid "No columns" msgstr "Keine Spalten" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:242 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 msgid "No columns found" msgstr "Keine Spalten gefunden" @@ -10208,7 +10323,7 @@ msgstr "Keine kompatiblen Quellen gefunden" msgid "No compatible datasets found" msgstr "Keine kompatiblen Datensätze gefunden" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 msgid "No compatible schema found" msgstr "Kein kompatibles Schema gefunden" @@ -10220,14 +10335,14 @@ msgstr "Keine Dashboards" msgid "No dashboards yet" msgstr "Noch keine Dashboards" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:133 -#: superset-frontend/src/components/Table/index.tsx:203 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 +#: superset-frontend/src/components/Table/index.tsx:207 #: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:225 #: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 msgid "No data" msgstr "Keine Daten" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 msgid "No data after filtering or data is NULL for the latest time record" msgstr "" "Keine Daten nach dem Filtern oder Daten sind NULL für den letzten " @@ -10249,10 +10364,6 @@ msgstr "Keine Datenbanken stimmen mit Ihrer Suche überein" msgid "No description available." msgstr "Keine Beschreibung verfügbar." -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:174 -msgid "No dimensions available for drill by" -msgstr "Keine Dimensionen verfügbar für das Hineinzoomen nach" - #: superset-frontend/src/profile/components/Favorites.tsx:61 msgid "No favorite charts yet, go click on stars!" msgstr "Noch keine Lieblingsdashboards, klicken Sie auf die Sterne!" @@ -10271,7 +10382,7 @@ msgstr "Kein Filter" msgid "No filter is selected." msgstr "Kein Filter ausgewählt." -#: superset-frontend/src/components/Table/index.tsx:200 +#: superset-frontend/src/components/Table/index.tsx:204 msgid "No filters" msgstr "Keine Filter" @@ -10310,7 +10421,7 @@ msgid "No results" msgstr "Keine Ergebnisse" #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:425 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:428 msgid "No results found" msgstr "Keine Ergebnisse gefunden" @@ -10318,7 +10429,7 @@ msgstr "Keine Ergebnisse gefunden" msgid "No results match your filter criteria" msgstr "Keine Ergebnisse entsprechen Ihren Filterkriterien" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:280 +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:289 #: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 msgid "No results were returned for this query" msgstr "Für diese Abfrage wurden keine Ergebnisse zurückgegeben" @@ -10330,8 +10441,8 @@ msgid "" "contains data for the selected time range." msgstr "" "Für diese Abfrage wurden keine Ergebnisse zurückgegeben. Wenn Sie " -"erwartet haben, dass Ergebnisse zurückgegeben werden, stellen Sie sicher, " -"dass alle Filter ordnungsgemäß konfiguriert sind und die Datenquelle " +"erwartet haben, dass Ergebnisse zurückgegeben werden, stellen Sie sicher," +" dass alle Filter ordnungsgemäß konfiguriert sind und die Datenquelle " "Daten für den ausgewählten Zeitraum enthält." #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 @@ -10342,8 +10453,8 @@ msgstr "Für diesen Datensatz wurden keine Zeilen zurückgegeben" msgid "No samples were returned for this dataset" msgstr "Für diesen Dataensatz wurden keine Beispiele zurückgegeben" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:293 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:311 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:299 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:317 msgid "No saved expressions found" msgstr "Keine gespeicherten Ausdrücke gefunden" @@ -10365,16 +10476,16 @@ msgstr "" #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:337 msgid "No such column found. To filter on a metric, try the Custom SQL tab." msgstr "" -"Eine solche Spalte wurde nicht gefunden. Um nach einer Metrik zu filtern, " -"versuchen Sie es mit der Registerkarte Benutzerdefinierte SQL." +"Eine solche Spalte wurde nicht gefunden. Um nach einer Metrik zu filtern," +" versuchen Sie es mit der Registerkarte Benutzerdefinierte SQL." #: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:67 msgid "No table columns" msgstr "Keine Tabellenspalten" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:292 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:310 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:345 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:298 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:316 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:351 msgid "No temporal columns found" msgstr "Keine Zeitspalten gefunden" @@ -10388,8 +10499,7 @@ msgstr "Kein Validator gefunden (für das Modul konfiguriert)" #: superset/databases/commands/validate_sql.py:114 msgid "No validator named {} found (configured for the {} engine)" -msgstr "" -"Kein Validator mit dem Namen {} gefunden (konfiguriert für das {}-Modul)" +msgstr "Kein Validator mit dem Namen {} gefunden (konfiguriert für das {}-Modul)" #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 msgid "Node label position" @@ -10404,7 +10514,7 @@ msgid "Node size" msgstr "Knotengröße" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:45 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:187 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:270 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:286 @@ -10414,12 +10524,12 @@ msgstr "Knotengröße" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:402 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:182 #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:124 #: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 #: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:196 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:576 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:48 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:51 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:138 #: superset-frontend/src/explore/controlPanels/sections.tsx:134 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:127 @@ -10500,7 +10610,7 @@ msgstr "November" msgid "Now" msgstr "Jetzt" -#: superset/views/database/forms.py:201 +#: superset/views/database/forms.py:211 msgid "Null Values" msgstr "NULL Werte" @@ -10513,11 +10623,11 @@ msgstr "Fehlwert-Imputation" msgid "Null or Empty" msgstr "Null oder Leer" -#: superset/views/database/forms.py:392 +#: superset/views/database/forms.py:402 msgid "Null values" msgstr "NULL Werte" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:191 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 msgid "Number Format" msgstr "Zahlenformat" @@ -10537,11 +10647,10 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:60 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:65 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:144 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:117 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:67 #: superset-frontend/plugins/legacy-plugin-chart-treemap/src/controlPanel.ts:67 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:97 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:137 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:276 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:137 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:113 @@ -10568,13 +10677,11 @@ msgstr "Anzahl der Dezimalstellen, auf die gerundet wird" #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:92 msgid "Number of decimal places with which to display lift values" -msgstr "" -"Anzahl der Dezimalstellen, mit denen Hubwerte angezeigt werden sollen" +msgstr "Anzahl der Dezimalstellen, mit denen Hubwerte angezeigt werden sollen" #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:79 msgid "Number of decimal places with which to display p-values" -msgstr "" -"Anzahl der Dezimalstellen, mit denen p-Werte angezeigt werden sollen" +msgstr "Anzahl der Dezimalstellen, mit denen p-Werte angezeigt werden sollen" #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 msgid "Number of periods to compare against" @@ -10584,23 +10691,21 @@ msgstr "Anzahl der zu vergleichenden Perioden" msgid "Number of periods to ratio against" msgstr "Anzahl ins Verhältnis zu setzender Perioden" -#: superset/views/database/forms.py:255 +#: superset/views/database/forms.py:265 msgid "Number of rows of file to read" msgstr "Anzahl der aus Datei zu lesenden Zeilen." -#: superset/views/database/forms.py:361 +#: superset/views/database/forms.py:371 msgid "Number of rows of file to read." msgstr "Anzahl der aus Datei zu lesenden Zeilen." -#: superset/views/database/forms.py:261 +#: superset/views/database/forms.py:271 msgid "Number of rows to skip at start of file" -msgstr "" -"Anzahl der Zeilen, die am Anfang der Datei übersprungen werden sollen." +msgstr "Anzahl der Zeilen, die am Anfang der Datei übersprungen werden sollen." -#: superset/views/database/forms.py:355 +#: superset/views/database/forms.py:365 msgid "Number of rows to skip at start of file." -msgstr "" -"Anzahl der Zeilen, die am Anfang der Datei übersprungen werden sollen." +msgstr "Anzahl der Zeilen, die am Anfang der Datei übersprungen werden sollen." #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 msgid "Number of split segments on the axis" @@ -10609,14 +10714,14 @@ msgstr "Anzahl der geteilten Segmente auf der Achse" #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:120 msgid "Number of steps to take between ticks when displaying the X scale" msgstr "" -"Anzahl der Schritte, die zwischen den Strichen bei der Anzeige der X-" -"Skala ausgeführt werden müssen" +"Anzahl der Schritte, die zwischen den Strichen bei der Anzeige der " +"X-Skala ausgeführt werden müssen" #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:136 msgid "Number of steps to take between ticks when displaying the Y scale" msgstr "" -"Anzahl der Schritte, die zwischen den Strichen bei der Anzeige der Y-" -"Skala ausgeführt werden müssen" +"Anzahl der Schritte, die zwischen den Strichen bei der Anzeige der " +"Y-Skala ausgeführt werden müssen" #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:319 msgid "Numerical range" @@ -10626,15 +10731,15 @@ msgstr "Numerischer Bereich" msgid "OCT" msgstr "OKT" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:184 -#: superset-frontend/src/components/Modal/Modal.tsx:231 -#: superset-frontend/src/components/Table/index.tsx:198 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 +#: superset-frontend/src/components/Modal/Modal.tsx:238 +#: superset-frontend/src/components/Table/index.tsx:202 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:865 msgid "OK" msgstr "OK" #: superset-frontend/src/components/ImportModal/index.tsx:267 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1379 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1434 msgid "OVERWRITE" msgstr "ÜBERSCHREIBEN" @@ -10647,7 +10752,7 @@ msgstr "Oktober" msgid "Offline" msgstr "Offline" -#: superset/connectors/sqla/views.py:485 +#: superset/connectors/sqla/views.py:392 msgid "Offset" msgstr "Offset" @@ -10658,7 +10763,8 @@ msgstr "Kulanz" #: superset-frontend/src/explore/controls.jsx:126 msgid "" "One or many columns to group by. High cardinality groupings should " -"include a series limit to limit the number of fetched and rendered series." +"include a series limit to limit the number of fetched and rendered " +"series." msgstr "" "Eine oder mehrere Spalten, nach denen gruppiert werden soll. " "Gruppierungen mit hoher Kardinalität sollten ein Zeitreihenlimit " @@ -10697,27 +10803,27 @@ msgstr "Ein oder mehrere Steuerelemente, um zu Spalten zu pivotieren" msgid "One or many metrics to display" msgstr "Eine oder mehrere anzuzeigende Metriken" -#: superset/datasets/commands/exceptions.py:90 +#: superset/datasets/commands/exceptions.py:107 msgid "One or more columns already exist" msgstr "Eine oder mehrere Spalten sind bereits vorhanden" -#: superset/datasets/commands/exceptions.py:80 +#: superset/datasets/commands/exceptions.py:97 msgid "One or more columns are duplicated" msgstr "Eine oder mehrere Spalten werden dupliziert" -#: superset/datasets/commands/exceptions.py:70 +#: superset/datasets/commands/exceptions.py:87 msgid "One or more columns do not exist" msgstr "Eine oder mehrere Spalten sind nicht vorhanden" -#: superset/datasets/commands/exceptions.py:119 +#: superset/datasets/commands/exceptions.py:136 msgid "One or more metrics already exist" msgstr "Eine oder mehrere Metriken sind bereits vorhanden" -#: superset/datasets/commands/exceptions.py:109 +#: superset/datasets/commands/exceptions.py:126 msgid "One or more metrics are duplicated" msgstr "Eine oder mehrere Metriken werden dupliziert" -#: superset/datasets/commands/exceptions.py:99 +#: superset/datasets/commands/exceptions.py:116 msgid "One or more metrics do not exist" msgstr "Eine oder mehrere Metriken sind nicht vorhanden" @@ -10735,38 +10841,38 @@ msgstr "" msgid "One or more parameters specified in the query are missing." msgstr "Ein oder mehrere in der Abfrage angegebene Parameter fehlen." -#: superset/views/core.py:1992 +#: superset/views/core.py:2029 msgid "" -"One or more required fields are missing in the request. Please try again, " -"and if the problem persists contact your administrator." +"One or more required fields are missing in the request. Please try again," +" and if the problem persists contact your administrator." msgstr "" "Ein oder mehrere Pflichtfelder fehlen in der Anfrage. Versuchen Sie es " -"erneut, und wenn das Problem weiterhin besteht, wenden Sie sich an Ihre/n " -"Administrator*in." +"erneut, und wenn das Problem weiterhin besteht, wenden Sie sich an Ihre/n" +" Administrator*in." #: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:56 msgid "One ore more annotation layers failed loading." msgstr "Eine oder mehrere Anmerkungsebenen konnten nicht geladen werden." -#: superset/sql_lab.py:230 +#: superset/sql_lab.py:228 msgid "Only SELECT statements are allowed against this database." msgstr "Nur 'SELECT'-Anweisungen sind für diese Datenbank zulässig." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:133 msgid "Only Total" msgstr "Nur Gesamtwert" -#: superset/connectors/sqla/utils.py:123 +#: superset/connectors/sqla/utils.py:122 msgid "Only `SELECT` statements are allowed" msgstr "Nur 'SELECT'-Anweisungen sind zulässig" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:29 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 msgid "Only applies when \"Label Type\" is not set to a percentage." msgstr "" "Gilt nur, wenn \"Beschriftungstyp\" nicht auf einen Prozentsatz " "festgelegt ist." -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:26 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 msgid "Only applies when \"Label Type\" is set to show values." msgstr "" "Gilt nur, wenn \"Beschriftungstyp\" so eingestellt ist, dass Werte " @@ -10776,7 +10882,7 @@ msgstr "" msgid "Only selected panels will be affected by this filter" msgstr "Nur ausgewählte Bereiche sind von diesem Filter betroffen" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:139 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 msgid "" "Only show the total value on the stacked chart, and not show on the " "selected category" @@ -10784,17 +10890,15 @@ msgstr "" "Zeigen Sie nur den Gesamtwert im gestapelten Diagramm und nicht in der " "ausgewählten Kategorie an" -#: superset/connectors/sqla/utils.py:132 +#: superset/connectors/sqla/utils.py:131 msgid "Only single queries supported" msgstr "Nur einzelne Abfragen werden unterstützt" -#: superset/views/database/forms.py:119 superset/views/database/forms.py:288 -#: superset/views/database/forms.py:426 +#: superset/views/database/forms.py:119 superset/views/database/forms.py:298 +#: superset/views/database/forms.py:436 #, python-format -msgid "" -"Only the following file extensions are allowed: %(allowed_extensions)s" -msgstr "" -"Nur die folgenden Dateierweiterungen sind zulässig: %(allowed_extensions)s" +msgid "Only the following file extensions are allowed: %(allowed_extensions)s" +msgstr "Nur die folgenden Dateierweiterungen sind zulässig: %(allowed_extensions)s" #: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 msgid "Oops! An error occurred!" @@ -10815,8 +10919,7 @@ msgstr "Deckkraft des Flächendiagramms. Gilt auch für das Vertrauensband." #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:251 msgid "Opacity of all clusters, points, and labels. Between 0 and 1." -msgstr "" -"Deckkraft aller Cluster, Punkte und Beschriftungen. Zwischen 0 und 1." +msgstr "Deckkraft aller Cluster, Punkte und Beschriftungen. Zwischen 0 und 1." #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:204 msgid "Opacity of area chart." @@ -10840,22 +10943,22 @@ msgstr "In SQL Lab öffnen" msgid "Open query in SQL Lab" msgstr "Bearbeiten in SQL Editor" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:298 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 #: superset/views/database/mixins.py:104 msgid "" "Operate the database in asynchronous mode, meaning that the queries are " "executed on remote workers as opposed to on the web server itself. This " -"assumes that you have a Celery worker setup as well as a results backend. " -"Refer to the installation docs for more information." +"assumes that you have a Celery worker setup as well as a results backend." +" Refer to the installation docs for more information." msgstr "" "Betreiben Sie die Datenbank im asynchronen Modus, was bedeutet, dass die " -"Abfragen auf Remote-Workern und nicht auf dem Webserver selbst ausgeführt " -"werden. Dies setzt voraus, dass Sie sowohl über ein Celery-Worker-Setup " -"als auch über ein Ergebnis-Backend verfügen. Weitere Informationen finden " -"Sie in den Installationsdokumenten." +"Abfragen auf Remote-Workern und nicht auf dem Webserver selbst ausgeführt" +" werden. Dies setzt voraus, dass Sie sowohl über ein Celery-Worker-Setup " +"als auch über ein Ergebnis-Backend verfügen. Weitere Informationen finden" +" Sie in den Installationsdokumenten." -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:126 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:130 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 msgid "Operator" msgstr "Operator" @@ -10864,10 +10967,10 @@ msgstr "Operator" msgid "Operator undefined for aggregator: %(name)s" msgstr "Operator undefiniert für Aggregator: %(name)s" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:381 msgid "" -"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on " -"certain database engines." +"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" +" certain database engines." msgstr "" "Optionale CA_BUNDLE Inhalte, um HTTPS-Anforderungen zu überprüfen. Nur " "für bestimmte Datenbank-Engines verfügbar." @@ -10888,13 +10991,8 @@ msgstr "Optionaler Name der Datenspalte." msgid "Optional warning about use of this metric" msgstr "Optionale Warnung zur Verwendung dieser Metrik" -#: superset/connectors/sqla/views.py:328 -msgid "Optionally add a detailed description" -msgstr "Fügen Sie optional eine detaillierte Beschreibung hinzu" - #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:39 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:68 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:108 #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:74 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:45 #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:70 @@ -10907,10 +11005,9 @@ msgstr "Fügen Sie optional eine detaillierte Beschreibung hinzu" msgid "Options" msgstr "Optionen" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:918 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:973 msgid "Or choose from a list of other databases we support:" -msgstr "" -"Oder wählen Sie aus einer Liste anderer Datenbanken, die wir unterstützen:" +msgstr "Oder wählen Sie aus einer Liste anderer Datenbanken, die wir unterstützen:" #: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:62 msgid "Order by entity id" @@ -10926,7 +11023,7 @@ msgstr "Ergebnisse nach ausgewählten Spalten sortieren" msgid "Ordering" msgstr "Sortierung" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:83 msgid "Orientation" msgstr "Ausrichtung" @@ -10934,7 +11031,7 @@ msgstr "Ausrichtung" msgid "Orientation of bar chart" msgstr "Ausrichtung des Balkendiagramms" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:158 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 msgid "Orientation of filter bar" msgstr "Ausrichtung des Filterbalkens" @@ -10950,7 +11047,7 @@ msgstr "Original" msgid "Original table column order" msgstr "Ursprüngliche Tabellenspaltenreihenfolge" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 #: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 #: superset-frontend/src/explore/controls.jsx:79 @@ -10962,10 +11059,10 @@ msgid "Orthogonal" msgstr "Orthogonal" #: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:126 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:938 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:479 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:993 #: superset-frontend/src/features/home/EmptyState.tsx:112 -#: superset/views/database/forms.py:155 superset/views/database/forms.py:161 +#: superset/views/database/forms.py:165 superset/views/database/forms.py:171 msgid "Other" msgstr "Andere" @@ -10993,8 +11090,8 @@ msgid "" "relative time deltas in natural language (example: 24 hours, 7 days, 52 " "weeks, 365 days). Free text is supported." msgstr "" -"Überlagern Sie eine oder mehrere Zeitreihen aus einem relativen Zeitraum. " -"Erwartet relative Zeitintervalle in natürlicher Sprache (Beispiel: 24 " +"Überlagern Sie eine oder mehrere Zeitreihen aus einem relativen Zeitraum." +" Erwartet relative Zeitintervalle in natürlicher Sprache (Beispiel: 24 " "Stunden, 7 Tage, 52 Wochen, 365 Tage). Freitext wird unterstützt." #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 @@ -11005,8 +11102,8 @@ msgid "" "relative time deltas in natural language (example: 24 hours, 7 days, 52 " "weeks, 365 days). Free text is supported." msgstr "" -"Überlagern Sie eine oder mehrere Zeitreihen aus einem relativen Zeitraum. " -"Erwartet relative Zeitintervalle in natürlicher, englischer Sprache " +"Überlagern Sie eine oder mehrere Zeitreihen aus einem relativen Zeitraum." +" Erwartet relative Zeitintervalle in natürlicher, englischer Sprache " "(Beispiel: „24 hours“, „7 days“, „52 weeks“, „365 days“). Freitext wird " "unterstützt." @@ -11028,15 +11125,15 @@ msgstr "Zeitbereich überschreiben" #: superset-frontend/src/components/ImportModal/index.tsx:426 #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:493 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:459 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:463 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:464 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:148 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 msgid "Overwrite" msgstr "Überschreiben Scheibe %s" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:249 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:192 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:247 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 msgid "Overwrite & Explore" msgstr "Überschreiben & Erkunden" @@ -11045,18 +11142,17 @@ msgstr "Überschreiben & Erkunden" msgid "Overwrite Dashboard [%s]" msgstr "Dashboard überschreiben [%s]" -#: superset/views/database/forms.py:237 +#: superset/views/database/forms.py:247 msgid "Overwrite Duplicate Columns" msgstr "Doppelte Spalten überschreiben" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:404 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:412 msgid "Overwrite existing" msgstr "Bestehende überschreiben" #: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:285 msgid "Overwrite text in the editor with a query on this table" -msgstr "" -"Überschreiben von Text im Editor mit einer Abfrage für diese Tabelle" +msgstr "Überschreiben von Text im Editor mit einer Abfrage für diese Tabelle" #: superset/charts/filters.py:141 msgid "Owned Created or Favored" @@ -11065,11 +11161,11 @@ msgstr "Im Besitz, Erstellt oder Favorisiert" #: superset-frontend/src/pages/AlertReportList/index.tsx:452 #: superset-frontend/src/pages/ChartList/index.tsx:608 #: superset-frontend/src/pages/DashboardList/index.tsx:523 -#: superset-frontend/src/pages/DatasetList/index.tsx:500 +#: superset-frontend/src/pages/DatasetList/index.tsx:511 msgid "Owner" msgstr "Besitzer*in" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:235 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:93 #: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:408 @@ -11084,14 +11180,14 @@ msgstr "Besitzer*in" #: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 #: superset-frontend/src/pages/AlertReportList/index.tsx:324 #: superset-frontend/src/pages/DashboardList/index.tsx:369 -#: superset-frontend/src/pages/DatasetList/index.tsx:389 -#: superset/connectors/sqla/views.py:489 superset/views/chart/mixin.py:82 +#: superset-frontend/src/pages/DatasetList/index.tsx:400 +#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:82 #: superset/views/dashboard/mixin.py:81 msgid "Owners" msgstr "Besitzende" -#: superset/commands/exceptions.py:108 -#: superset/datasets/commands/exceptions.py:144 +#: superset/commands/exceptions.py:112 +#: superset/datasets/commands/exceptions.py:161 msgid "Owners are invalid" msgstr "Besitzende sind ungültig" @@ -11104,8 +11200,8 @@ msgstr "" #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:494 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:542 msgid "" -"Owners is a list of users who can alter the dashboard. Searchable by name " -"or username." +"Owners is a list of users who can alter the dashboard. Searchable by name" +" or username." msgstr "" "Besitzende ist eine Liste von Benutzer*innen, die das Dashboard ändern " "können. Durchsuchbar nach Name oder Benutzer*innenname." @@ -11137,7 +11233,7 @@ msgid "Pandas resample rule" msgstr "Pandas Resample-Regel" #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 -#: superset/viz.py:2219 +#: superset/viz.py:2152 msgid "Parallel Coordinates" msgstr "Parallele Koordinaten" @@ -11162,7 +11258,7 @@ msgstr "Parameter in Bezug auf die Ansicht und Perspektive auf der Karte" msgid "Parent" msgstr "Übergeordnet" -#: superset/views/database/forms.py:366 +#: superset/views/database/forms.py:376 msgid "Parse Dates" msgstr "Datumsangaben auswerten" @@ -11180,7 +11276,7 @@ msgstr "Teil eines Ganzen" msgid "Partition Chart" msgstr "Partitionsdiagramm" -#: superset/viz.py:3071 +#: superset/viz.py:3069 msgid "Partition Diagram" msgstr "Partitionsdiagramm" @@ -11194,15 +11290,15 @@ msgstr "Partitionsschwellenwert" #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:185 msgid "" -"Partitions whose height to parent height proportions are below this value " -"are pruned" +"Partitions whose height to parent height proportions are below this value" +" are pruned" msgstr "" "Partitionen, deren Höhen- zu Elternhöhenverhältnissen unter diesem Wert " "liegen, werden ausgeblendet." #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:154 #: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 -#: superset/db_engine_specs/base.py:1838 +#: superset/db_engine_specs/base.py:1870 #: superset/db_engine_specs/clickhouse.py:202 msgid "Password" msgstr "Password" @@ -11255,7 +11351,7 @@ msgstr "Prozentuale Metriken" #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:81 #: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:148 msgid "Percentage threshold" msgstr "Prozentualer Schwellenwert" @@ -11273,7 +11369,7 @@ msgstr "Prozentualer Schwellenwert" msgid "Percentages" msgstr "Prozentwerte" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:219 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:229 msgid "Performance" msgstr "Leistung" @@ -11308,8 +11404,8 @@ msgid "Person or group that has certified this metric" msgstr "Person oder Gruppe, die diese Metrik zertifiziert hat" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1114 -#: superset-frontend/src/pages/DatasetList/index.tsx:342 -#: superset-frontend/src/pages/DatasetList/index.tsx:560 +#: superset-frontend/src/pages/DatasetList/index.tsx:353 +#: superset-frontend/src/pages/DatasetList/index.tsx:571 msgid "Physical" msgstr "Physisch" @@ -11317,39 +11413,38 @@ msgstr "Physisch" msgid "Physical (table or view)" msgstr "Physisch (Tabelle oder Ansicht)" -#: superset-frontend/src/pages/DatasetList/index.tsx:273 +#: superset-frontend/src/pages/DatasetList/index.tsx:284 msgid "Physical dataset" msgstr "Physischer Datensatz" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:106 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:143 msgid "Pick a dimension from which categorical colors are defined" -msgstr "" -"Wählen Sie eine Dimension aus, für die kategoriale Farben definiert werden" +msgstr "Wählen Sie eine Dimension aus, für die kategoriale Farben definiert werden" -#: superset/viz.py:769 +#: superset/viz.py:795 msgid "Pick a granularity in the Time section or uncheck 'Include Time'" msgstr "" "Wählen Sie eine Granularität im Abschnitt Zeit aus oder deaktivieren Sie " "\"Zeit einschließen\"." -#: superset/viz.py:1605 +#: superset/viz.py:1514 msgid "Pick a metric for left axis!" msgstr "Wählen Sie eine Metrik für die linke Achse!" -#: superset/viz.py:1607 +#: superset/viz.py:1516 msgid "Pick a metric for right axis!" msgstr "Wählen Sie eine Metrik für die rechte Achse!" -#: superset/viz.py:1195 +#: superset/viz.py:1090 msgid "Pick a metric for x, y and size" msgstr "Wählen Sie eine Metrik für x, y und Größe" -#: superset/viz.py:1234 +#: superset/viz.py:1131 msgid "Pick a metric to display" msgstr "Wählen Sie eine Anzeige-Metrik" -#: superset/viz.py:1260 superset/viz.py:1294 +#: superset/viz.py:1159 superset/viz.py:1195 msgid "Pick a metric!" msgstr "Wählen Sie eine Metrik!" @@ -11368,10 +11463,10 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:40 msgid "Pick a set of deck.gl charts to layer on top of one another" msgstr "" -"Wählen Sie eine Reihe von deck.gl Diagrammen aus, die übereinander gelegt " -"werden sollen" +"Wählen Sie eine Reihe von deck.gl Diagrammen aus, die übereinander gelegt" +" werden sollen" -#: superset/viz.py:1390 superset/viz.py:1653 +#: superset/viz.py:1294 superset/viz.py:1564 msgid "Pick a time granularity for your time series" msgstr "Wählen Sie eine Zeitgranularität für Ihre Zeitreihe" @@ -11379,15 +11474,15 @@ msgstr "Wählen Sie eine Zeitgranularität für Ihre Zeitreihe" msgid "Pick a title for you annotation." msgstr "Wählen Sie einen Titel für Ihre Anmerkung aus." -#: superset/viz.py:1815 +#: superset/viz.py:1732 msgid "Pick at least one field for [Series]" msgstr "Wählen Sie mindestens ein Feld für [Serie] aus." -#: superset/viz.py:857 superset/viz.py:1813 +#: superset/viz.py:887 superset/viz.py:1730 msgid "Pick at least one metric" msgstr "Wählen Sie mindestens eine Metrik aus" -#: superset/viz.py:1943 +#: superset/viz.py:1863 msgid "Pick exactly 2 columns as [Source / Target]" msgstr "Wählen Sie genau 2 Spalten als [Quelle / Ziel]" @@ -11416,19 +11511,10 @@ msgstr "Kreisform" msgid "Pin" msgstr "Pin" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:45 -msgid "Pivot Options" -msgstr "Pivot-Optionen" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 -#: superset/viz.py:894 msgid "Pivot Table" msgstr "Pivot-Tabelle" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:32 -msgid "Pivot Table (legacy)" -msgstr "Pivot-Tabelle (Legacy)" - #: superset/utils/pandas_postprocessing/pivot.py:70 msgid "Pivot operation must include at least one aggregate" msgstr "Pivot-Operation muss mindestens ein Aggregat enthalten" @@ -11449,7 +11535,7 @@ msgstr "Pixelhöhe jeder Serie" msgid "Pixels" msgstr "Pixel" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 msgid "Plain" msgstr "Unformatiert" @@ -11461,19 +11547,19 @@ msgstr "Bitte überschreiben Sie den \"filter_scopes“-Schlüssel NICHT." msgid "Please apply filter changes" msgstr "Bitte wenden Sie Filteränderungen an" -#: superset/sqllab/query_render.py:120 +#: superset/sqllab/query_render.py:118 msgid "" "Please check your query and confirm that all template parameters are " "surround by double braces, for example, \"{{ ds }}\". Then, try running " "your query again." msgstr "" "Bitte überprüfen Sie Ihre Anfrage und vergewissern Sie sich, dass alle " -"Vorlagenparameter von doppelten Klammern umgeben sind, z. B. " -"\"{{ ds }}\". Versuchen Sie dann erneut, die Abfrage auszuführen." +"Vorlagenparameter von doppelten Klammern umgeben sind, z. B. \"{{ ds " +"}}\". Versuchen Sie dann erneut, die Abfrage auszuführen." #: superset/db_engine_specs/athena.py:56 -#: superset/db_engine_specs/bigquery.py:210 -#: superset/db_engine_specs/postgres.py:161 +#: superset/db_engine_specs/bigquery.py:211 +#: superset/db_engine_specs/postgres.py:160 #: superset/db_engine_specs/snowflake.py:117 #, python-format msgid "" @@ -11484,8 +11570,7 @@ msgstr "" "von \"%(syntax_error)s\". Versuchen Sie dann erneut, die Abfrage " "auszuführen." -#: superset/db_engine_specs/gsheets.py:80 -#: superset/db_engine_specs/mysql.py:170 +#: superset/db_engine_specs/gsheets.py:82 superset/db_engine_specs/mysql.py:170 #, python-format msgid "" "Please check your query for syntax errors near \"%(server_error)s\". " @@ -11504,22 +11589,13 @@ msgstr "" "sicher, dass sie in Ihrer SQL-Abfrage und in den Parameter-Namen " "übereinstimmen. Versuchen Sie dann erneut, die Abfrage auszuführen." -#: superset/viz.py:911 -msgid "Please choose at least one 'Group by' field" -msgstr "Bitte wählen Sie mindestens ein Feld \"Gruppieren nach\" " - -#: superset/viz.py:3229 +#: superset/viz.py:3234 msgid "Please choose at least one groupby" msgstr "Bitte wählen Sie mindestens ein Gruppierungs-Kriterium" -#: superset/viz.py:923 -msgid "Please choose at least one metric" -msgstr "Bitte wählen Sie mindestens eine Metrik" - -#: superset/viz.py:1610 +#: superset/viz.py:1519 msgid "Please choose different metrics on left and right axis" -msgstr "" -"Bitte wählen Sie verschiedene Metriken für die linke und rechte Achse" +msgstr "Bitte wählen Sie verschiedene Metriken für die linke und rechte Achse" #: superset-frontend/src/features/charts/ChartCard.tsx:80 #: superset-frontend/src/features/home/DashboardTable.tsx:246 @@ -11533,18 +11609,20 @@ msgstr "" #: superset-frontend/src/pages/DashboardList/index.tsx:415 #: superset-frontend/src/pages/DashboardList/index.tsx:701 #: superset-frontend/src/pages/DashboardList/index.tsx:756 -#: superset-frontend/src/pages/DatasetList/index.tsx:740 +#: superset-frontend/src/pages/DatasetList/index.tsx:762 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:170 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:304 #: superset-frontend/src/pages/SavedQueryList/index.tsx:533 #: superset-frontend/src/pages/Tags/index.tsx:141 #: superset-frontend/src/pages/Tags/index.tsx:281 msgid "Please confirm" msgstr "Bitte bestätigen" -#: superset-frontend/src/dashboard/actions/dashboardState.js:442 +#: superset-frontend/src/dashboard/actions/dashboardState.js:447 msgid "Please confirm the overwrite values." msgstr "Bitte bestätigen Sie die überschreibenden Werte." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:624 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:641 msgid "Please enter a SQLAlchemy URI to test" msgstr "Bitten geben Sie eine SQL Alchemy URI zum Testen ein" @@ -11552,11 +11630,11 @@ msgstr "Bitten geben Sie eine SQL Alchemy URI zum Testen ein" msgid "Please filter set name" msgstr "Bitte Name für Filtergruppe eingeben" -#: superset/db_engine_specs/postgres.py:125 +#: superset/db_engine_specs/postgres.py:124 msgid "Please re-enter the password." msgstr "Bitte geben Sie das Passwort erneut ein." -#: superset-frontend/src/views/CRUD/hooks.ts:435 +#: superset-frontend/src/views/CRUD/hooks.ts:439 msgid "Please re-export your file and try importing again" msgstr "" "Bitte exportieren Sie Ihre Datei erneut und versuchen Sie nochmals, sie " @@ -11570,8 +11648,8 @@ msgstr[0] "" "Bitte wenden Sie sich an den/die Diagramm-Besitzer*in, um Unterstützung " "zu erhalten." msgstr[1] "" -"Bitte wenden Sie sich an die Diagramm-Besitzer*innen, um Unterstützung zu " -"erhalten." +"Bitte wenden Sie sich an die Diagramm-Besitzer*innen, um Unterstützung zu" +" erhalten." #: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:85 msgid "Please save the query to enable sharing" @@ -11584,8 +11662,7 @@ msgstr "" "neuen E-Mail-Report zu erstellen." #: superset/reports/commands/exceptions.py:117 -msgid "" -"Please save your dashboard first, then try creating a new email report." +msgid "Please save your dashboard first, then try creating a new email report." msgstr "" "Bitte speichern Sie zuerst Ihr Dashboard und versuchen Sie dann, einen " "neuen E-Mail-Report zu erstellen." @@ -11596,13 +11673,12 @@ msgstr "" "Wählen Sie sowohl einen Datensatz- als auch einen Diagrammtyp aus, um " "fortzufahren" -#: superset/viz.py:1193 +#: superset/viz.py:1088 msgid "Please use 3 different metric labels" msgstr "Bitte verwenden Sie 3 verschiedene metrische Beschriftungen" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:27 -msgid "" -"Plot the distance (like flight paths) between origin and destination." +msgid "Plot the distance (like flight paths) between origin and destination." msgstr "Entfernung (wie Flugrouten) zwischen Abflug- und Zielort zeichen" #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 @@ -11612,11 +11688,11 @@ msgid "" "multiple metrics across all of the samples or rows in the data." msgstr "" "Stellt die einzelnen Metriken für jede Zeile in den Daten vertikal dar " -"und verknüpft sie als Linie miteinander. Dieses Diagramm ist nützlich, um " -"mehrere Metriken in allen Stichproben oder Zeilen in den Daten zu " +"und verknüpft sie als Linie miteinander. Dieses Diagramm ist nützlich, um" +" mehrere Metriken in allen Stichproben oder Zeilen in den Daten zu " "vergleichen." -#: superset/initialization/__init__.py:275 +#: superset/initialization/__init__.py:277 msgid "Plugins" msgstr "Plugins" @@ -11658,8 +11734,8 @@ msgstr "Punkte" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:213 msgid "Points and clusters will update as the viewport is being changed" msgstr "" -"Punkte und Cluster werden aktualisiert, wenn das Ansichtsfenster geändert " -"wird" +"Punkte und Cluster werden aktualisiert, wenn das Ansichtsfenster geändert" +" wird" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:68 msgid "Polygon Column" @@ -11699,8 +11775,7 @@ msgstr "Beliebt" #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 msgid "Populate \"Default value\" to enable this control" -msgstr "" -"Geben Sie den \"Standardwert\" an, um dieses Steuerelement zu aktivieren" +msgstr "Geben Sie den \"Standardwert\" an, um dieses Steuerelement zu aktivieren" #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 msgid "Population age data" @@ -11711,13 +11786,16 @@ msgid "Port" msgstr "Port" #: superset/db_engine_specs/mssql.py:98 -#: superset/db_engine_specs/postgres.py:135 -#: superset/db_engine_specs/presto.py:672 -#: superset/db_engine_specs/redshift.py:77 +#: superset/db_engine_specs/postgres.py:134 +#: superset/db_engine_specs/presto.py:699 +#: superset/db_engine_specs/redshift.py:81 #, python-format msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." +msgstr "Port %(port)s auf Hostname \"%(hostname)s\" verweigerte die Verbindung." + +#: superset/db_engine_specs/ocient.py:269 +msgid "Port out of range 0-65535" msgstr "" -"Port %(port)s auf Hostname \"%(hostname)s\" verweigerte die Verbindung." #: superset/views/dashboard/mixin.py:86 msgid "Position JSON" @@ -11725,8 +11803,7 @@ msgstr "Anordnungs-JSON" #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:182 msgid "Position of child node label on tree" -msgstr "" -"Position der Beschriftung des untergeordneten Knotens in der Struktur" +msgstr "Position der Beschriftung des untergeordneten Knotens in der Struktur" #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 msgid "Position of column level subtotal" @@ -11756,7 +11833,7 @@ msgstr "Verfügbare Werte vorfiltern" msgid "Pre-filter is required" msgstr "Vorfilterung erforderlich" -#: superset/connectors/sqla/views.py:440 +#: superset/connectors/sqla/views.py:347 msgid "" "Predicate applied when fetching distinct value to populate the filter " "control component. Supports jinja template syntax. Applies only when " @@ -11764,7 +11841,8 @@ msgid "" msgstr "" "Prädikat, das beim Abrufen eines eindeutigen Werts angewendet wird, um " "die Filtersteuerelementkomponente aufzufüllen. Unterstützt jinja-" -"Vorlagensyntax. Gilt nur, wenn \"Filterauswahl aktivieren\" aktiviert ist." +"Vorlagensyntax. Gilt nur, wenn \"Filterauswahl aktivieren\" aktiviert " +"ist." #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 @@ -11801,7 +11879,7 @@ msgstr "Vorschau: `%s" msgid "Previous" msgstr "Zurück" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:346 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:348 msgid "Previous Line" msgstr "Vorherige Zeile" @@ -11822,6 +11900,11 @@ msgstr "Primärschlüssel" msgid "Primary or secondary y-axis" msgstr "Primäre oder sekundäre y-Achse" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 +#, fuzzy +msgid "Primary y-axis Bounds" +msgstr "Primäres y-Achsenformat" + #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:387 msgid "Primary y-axis format" msgstr "Primäres y-Achsenformat" @@ -11838,7 +11921,7 @@ msgstr "Privater Schlüssel & Passwort" msgid "Private Key Password" msgstr "Passwort des privaten Schlüssels" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:269 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 msgid "Proceed" msgstr "Fortfahren" @@ -11917,11 +12000,11 @@ msgstr "Geben Sie Ihren Code hier ein" msgid "Python datetime string pattern" msgstr "Python Datetime-Zeichenfolge" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1530 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1585 msgid "QUERY DATA IN SQL LAB" msgstr "DATEN IN SQL LAB ABFRAGEN " -#: superset/db_engine_specs/base.py:109 +#: superset/db_engine_specs/base.py:110 msgid "Quarter" msgstr "Quartal" @@ -11934,9 +12017,9 @@ msgstr "Quartale %s" msgid "Queries" msgstr "Abfragen" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:51 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:43 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:53 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:30 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:33 #: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:90 @@ -11947,7 +12030,6 @@ msgstr "Abfragen" #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:36 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:32 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:34 #: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:30 @@ -11958,6 +12040,7 @@ msgstr "Abfragen" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:44 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:55 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:43 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:41 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:60 @@ -11971,7 +12054,7 @@ msgstr "Abfragen" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:361 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:34 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:35 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:44 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:43 @@ -11987,7 +12070,7 @@ msgstr "Abfragen" #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:152 #: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:30 #: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:26 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1479 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1471 #: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 #: superset-frontend/src/explore/controlPanels/sections.tsx:94 #: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:34 @@ -11999,7 +12082,7 @@ msgstr "Abfragen" msgid "Query" msgstr "Abfrage" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:361 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:363 #, python-format msgid "Query %s: %s" msgstr "Abfrage %s: %s" @@ -12014,11 +12097,11 @@ msgstr "Abfrage A" msgid "Query B" msgstr "Abfrage B" -#: superset/initialization/__init__.py:366 +#: superset/initialization/__init__.py:360 msgid "Query History" msgstr "Abfrageverlauf" -#: superset/commands/exceptions.py:138 +#: superset/commands/exceptions.py:142 msgid "Query does not exist" msgstr "Abfrage ist nicht vorhanden" @@ -12032,7 +12115,7 @@ msgstr "Abfragenverlauf" msgid "Query imported" msgstr "Abfrage importiert" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:465 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 msgid "Query in a new tab" msgstr "Abfrage auf einer neuen Registerkarte" @@ -12057,11 +12140,11 @@ msgstr "Abfragename" msgid "Query preview" msgstr "Abfragen-Voransicht" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:415 msgid "Query was stopped" msgstr "Abfrage wurde angehalten" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:498 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:494 msgid "Query was stopped." msgstr "Die Abfrage wurde gestoppt." @@ -12074,6 +12157,16 @@ msgstr "BEREICHSTYP" msgid "RGB Color" msgstr "RGB-Farbe" +#: superset/row_level_security/commands/exceptions.py:29 +#, fuzzy +msgid "RLS Rule could not be deleted." +msgstr "Diagramme konnten nicht gelöscht werden." + +#: superset/row_level_security/commands/exceptions.py:25 +#, fuzzy +msgid "RLS Rule not found." +msgstr "Report-Ausführungsplan nicht gefunden." + #: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:159 msgid "Radar" msgstr "Radar" @@ -12168,15 +12261,13 @@ msgid "Recent activity" msgstr "Kürzliche Aktivitäten" #: superset-frontend/src/features/home/EmptyState.tsx:107 -msgid "" -"Recently created charts, dashboards, and saved queries will appear here" +msgid "Recently created charts, dashboards, and saved queries will appear here" msgstr "" -"Kürzlich erstellte Diagramme, Dashboards und gespeicherte Abfragen werden " -"hier angezeigt" +"Kürzlich erstellte Diagramme, Dashboards und gespeicherte Abfragen werden" +" hier angezeigt" #: superset-frontend/src/features/home/EmptyState.tsx:116 -msgid "" -"Recently edited charts, dashboards, and saved queries will appear here" +msgid "Recently edited charts, dashboards, and saved queries will appear here" msgstr "" "Kürzlich bearbeitete Diagramme, Dashboards und gespeicherte Abfragen " "werden hier angezeigt" @@ -12188,8 +12279,7 @@ msgid "Recently modified" msgstr "Kürzlich geändert" #: superset-frontend/src/features/home/EmptyState.tsx:102 -msgid "" -"Recently viewed charts, dashboards, and saved queries will appear here" +msgid "Recently viewed charts, dashboards, and saved queries will appear here" msgstr "" "Kürzlich angezeigte Diagramme, Dashboards und gespeicherte Abfragen " "werden hier angezeigt" @@ -12214,9 +12304,8 @@ msgstr "Anzahl Datensätze" msgid "Rectangle" msgstr "Rechteck" -#: superset/connectors/sqla/views.py:446 -msgid "" -"Redirects to this endpoint when clicking on the table from the table list" +#: superset/connectors/sqla/views.py:353 +msgid "Redirects to this endpoint when clicking on the table from the table list" msgstr "" "Leitet zu diesem Endpunkt um, wenn Sie in der Tabellenliste auf die " "Tabelle klicken" @@ -12236,8 +12325,8 @@ msgid "" "will be applied to columns and the width may overflow into an horizontal " "scroll." msgstr "" -"Reduziert die Anzahl der darzustellenden X-Achsen-Ticks. Wenn WAHR, läuft " -"die x-Achse nicht über und Beschriftungen fehlen möglicherweise. Wenn " +"Reduziert die Anzahl der darzustellenden X-Achsen-Ticks. Wenn WAHR, läuft" +" die x-Achse nicht über und Beschriftungen fehlen möglicherweise. Wenn " "FALSCH, wird eine Mindestbreite auf Spalten angewendet und die Breite " "kann in einen horizontalen Bildlauf überlaufen." @@ -12249,7 +12338,7 @@ msgstr "Weitere Informationen finden Sie im" msgid "Referenced columns not available in DataFrame." msgstr "Referenzierte Spalten sind in DataFrame nicht verfügbar." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:549 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:542 msgid "Refetch results" msgstr "Ergebnisse erneut anfordern" @@ -12298,10 +12387,17 @@ msgstr "Aktualisieren von Spalten" msgid "Regex" msgstr "Regex" -#: superset/connectors/sqla/views.py:329 +#: superset-frontend/src/features/rls/constants.ts:24 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:262 +#, fuzzy +msgid "Regular" +msgstr "Kreisförmig" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:364 +#, fuzzy msgid "" "Regular filters add where clauses to queries if a user belongs to a role " -"referenced in the filter. Base filters apply filters to all queries " +"referenced in the filter, base filters apply filters to all queries " "except the roles defined in the filter, and can be used to define what " "users can see if no RLS filters within a filter group apply to them." msgstr "" @@ -12351,7 +12447,7 @@ msgstr "In 24 Stunden erinnern" msgid "Remove" msgstr "Entfernen" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:164 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:194 msgid "Remove cross-filter" msgstr "Kreuzfilter entfernen" @@ -12384,8 +12480,8 @@ msgstr "Registerkarte umbenennen" msgid "Rendering" msgstr "Darstellen" -#: superset/views/database/forms.py:168 superset/views/database/forms.py:325 -#: superset/views/database/forms.py:456 +#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 +#: superset/views/database/forms.py:466 msgid "Replace" msgstr "Ersetzen" @@ -12399,12 +12495,11 @@ msgstr "Ersetzen" #: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:593 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:163 msgid "Report" msgstr "Melden" -#: superset-frontend/src/components/ReportModal/index.tsx:282 +#: superset-frontend/src/components/ReportModal/index.tsx:281 msgid "Report Name" msgstr "Berichtname" @@ -12426,8 +12521,7 @@ msgstr "Fehler beim Löschen des Report-Ausführungsplans." #: superset/reports/commands/exceptions.py:159 msgid "Report Schedule execution failed when generating a csv." -msgstr "" -"Report-Ausführungsplan Ausführungsfehler beim Generieren einer CSV-Datei." +msgstr "Report-Ausführungsplan Ausführungsfehler beim Generieren einer CSV-Datei." #: superset/reports/commands/exceptions.py:163 msgid "Report Schedule execution failed when generating a dataframe." @@ -12447,8 +12541,7 @@ msgstr "Unerwarteter Fehler bei der Ausführung des geplanten Reports." #: superset/reports/commands/exceptions.py:172 msgid "Report Schedule is still working, refusing to re-compute." -msgstr "" -"Geplanter Bericht wird noch erstellt. Derzeit keine Neuerstellung möglich." +msgstr "Geplanter Bericht wird noch erstellt. Derzeit keine Neuerstellung möglich." #: superset/reports/commands/exceptions.py:151 msgid "Report Schedule log prune failed." @@ -12527,7 +12620,7 @@ msgid "Request Permissions" msgstr "Berechtigung anfordern" #: superset/charts/data/api.py:153 superset/charts/data/api.py:243 -#: superset/charts/data/api.py:309 +#: superset/charts/data/api.py:312 #, python-format msgid "Request is incorrect: %(error)s" msgstr "Anfrage ist falsch: %(error)s" @@ -12536,7 +12629,7 @@ msgstr "Anfrage ist falsch: %(error)s" msgid "Request is not JSON" msgstr "Anfrage ist nicht JSON" -#: superset/views/datasource/views.py:75 +#: superset/views/datasource/views.py:77 msgid "Request missing data field." msgstr "Datenfeld fehlt in Abfrage." @@ -12544,14 +12637,14 @@ msgstr "Datenfeld fehlt in Abfrage." msgid "Request timed out" msgstr "Zeitüberschreitung der Anforderung" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:94 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:98 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:105 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:252 msgid "Required" msgstr "Erforderlich" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:342 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 msgid "Required control values have been removed" msgstr "Erforderliche Steuerwerte wurden entfernt" @@ -12570,14 +12663,13 @@ msgstr "Pandas Methode zur Stichprobenwiederholung (resample)" #: superset/utils/pandas_postprocessing/resample.py:43 msgid "Resample operation requires DatetimeIndex" -msgstr "" -"Für den Stichprobenwiederholung ist ein Datetime-Index erforderlich." +msgstr "Für den Stichprobenwiederholung ist ein Datetime-Index erforderlich." -#: superset-frontend/src/components/Table/index.tsx:199 +#: superset-frontend/src/components/Table/index.tsx:203 msgid "Reset" msgstr "Zurücksetzen" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:293 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:280 msgid "Reset state" msgstr "Status zurücksetzen" @@ -12600,14 +12692,15 @@ msgstr "Filter wiederherstellen" msgid "Results" msgstr "Ergebnisse" +#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 #: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:212 #: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 #, python-format msgid "Results %s" msgstr "Ergebnisse %s" -#: superset/sql_lab.py:410 superset/sqllab/commands/results.py:59 -#: superset/views/core.py:2133 +#: superset/sql_lab.py:402 superset/sqllab/commands/results.py:59 +#: superset/views/core.py:2169 msgid "Results backend is not configured." msgstr "Das Ergebnis-Backend ist nicht konfiguriert." @@ -12635,12 +12728,12 @@ msgstr "Länge/Breite vertauschen " msgid "Rich Tooltip" msgstr "Umfangreicher Tooltip" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:178 msgid "Rich tooltip" msgstr "Umfangreicher Tooltip" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:372 msgid "Right" msgstr "Rechts" @@ -12665,7 +12758,7 @@ msgstr "Metrik der rechten Achse" msgid "Right to Left" msgstr "Rechts nach links" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:157 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 msgid "Right value" msgstr "Rechter Wert" @@ -12679,20 +12772,20 @@ msgstr "" msgid "Role" msgstr "Rolle" -#: superset/views/core.py:407 +#: superset/views/core.py:408 #, python-format -msgid "" -"Role %(r)s was extended to provide the access to the datasource %(ds)s" +msgid "Role %(r)s was extended to provide the access to the datasource %(ds)s" msgstr "" -"Rolle %(r)s wurde erweitert, um den Zugriff auf die Datenquelle %(ds)s zu " -"gewähren" +"Rolle %(r)s wurde erweitert, um den Zugriff auf die Datenquelle %(ds)s zu" +" gewähren" #: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:375 #: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:389 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:551 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:406 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:415 #: superset-frontend/src/profile/components/Security.tsx:35 -#: superset/connectors/sqla/views.py:364 #: superset/views/dashboard/mixin.py:82 msgid "Roles" msgstr "Rollen" @@ -12747,7 +12840,7 @@ msgstr "Rollierende Funktion" msgid "Rolling window" msgstr "Rollierendes Fenster" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 #: superset/views/database/mixins.py:195 msgid "Root certificate" msgstr "Root-Zertifikat" @@ -12777,36 +12870,34 @@ msgstr "Rotation, die auf Wörter in der Cloud angewendet werden soll" msgid "Round cap" msgstr "Runde Kappe" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 #: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 msgid "Row" msgstr "Zeile" -#: superset/initialization/__init__.py:295 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:70 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:302 +#: superset/initialization/__init__.py:436 msgid "Row Level Security" msgstr "Sicherheit auf Zeilenebene" -#: superset/views/database/forms.py:245 +#: superset/views/database/forms.py:255 msgid "" "Row containing the headers to use as column names (0 is first line of " "data). Leave empty if there is no header row" msgstr "" -"Zeile mit den Überschriften, die als Spaltennamen verwendet werden sollen " -"(0 ist die erste Datenzeile). Leer lassen, wenn keine Kopfzeile vorhanden " -"ist." +"Zeile mit den Überschriften, die als Spaltennamen verwendet werden sollen" +" (0 ist die erste Datenzeile). Leer lassen, wenn keine Kopfzeile " +"vorhanden ist." -#: superset/views/database/forms.py:332 +#: superset/views/database/forms.py:342 msgid "" "Row containing the headers to use as column names (0 is first line of " "data). Leave empty if there is no header row." msgstr "" -"Zeile mit den Überschriften, die als Spaltennamen verwendet werden sollen " -"(0 ist die erste Datenzeile). Leer lassen, wenn keine Kopfzeile vorhanden " -"ist." - -#: superset/connectors/sqla/views.py:290 -msgid "Row level security filter" -msgstr "Sicherheitsfilter auf Zeilenebene" +"Zeile mit den Überschriften, die als Spaltennamen verwendet werden sollen" +" (0 ist die erste Datenzeile). Leer lassen, wenn keine Kopfzeile " +"vorhanden ist." #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:247 #: superset-frontend/src/explore/controls.jsx:340 @@ -12830,7 +12921,7 @@ msgstr "Zeilen pro Seite, 0 bedeutet keine Paginierung" msgid "Rows subtotal position" msgstr "Zeilen Zwischensummenposition" -#: superset/views/database/forms.py:254 superset/views/database/forms.py:360 +#: superset/views/database/forms.py:264 superset/views/database/forms.py:370 msgid "Rows to Read" msgstr "Zu lesende Zeilen" @@ -12840,10 +12931,20 @@ msgstr "Zu lesende Zeilen" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:504 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:233 #: superset-frontend/src/explore/controlPanels/sections.tsx:230 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:286 msgid "Rule" msgstr "Regel" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:54 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:355 +#, fuzzy +msgid "Rule Name" +msgstr "Vollständiger Name" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:253 +msgid "Rule added" +msgstr "" + +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:53 msgid "Run" msgstr "Ausführen" @@ -12860,12 +12961,12 @@ msgstr "Abfrage zum Anzeigen der Ergebnisse ausführen" msgid "Run in SQL Lab" msgstr "Ausführen in SQL Lab" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:309 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:319 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:311 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:321 msgid "Run query" msgstr "Abfrage ausführen" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:131 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:132 msgid "Run query (Ctrl + Return)" msgstr "Abfrage ausführen (Strg + Return)" @@ -12873,7 +12974,7 @@ msgstr "Abfrage ausführen (Strg + Return)" msgid "Run query in a new tab" msgstr "Abfrage auf einer neuen Registerkarte ausführen" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:52 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:51 msgid "Run selection" msgstr "Auswahl ausführen" @@ -12882,7 +12983,7 @@ msgstr "Auswahl ausführen" msgid "Running" msgstr "Läuft" -#: superset/sql_lab.py:488 +#: superset/sql_lab.py:480 #, python-format msgid "Running statement %(statement_num)s out of %(statement_count)s" msgstr "Führe Anweisung %(statement_num)s von %(statement_count)s aus" @@ -12904,8 +13005,8 @@ msgstr "SHA" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 #: superset-frontend/src/features/home/commonMenuData.ts:22 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:312 -#: superset/initialization/__init__.py:354 -#: superset/initialization/__init__.py:362 +#: superset/initialization/__init__.py:348 +#: superset/initialization/__init__.py:356 msgid "SQL" msgstr "SQL" @@ -12913,17 +13014,17 @@ msgstr "SQL" msgid "SQL Copied!" msgstr "SQL kopiert!" -#: superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:253 msgid "SQL Expression" msgstr "SQL-Ausdruck" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:73 -#: superset/initialization/__init__.py:349 -#: superset/initialization/__init__.py:371 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 +#: superset/initialization/__init__.py:343 +#: superset/initialization/__init__.py:365 msgid "SQL Lab" msgstr "SQL Lab" -#: superset/connectors/sqla/views.py:492 +#: superset/connectors/sqla/views.py:399 msgid "SQL Lab View" msgstr "SQL Lab Anzeige" @@ -12946,8 +13047,8 @@ msgstr "" "Abfrageregisterkarten.\n" "Sie können erneut auf diese Abfragen zugreifen, indem Sie die Funktion " "Speichern verwenden, bevor Sie die Registerkarte löschen.\n" -"Beachten Sie, dass Sie andere SQL Lab-Fenster schließen müssen, bevor Sie " -"dies tun." +"Beachten Sie, dass Sie andere SQL Lab-Fenster schließen müssen, bevor Sie" +" dies tun." #: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 #: superset-frontend/src/features/home/SavedQueries.tsx:261 @@ -13049,7 +13150,7 @@ msgstr "Stichprobenvarianz" msgid "Samples" msgstr "Beispiele" -#: superset/datasets/commands/exceptions.py:177 +#: superset/datasets/commands/exceptions.py:194 msgid "Samples for dataset could not be retrieved." msgstr "Beispiele für Datensatz konnten nicht abgerufen werden." @@ -13057,7 +13158,7 @@ msgstr "Beispiele für Datensatz konnten nicht abgerufen werden." msgid "Samples for datasource could not be retrieved." msgstr "Beispiele für die Datenquelle konnten nicht abgerufen werden." -#: superset/viz.py:1935 +#: superset/viz.py:1854 msgid "Sankey" msgstr "Sankey" @@ -13085,25 +13186,26 @@ msgstr "Samstag" #: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 #: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:199 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:214 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:246 -#: superset-frontend/src/components/ReportModal/index.tsx:229 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:288 +#: superset-frontend/src/components/ReportModal/index.tsx:228 #: superset-frontend/src/dashboard/components/Header/index.jsx:607 #: superset-frontend/src/dashboard/components/Header/index.jsx:609 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 #: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 #: superset-frontend/src/dashboard/components/SaveModal.tsx:211 #: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:794 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:156 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:492 #: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:268 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:458 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:462 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 -#: superset-frontend/src/explore/components/SaveModal.tsx:415 +#: superset-frontend/src/explore/components/SaveModal.tsx:449 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:418 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:424 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:147 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 @@ -13113,29 +13215,30 @@ msgstr "Samstag" #: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 #: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1695 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 #: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 msgid "Save" msgstr "Speichern" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:246 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:190 msgid "Save & Explore" msgstr "Speichern & Erkunden" -#: superset-frontend/src/explore/components/SaveModal.tsx:396 +#: superset-frontend/src/explore/components/SaveModal.tsx:430 msgid "Save & go to dashboard" msgstr "Speichern & zum Dashboard gehen" -#: superset-frontend/src/explore/components/SaveModal.tsx:395 +#: superset-frontend/src/explore/components/SaveModal.tsx:429 msgid "Save & go to new dashboard" msgstr "Speichern & zum neuen Dashboard wechseln" -#: superset-frontend/src/explore/components/SaveModal.tsx:308 +#: superset-frontend/src/explore/components/SaveModal.tsx:343 msgid "Save (Overwrite)" msgstr "Speichern (Überschreiben)" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:199 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:306 msgid "Save as" msgstr "Speichern als" @@ -13148,16 +13251,16 @@ msgstr "Als Datensatz speichern" msgid "Save as dataset" msgstr "Als Datensatz speichern" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:394 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:214 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:402 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 msgid "Save as new" msgstr "Speichern unter…" -#: superset-frontend/src/explore/components/SaveModal.tsx:412 +#: superset-frontend/src/explore/components/SaveModal.tsx:446 msgid "Save as new chart" msgstr "Als neues Dashboard speichern" -#: superset-frontend/src/explore/components/SaveModal.tsx:316 +#: superset-frontend/src/explore/components/SaveModal.tsx:351 msgid "Save as..." msgstr "Speichern unter..." @@ -13169,7 +13272,7 @@ msgstr "Speichern unter:" msgid "Save changes" msgstr "Änderungen speichern" -#: superset-frontend/src/explore/components/SaveModal.tsx:432 +#: superset-frontend/src/explore/components/SaveModal.tsx:466 msgid "Save chart" msgstr "Diagramm speichern" @@ -13177,7 +13280,7 @@ msgstr "Diagramm speichern" msgid "Save dashboard" msgstr "Dashboard speichern" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:106 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:105 msgid "Save dataset" msgstr "Datensatz speichern" @@ -13185,11 +13288,11 @@ msgstr "Datensatz speichern" msgid "Save for this session" msgstr "Für diese Sitzung speichern" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:350 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:356 msgid "Save or Overwrite Dataset" msgstr "Speichern oder Überschreiben des Datensatzes" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:202 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:201 msgid "Save query" msgstr "Speichere Abfrage" @@ -13197,7 +13300,7 @@ msgstr "Speichere Abfrage" msgid "Save the query to enable this feature" msgstr "Speichern Sie die Abfrage, um diese Funktion zu aktivieren" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:250 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:465 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:149 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 @@ -13206,20 +13309,20 @@ msgstr "" "Speichern Sie diese Abfrage als virtuellen Datensatz, um mit der " "Erkundung fortzufahren." -#: superset-frontend/src/explore/components/SaveModal.tsx:414 +#: superset-frontend/src/explore/components/SaveModal.tsx:448 msgid "Save to new dashboard" msgstr "Im neuem Dashboard speichern" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:265 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:271 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 msgid "Saved" msgstr "Speichern als" -#: superset/initialization/__init__.py:358 +#: superset/initialization/__init__.py:352 msgid "Saved Queries" msgstr "Gespeicherte Abfragen" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:249 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:255 msgid "Saved expressions" msgstr "Gespeicherte Ausdrücke" @@ -13281,12 +13384,12 @@ msgstr "" "statistische Beziehung zwischen zwei Variablen." #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 -#: superset-frontend/src/components/ReportModal/index.tsx:306 +#: superset-frontend/src/components/ReportModal/index.tsx:305 #: superset-frontend/src/pages/AlertReportList/index.tsx:276 msgid "Schedule" msgstr "Zeitplan" -#: superset-frontend/src/components/ReportModal/index.tsx:212 +#: superset-frontend/src/components/ReportModal/index.tsx:211 msgid "Schedule a new email report" msgstr "Planen eines neuen E-Mail-Berichts" @@ -13302,7 +13405,7 @@ msgstr "Abfrage einplanen" msgid "Schedule settings" msgstr "Zeitplan-Einstellungen" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:518 msgid "Schedule the query periodically" msgstr "Abfrage in regelmäßigen Abständen einplanen" @@ -13320,35 +13423,33 @@ msgstr "Geplant um (UTC)" msgid "Scheduled task executor not found" msgstr "Geplanter Task-Executor nicht gefunden" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:299 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:221 -#: superset-frontend/src/pages/DatasetList/index.tsx:354 -#: superset-frontend/src/pages/DatasetList/index.tsx:536 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:298 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 +#: superset-frontend/src/pages/DatasetList/index.tsx:365 +#: superset-frontend/src/pages/DatasetList/index.tsx:547 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:250 #: superset-frontend/src/pages/SavedQueryList/index.tsx:297 #: superset-frontend/src/pages/SavedQueryList/index.tsx:469 -#: superset/connectors/sqla/views.py:483 -#: superset/views/database/forms.py:144 superset/views/database/forms.py:311 -#: superset/views/database/forms.py:442 +#: superset/connectors/sqla/views.py:390 superset/views/database/forms.py:154 +#: superset/views/database/forms.py:321 superset/views/database/forms.py:452 msgid "Schema" msgstr "Schema" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:247 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:257 msgid "Schema cache timeout" msgstr "Zeitüberschreitung Schema-Zwischenspeicher" -#: superset/views/core.py:1164 +#: superset/views/core.py:1186 msgid "Schema undefined" msgstr "Schema nicht definiert" -#: superset/connectors/sqla/views.py:429 -msgid "" -"Schema, as used only in some databases like Postgres, Redshift and DB2" +#: superset/connectors/sqla/views.py:336 +msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" msgstr "" "Schema, wie es nur in einigen Datenbanken wie Postgres, Redshift und DB2 " "verwendet wird" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:419 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:429 msgid "Schemas allowed for File upload" msgstr "Zulässige Schemata für den Datei-Upload" @@ -13360,7 +13461,7 @@ msgstr "Geltungsbereich" msgid "Scoping" msgstr "Auswahlverfahren" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 msgid "Scroll" msgstr "Scrollen" @@ -13378,15 +13479,15 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:724 #: superset-frontend/src/pages/CssTemplateList/index.tsx:293 #: superset-frontend/src/pages/DashboardList/index.tsx:516 -#: superset-frontend/src/pages/DatabaseList/index.tsx:492 -#: superset-frontend/src/pages/DatasetList/index.tsx:577 +#: superset-frontend/src/pages/DatabaseList/index.tsx:503 +#: superset-frontend/src/pages/DatasetList/index.tsx:588 #: superset-frontend/src/pages/SavedQueryList/index.tsx:494 #: superset-frontend/src/pages/Tags/index.tsx:204 #: superset/templates/appbuilder/general/widgets/search.html:40 msgid "Search" msgstr "Suche" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:294 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 msgid "Search / Filter" msgstr "Suchen / Filtern" @@ -13410,11 +13511,11 @@ msgstr "Suchfeld" msgid "Search by query text" msgstr "Suche nach Abfragetext" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:207 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 msgid "Search columns" msgstr "Suchspalten" -#: superset-frontend/src/components/Table/index.tsx:202 +#: superset-frontend/src/components/Table/index.tsx:206 msgid "Search in filters" msgstr "Suche in Filtern" @@ -13426,7 +13527,7 @@ msgstr "Tabellen durchsuchen" msgid "Search..." msgstr "Suche..." -#: superset/db_engine_specs/base.py:96 +#: superset/db_engine_specs/base.py:97 msgid "Second" msgstr "Sekunde" @@ -13440,10 +13541,15 @@ msgid "Secondary Metric" msgstr "Sekundäre Metrik" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:408 +#, fuzzy +msgid "Secondary y-axis Bounds" +msgstr "Sekundäres y-Achsenformat" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:425 msgid "Secondary y-axis format" msgstr "Sekundäres y-Achsenformat" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:417 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:434 msgid "Secondary y-axis title" msgstr "Titel der sekundären y-Achse" @@ -13456,15 +13562,15 @@ msgstr "Sekunden %s" msgid "Secure Extra" msgstr "Sicherheit Extra" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:336 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:341 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:346 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 msgid "Secure extra" msgstr "Sicherheit extra" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:329 -#: superset/initialization/__init__.py:297 -#: superset/initialization/__init__.py:395 -#: superset/initialization/__init__.py:433 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:339 +#: superset/initialization/__init__.py:389 +#: superset/initialization/__init__.py:427 +#: superset/initialization/__init__.py:438 msgid "Security" msgstr "Sicherheit" @@ -13487,24 +13593,24 @@ msgstr "Weniger anzeigen" msgid "See more" msgstr "Mehr anzeigen" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:412 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:405 msgid "See query details" msgstr "Abfragedetails anzeigen" -#: superset-frontend/src/components/TableSelector/index.tsx:288 +#: superset-frontend/src/components/TableSelector/index.tsx:277 msgid "See table schema" msgstr "Siehe Tabellenschema" -#: superset-frontend/src/explore/components/SaveModal.tsx:363 +#: superset-frontend/src/explore/components/SaveModal.tsx:398 #: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 msgid "Select" msgstr "Auswählen" #: superset-frontend/src/components/AsyncSelect/index.jsx:41 #: superset-frontend/src/components/Select/AsyncSelect.tsx:123 -#: superset-frontend/src/components/Select/Select.tsx:103 +#: superset-frontend/src/components/Select/Select.tsx:104 #: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 -#: superset-frontend/src/explore/components/controls/SelectControl.jsx:230 +#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 msgid "Select ..." msgstr "Auswählen …" @@ -13516,23 +13622,23 @@ msgstr "Übermittlungsmethode hinzufügen" msgid "Select Viz Type" msgstr "Visualisierungstyp wählen" -#: superset/views/database/forms.py:415 +#: superset/views/database/forms.py:425 msgid "Select a Columnar file to be uploaded to a database." msgstr "" "Wählen Sie eine tabellarische Datei aus, die in eine Datenbank " "hochgeladen werden soll." -#: superset/views/database/forms.py:279 +#: superset/views/database/forms.py:289 msgid "Select a Excel file to be uploaded to a database." msgstr "" -"Wählen Sie eine Excel-Datei aus, die in eine Datenbank hochgeladen werden " -"soll." +"Wählen Sie eine Excel-Datei aus, die in eine Datenbank hochgeladen werden" +" soll." #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 msgid "Select a column" msgstr "Spalte wählen" -#: superset-frontend/src/explore/components/SaveModal.tsx:357 +#: superset-frontend/src/explore/components/SaveModal.tsx:392 msgid "Select a dashboard" msgstr "Dashboard auswählen" @@ -13547,15 +13653,14 @@ msgstr "Wählen Sie eine Datenbanktabelle aus." #: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 msgid "Select a database to connect" msgstr "" -"Wählen Sie eine Datenbank aus, mit der eine Verbindung hergestellt werden " -"soll" +"Wählen Sie eine Datenbank aus, mit der eine Verbindung hergestellt werden" +" soll" #: superset/views/database/forms.py:138 msgid "Select a database to upload the file to" -msgstr "" -"Wählen Sie eine Datenbank aus, in die die Datei hochgeladen werden soll" +msgstr "Wählen Sie eine Datenbank aus, in die die Datei hochgeladen werden soll" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:744 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:738 msgid "Select a database to write a query" msgstr "Auswählen einer Datenbank zum Schreiben einer Abfrage" @@ -13565,10 +13670,9 @@ msgstr "Wählen Sie eine Dimension" #: superset/views/database/forms.py:110 msgid "Select a file to be uploaded to the database" -msgstr "" -"Wählen Sie eine Datei aus, die in die Datenbank hochgeladen werden soll" +msgstr "Wählen Sie eine Datei aus, die in die Datenbank hochgeladen werden soll" -#: superset/views/database/forms.py:145 +#: superset/views/database/forms.py:155 msgid "Select a schema if the database supports this" msgstr "Wählen Sie ein Schema aus, wenn die Datenbank dies unterstützt" @@ -13580,11 +13684,11 @@ msgstr "Visualisierungstyp wählen" msgid "Select aggregate options" msgstr "Aggregierungsoptionen auswählen" -#: superset-frontend/src/components/Table/index.tsx:207 +#: superset-frontend/src/components/Table/index.tsx:211 msgid "Select all data" msgstr "Alle Daten auswählen" -#: superset-frontend/src/components/Table/index.tsx:201 +#: superset-frontend/src/components/Table/index.tsx:205 msgid "Select all items" msgstr "Alle Elemente auswählen" @@ -13592,6 +13696,11 @@ msgstr "Alle Elemente auswählen" msgid "Select any columns for metadata inspection" msgstr "Auswählen beliebiger Spalten für die Metadatenüberprüfung" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +#, fuzzy +msgid "Select chart" +msgstr "Diagramme auswählen" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:45 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:103 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:138 @@ -13602,13 +13711,13 @@ msgstr "Diagramme auswählen" msgid "Select color scheme" msgstr "Farbschema auswählen" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:208 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 msgid "Select column" msgstr "Spalte auswählen" -#: superset-frontend/src/components/Table/index.tsx:204 +#: superset-frontend/src/components/Table/index.tsx:208 msgid "Select current page" msgstr "Aktuelle Seite auswählen" @@ -13616,8 +13725,8 @@ msgstr "Aktuelle Seite auswählen" msgid "Select database & schema" msgstr "Datenbank & Schema auswählen" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:272 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:280 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:271 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:279 msgid "Select database or type to search databases" msgstr "Datenbank auswählen oder tippen zum Suchen von Datenbanken" @@ -13625,7 +13734,7 @@ msgstr "Datenbank auswählen oder tippen zum Suchen von Datenbanken" msgid "Select database table" msgstr "Datenbanktabelle auswählen" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1791 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1847 msgid "" "Select databases require additional fields to be completed in the " "Advanced tab to successfully connect the database. Learn what " @@ -13665,7 +13774,7 @@ msgstr "Operator auswählen" msgid "Select or type a value" msgstr "Wert eingeben oder auswählen" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:410 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:418 msgid "Select or type dataset name" msgstr "Datensatzname auswählen oder eingeben" @@ -13677,8 +13786,8 @@ msgstr "Besitzende auswählen" msgid "Select saved metrics" msgstr "Gespeicherte Metriken auswählen" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:297 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:304 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:296 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 msgid "Select schema or type to search schemas" msgstr "Schema auswählen oder tippen, um Schemas zu suchen" @@ -13686,7 +13795,7 @@ msgstr "Schema auswählen oder tippen, um Schemas zu suchen" msgid "Select scheme" msgstr "Schema auswählen" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:304 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:307 msgid "Select start and end date" msgstr "Start- und Enddatum auswählen" @@ -13694,8 +13803,8 @@ msgstr "Start- und Enddatum auswählen" msgid "Select subject" msgstr "Betreff auswählen" +#: superset-frontend/src/components/TableSelector/index.tsx:284 #: superset-frontend/src/components/TableSelector/index.tsx:295 -#: superset-frontend/src/components/TableSelector/index.tsx:306 msgid "Select table or type to search tables" msgstr "Tabelle auswählen oder tippen, um Tabellen zu suchen" @@ -13703,6 +13812,23 @@ msgstr "Tabelle auswählen oder tippen, um Tabellen zu suchen" msgid "Select the Annotation Layer you would like to use." msgstr "Wählen Sie den Anmerkungs-Layer aus, den Sie verwenden möchten." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +msgid "" +"Select the charts to which you want to apply cross-filters in this " +"dashboard. Deselecting a chart will exclude it from being filtered when " +"applying cross-filters from any chart on the dashboard. You can select " +"\"All charts\" to apply cross-filters to all charts that use the same " +"dataset or contain the same column name in the dashboard." +msgstr "" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +msgid "" +"Select the charts to which you want to apply cross-filters when " +"interacting with this chart. You can select \"All charts\" to apply " +"filters to all charts that use the same dataset or contain the same " +"column name in the dashboard." +msgstr "" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:392 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:37 msgid "Select the geojson column" @@ -13722,8 +13848,8 @@ msgid "" "Select values in highlighted field(s) in the control panel. Then run the " "query by clicking on the %s button." msgstr "" -"Wählen Sie Werte in hervorgehobenen Feldern im Bedienfeld aus. Führen Sie " -"dann die Abfrage aus, indem Sie auf die Schaltfläche %s klicken." +"Wählen Sie Werte in hervorgehobenen Feldern im Bedienfeld aus. Führen Sie" +" dann die Abfrage aus, indem Sie auf die Schaltfläche %s klicken." #: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 msgid "Send as CSV" @@ -13750,7 +13876,7 @@ msgstr "September" msgid "Sequential" msgstr "Fortlaufend" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 msgid "Series" msgstr "Zeitreihen" @@ -13766,7 +13892,7 @@ msgstr "Zeitreihenlimit Sortieren nach" msgid "Series Limit Sort Descending" msgstr "Zeitreihenlimit absteigend sortieren" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:255 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:246 msgid "Series Order" msgstr "Zeitreihen-Reihenfolge" @@ -13841,13 +13967,13 @@ msgid "Settings for time series" msgstr "Einstellungen für Zeitreihen" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:325 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:464 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:467 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 #: superset-frontend/src/features/home/SavedQueries.tsx:211 msgid "Share" msgstr "Teilen" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:469 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:472 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:343 msgid "Share chart by email" msgstr "Diagramm per Email teilen" @@ -13856,7 +13982,7 @@ msgstr "Diagramm per Email teilen" msgid "Share permalink by email" msgstr "Permalink per E-Mail teilen" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1429 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1421 msgid "Shared query" msgstr "Geteilte Abfrage" @@ -13864,7 +13990,7 @@ msgstr "Geteilte Abfrage" msgid "Shared query fields" msgstr "Freigegebene Abfragefelder" -#: superset/views/database/forms.py:298 +#: superset/views/database/forms.py:308 msgid "Sheet Name" msgstr "Blattname" @@ -13889,8 +14015,8 @@ msgid "" "Should weekly seasonality be applied. An integer value will specify " "Fourier order of seasonality." msgstr "" -"Sollte wöchentliche Saisonalität angewendet werden. Ein ganzzahliger Wert " -"gibt die Fourier-Reihenfolge der Saisonalität an." +"Sollte wöchentliche Saisonalität angewendet werden. Ein ganzzahliger Wert" +" gibt die Fourier-Reihenfolge der Saisonalität an." #: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 msgid "" @@ -13920,7 +14046,7 @@ msgstr "CSS Vorlagen anzeigen" msgid "Show Chart" msgstr "Diagramm anzeigen" -#: superset/connectors/sqla/views.py:73 +#: superset/connectors/sqla/views.py:72 msgid "Show Column" msgstr "Spalte anzeigen" @@ -13954,11 +14080,11 @@ msgstr "Protokoll anzeigen" msgid "Show Markers" msgstr "Markierungen anzeigen" -#: superset/connectors/sqla/views.py:208 +#: superset/connectors/sqla/views.py:207 msgid "Show Metric" msgstr "Metrik anzeigen" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:178 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 msgid "Show Metric Names" msgstr "Metriknamen anzeigen" @@ -13966,15 +14092,11 @@ msgstr "Metriknamen anzeigen" msgid "Show Range Filter" msgstr "Bereichsfilter anzeigen" -#: superset/connectors/sqla/views.py:291 -msgid "Show Row level security filter" -msgstr "Sicherheitsfilter auf Zeilenebene anzeigen" - #: superset/views/sql_lab/views.py:53 msgid "Show Saved Query" msgstr "Gespeicherte Abfrage anzeigen" -#: superset/connectors/sqla/views.py:385 +#: superset/connectors/sqla/views.py:292 msgid "Show Table" msgstr "Tabelle anzeigen" @@ -13995,11 +14117,11 @@ msgstr "Trendlinie anzeigen" msgid "Show Upper Labels" msgstr "Obere Beschriftungen anzeigen" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:110 msgid "Show Value" msgstr "Wert anzeigen" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:164 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:315 #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:184 msgid "Show Values" @@ -14014,8 +14136,8 @@ msgid "" "Show Y-axis on the sparkline. Will display the manually set min/max if " "set or min/max values in the data otherwise." msgstr "" -"Y-Achse auf der Sparkline anzeigen. Zeigt die manuell eingestellten Min/" -"Max-Werte an, falls festgelegt, andernfalls Min/Max-Werte der Daten." +"Y-Achse auf der Sparkline anzeigen. Zeigt die manuell eingestellten Min" +"/Max-Werte an, falls festgelegt, andernfalls Min/Max-Werte der Daten." #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx:156 msgid "Show all columns" @@ -14034,7 +14156,7 @@ msgstr "Anzeigen von Achsenlinien-Ticks" msgid "Show cell bars" msgstr "Zellenbalken anzeigen" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:395 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 msgid "Show chart description" msgstr "Diagrammbeschreibung anzeigen" @@ -14069,10 +14191,9 @@ msgstr "Beschriftung anzeigen" #: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:86 msgid "Show labels when the node has children." -msgstr "" -"Zeigen Sie Beschriftungen an, wenn der Knoten untergeordnete Elemente hat." +msgstr "Zeigen Sie Beschriftungen an, wenn der Knoten untergeordnete Elemente hat." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:39 msgid "Show legend" msgstr "Legende anzeigen" @@ -14108,7 +14229,7 @@ msgstr "Fortschritt anzeigen" msgid "Show rows total" msgstr "Zeilensumme anzeigen" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 msgid "Show series values on the chart" msgstr "Reihenwerten im Diagramm anzeigen" @@ -14131,13 +14252,12 @@ msgstr "Dropdown-Liste Zeiteinheiten anzeigen" #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:367 msgid "" -"Show total aggregations of selected metrics. Note that row limit does not " -"apply to the result." +"Show total aggregations of selected metrics. Note that row limit does not" +" apply to the result." msgstr "" "Zeigen Sie die Gesamtaggregationen ausgewählter Metriken an. Beachten " "Sie, dass das Zeilenlimit nicht für das Ergebnis gilt." -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:76 #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:365 msgid "Show totals" @@ -14156,8 +14276,8 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 msgid "" "Showcases a single number accompanied by a simple line chart, to call " -"attention to an important metric along with its change over time or other " -"dimension." +"attention to an important metric along with its change over time or other" +" dimension." msgstr "" "Zeigt eine einzelne Zahl zusammen mit einem einfachen Liniendiagramm, um " "die Aufmerksamkeit auf eine wichtige Metrik zusammen mit ihrer " @@ -14178,8 +14298,8 @@ msgid "" "Showcases the flow or link between categories using thickness of chords. " "The value and corresponding thickness can be different for each side." msgstr "" -"Zeigt den Fluss oder die Verknüpfung zwischen Kategorien anhand der Dicke " -"der Sehnen. Der Wert und die entsprechende Dicke können für jede Seite " +"Zeigt den Fluss oder die Verknüpfung zwischen Kategorien anhand der Dicke" +" der Sehnen. Der Wert und die entsprechende Dicke können für jede Seite " "unterschiedlich sein." #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 @@ -14196,10 +14316,9 @@ msgstr "" msgid "Showing %s of %s" msgstr "Sie sehen %s von %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:184 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 msgid "Shows a list of all series available at that point in time" -msgstr "" -"Zeigt eine Liste aller zu diesem Zeitpunkt verfügbaren Zeitreihen an." +msgstr "Zeigt eine Liste aller zu diesem Zeitpunkt verfügbaren Zeitreihen an." #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:742 msgid "Shows or hides markers for the time series" @@ -14208,8 +14327,8 @@ msgstr "Ein- oder Ausblenden von Markern für die Zeitreihe" #: superset-frontend/plugins/legacy-plugin-chart-treemap/src/index.js:31 msgid "" "Shows the composition of a dataset by segmenting a given rectangle as " -"smaller rectangles with areas proportional to their value or contribution " -"to the whole. Those rectangles may also, in turn, be further segmented " +"smaller rectangles with areas proportional to their value or contribution" +" to the whole. Those rectangles may also, in turn, be further segmented " "hierarchically." msgstr "" "Zeigt die Zusammensetzung eines Datensatzes an, indem ein bestimmtes " @@ -14221,7 +14340,7 @@ msgstr "" msgid "Significance Level" msgstr "Signifikanzniveau" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:341 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 @@ -14270,26 +14389,25 @@ msgstr "Größe des Markers. Gilt auch für Prognosebeobachtungen." msgid "Sizes of vehicles" msgstr "Fahrzeuggrößen" -#: superset/views/database/forms.py:177 +#: superset/views/database/forms.py:187 msgid "Skip Blank Lines" msgstr "Leerzeilen überspringen" -#: superset/views/database/forms.py:174 +#: superset/views/database/forms.py:184 msgid "Skip Initial Space" msgstr "Führende Leerzeichen überspringen" -#: superset/views/database/forms.py:260 superset/views/database/forms.py:354 +#: superset/views/database/forms.py:270 superset/views/database/forms.py:364 msgid "Skip Rows" msgstr "Zeilen überspringen" -#: superset/views/database/forms.py:178 -msgid "" -"Skip blank lines rather than interpreting them as Not A Number values" +#: superset/views/database/forms.py:188 +msgid "Skip blank lines rather than interpreting them as Not A Number values" msgstr "" "Überspringen Sie Leerzeilen, anstatt sie als Nicht-Zahl-Werte zu " "interpretieren" -#: superset/views/database/forms.py:174 +#: superset/views/database/forms.py:184 msgid "Skip spaces after delimiter" msgstr "Leerzeichen nach Trennzeichen überspringen." @@ -14327,7 +14445,7 @@ msgstr "" msgid "Solid" msgstr "Durchgezogen" -#: superset/commands/exceptions.py:115 +#: superset/commands/exceptions.py:119 msgid "Some roles do not exist" msgstr "Einige Rollen sind nicht vorhanden" @@ -14335,7 +14453,7 @@ msgstr "Einige Rollen sind nicht vorhanden" msgid "Something went wrong." msgstr "Etwas ist schief gelaufen." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:864 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:919 #, python-format msgid "Sorry there was an error fetching database information: %s" msgstr "" @@ -14344,8 +14462,7 @@ msgstr "" #: superset-frontend/src/dashboard/actions/sliceEntities.ts:172 msgid "Sorry there was an error fetching saved charts: " -msgstr "" -"Beim Abrufen gespeicherter Diagramme ist leider ein Fehler aufgetreten: " +msgstr "Beim Abrufen gespeicherter Diagramme ist leider ein Fehler aufgetreten: " #: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 msgid "Sorry, An error occurred" @@ -14356,7 +14473,7 @@ msgstr "Leider ist ein Fehler aufgetreten" msgid "Sorry, an error occurred" msgstr "Leider ist ein Fehler aufgetreten" -#: superset-frontend/src/dashboard/actions/dashboardState.js:357 +#: superset-frontend/src/dashboard/actions/dashboardState.js:359 msgid "Sorry, an unknown error occurred" msgstr "Leider ist ein unbekannter Fehler aufgetreten" @@ -14376,8 +14493,7 @@ msgstr "" #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:130 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:187 msgid "Sorry, something went wrong. Try again later." -msgstr "" -"Entschuldigung, etwas ist schief gegangen. Versuchen Sie es später erneut." +msgstr "Entschuldigung, etwas ist schief gegangen. Versuchen Sie es später erneut." #: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 msgid "Sorry, there appears to be no data" @@ -14388,15 +14504,14 @@ msgstr "Leider scheint es keine Daten zu geben" msgid "Sorry, there was an error saving this %s: %s" msgstr "Leider ist beim Speichern dieses %s ein Fehler aufgetreten: %s" -#: superset-frontend/src/dashboard/actions/dashboardState.js:360 +#: superset-frontend/src/dashboard/actions/dashboardState.js:362 #, python-format msgid "Sorry, there was an error saving this dashboard: %s" -msgstr "" -"Leider ist beim Speichern dieses Dashboards ein Fehler aufgetreten: %s" +msgstr "Leider ist beim Speichern dieses Dashboards ein Fehler aufgetreten: %s" #: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 #: superset-frontend/src/pages/SavedQueryList/index.tsx:229 -#: superset-frontend/src/views/CRUD/hooks.ts:676 +#: superset-frontend/src/views/CRUD/hooks.ts:680 msgid "Sorry, your browser does not support copying." msgstr "Entschuldigung. Ihr Browser unterstützt leider kein Kopieren." @@ -14408,7 +14523,7 @@ msgstr "" #: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 #: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 -#: superset-frontend/src/components/Table/index.tsx:208 +#: superset-frontend/src/components/Table/index.tsx:212 msgid "Sort" msgstr "Sortieren" @@ -14426,11 +14541,11 @@ msgstr "Absteigend sortieren" msgid "Sort Metric" msgstr "Sortiermetrik" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:247 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:238 msgid "Sort Series Ascending" msgstr "Zeitreihen aufsteigend sortieren" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:227 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:224 msgid "Sort Series By" msgstr "Zeitreihen sortieren nach" @@ -14505,7 +14620,7 @@ msgstr "Metrik anzeigen" msgid "Sort rows by" msgstr "Zeilen sortieren nach" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:250 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:241 msgid "Sort series in ascending order" msgstr "Sortieren von Zeitreihen in aufsteigender Reihenfolge" @@ -14536,6 +14651,7 @@ msgstr "Quellkategorie" msgid "Sparkline" msgstr "Sparkline" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:978 msgid "Spatial" msgstr "Raumbezug" @@ -14544,27 +14660,26 @@ msgstr "Raumbezug" msgid "Specific Date/Time" msgstr "Spezifisches Datum/Uhrzeit" -#: superset/views/database/forms.py:312 superset/views/database/forms.py:443 +#: superset/views/database/forms.py:322 superset/views/database/forms.py:453 msgid "Specify a schema (if database flavor supports this)." -msgstr "" -"Geben Sie ein Schema an (wenn die Datenbankvariante dies unterstützt)." +msgstr "Geben Sie ein Schema an (wenn die Datenbankvariante dies unterstützt)." -#: superset/views/database/forms.py:351 +#: superset/views/database/forms.py:361 msgid "Specify duplicate columns as \"X.0, X.1\"." msgstr "Geben Sie doppelte Spalten als \"X.0, X.1\" an." -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:711 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:705 msgid "Specify name to CREATE TABLE AS schema in: public" msgstr "Geben Sie den Namen für das CREATE TABLE AS in Schema public an:" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:710 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:704 msgid "Specify name to CREATE VIEW AS schema in: public" msgstr "Geben Sie den Namen für CREATE VIEW AS in Schema public an:" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:515 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:551 msgid "" -"Specify the database version. This should be used with Presto in order to " -"enable query cost estimation." +"Specify the database version. This should be used with Presto in order to" +" enable query cost estimation." msgstr "" "Geben Sie die Datenbankversion an. Dies sollte mit Presto verwendet " "werden, um eine Abfragekostenschätzung zu ermöglichen." @@ -14585,7 +14700,7 @@ msgstr "Quadratmeter" msgid "Square miles" msgstr "Quadratmeilen" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 msgid "Stack" msgstr "Gestapelt" @@ -14599,7 +14714,7 @@ msgstr "Stack-Serie" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:161 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:115 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:128 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:125 msgid "Stack series on top of each other" msgstr "Reihen übereinander stapeln" @@ -14619,7 +14734,7 @@ msgstr "Gestapelte Balken" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:124 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:121 #: superset-frontend/src/explore/fixtures.tsx:58 msgid "Stacked Style" msgstr "Gestapelter Stil" @@ -14676,8 +14791,8 @@ msgid "" "Start y-axis at zero. Uncheck to start y-axis at minimum value in the " "data." msgstr "" -"Beginnen Sie die y-Achse bei Null. Deaktivieren Sie das Kontrollkästchen, " -"um die y-Achse beim Minimalwert in den Daten beginnen zu lassen." +"Beginnen Sie die y-Achse bei Null. Deaktivieren Sie das Kontrollkästchen," +" um die y-Achse beim Minimalwert in den Daten beginnen zu lassen." #: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 msgid "Started" @@ -14689,7 +14804,7 @@ msgstr "Gestartet" msgid "State" msgstr "Zustand" -#: superset/sql_lab.py:511 +#: superset/sql_lab.py:503 #, python-format msgid "Statement %(statement_num)s out of %(statement_count)s" msgstr "Anweisung %(statement_num)s von %(statement_count)s" @@ -14740,24 +14855,24 @@ msgid "" msgstr "" "Zeitreihen-Stufenliniendiagramm (auch Schrittdiagramm genannt) ist eine " "Variation des Liniendiagramms, wobei die Linie jedoch eine Reihe von " -"Schritten zwischen Datenpunkten bildet. Ein Schrittdiagramm kann nützlich " -"sein, wenn Sie die Änderungen anzeigen möchten, die in unregelmäßigen " +"Schritten zwischen Datenpunkten bildet. Ein Schrittdiagramm kann nützlich" +" sein, wenn Sie die Änderungen anzeigen möchten, die in unregelmäßigen " "Abständen auftreten." -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:47 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:46 #: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 msgid "Stop" msgstr "Stopp" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:337 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:339 msgid "Stop query" msgstr "Abfrage anhalten" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:116 msgid "Stop running (Ctrl + e)" msgstr "Beenden der Ausführung (Strg + e)" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:114 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 msgid "Stop running (Ctrl + x)" msgstr "Ausführung abbrechen (Strg + x)" @@ -14765,7 +14880,7 @@ msgstr "Ausführung abbrechen (Strg + x)" msgid "Stopped an unsafe database connection" msgstr "Eine unsichere Datenbankverbindung wurde beendet" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 msgid "Stream" msgstr "Stream" @@ -14782,7 +14897,7 @@ msgstr "Stärke, mit der Graph in Richtung Mitte gezogen wird" msgid "Stretched style" msgstr "Gestreckter Stil" -#: superset/views/database/forms.py:299 +#: superset/views/database/forms.py:309 msgid "Strings used for sheet names (default is the first sheet)." msgstr "" "Zeichenfolgen, die für Blattnamen verwendet werden (Standard ist das " @@ -14813,11 +14928,11 @@ msgstr "Stil" msgid "Style the ends of the progress bar with a round cap" msgstr "Enden des Fortschrittsbalkens mit einer runden Kappe versehen" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:56 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 msgid "Subdomain" msgstr "Subdomain" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 msgid "Subheader" msgstr "Untertitel" @@ -14829,8 +14944,8 @@ msgstr "Schriftgröße Untertitel" msgid "Submit" msgstr "Senden" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:472 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:678 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 #: superset/charts/post_processing.py:161 #: superset/charts/post_processing.py:178 msgid "Subtotal" @@ -14842,7 +14957,7 @@ msgstr "Zwischensumme" msgid "Success" msgstr "Erfolg" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:193 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 msgid "Successfully changed dataset!" msgstr "Datensatz erfolgreich geändert!" @@ -14875,7 +14990,7 @@ msgstr "Summe der Werte über einen bestimmten Zeitraum" msgid "Sum values" msgstr "Summenwerte" -#: superset/viz.py:1888 +#: superset/viz.py:1805 msgid "Sunburst" msgstr "Sunburst" @@ -14900,7 +15015,7 @@ msgid "Superset Embedded SDK documentation." msgstr "Superset Embedded SDK-Dokumentation." #: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:470 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:473 msgid "Superset chart" msgstr "Superset Diagramm" @@ -14910,14 +15025,13 @@ msgstr "Superset Dashboard" #: superset/errors.py:111 msgid "Superset encountered an error while running a command." -msgstr "" -"Superset hat beim Ausführen eines Befehls einen Fehler festgestellt." +msgstr "Superset hat beim Ausführen eines Befehls einen Fehler festgestellt." #: superset/errors.py:112 msgid "Superset encountered an unexpected error." msgstr "Superset hat einen unerwarteten Fehler festgestellt." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:920 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 msgid "Supported databases" msgstr "Unterstützte Datenbanken" @@ -14925,11 +15039,7 @@ msgstr "Unterstützte Datenbanken" msgid "Survey Responses" msgstr "Umfrage-Antworten" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:101 -msgid "Swap Groups and Columns" -msgstr "Gruppen und Spalten tauschen" - -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:254 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:311 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:435 msgid "Swap dataset" @@ -14945,9 +15055,9 @@ msgid "" "scatter, and bar charts. This viz type has many customization options as " "well." msgstr "" -"Schweizer Taschenmesser zur Visualisierung von Daten. Wählen Sie zwischen " -"Schritt-, Linien-, Punkt- und Balkendiagrammen. Dieser Visualisierungstyp " -"hat auch viele Anpassungsoptionen." +"Schweizer Taschenmesser zur Visualisierung von Daten. Wählen Sie zwischen" +" Schritt-, Linien-, Punkt- und Balkendiagrammen. Dieser " +"Visualisierungstyp hat auch viele Anpassungsoptionen." #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 msgid "" @@ -14983,6 +15093,11 @@ msgstr "Spalten aus der Quelle synchronisieren" msgid "Syntax" msgstr "Syntax" +#: superset/db_engine_specs/ocient.py:282 +#, python-format +msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +msgstr "" + #: superset-frontend/src/pages/QueryHistoryList/index.tsx:268 #: superset-frontend/src/pages/SavedQueryList/index.tsx:315 msgid "TABLES" @@ -15014,38 +15129,36 @@ msgstr "Tabellenname" msgid "Tab title" msgstr "Registerkartentitel" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:26 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 -#: superset-frontend/src/components/TableSelector/index.tsx:290 +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 +#: superset-frontend/src/components/TableSelector/index.tsx:279 #: superset-frontend/src/visualizations/TimeTable/index.ts:26 -#: superset/connectors/sqla/views.py:160 -#: superset/connectors/sqla/views.py:255 -#: superset/connectors/sqla/views.py:477 superset/views/chart/mixin.py:86 +#: superset/connectors/sqla/views.py:159 superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:384 superset/views/chart/mixin.py:86 msgid "Table" msgstr "Tabelle" -#: superset/views/core.py:1740 +#: superset/views/core.py:1775 #, python-format msgid "Table %(table)s wasn't found in the database %(db)s" msgstr "Tabelle %(table)s wurde in der Datenbank nicht gefunden %(db)s" -#: superset/views/database/forms.py:317 superset/views/database/forms.py:448 +#: superset/views/database/forms.py:327 superset/views/database/forms.py:458 msgid "Table Exists" msgstr "Tabelle existiert" -#: superset/connectors/sqla/views.py:487 -#: superset/views/database/forms.py:128 superset/views/database/forms.py:269 -#: superset/views/database/forms.py:405 +#: superset/connectors/sqla/views.py:394 superset/views/database/forms.py:128 +#: superset/views/database/forms.py:279 superset/views/database/forms.py:415 msgid "Table Name" msgstr "Tabellenname" -#: superset/viz.py:698 +#: superset/viz.py:722 msgid "Table View" msgstr "Tabellenansicht" -#: superset/datasets/commands/exceptions.py:130 +#: superset/datasets/commands/exceptions.py:147 #, python-format msgid "" "Table [%(table_name)s] could not be found, please double check your " @@ -15062,7 +15175,7 @@ msgstr "" "Tabelle [%{table}s] konnte nicht gefunden werden, bitte überprüfen Sie " "Ihre Datenbankverbindung, Schema und Tabellenname, Fehler: {}" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:268 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:278 msgid "Table cache timeout" msgstr "Tabellen-Cache Timeout" @@ -15074,8 +15187,8 @@ msgstr "Tabellenspalten" msgid "Table loading" msgstr "Tabelle lädt…" -#: superset/views/database/forms.py:132 superset/views/database/forms.py:273 -#: superset/views/database/forms.py:409 +#: superset/views/database/forms.py:132 superset/views/database/forms.py:283 +#: superset/views/database/forms.py:419 msgid "Table name cannot contain a schema" msgstr "Der Tabellenname darf kein Schema enthalten" @@ -15083,6 +15196,11 @@ msgstr "Der Tabellenname darf kein Schema enthalten" msgid "Table name undefined" msgstr "Tabellenname nicht definiert" +#: superset/db_engine_specs/ocient.py:287 +#, fuzzy, python-format +msgid "Table or View \"%(table)s\" does not exist." +msgstr "Der Benutzer*innenname \"%(username)s\" existiert nicht." + #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 msgid "" "Table that visualizes paired t-tests, which are used to understand " @@ -15091,10 +15209,11 @@ msgstr "" "Tabelle, die gepaarte t-Tests visualisiert, die verwendet werden, um " "statistische Unterschiede zwischen Gruppen zu verstehen." +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:384 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:393 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:287 #: superset-frontend/src/pages/SavedQueryList/index.tsx:334 -#: superset/connectors/sqla/views.py:363 -#: superset/connectors/sqla/views.py:384 +#: superset/connectors/sqla/views.py:291 msgid "Tables" msgstr "Tabellen" @@ -15141,7 +15260,7 @@ msgstr "Getaggtes Object konnte nicht gelöscht werden." #: superset-frontend/src/pages/SavedQueryList/index.tsx:382 #: superset-frontend/src/pages/SavedQueryList/index.tsx:487 #: superset-frontend/src/pages/Tags/index.tsx:279 -#: superset/initialization/__init__.py:384 +#: superset/initialization/__init__.py:378 msgid "Tags" msgstr "Schlagwörter" @@ -15170,7 +15289,7 @@ msgstr "Ziel-Seitenverhältnis für Treemap-Kacheln." msgid "Target category" msgstr "Zielkategorie" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:173 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 msgid "Target value" msgstr "Zielwert" @@ -15180,7 +15299,7 @@ msgstr "Vorlagenname" #: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:962 -#: superset/connectors/sqla/views.py:493 +#: superset/connectors/sqla/views.py:400 msgid "Template parameters" msgstr "Vorlagen-Parameter" @@ -15192,7 +15311,7 @@ msgstr "" "Vorlagen-Link. Es ist möglich, {{ metric }} oder andere Werte aus den " "Steuerelementen einzuschließen." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:317 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:327 msgid "" "Terminate running queries when browser window closed or navigated to " "another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " @@ -15219,15 +15338,14 @@ msgstr "Text" msgid "Text align" msgstr "Textausrichtung" -#: superset-frontend/src/components/ReportModal/index.tsx:248 +#: superset-frontend/src/components/ReportModal/index.tsx:247 msgid "Text embedded in email" msgstr "In E-Mail eingebetteter Text" #: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 #: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 #, python-format -msgid "" -"The API response from %s does not match the IDatabaseTable interface." +msgid "The API response from %s does not match the IDatabaseTable interface." msgstr "" "Die API-Antwort von %s stimmt nicht mit der IDatabaseTable-Schnittstelle " "überein." @@ -15248,8 +15366,8 @@ msgid "" msgstr "" "CTAS (create table as select) kann nur mit einer Abfrage ausgeführt " "werden, bei der die letzte Anweisung ein SELECT ist. Bitte stellen Sie " -"sicher, dass Ihre Abfrage eine SELECT-Anweisung als letzte Anweisung hat. " -"Versuchen Sie dann erneut, die Abfrage auszuführen." +"sicher, dass Ihre Abfrage eine SELECT-Anweisung als letzte Anweisung hat." +" Versuchen Sie dann erneut, die Abfrage auszuführen." #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:27 msgid "" @@ -15272,15 +15390,15 @@ msgstr "Die X-Achse befindet sich nicht in der Filterliste" msgid "" "The X-axis is not on the filters list which will prevent it from being " "used in\n" -" time range filters in dashboards. Would you like to add it to " -"the filters list?" +" time range filters in dashboards. Would you like to add it to" +" the filters list?" msgstr "" -"Die X-Achse befindet sich nicht in der Filterliste, weshalb sie nicht " -"als\n" +"Die X-Achse befindet sich nicht in der Filterliste, weshalb sie nicht als" +"\n" " Zeitbereichsfilter in Dashboards verwendet werden kaann. " "Möchten Sie es zur Filterliste hinzufügen?" -#: superset/views/core.py:372 +#: superset/views/core.py:373 msgid "The access requests seem to have been deleted" msgstr "Die Zugriffsanfragen scheinen gelöscht worden zu sein" @@ -15298,34 +15416,35 @@ msgid "" "associated with more than one category, only the first will be used." msgstr "" "Die Kategorie der Quellknoten, die zum Zuweisen von Farben verwendet " -"werden. Wenn ein Knoten mehr als einer Kategorie zugeordnet ist, wird nur " -"die erste verwendet." +"werden. Wenn ein Knoten mehr als einer Kategorie zugeordnet ist, wird nur" +" die erste verwendet." -#: superset/common/query_context_processor.py:586 +#: superset/common/query_context_processor.py:585 msgid "The chart datasource does not exist" msgstr "Die Diagrammdatenquelle ist nicht vorhanden" -#: superset/common/query_context_processor.py:584 +#: superset/common/query_context_processor.py:583 msgid "The chart does not exist" msgstr "Das Diagramm ist nicht vorhanden" #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:58 msgid "" "The classic. Great for showing how much of a company each investor gets, " -"what demographics follow your blog, or what portion of the budget goes to " -"the military industrial complex.\n" +"what demographics follow your blog, or what portion of the budget goes to" +" the military industrial complex.\n" "\n" -" Pie charts can be difficult to interpret precisely. If clarity of " -"relative proportion is important, consider using a bar or other chart " +" Pie charts can be difficult to interpret precisely. If clarity of" +" relative proportion is important, consider using a bar or other chart " "type instead." msgstr "" "Der Klassiker. Großartig, um zu zeigen, wie viel von einem Unternehmen " "jeder Investor bekommt, welche Demografie Ihrem Blog folgt oder welcher " "Teil des Budgets in den militärisch-industriellen Komplex fließt.\n" "\n" -"Kreisdiagramme können schwierig zu interpretieren sein. Wenn die Klarheit " -"des relativen Anteils wichtig ist, sollten Sie stattdessen die Verwendung " -"eines Balkens oder eines anderen Diagrammtyps in Betracht ziehen." +"Kreisdiagramme können schwierig zu interpretieren sein. Wenn die Klarheit" +" des relativen Anteils wichtig ist, sollten Sie stattdessen die " +"Verwendung eines Balkens oder eines anderen Diagrammtyps in Betracht " +"ziehen." #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:266 msgid "The color for points and clusters in RGB" @@ -15357,8 +15476,7 @@ msgstr "Die Spalte wurde in der Datenbank gelöscht oder umbenannt." msgid "" "The country code standard that Superset should expect to find in the " "[country] column" -msgstr "" -"Der Ländercodestandard, den Superset in der Spalte [Land] erwarten sollte" +msgstr "Der Ländercodestandard, den Superset in der Spalte [Land] erwarten sollte" #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:465 msgid "The dashboard has been saved" @@ -15368,7 +15486,7 @@ msgstr "Dashboard wurde erfolgreich gespeichert" msgid "The data source seems to have been deleted" msgstr "Die Datenquelle scheint gelöscht worden zu sein" -#: superset/connectors/sqla/views.py:115 +#: superset/connectors/sqla/views.py:114 msgid "" "The data type that was inferred by the database. It may be necessary to " "input a type manually for expression-defined columns in some cases. In " @@ -15379,7 +15497,7 @@ msgstr "" "manuell einzugeben. In den meisten Fällen sollten Benutzer*innen dies " "nicht ändern müssen." -#: superset-frontend/src/pages/DatabaseList/index.tsx:515 +#: superset-frontend/src/pages/DatabaseList/index.tsx:529 #, python-format msgid "" "The database %s is linked to %s charts that appear on %s dashboards and " @@ -15425,11 +15543,11 @@ msgstr "Die Datenbank hat einen unerwarteten Fehler zurückgegeben." msgid "The database was deleted." msgstr "Die Datenbank wurde gelöscht." -#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2002 +#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2039 msgid "The database was not found." msgstr "Datenbank nicht gefunden." -#: superset-frontend/src/pages/DatasetList/index.tsx:710 +#: superset-frontend/src/pages/DatasetList/index.tsx:724 #, python-format msgid "" "The dataset %s is linked to %s charts that appear on %s dashboards. Are " @@ -15437,15 +15555,15 @@ msgid "" "objects." msgstr "" "Der %s Datensatz ist mit %s Diagrammen verknüpft, die auf %s Dashboards " -"angezeigt werden. Sind Sie sicher, dass Sie fortfahren möchten? Durch das " -"Löschen des Datensatzes werden diese Objekte ungültig." +"angezeigt werden. Sind Sie sicher, dass Sie fortfahren möchten? Durch das" +" Löschen des Datensatzes werden diese Objekte ungültig." #: superset-frontend/src/components/Chart/Chart.jsx:88 -#: superset/views/utils.py:274 +#: superset/views/utils.py:272 msgid "The dataset associated with this chart no longer exists" msgstr "Der diesem Diagramm zugeordnete Datensatz ist nicht mehr vorhanden" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:168 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:210 msgid "" "The dataset configuration exposed here\n" " affects all the charts using this dataset.\n" @@ -15461,7 +15579,7 @@ msgstr "" " änderungen sich in unerwünschter Weise\n" " auf andere Diagramme auswirken können." -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:129 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:164 #: superset-frontend/src/pages/ChartCreation/index.tsx:261 msgid "The dataset has been saved" msgstr "Der Datensatz wurde gespeichert" @@ -15472,7 +15590,7 @@ msgstr "" "Der mit diesem Diagramm verknüpfte Datensatz wurde möglicherweise " "gelöscht." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1496 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1488 msgid "The datasource couldn't be loaded" msgstr "Datenquelle konnte nicht geladen werden" @@ -15482,13 +15600,13 @@ msgstr "Die Datenquelle ist zu groß, um sie abzufragen." #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 msgid "" -"The description can be displayed as widget headers in the dashboard view. " -"Supports markdown." +"The description can be displayed as widget headers in the dashboard view." +" Supports markdown." msgstr "" -"Die Beschreibung kann als Widget-Titel in der Dashboard-Ansicht angezeigt " -"werden. Unterstützt Markdown." +"Die Beschreibung kann als Widget-Titel in der Dashboard-Ansicht angezeigt" +" werden. Unterstützt Markdown." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:104 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 msgid "The distance between cells, in pixels" msgstr "Der Abstand zwischen Zellen in Pixel" @@ -15504,7 +15622,7 @@ msgstr "" msgid "The encoding format of the lines" msgstr "Das Kodierungsformat der Zeilen" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:495 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:531 msgid "" "The engine_params object gets unpacked into the sqlalchemy.create_engine " "call." @@ -15517,9 +15635,9 @@ msgstr "" msgid "" "The following entries in `series_columns` are missing in `columns`: " "%(columns)s. " -msgstr "" -"Folgende Einträge in 'series_columns' fehlen in ‚columns‘: %(columns)s. " +msgstr "Folgende Einträge in 'series_columns' fehlen in ‚columns‘: %(columns)s. " +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:111 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:67 msgid "The function to use when aggregating points into groups" msgstr "Die beim Aggregieren von Punkten in Gruppen zu verwendende Funktion" @@ -15532,9 +15650,9 @@ msgstr "" "nicht erreicht werden." #: superset/db_engine_specs/mssql.py:103 -#: superset/db_engine_specs/postgres.py:140 -#: superset/db_engine_specs/presto.py:664 -#: superset/db_engine_specs/redshift.py:82 +#: superset/db_engine_specs/postgres.py:139 +#: superset/db_engine_specs/presto.py:691 +#: superset/db_engine_specs/redshift.py:86 #, python-format msgid "" "The host \"%(hostname)s\" might be down, and can't be reached on port " @@ -15550,9 +15668,9 @@ msgstr "" "Port nicht erreicht werden." #: superset/db_engine_specs/mssql.py:93 -#: superset/db_engine_specs/postgres.py:130 -#: superset/db_engine_specs/presto.py:659 -#: superset/db_engine_specs/redshift.py:72 +#: superset/db_engine_specs/postgres.py:129 +#: superset/db_engine_specs/presto.py:686 +#: superset/db_engine_specs/redshift.py:76 #, python-format msgid "The hostname \"%(hostname)s\" cannot be resolved." msgstr "Der Hostname \"%(hostname)s\" kann nicht aufgelöst werden." @@ -15566,7 +15684,7 @@ msgstr "Der angegebene Hostname kann nicht aufgelöst werden." msgid "The id of the active chart" msgstr "Die ID des aktiven Diagramms" -#: superset/connectors/sqla/views.py:418 +#: superset/connectors/sqla/views.py:325 msgid "" "The list of charts associated with this table. By altering this " "datasource, you may change how these associated charts behave. Also note " @@ -15574,25 +15692,24 @@ msgid "" "saving if removing charts from a datasource. If you want to change the " "datasource for a chart, overwrite the chart from the 'explore view'" msgstr "" -"Die Liste der Diagramme, die dieser Tabelle zugeordnet sind. Durch Ändern " -"dieser Datenquelle können Sie das Verhalten der zugeordneten Diagramme " +"Die Liste der Diagramme, die dieser Tabelle zugeordnet sind. Durch Ändern" +" dieser Datenquelle können Sie das Verhalten der zugeordneten Diagramme " "ändern. Beachten Sie auch, dass Diagramme auf eine Datenquelle verweisen " -"müssen, sodass dieses Formular beim Speichern fehlschlägt, wenn Diagramme " -"aus einer Datenquelle entfernt werden. Wenn Sie die Datenquelle für ein " -"Diagramm ändern möchten, überschreiben Sie das Diagramm aus der \"Explore-" -"Ansicht\"." +"müssen, sodass dieses Formular beim Speichern fehlschlägt, wenn Diagramme" +" aus einer Datenquelle entfernt werden. Wenn Sie die Datenquelle für ein " +"Diagramm ändern möchten, überschreiben Sie das Diagramm aus der " +"\"Explore-Ansicht\"." #: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:129 -msgid "" -"The maximum number of events to return, equivalent to the number of rows" +msgid "The maximum number of events to return, equivalent to the number of rows" msgstr "" "Die maximale Anzahl der zurückzugebenden Ereignisse, entspricht der " "Anzahl Zeilen" #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:172 msgid "" -"The maximum number of subdivisions of each group; lower values are pruned " -"first" +"The maximum number of subdivisions of each group; lower values are pruned" +" first" msgstr "" "Die maximale Anzahl von Unterteilungen jeder Gruppe; Niedrigere Werte " "werden zuerst ausgeblendet" @@ -15619,7 +15736,7 @@ msgstr "" "Die metadata_params im Feld Extra ist nicht ordnungsgemäß konfiguriert. " "Der Schlüssel %{key}s ist ungültig." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:469 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:505 msgid "" "The metadata_params object gets unpacked into the sqlalchemy.MetaData " "call." @@ -15641,26 +15758,26 @@ msgid "" "periods" msgstr "" "Die Mindestanzahl von rollierender Perioden, die erforderlich sind, um " -"einen Wert anzuzeigen. Wenn Sie beispielsweise eine kumulative Summe an 7 " -"Tagen durchführen, möchten Sie möglicherweise, dass Ihr " +"einen Wert anzuzeigen. Wenn Sie beispielsweise eine kumulative Summe an 7" +" Tagen durchführen, möchten Sie möglicherweise, dass Ihr " "\"Mindestzeitraum\" 7 beträgt, so dass alle angezeigten Datenpunkte die " "Summe von 7 Perioden sind. Dies wird den \"Hochlauf\" verbergen, der in " "den ersten 7 Perioden stattfindet" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:130 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 msgid "The number color \"steps\"" msgstr "Die Anzahl Farbabstufungen" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:955 msgid "" -"The number of hours, negative or positive, to shift the time column. This " -"can be used to move UTC time to local time." +"The number of hours, negative or positive, to shift the time column. This" +" can be used to move UTC time to local time." msgstr "" "Die Anzahl der Stunden, negativ oder positiv, um die Zeitspalte zu " -"verschieben. Dies kann verwendet werden, um die UTC-Zeit auf die Ortszeit " -"zu verschieben." +"verschieben. Dies kann verwendet werden, um die UTC-Zeit auf die Ortszeit" +" zu verschieben." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:308 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:301 #, python-format msgid "" "The number of results displayed is limited to %(rows)d by the " @@ -15672,7 +15789,7 @@ msgstr "" "Limits/Filter hinzu oder laden Sie sie als CSDV-Datei herunter, um " "weitere Zeilen bis zum %(limit)d-Limit anzuzeigen." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:314 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:307 #, python-format msgid "" "The number of results displayed is limited to %(rows)d. Please add " @@ -15684,36 +15801,35 @@ msgstr "" "herunter oder wenden Sie sich an eine*n Administrator*in, um weitere " "Zeilen bis zum %(limit)d-Limit anzuzeigen." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:365 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:358 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the dropdown." msgstr "" "Die Anzahl der angezeigten Zeilen ist durch das Dropdown-Menü auf " "%(rows)d beschränkt." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:334 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 #, python-format -msgid "" -"The number of rows displayed is limited to %(rows)d by the limit dropdown." +msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." msgstr "" "Die Anzahl der angezeigten Zeilen ist durch Dropdownliste \"Limit\" auf " "%(rows)d beschränkt." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:326 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:319 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the query" msgstr "" "Die Anzahl der angezeigten Zeilen ist durch die Abfrage auf %(rows)d " "beschränkt" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:339 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:332 #, python-format msgid "" "The number of rows displayed is limited to %(rows)d by the query and " "limit dropdown." msgstr "" -"Die Anzahl der angezeigten Zeilen ist durch Dropdownliste-Abfrage und -" -"Limit auf %(rows)d beschränkt." +"Die Anzahl der angezeigten Zeilen ist durch Dropdownliste-Abfrage und " +"-Limit auf %(rows)d beschränkt." #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 #: superset-frontend/src/explore/controlPanels/sections.tsx:43 @@ -15724,18 +15840,16 @@ msgstr "Die Anzahl der Sekunden vor Ablauf des Caches" msgid "The object does not exist in the given database." msgstr "Das Objekt existiert nicht in der angegebenen Datenbank." -#: superset/sqllab/query_render.py:96 +#: superset/sqllab/query_render.py:94 #, python-format msgid "The parameter %(parameters)s in your query is undefined." -msgid_plural "" -"The following parameters in your query are undefined: %(parameters)s." -msgstr[0] "" -"Der Parameter %(parameters)s in ihrer Abfrage ist nicht definiert." +msgid_plural "The following parameters in your query are undefined: %(parameters)s." +msgstr[0] "Der Parameter %(parameters)s in ihrer Abfrage ist nicht definiert." msgstr[1] "" "Die folgenden Parameter in Ihrer Abfrage sind nicht definiert: " "%(parameters)s." -#: superset/db_engine_specs/postgres.py:120 +#: superset/db_engine_specs/postgres.py:119 #, python-format msgid "The password provided for username \"%(username)s\" is incorrect." msgstr "" @@ -15752,8 +15866,8 @@ msgstr "" msgid "" "The passwords for the databases below are needed in order to import them " "together with the charts. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in " -"export files, and should be added manually after the import if they are " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " "needed." msgstr "" "Die Passwörter für die folgenden Datenbanken werden benötigt, um sie " @@ -15766,13 +15880,13 @@ msgstr "" msgid "" "The passwords for the databases below are needed in order to import them " "together with the dashboards. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in " -"export files, and should be added manually after the import if they are " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " "needed." msgstr "" -"Die Passwörter für die unten aufgeführten Datenbanken werden benötigt, um " -"sie zusammen mit den Dashboards zu importieren. Bitte beachten Sie, dass " -"die Abschnitte \"Secure Extra\" und \"Certificate\" der " +"Die Passwörter für die unten aufgeführten Datenbanken werden benötigt, um" +" sie zusammen mit den Dashboards zu importieren. Bitte beachten Sie, dass" +" die Abschnitte \"Secure Extra\" und \"Certificate\" der " "Datenbankkonfiguration in Exportdateien nicht vorhanden sind und bei " "Bedarf nach dem Import manuell hinzugefügt werden sollten." @@ -15780,8 +15894,8 @@ msgstr "" msgid "" "The passwords for the databases below are needed in order to import them " "together with the datasets. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in " -"export files, and should be added manually after the import if they are " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " "needed." msgstr "" "Die Passwörter für die folgenden Datenbanken werden benötigt, um sie " @@ -15795,21 +15909,21 @@ msgid "" "The passwords for the databases below are needed in order to import them " "together with the saved queries. Please note that the \"Secure Extra\" " "and \"Certificate\" sections of the database configuration are not " -"present in export files, and should be added manually after the import if " -"they are needed." +"present in export files, and should be added manually after the import if" +" they are needed." msgstr "" -"Die Passwörter für die unten aufgeführten Datenbanken werden benötigt, um " -"sie zusammen mit den gespeicherten Abfragen zu importieren. Bitte " +"Die Passwörter für die unten aufgeführten Datenbanken werden benötigt, um" +" sie zusammen mit den gespeicherten Abfragen zu importieren. Bitte " "beachten Sie, dass die Abschnitte \"Secure Extra\" und \"Certificate\" " "der Datenbankkonfiguration in Exportdateien nicht vorhanden sind und bei " "Bedarf nach dem Import manuell hinzugefügt werden sollten." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1284 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1339 msgid "" -"The passwords for the databases below are needed in order to import them. " -"Please note that the \"Secure Extra\" and \"Certificate\" sections of the " -"database configuration are not present in explore files and should be " -"added manually after the import if they are needed." +"The passwords for the databases below are needed in order to import them." +" Please note that the \"Secure Extra\" and \"Certificate\" sections of " +"the database configuration are not present in explore files and should be" +" added manually after the import if they are needed." msgstr "" "Die Passwörter für die folgenden Datenbanken werden benötigt, um sie zu " "importieren. Bitte beachten Sie, dass die Abschnitte „Sicherheit Extra“ " @@ -15819,8 +15933,7 @@ msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:304 msgid "The pattern of timestamp format. For strings use " -msgstr "" -"Das Muster des Zeitstempelformats. Für Zeichenfolgen verwenden Sie eine " +msgstr "Das Muster des Zeitstempelformats. Für Zeichenfolgen verwenden Sie eine " #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 msgid "" @@ -15835,15 +15948,15 @@ msgstr "" " Klicken Sie auf die Infoblase, um weitere Informationen zu " "akzeptierten \"freq\"-Ausdrücken zu erhalten." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 msgid "The pixel radius" msgstr "Der Pixelradius" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1155 msgid "" -"The pointer to a physical table (or view). Keep in mind that the chart is " -"associated to this Superset logical table, and this logical table points " -"the physical table referenced here." +"The pointer to a physical table (or view). Keep in mind that the chart is" +" associated to this Superset logical table, and this logical table points" +" the physical table referenced here." msgstr "" "Der Zeiger auf eine physische Tabelle (oder Ansicht). Beachten Sie, dass " "das Diagramm dieser logischen Superset-Tabelle zugeordnet ist welche auf " @@ -15860,10 +15973,9 @@ msgstr "Die Port-Nummer ist ungültig." #: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:62 #: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 msgid "The primary metric is used to define the arc segment sizes" -msgstr "" -"Die primäre Metrik wird verwendet, um die Bogensegmentgrößen zu definieren" +msgstr "Die primäre Metrik wird verwendet, um die Bogensegmentgrößen zu definieren" -#: superset/views/core.py:2212 +#: superset/views/core.py:2248 msgid "The provided `rows` argument is not a valid integer." msgstr "Das angegebene Argument 'rows' ist keine gültige ganze Zahl." @@ -15871,8 +15983,8 @@ msgstr "Das angegebene Argument 'rows' ist keine gültige ganze Zahl." msgid "The query associated with the results was deleted." msgstr "Die den Ergebnissen zugeordnete Abfrage wurde gelöscht." -#: superset/sqllab/commands/export.py:63 -#: superset/sqllab/commands/results.py:91 superset/views/core.py:2162 +#: superset/sqllab/commands/export.py:63 superset/sqllab/commands/results.py:91 +#: superset/views/core.py:2198 msgid "" "The query associated with these results could not be found. You need to " "re-run the original query." @@ -15880,10 +15992,9 @@ msgstr "" "Die mit diesen Ergebnissen verknüpfte Abfrage konnte nicht gefunden " "werden. Sie müssen die ursprüngliche Abfrage erneut ausführen." -#: superset/sqllab/query_render.py:117 +#: superset/sqllab/query_render.py:115 msgid "The query contains one or more malformed template parameters." -msgstr "" -"Die Abfrage enthält einen oder mehrere fehlerhafte Vorlagenparameter." +msgstr "Die Abfrage enthält einen oder mehrere fehlerhafte Vorlagenparameter." #: superset-frontend/src/SqlLab/actions/sqlLab.js:107 msgid "The query couldn't be loaded" @@ -15895,19 +16006,19 @@ msgid "" "The query estimation was killed after %(sqllab_timeout)s seconds. It " "might be too complex, or the database might be under heavy load." msgstr "" -"Die Abfrage-Schätzung wurde nach %(sqllab_timeout)s Sekunden abgebrochen. " -"Sie war eventuell zu komplex, oder die Datenbank ist aktuell stark " +"Die Abfrage-Schätzung wurde nach %(sqllab_timeout)s Sekunden abgebrochen." +" Sie war eventuell zu komplex, oder die Datenbank ist aktuell stark " "belastet." #: superset/errors.py:135 msgid "The query has a syntax error." msgstr "Die Abfrage weist einen Syntaxfehler auf." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:519 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:512 msgid "The query returned no data" msgstr "Die Abfrage hat keine Daten zurückgegeben" -#: superset/sql_lab.py:301 +#: superset/sql_lab.py:297 #, python-format msgid "" "The query was killed after %(sqllab_timeout)s seconds. It might be too " @@ -15923,14 +16034,14 @@ msgid "" "will cause lag." msgstr "" "Der Radius (in Pixel), den der Algorithmus zum Definieren eines Clusters " -"verwendet. Wählen Sie 0, um das Clustering zu deaktivieren, aber beachten " -"Sie, dass eine große Anzahl von Punkten (>1000) zu Verzögerungen führt." +"verwendet. Wählen Sie 0, um das Clustering zu deaktivieren, aber beachten" +" Sie, dass eine große Anzahl von Punkten (>1000) zu Verzögerungen führt." #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:120 msgid "" "The radius of individual points (ones that are not in a cluster). Either " -"a numerical column or `Auto`, which scales the point based on the largest " -"cluster" +"a numerical column or `Auto`, which scales the point based on the largest" +" cluster" msgstr "" "Der Radius einzelner Punkte (die sich nicht in einem Cluster befinden). " "Entweder eine numerische Spalte oder \"Auto\", die den Punkt basierend " @@ -15942,8 +16053,7 @@ msgstr "Der Report wurde erstellt" #: superset/errors.py:136 msgid "The results backend no longer has the data from the query." -msgstr "" -"Das Ergebnis-Backend verfügt nicht mehr über die Daten aus der Abfrage." +msgstr "Das Ergebnis-Backend verfügt nicht mehr über die Daten aus der Abfrage." #: superset/errors.py:138 msgid "" @@ -15961,7 +16071,7 @@ msgstr "" "Der umfangreiche Tooltip zeigt eine Liste aller Zeitreihen für diesen " "Zeitpunkt" -#: superset/db_engine_specs/bigquery.py:202 +#: superset/db_engine_specs/bigquery.py:203 #, python-format msgid "" "The schema \"%(schema)s\" does not exist. A valid schema must be used to " @@ -15970,7 +16080,7 @@ msgstr "" "Das Schema \"%(schema)s\" existiert nicht. Zum Ausführen dieser Abfrage " "muss ein gültiges Schema verwendet werden." -#: superset/db_engine_specs/presto.py:646 +#: superset/db_engine_specs/presto.py:673 #, python-format msgid "" "The schema \"%(schema_name)s\" does not exist. A valid schema must be " @@ -15983,11 +16093,12 @@ msgstr "" msgid "The schema was deleted or renamed in the database." msgstr "Das Schema wurde in der Datenbank gelöscht oder umbenannt." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:92 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 msgid "The size of the square cell, in pixels" msgstr "Die Größe der quadratischen Zelle in Pixel" -#: superset/views/datasource/views.py:88 +#: superset/datasets/commands/exceptions.py:72 +#: superset/views/datasource/views.py:90 msgid "" "The submitted URL is not considered safe, only use URLs with the same " "domain as Superset." @@ -16003,16 +16114,16 @@ msgstr "Die übermittelte Nutzlast hat das falsche Format." msgid "The submitted payload has the incorrect schema." msgstr "Die übermittelte Nutzlast hat das falsche Schema." -#: superset/db_engine_specs/bigquery.py:189 +#: superset/db_engine_specs/bigquery.py:190 #, python-format msgid "" -"The table \"%(table)s\" does not exist. A valid table must be used to run " -"this query." +"The table \"%(table)s\" does not exist. A valid table must be used to run" +" this query." msgstr "" "Die Tabelle \"%(table)s\" existiert nicht. Zum Ausführen dieser Abfrage " "muss eine gültige Tabelle verwendet werden." -#: superset/db_engine_specs/presto.py:638 +#: superset/db_engine_specs/presto.py:665 #, python-format msgid "" "The table \"%(table_name)s\" does not exist. A valid table must be used " @@ -16021,7 +16132,7 @@ msgstr "" "Die Tabelle \"%(table_name)s\" existiert nicht. Zum Ausführen dieser " "Abfrage muss eine gültige Tabelle verwendet werden." -#: superset/connectors/sqla/views.py:515 +#: superset/connectors/sqla/views.py:422 msgid "" "The table was created. As part of this two-phase configuration process, " "you should now click the edit button by the new table to configure it." @@ -16037,14 +16148,14 @@ msgstr "Die Tabelle wurde in der Datenbank gelöscht oder umbenannt." #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:237 #: superset-frontend/src/explore/controls.jsx:281 msgid "" -"The time column for the visualization. Note that you can define arbitrary " -"expression that return a DATETIME column in the table. Also note that the " -"filter below is applied against this column or expression" +"The time column for the visualization. Note that you can define arbitrary" +" expression that return a DATETIME column in the table. Also note that " +"the filter below is applied against this column or expression" msgstr "" "Die Zeitspalte für die Visualisierung. Beachten Sie, dass Sie beliebige " "Ausdrücke definieren können, die eine DATETIME-Spalte in der Tabelle " -"zurückgeben. Beachten Sie auch, dass der folgende Filter auf diese Spalte " -"oder diesen Ausdruck angewendet wird" +"zurückgeben. Beachten Sie auch, dass der folgende Filter auf diese Spalte" +" oder diesen Ausdruck angewendet wird" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:177 msgid "" @@ -16081,12 +16192,12 @@ msgstr "" #: superset-frontend/src/explore/controls.jsx:327 msgid "" "The time range for the visualization. All relative times, e.g. \"Last " -"month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using " -"the server's local time (sans timezone). All tooltips and placeholder " +"month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using" +" the server's local time (sans timezone). All tooltips and placeholder " "times are expressed in UTC (sans timezone). The timestamps are then " -"evaluated by the database using the engine's local timezone. Note one can " -"explicitly set the timezone per the ISO 8601 format if specifying either " -"the start and/or end time." +"evaluated by the database using the engine's local timezone. Note one can" +" explicitly set the timezone per the ISO 8601 format if specifying either" +" the start and/or end time." msgstr "" "Der Zeitraum für die Visualisierung. Alle relativen Zeiten, z.B. " "\"Letzter Monat\", \"Letzte 7 Tage\", \"jetzt\" usw., werden auf dem " @@ -16097,7 +16208,7 @@ msgstr "" "Zeitzone explizit nach dem ISO 8601-Format festlegen kann, wenn entweder " "die Start- und/oder Endzeit angegeben wird." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 msgid "" "The time unit for each block. Should be a smaller unit than " "domain_granularity. Should be larger or equal to Time Grain" @@ -16105,7 +16216,7 @@ msgstr "" "Die Zeiteinheit für jeden Block. Sollte eine kleinere Einheit als " "domain_granularity sein. Sollte größer oder gleich Zeitgranularität sein" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 msgid "The time unit used for the grouping of blocks" msgstr "Die Zeiteinheit, die für die Gruppierung von Blöcken verwendet wird" @@ -16123,7 +16234,12 @@ msgstr "Die Maßeinheit für den angegebenen Punktradius" msgid "The user seems to have been deleted" msgstr "Der/die Benutzer*in scheint gelöscht worden zu sein" -#: superset/db_engine_specs/postgres.py:115 +#: superset/db_engine_specs/ocient.py:251 +msgid "The user/password combination is not valid (Incorrect password for user)." +msgstr "" + +#: superset/db_engine_specs/ocient.py:246 +#: superset/db_engine_specs/postgres.py:114 #, python-format msgid "The username \"%(username)s\" does not exist." msgstr "Der Benutzer*innenname \"%(username)s\" existiert nicht." @@ -16152,16 +16268,16 @@ msgstr "Die Breite der Linien" msgid "There are associated alerts or reports" msgstr "Es gibt zugehörige Alarme oder Reports" -#: superset/charts/commands/bulk_delete.py:62 -#: superset/charts/commands/delete.py:71 -#: superset/dashboards/commands/bulk_delete.py:63 -#: superset/dashboards/commands/delete.py:64 -#: superset/databases/commands/delete.py:63 +#: superset/charts/commands/bulk_delete.py:61 +#: superset/charts/commands/delete.py:70 +#: superset/dashboards/commands/bulk_delete.py:62 +#: superset/dashboards/commands/delete.py:63 +#: superset/databases/commands/delete.py:62 #, python-format msgid "There are associated alerts or reports: %s," msgstr "Es gibt zugehörige Alarme oder Reports: %s," -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:710 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:711 msgid "There are no charts added to this dashboard" msgstr "Diesem Dashboard wurden keine Diagramme hinzugefügt." @@ -16184,8 +16300,8 @@ msgstr "Ungesicherte Änderungen vorhanden." #: superset/errors.py:101 msgid "" -"There is a syntax error in the SQL query. Perhaps there was a misspelling " -"or a typo." +"There is a syntax error in the SQL query. Perhaps there was a misspelling" +" or a typo." msgstr "" "In der SQL-Abfrage liegt ein Syntaxfehler vor. Vielleicht gab es einen " "Rechtschreibfehler oder einen Tippfehler." @@ -16220,7 +16336,7 @@ msgstr "Fehler beim Abrufen der zugehörigen Objekte des Datensatzes" msgid "There was an error fetching tables" msgstr "Fehler beim Abrufen von Tabellen" -#: superset-frontend/src/views/CRUD/hooks.ts:589 +#: superset-frontend/src/views/CRUD/hooks.ts:593 #, python-format msgid "There was an error fetching the favorite status: %s" msgstr "Beim Abrufen des Favoritenstatus ist ein Problem aufgetreten: %s" @@ -16229,20 +16345,24 @@ msgstr "Beim Abrufen des Favoritenstatus ist ein Problem aufgetreten: %s" msgid "There was an error fetching your recent activity:" msgstr "Beim Abrufen der letzten Aktivität ist ein Fehler aufgetreten:" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:450 +#, fuzzy +msgid "There was an error loading the chart data" +msgstr "Beim Abrufen gespeicherter Diagramme ist leider ein Fehler aufgetreten" + #: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 msgid "There was an error loading the dataset metadata" msgstr "Fehler beim Laden der Datensatz-Metadaten" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:241 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:240 msgid "There was an error loading the schemas" -msgstr "" -"Beim Abrufen gespeicherter Diagramme ist leider ein Fehler aufgetreten" +msgstr "Beim Abrufen gespeicherter Diagramme ist leider ein Fehler aufgetreten" -#: superset-frontend/src/components/TableSelector/index.tsx:194 +#: superset-frontend/src/components/TableSelector/index.tsx:191 msgid "There was an error loading the tables" msgstr "Beim Laden der Tabellen ist ein Fehler aufgetreten" -#: superset-frontend/src/views/CRUD/hooks.ts:612 +#: superset-frontend/src/views/CRUD/hooks.ts:616 #, python-format msgid "There was an error saving the favorite status: %s" msgstr "Beim Speichern des Favoritenstatus ist ein Fehler aufgetreten: %s" @@ -16256,14 +16376,20 @@ msgstr "Bei Ihrer Anfrage ist ein Fehler aufgetreten" #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 #: superset-frontend/src/pages/AnnotationList/index.tsx:121 #: superset-frontend/src/pages/CssTemplateList/index.tsx:97 -#: superset-frontend/src/pages/DatabaseList/index.tsx:167 -#: superset-frontend/src/pages/DatasetList/index.tsx:657 +#: superset-frontend/src/pages/DatabaseList/index.tsx:178 +#: superset-frontend/src/pages/DatasetList/index.tsx:668 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:97 #: superset-frontend/src/pages/SavedQueryList/index.tsx:245 #: superset-frontend/src/views/CRUD/utils.tsx:315 #, python-format msgid "There was an issue deleting %s: %s" msgstr "Beim Löschen von %s ist ein Problem aufgetreten: %s" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:111 +#, fuzzy, python-format +msgid "There was an issue deleting rules: %s" +msgstr "Beim Löschen von %s ist ein Problem aufgetreten: %s" + #: superset-frontend/src/pages/AlertReportList/index.tsx:201 #, python-format msgid "There was an issue deleting the selected %s: %s" @@ -16272,64 +16398,56 @@ msgstr "Beim Löschen der ausgewählten %s ist ein Problem aufgetreten: %s" #: superset-frontend/src/pages/AnnotationList/index.tsx:141 #, python-format msgid "There was an issue deleting the selected annotations: %s" -msgstr "" -"Beim Löschen der ausgewählten Anmerkungen ist ein Problem aufgetreten: %s" +msgstr "Beim Löschen der ausgewählten Anmerkungen ist ein Problem aufgetreten: %s" #: superset-frontend/src/pages/ChartList/index.tsx:263 #, python-format msgid "There was an issue deleting the selected charts: %s" -msgstr "" -"Beim Löschen der ausgewählten Diagramme ist ein Problem aufgetreten: %s" +msgstr "Beim Löschen der ausgewählten Diagramme ist ein Problem aufgetreten: %s" #: superset-frontend/src/pages/DashboardList/index.tsx:258 msgid "There was an issue deleting the selected dashboards: " -msgstr "" -"Beim Löschen der ausgewählten Dashboards ist ein Problem aufgetreten: " +msgstr "Beim Löschen der ausgewählten Dashboards ist ein Problem aufgetreten: " -#: superset-frontend/src/pages/DatasetList/index.tsx:675 +#: superset-frontend/src/pages/DatasetList/index.tsx:686 #, python-format msgid "There was an issue deleting the selected datasets: %s" -msgstr "" -"Beim Löschen der ausgewählten Datensätze ist ein Problem aufgetreten: %s" +msgstr "Beim Löschen der ausgewählten Datensätze ist ein Problem aufgetreten: %s" #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 #, python-format msgid "There was an issue deleting the selected layers: %s" -msgstr "" -"Beim Löschen der ausgewählten Ebenen ist ein Problem aufgetreten: %s" +msgstr "Beim Löschen der ausgewählten Ebenen ist ein Problem aufgetreten: %s" #: superset-frontend/src/pages/SavedQueryList/index.tsx:272 #, python-format msgid "There was an issue deleting the selected queries: %s" -msgstr "" -"Beim Löschen der ausgewählten Abfragen ist ein Problem aufgetreten: %s" +msgstr "Beim Löschen der ausgewählten Abfragen ist ein Problem aufgetreten: %s" #: superset-frontend/src/pages/CssTemplateList/index.tsx:115 #, python-format msgid "There was an issue deleting the selected templates: %s" -msgstr "" -"Beim Löschen der ausgewählten Vorlagen ist ein Problem aufgetreten: %s" +msgstr "Beim Löschen der ausgewählten Vorlagen ist ein Problem aufgetreten: %s" #: superset-frontend/src/views/CRUD/utils.tsx:275 #, python-format msgid "There was an issue deleting: %s" msgstr "Beim Löschen ist ein Problem aufgetreten: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:683 +#: superset-frontend/src/pages/DatasetList/index.tsx:694 msgid "There was an issue duplicating the dataset." msgstr "Beim Duplizieren des Datensatzes ist ein Problem aufgetreten." -#: superset-frontend/src/pages/DatasetList/index.tsx:699 +#: superset-frontend/src/pages/DatasetList/index.tsx:710 #, python-format msgid "There was an issue duplicating the selected datasets: %s" msgstr "" -"Beim Duplizieren der ausgewählten Datensätze ist ein Problem aufgetreten: " -"%s" +"Beim Duplizieren der ausgewählten Datensätze ist ein Problem aufgetreten:" +" %s" -#: superset-frontend/src/dashboard/actions/dashboardState.js:129 +#: superset-frontend/src/dashboard/actions/dashboardState.js:127 msgid "There was an issue favoriting this dashboard." -msgstr "" -"Es gab ein Problem dabei, dieses Dashboard zu den Favoriten hinzuzufügen." +msgstr "Es gab ein Problem dabei, dieses Dashboard zu den Favoriten hinzuzufügen." #: superset-frontend/src/reports/actions/reports.js:68 msgid "There was an issue fetching reports attached to this dashboard." @@ -16337,7 +16455,7 @@ msgstr "" "Es gab ein Problem beim Abrufen von Reports, die an dieses Dashboard " "angehängt waren." -#: superset-frontend/src/dashboard/actions/dashboardState.js:104 +#: superset-frontend/src/dashboard/actions/dashboardState.js:103 msgid "There was an issue fetching the favorite status of this dashboard." msgstr "" "Beim Abrufen des Favoritenstatus dieses Dashboards ist ein Problem " @@ -16356,28 +16474,24 @@ msgstr "Beim Abrufen Ihrer Dashboards ist ein Problem aufgetreten: %s" #: superset-frontend/src/pages/Home/index.tsx:248 #, python-format msgid "There was an issue fetching your recent activity: %s" -msgstr "" -"Beim Abrufen Ihrer letzten Aktivität ist ein Problem aufgetreten: %s" +msgstr "Beim Abrufen Ihrer letzten Aktivität ist ein Problem aufgetreten: %s" #: superset-frontend/src/pages/Home/index.tsx:293 #, python-format msgid "There was an issue fetching your saved queries: %s" -msgstr "" -"Beim Abrufen Ihrer gespeicherten Abfragen ist ein Problem aufgetreten: %s" +msgstr "Beim Abrufen Ihrer gespeicherten Abfragen ist ein Problem aufgetreten: %s" #: superset-frontend/src/pages/SavedQueryList/index.tsx:160 #, python-format msgid "There was an issue previewing the selected query %s" -msgstr "" -"Bei der Vorschau der ausgewählten Abfrage %s ist ein Problem aufgetreten" +msgstr "Bei der Vorschau der ausgewählten Abfrage %s ist ein Problem aufgetreten" #: superset-frontend/src/pages/QueryHistoryList/index.tsx:115 #, python-format msgid "There was an issue previewing the selected query. %s" -msgstr "" -"Bei der Vorschau der ausgewählten Abfrage ist ein Problem aufgetreten. %s" +msgstr "Bei der Vorschau der ausgewählten Abfrage ist ein Problem aufgetreten. %s" -#: superset/viz.py:1992 +#: superset/viz.py:1915 msgid "" "There's a loop in your Sankey, please provide a tree. Here's a faulty " "link: {}" @@ -16385,7 +16499,7 @@ msgstr "" "Es gibt eine Schleife in Ihrem Sankey, bitte geben Sie einen Baum an. " "Hier ist ein fehlerhafter Link: {}" -#: superset/connectors/sqla/views.py:335 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:386 msgid "These are the tables this filter will be applied to." msgstr "Dies sind die Tabellen, auf die dieser Filter angewendet wird." @@ -16401,8 +16515,8 @@ msgid "" "parameters." msgstr "" "Diese Parameter werden dynamisch generiert, wenn Sie in der Explore-" -"Ansicht auf die Schaltfläche Speichern oder Überschreiben klicken. Dieses " -"JSON-Objekt wird hier als Referenz und für Hauptbenutzer*in verfügbar " +"Ansicht auf die Schaltfläche Speichern oder Überschreiben klicken. Dieses" +" JSON-Objekt wird hier als Referenz und für Hauptbenutzer*in verfügbar " "gemacht, die möglicherweise bestimmte Parameter ändern möchten." #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:789 @@ -16430,8 +16544,7 @@ msgstr "Durch diese Aktion wird die Ebene dauerhaft gelöscht." #: superset-frontend/src/features/home/SavedQueries.tsx:231 #: superset-frontend/src/pages/SavedQueryList/index.tsx:509 msgid "This action will permanently delete the saved query." -msgstr "" -"Durch diese Aktion wird die gespeicherte Abfrage dauerhaft gelöscht." +msgstr "Durch diese Aktion wird die gespeicherte Abfrage dauerhaft gelöscht." #: superset-frontend/src/pages/CssTemplateList/index.tsx:315 msgid "This action will permanently delete the template." @@ -16445,10 +16558,11 @@ msgstr "" "Dies kann entweder eine IP-Adresse (z.B. 127.0.0.1) oder ein Domainname " "(z.B. mydatabase.com) sein." -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:244 +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:245 +#, fuzzy msgid "" -"This chart emits/applies cross-filters to other charts that use the same " -"dataset" +"This chart applies cross-filters to charts whose datasets contain columns" +" with the same name." msgstr "" "Dieses Diagramm gibt Kreuzfilter aus/wendet sie auf andere Diagramme an, " "die denselben Datensatz verwenden." @@ -16464,13 +16578,12 @@ msgstr "" "bearbeitet werden." #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:61 -msgid "" -"This chart might be incompatible with the filter (datasets don't match)" +msgid "This chart might be incompatible with the filter (datasets don't match)" msgstr "" "Dieses Diagramm ist möglicherweise nicht mit dem Filter kompatibel " "(Datensätze stimmen nicht überein)" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:322 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 msgid "" "This chart type is not supported when using an unsaved query as a chart " "source. " @@ -16488,7 +16601,7 @@ msgstr "" " Überprüfen Sie die JSON-Metadaten in den erweiterten " "Einstellungen" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:121 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:113 msgid "This column might be incompatible with current dataset" msgstr "" "Diese Spalte ist möglicherweise nicht mit dem aktuellen Datensatz " @@ -16529,8 +16642,7 @@ msgstr "" "Aktualisierung erfolgt in %s." #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:661 -msgid "" -"This dashboard is managed externally, and can't be edited in Superset" +msgid "This dashboard is managed externally, and can't be edited in Superset" msgstr "" "Dieses Dashboard wird extern verwaltet und kann nicht in Superset " "bearbeitet werden." @@ -16538,27 +16650,27 @@ msgstr "" #: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 msgid "" "This dashboard is not published which means it will not show up in the " -"list of dashboards. Favorite it to see it there or access it by using the " -"URL directly." +"list of dashboards. Favorite it to see it there or access it by using the" +" URL directly." msgstr "" -"Dieses Dashboard ist nicht veröffentlicht, es wird nicht in der Liste der " -"Dashboards angezeigt. Wählen Sie es als Favorit aus, um es dort zu sehen, " -"oder greifen Sie direkt über die URL darauf zu." +"Dieses Dashboard ist nicht veröffentlicht, es wird nicht in der Liste der" +" Dashboards angezeigt. Wählen Sie es als Favorit aus, um es dort zu " +"sehen, oder greifen Sie direkt über die URL darauf zu." #: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 msgid "" "This dashboard is not published, it will not show up in the list of " "dashboards. Click here to publish this dashboard." msgstr "" -"Dieses Dashboard ist nicht veröffentlicht, es wird nicht in der Liste der " -"Dashboards angezeigt. Klicken Sie hier, um dieses Dashboard zu " +"Dieses Dashboard ist nicht veröffentlicht, es wird nicht in der Liste der" +" Dashboards angezeigt. Klicken Sie hier, um dieses Dashboard zu " "veröffentlichen." -#: superset-frontend/src/dashboard/actions/dashboardState.js:154 +#: superset-frontend/src/dashboard/actions/dashboardState.js:152 msgid "This dashboard is now hidden" msgstr "Dieses Dashboard ist nun verborgen" -#: superset-frontend/src/dashboard/actions/dashboardState.js:153 +#: superset-frontend/src/dashboard/actions/dashboardState.js:151 msgid "This dashboard is now published" msgstr "Dieses Dashboard ist jetzt veröffentlicht" @@ -16570,13 +16682,13 @@ msgstr "" #: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:168 msgid "" -"This dashboard is ready to embed. In your application, pass the following " -"id to the SDK:" +"This dashboard is ready to embed. In your application, pass the following" +" id to the SDK:" msgstr "" "Dieses Dashboard ist bereit zum Einbetten. Übergeben Sie in Ihrer " "Anwendung die folgende ID an das SDK:" -#: superset/views/core.py:1319 +#: superset/views/core.py:1353 msgid "" "This dashboard was changed recently. Please reload dashboard to get " "latest version." @@ -16584,12 +16696,12 @@ msgstr "" "Dieses Dashboard wurde kürzlich geändert. Bitte laden Sie das Dashboard " "neu, um die neueste Version zu erhalten." -#: superset-frontend/src/dashboard/actions/dashboardState.js:311 -#: superset-frontend/src/dashboard/actions/dashboardState.js:350 +#: superset-frontend/src/dashboard/actions/dashboardState.js:313 +#: superset-frontend/src/dashboard/actions/dashboardState.js:352 msgid "This dashboard was saved successfully." msgstr "Dieses Dashboard wurde erfolgreich gespeichert." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1119 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1174 msgid "This database is managed externally, and can't be edited in Superset" msgstr "" "Diese Datenbank wird extern verwaltet und kann nicht in Superset " @@ -16603,7 +16715,7 @@ msgstr "" "Diese Datenbanktabelle enthält keine Daten. Bitte wählen Sie eine andere " "Tabelle aus." -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:240 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:282 msgid "This dataset is managed externally, and can't be edited in Superset" msgstr "" "Dieser Datensatz wird extern verwaltet und kann nicht in Superset " @@ -16622,7 +16734,7 @@ msgstr "Definiert das Element, das im Diagramm dargestellt werden soll" msgid "This defines the level of the hierarchy" msgstr "Dies definiert die Ebene der Hierarchie" -#: superset/connectors/sqla/views.py:436 +#: superset/connectors/sqla/views.py:343 msgid "" "This fields acts a Superset view, meaning that Superset will run a query " "against this string as a subquery." @@ -16632,8 +16744,7 @@ msgstr "" #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:109 msgid "This filter doesn't exist in dashboard. It will not be applied." -msgstr "" -"Dieser Filter ist nicht im Dashboard vorhanden. Er wird nicht angewendet." +msgstr "Dieser Filter ist nicht im Dashboard vorhanden. Er wird nicht angewendet." #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 msgid "This filter might be incompatible with current dataset" @@ -16647,17 +16758,15 @@ msgid "This filter set is identical to: \"%s\"" msgstr "Diese Filtergruppe ist identisch mit: \"%s\"" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:75 -msgid "" -"This functionality is disabled in your environment for security reasons." -msgstr "" -"Diese Funktion ist in Ihrer Umgebung aus Sicherheitsgründen deaktiviert." +msgid "This functionality is disabled in your environment for security reasons." +msgstr "Diese Funktion ist in Ihrer Umgebung aus Sicherheitsgründen deaktiviert." -#: superset/connectors/sqla/views.py:352 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:456 msgid "" "This is the condition that will be added to the WHERE clause. For " "example, to only return rows for a particular client, you might define a " -"regular filter with the clause `client_id = 9`. To display no rows unless " -"a user belongs to a RLS filter role, a base filter can be created with " +"regular filter with the clause `client_id = 9`. To display no rows unless" +" a user belongs to a RLS filter role, a base filter can be created with " "the clause `1 = 0` (always false)." msgstr "" "Dies ist die Bedingung, die der WHERE-Klausel hinzugefügt wird. Um " @@ -16674,16 +16783,15 @@ msgid "" "and positions by using drag & drop in the dashboard view" msgstr "" "Dieses json-Objekt beschreibt die Positionierung der Widgets im " -"Dashboard. Es wird dynamisch generiert, wenn die Größe und Positionen der " -"Widgets per Drag & Drop in der Dashboard-Ansicht angepasst werden" +"Dashboard. Es wird dynamisch generiert, wenn die Größe und Positionen der" +" Widgets per Drag & Drop in der Dashboard-Ansicht angepasst werden" #: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 msgid "This markdown component has an error." msgstr "Diese Markdown-Komponente weist einen Fehler auf." #: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 -msgid "" -"This markdown component has an error. Please revert your recent changes." +msgid "This markdown component has an error. Please revert your recent changes." msgstr "" "Diese Markdown-Komponente weist einen Fehler auf. Bitte machen Sie Ihre " "letzten Änderungen rückgängig." @@ -16693,7 +16801,7 @@ msgstr "" msgid "This may be triggered by:" msgstr "Dies kann ausgelöst werden durch:" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:258 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:256 msgid "This metric might be incompatible with current dataset" msgstr "" "Diese Metrik ist möglicherweise nicht mit dem aktuellen Datensatz " @@ -16727,8 +16835,8 @@ msgstr "Dieser Abschnitt enthält Validierungsfehler" #: superset-frontend/src/embedded/index.tsx:109 msgid "" "This session has encountered an interruption, and some controls may not " -"work as intended. If you are the developer of this app, please check that " -"the guest token is being generated correctly." +"work as intended. If you are the developer of this app, please check that" +" the guest token is being generated correctly." msgstr "" "In dieser Sitzung ist eine Unterbrechung aufgetreten, und einige " "Steuerelemente funktionieren möglicherweise nicht wie beabsichtigt. Wenn " @@ -16747,15 +16855,15 @@ msgstr "" "Dieser Tabelle ist bereits ein Datensatz zugeordnet. Sie können einer " "Tabelle nur einen Datasatz zuordnen.\n" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:85 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 msgid "This value should be greater than the left target value" msgstr "Dieser Wert sollte größer als der linke Zielwert sein" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:80 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 msgid "This value should be smaller than the right target value" msgstr "Dieser Wert sollte kleiner als der rechte Zielwert sein" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:141 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:171 msgid "This visualization type does not support cross-filtering." msgstr "Dieser Visualisierungstyp unterstützt keine Kreuzfilterung." @@ -16791,6 +16899,7 @@ msgstr "Donnerstag" #: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:38 #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 @@ -16820,7 +16929,7 @@ msgstr "Zeitspalte" msgid "Time Comparison" msgstr "Zeitvergleich" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:141 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 msgid "Time Format" msgstr "Zeitformat" @@ -16850,39 +16959,39 @@ msgstr "Zeitverhältnis" msgid "Time Series" msgstr "Zeitreihen" -#: superset/viz.py:1670 +#: superset/viz.py:1581 msgid "Time Series - Bar Chart" msgstr "Zeitreihen - Balkendiagramm" -#: superset/viz.py:1596 +#: superset/viz.py:1504 msgid "Time Series - Dual Axis Line Chart" msgstr "Zeitreihen - Zweiachsen-Liniendiagramm" -#: superset/viz.py:1308 +#: superset/viz.py:1209 msgid "Time Series - Line Chart" msgstr "Zeitreihen - Liniendiagramm" -#: superset/viz.py:1518 +#: superset/viz.py:1424 msgid "Time Series - Multiple Line Charts" msgstr "Zeitreihen - Diagramme mit mehreren Linien" -#: superset/viz.py:3036 +#: superset/viz.py:3033 msgid "Time Series - Nightingale Rose Chart" msgstr "Zeitreihe - Nightingale Rose Chart" -#: superset/viz.py:2965 +#: superset/viz.py:2961 msgid "Time Series - Paired t-test" msgstr "Zeitreihen - t-Differenzentest" -#: superset/viz.py:1725 +#: superset/viz.py:1638 msgid "Time Series - Percent Change" msgstr "Zeitreihen - Prozentuale Veränderung" -#: superset/viz.py:1679 +#: superset/viz.py:1590 msgid "Time Series - Period Pivot" msgstr "Zeitreihen - Perioden-Pivot" -#: superset/viz.py:1733 +#: superset/viz.py:1646 msgid "Time Series - Stacked" msgstr "Zeitreihen - Gestapelt" @@ -16897,7 +17006,7 @@ msgstr "Zeitreihen-Optionen" msgid "Time Shift" msgstr "Zeitverschiebung" -#: superset/viz.py:849 +#: superset/viz.py:878 msgid "Time Table View" msgstr "Zeittabellenansicht" @@ -16908,7 +17017,7 @@ msgstr "Zeittabellenansicht" msgid "Time column" msgstr "Zeitspalten" -#: superset/connectors/sqla/models.py:1392 superset/models/helpers.py:1575 +#: superset/models/helpers.py:1659 #, python-format msgid "Time column \"%(col)s\" does not exist in dataset" msgstr "Zeitspalte \"%(col)s\" ist im Datensatz nicht vorhanden" @@ -16997,6 +17106,7 @@ msgid "Time ratio" msgstr "Zeitverhältnis" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 #: superset-frontend/src/explore/controlPanels/sections.tsx:66 msgid "Time related form attributes" msgstr "Zeitbezogene Formularattribute" @@ -17049,8 +17159,8 @@ msgstr "Zeitreihen-Balkendiagramm (Legacy)" #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:68 msgid "" -"Time-series Bar Charts are used to show the changes in a metric over time " -"as a series of bars." +"Time-series Bar Charts are used to show the changes in a metric over time" +" as a series of bars." msgstr "" "Zeitreihen-Balkendiagramme werden verwendet, um die Änderungen in einer " "Metrik im Laufe der Zeit als eine Reihe von Balken anzuzeigen." @@ -17077,14 +17187,14 @@ msgstr "Zeitreihen-Streudiagramm" #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 msgid "" -"Time-series Scatter Plot has time on the horizontal axis in linear units, " -"and the points are connected in order. It shows a statistical " +"Time-series Scatter Plot has time on the horizontal axis in linear units," +" and the points are connected in order. It shows a statistical " "relationship between two variables." msgstr "" "Das Zeitreihen-Streudiagramm stellt die Zeit auf der horizontalen Achse " "in linearen Einheiten dar, und die Punkte sind in der richtigen " -"Reihenfolge verbunden. Es zeigt eine statistische Beziehung zwischen zwei " -"Variablen." +"Reihenfolge verbunden. Es zeigt eine statistische Beziehung zwischen zwei" +" Variablen." #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:80 msgid "Time-series Smooth Line" @@ -17093,7 +17203,8 @@ msgstr "Zeitreihe Glatte Linie" #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 msgid "" "Time-series Smooth-line is a variation of the line chart. Without angles " -"and hard edges, Smooth-line sometimes looks smarter and more professional." +"and hard edges, Smooth-line sometimes looks smarter and more " +"professional." msgstr "" "„Zeitreihen-Glatte Linie“ ist eine Variante des Liniendiagramms. Ohne " "Winkel und harte Kanten wirkt dieser Diagrammtyp manchmal passender und " @@ -17105,15 +17216,15 @@ msgstr "Zeitreihen-Stufenlinie" #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 msgid "" -"Time-series Stepped-line graph (also called step chart) is a variation of " -"line chart but with the line forming a series of steps between data " -"points. A step chart can be useful when you want to show the changes that " -"occur at irregular intervals." +"Time-series Stepped-line graph (also called step chart) is a variation of" +" line chart but with the line forming a series of steps between data " +"points. A step chart can be useful when you want to show the changes that" +" occur at irregular intervals." msgstr "" "Zeitreihen-Stufenliniendiagramm (auch Schrittdiagramm genannt) ist eine " "Variation des Liniendiagramms, wobei die Linie jedoch eine Reihe von " -"Schritten zwischen Datenpunkten bildet. Ein Schrittdiagramm kann nützlich " -"sein, wenn Sie die Änderungen anzeigen möchten, die in unregelmäßigen " +"Schritten zwischen Datenpunkten bildet. Ein Schrittdiagramm kann nützlich" +" sein, wenn Sie die Änderungen anzeigen möchten, die in unregelmäßigen " "Abständen auftreten." #: superset-frontend/src/visualizations/TimeTable/index.ts:27 @@ -17123,12 +17234,12 @@ msgstr "Zeitreihentabelle" #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 msgid "" "Time-series line chart is used to visualize repeated measurements taken " -"over regular time intervals. Line chart is a type of chart which displays " -"information as a series of data points connected by straight line " +"over regular time intervals. Line chart is a type of chart which displays" +" information as a series of data points connected by straight line " "segments. It is a basic type of chart common in many fields." msgstr "" -"Das Zeitreihen-Liniendiagramm wird verwendet, um wiederholte Messungen in " -"regelmäßigen Zeitintervallen zu visualisieren. Liniendiagramm ist ein " +"Das Zeitreihen-Liniendiagramm wird verwendet, um wiederholte Messungen in" +" regelmäßigen Zeitintervallen zu visualisieren. Liniendiagramm ist ein " "Diagrammtyp, der Informationen als eine Reihe von Datenpunkten anzeigt, " "die durch gerade Liniensegmente verbunden sind. Es ist ein grundlegender " "Diagrammtyp, der in vielen Bereichen üblich ist." @@ -17141,12 +17252,12 @@ msgstr "Zeitüberschreitung" msgid "Timestamp format" msgstr "Zeitstempelformat" -#: superset-frontend/src/components/ReportModal/index.tsx:326 +#: superset-frontend/src/components/ReportModal/index.tsx:325 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 msgid "Timezone" msgstr "Zeitzone" -#: superset/connectors/sqla/views.py:427 +#: superset/connectors/sqla/views.py:334 msgid "Timezone offset (in hours) for this datasource" msgstr "Zeitzonen-Offset (in Stunden) für diese Datenquelle" @@ -17164,8 +17275,7 @@ msgstr "Sehr klein" #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:687 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:41 #: superset-frontend/src/pages/DashboardList/index.tsx:308 -#: superset/views/dashboard/mixin.py:78 -#: superset/views/dashboard/views.py:184 +#: superset/views/dashboard/mixin.py:78 superset/views/dashboard/views.py:184 msgid "Title" msgstr "Titel" @@ -17191,30 +17301,27 @@ msgstr "" msgid "To get a readable URL for your dashboard" msgstr "So erhalten Sie eine sprechende URL für Ihr Dashboard" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:288 -msgid "Too many columns to filter" -msgstr "Zu viele Spalten zum Filtern" - #: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:27 msgid "Tools" msgstr "Werkzeuge" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:216 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:213 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 msgid "Tooltip" msgstr "Tooltip" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:201 msgid "Tooltip sort by metric" msgstr "Tooltip nach Metrik sortieren" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:191 msgid "Tooltip time format" msgstr "Tooltip-Zeitformat" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 msgid "Top" msgstr "Oben" @@ -17236,14 +17343,14 @@ msgstr "Oben nach unten" msgid "Total (%(aggfunc)s)" msgstr "Insgesamt (%(aggfunc)s)" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:497 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:562 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:784 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 #, python-format msgid "Total (%(aggregatorName)s)" msgstr "Insgesamt (%(aggregatorName)s)" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:230 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:68 msgid "Total value" msgstr "Gesamtwert" @@ -17257,7 +17364,7 @@ msgstr "Gesamt: %s" msgid "Totals" msgstr "Summen" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:411 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:404 msgid "Track job" msgstr "Auftrag verfolgen" @@ -17277,10 +17384,6 @@ msgstr "Transportierbar" msgid "Transparent" msgstr "Transparent" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:99 -msgid "Transpose Pivot" -msgstr "Pivot transponieren" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:238 msgid "Transpose pivot" msgstr "Pivot transponieren" @@ -17298,7 +17401,7 @@ msgid "Tree orientation" msgstr "Baumausrichtung" #: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:60 -#: superset/viz.py:1035 +#: superset/viz.py:925 msgid "Treemap" msgstr "Treemap" @@ -17363,13 +17466,12 @@ msgid "Truncate long cells to the \"min width\" set above" msgstr "Lange Zellen auf die oben festgelegte \"Mindestbreite\" abschneiden" #: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 -msgid "" -"Truncates the specified date to the accuracy specified by the date unit." +msgid "Truncates the specified date to the accuracy specified by the date unit." msgstr "" "Kürzt das angegebene Datum auf die von der Datumseinheit angegebene " "Genauigkeit." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 msgid "Try applying different filters or ensuring your datasource has data" msgstr "" "Versuchen Sie, andere Filter anzuwenden oder sicherzustellen, dass Ihre " @@ -17392,22 +17494,21 @@ msgstr "Dienstag" msgid "Tukey" msgstr "Turkey" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:216 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:65 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:272 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:276 -#: superset-frontend/src/pages/DatasetList/index.tsx:343 -#: superset-frontend/src/pages/DatasetList/index.tsx:552 -#: superset/connectors/sqla/views.py:164 -#: superset/connectors/sqla/views.py:253 +#: superset-frontend/src/pages/DatasetList/index.tsx:354 +#: superset-frontend/src/pages/DatasetList/index.tsx:563 +#: superset/connectors/sqla/views.py:163 superset/connectors/sqla/views.py:252 msgid "Type" msgstr "Typ" #: superset-frontend/src/components/DeleteModal/index.tsx:92 #: superset-frontend/src/components/ImportModal/index.tsx:397 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1405 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1460 #, python-format msgid "Type \"%s\" to confirm" msgstr "Geben Sie zur Bestätigung \"%s\" ein" @@ -17433,7 +17534,7 @@ msgstr "Art der zulässigen Google Tabellen" msgid "Type of comparison, value difference or percentage" msgstr "Art des Vergleichs, Wertdifferenz oder Prozentsatz" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:404 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:407 #, python-format msgid "Type or Select [%s]" msgstr "Geben Sie ein oder wählen Sie [%s] aus." @@ -17463,45 +17564,53 @@ msgstr "URL-Parameter" msgid "URL slug" msgstr "URL Titelform" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:622 -msgid "" -"Unable to add a new tab to the backend. Please contact your administrator." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:618 +msgid "Unable to add a new tab to the backend. Please contact your administrator." msgstr "" "Dem Backend kann keine neue Registerkarte hinzugefügt werden. Wenden Sie " "sich an Ihre*n Administrator*in." -#: superset/db_engine_specs/presto.py:677 +#: superset/db_engine_specs/presto.py:704 #, python-format msgid "Unable to connect to catalog named \"%(catalog_name)s\"." msgstr "" -"Es konnte keine Verbindung zum Katalog mit dem Namen \"%(catalog_name)s\" " -"hergestellt werden." +"Es konnte keine Verbindung zum Katalog mit dem Namen \"%(catalog_name)s\"" +" hergestellt werden." #: superset/db_engine_specs/mysql.py:165 -#: superset/db_engine_specs/postgres.py:148 +#: superset/db_engine_specs/postgres.py:147 +#: superset/db_engine_specs/starrocks.py:127 #, python-format msgid "Unable to connect to database \"%(database)s\"." msgstr "" "Es konnte keine Verbindung zur Datenbank \"%(database)s\" hergestellt " "werden." -#: superset/db_engine_specs/bigquery.py:177 +#: superset/db_engine_specs/bigquery.py:178 msgid "" -"Unable to connect. Verify that the following roles are set on the service " -"account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " -"\"BigQuery Job User\" and the following permissions are set \"bigquery." -"readsessions.create\", \"bigquery.readsessions.getData\"" +"Unable to connect. Verify that the following roles are set on the service" +" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " +"\"BigQuery Job User\" and the following permissions are set " +"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" msgstr "" "Verbindung kann nicht hergestellt werden. Stellen Sie sicher, dass die " "folgenden Rollen für das Dienstkonto festgelegt sind: \"BigQuery Data " "Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" und die " -"folgenden Berechtigungen festgelegt sind \"bigquery.readsessions." -"create\", \"bigquery.readsessions.getData\"" +"folgenden Berechtigungen festgelegt sind " +"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:218 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:216 msgid "Unable to create chart without a query id." msgstr "Diagramm kann ohne Abfrage-ID nicht erstellt werden." +#: superset/key_value/exceptions.py:66 +msgid "Unable to decode value" +msgstr "" + +#: superset/key_value/exceptions.py:62 +msgid "Unable to encode value" +msgstr "" + #: superset/utils/date_parser.py:393 #, python-format msgid "Unable to find such a holiday: [%(holiday)s]" @@ -17515,7 +17624,7 @@ msgstr "" "Spalten für die ausgewählte Tabelle können nicht geladen werden. Bitte " "wählen Sie eine andere Tabelle aus." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:589 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:585 msgid "" "Unable to migrate query editor state to backend. Superset will retry " "later. Please contact your administrator if this problem persists." @@ -17524,16 +17633,16 @@ msgstr "" "Superset wird es später erneut versuchen. Wenden Sie sich an Ihre*n " "Administrator*in, wenn dieses Problem weiterhin besteht." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:543 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:539 msgid "" "Unable to migrate query state to backend. Superset will retry later. " "Please contact your administrator if this problem persists." msgstr "" -"Der Abfragestatus kann nicht zum Backend übertragen werden. Superset wird " -"es später erneut versuchen. Wenden Sie sich an Ihre*n Administrator*in, " +"Der Abfragestatus kann nicht zum Backend übertragen werden. Superset wird" +" es später erneut versuchen. Wenden Sie sich an Ihre*n Administrator*in, " "wenn dieses Problem weiterhin besteht." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:525 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:521 msgid "" "Unable to migrate table schema state to backend. Superset will retry " "later. Please contact your administrator if this problem persists." @@ -17546,17 +17655,17 @@ msgstr "" msgid "Unable to retrieve dashboard colors" msgstr "Dashboardfarben können nicht abgerufen werden" -#: superset/views/database/views.py:275 +#: superset/views/database/views.py:278 #, python-format msgid "" -"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in " -"database \"%(db_name)s\". Error message: %(error_msg)s" +"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" +" database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" "CSV-Datei \"%(filename)s\" kann nicht in tabelle \"%(table_name)s\" in " "der Datenbank \"%(db_name)s\" hochgeladen werden. Fehlermeldung: " "%(error_msg)s" -#: superset/views/database/views.py:553 +#: superset/views/database/views.py:556 #, python-format msgid "" "Unable to upload Columnar file \"%(filename)s\" to table " @@ -17567,17 +17676,17 @@ msgstr "" "\"%(table_name)s\" in der Datenbank \"%(db_name)s\" hochgeladen werden. " "Fehlermeldung: %(error_msg)s" -#: superset/views/database/views.py:412 +#: superset/views/database/views.py:415 #, python-format msgid "" "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " "in database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -"Excel-Datei \"%(filename)s\" kann nicht in die Tabelle \"%(table_name)s\" " -"in der Datenbank \"%(db_name)s\" hochgeladen werden. Fehlermeldung: " +"Excel-Datei \"%(filename)s\" kann nicht in die Tabelle \"%(table_name)s\"" +" in der Datenbank \"%(db_name)s\" hochgeladen werden. Fehlermeldung: " "%(error_msg)s" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:93 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:92 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 msgid "Undefined" msgstr "Undefiniert" @@ -17590,7 +17699,7 @@ msgstr "Undefiniertes Fenster für rollierende Operation" msgid "Undo the action" msgstr "Aktion rückgängig machen" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:131 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:132 msgid "Undo?" msgstr "Rückgängig machen?" @@ -17600,17 +17709,17 @@ msgid "Unexpected error" msgstr "Unerwarteter Fehler" #: superset/databases/commands/exceptions.py:137 -#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1438 +#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1479 msgid "Unexpected error occurred, please check your logs for details" msgstr "" -"Unerwarteter Fehler aufgetreten, bitte überprüfen Sie Ihre Protokolle auf " -"Details" +"Unerwarteter Fehler aufgetreten, bitte überprüfen Sie Ihre Protokolle auf" +" Details" #: superset-frontend/src/utils/getClientErrorObject.ts:75 msgid "Unexpected error: " msgstr "Unerwarteter Fehler:" -#: superset/views/api.py:109 +#: superset/views/api.py:108 #, python-format msgid "Unexpected time range: %s" msgstr "Unerwarteter Zeitraum: %s" @@ -17624,7 +17733,7 @@ msgstr "Unbekannt" msgid "Unknown MySQL server host \"%(hostname)s\"." msgstr "Unbekannter MySQL-Server-Host \"%(hostname)s\"." -#: superset/db_engine_specs/presto.py:1319 +#: superset/db_engine_specs/presto.py:1342 msgid "Unknown Presto Error" msgstr "Unbekannter Presto-Fehler" @@ -17632,13 +17741,13 @@ msgstr "Unbekannter Presto-Fehler" msgid "Unknown Status" msgstr "Status unbekannt" -#: superset/connectors/sqla/models.py:1317 superset/models/helpers.py:1498 +#: superset/models/helpers.py:1582 #, python-format msgid "Unknown column used in orderby: %(col)s" msgstr "Unbekannte Spalte in ORDER BY verwendet: %(col)s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:402 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:480 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:398 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:476 msgid "Unknown error" msgstr "Unbekannter Fehler" @@ -17697,7 +17806,7 @@ msgstr "Unbenannte Abfrage" msgid "Untitled query" msgstr "Unbenannte Abfrage" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:223 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:222 msgid "Update" msgstr "Aktualisieren" @@ -17714,7 +17823,7 @@ msgstr "Aktualisierung des Diagramms wurde abgebrochen" msgid "Upload" msgstr "Hochladen" -#: superset-frontend/src/pages/DatabaseList/index.tsx:202 +#: superset-frontend/src/pages/DatabaseList/index.tsx:213 msgid "Upload CSV" msgstr "CSV hochladen" @@ -17730,7 +17839,7 @@ msgstr "Anmeldeinformationen hochladen" msgid "Upload Enabled" msgstr "Hochladen aktiviert" -#: superset-frontend/src/pages/DatabaseList/index.tsx:216 +#: superset-frontend/src/pages/DatabaseList/index.tsx:227 msgid "Upload Excel file" msgstr "Excel hochladen" @@ -17742,7 +17851,7 @@ msgstr "Excel-Datei in Datenbank hochladen" msgid "Upload JSON file" msgstr "JSON Datei hochladen" -#: superset-frontend/src/pages/DatabaseList/index.tsx:209 +#: superset-frontend/src/pages/DatabaseList/index.tsx:220 msgid "Upload columnar file" msgstr "Spaltendatei hochladen" @@ -17750,7 +17859,7 @@ msgstr "Spaltendatei hochladen" msgid "Upload columnar file to database" msgstr "Spaltendatei in Datenbank hochladen" -#: superset-frontend/src/pages/DatabaseList/index.tsx:199 +#: superset-frontend/src/pages/DatabaseList/index.tsx:210 msgid "Upload file to database" msgstr "Datei in Datenbank hochladen" @@ -17763,7 +17872,7 @@ msgstr "Verwendung" msgid "Use \"%(menuName)s\" menu instead." msgstr "Verwenden Sie stattdessen das Menü \"%(menuName)s\"." -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:36 +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 #, python-format msgid "Use %s to open in a new tab." msgstr "Verwenden Sie %s, um eine neue Registerkarte zu öffnen." @@ -17774,7 +17883,7 @@ msgstr "Verwenden Sie %s, um eine neue Registerkarte zu öffnen." msgid "Use Area Proportions" msgstr "Verwenden von Flächenproportionen" -#: superset/views/database/forms.py:462 +#: superset/views/database/forms.py:472 msgid "Use Columns" msgstr "Spalten verwenden" @@ -17790,9 +17899,9 @@ msgstr "Logarithmische Skala für die X-Achse verwenden" msgid "Use a log scale for the Y-axis" msgstr "Logarithmische Skala für die Y-Achse verwenden" -#: superset/db_engine_specs/base.py:1850 -#: superset/db_engine_specs/clickhouse.py:211 -#: superset/db_engine_specs/databricks.py:57 +#: superset/db_engine_specs/base.py:1889 +#: superset/db_engine_specs/clickhouse.py:216 +#: superset/db_engine_specs/databricks.py:58 msgid "Use an encrypted connection to the database" msgstr "Verschlüsselten Verbindung zur Datenbank verwenden" @@ -17802,19 +17911,19 @@ msgid "" "Use another existing chart as a source for annotations and overlays.\n" " Your chart must be one of these visualization types: [%s]" msgstr "" -"Verwenden Sie ein anderes vorhandenes Diagramm als Quelle für Anmerkungen " -"und Überlagerungen.\n" +"Verwenden Sie ein anderes vorhandenes Diagramm als Quelle für Anmerkungen" +" und Überlagerungen.\n" " Ihr Diagramm muss einer der folgenden Visualisierungstypen " "sein: [%s]" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:87 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 msgid "Use date formatting even when metric value is not a timestamp" msgstr "" "Verwenden Sie die Datumsformatierung, auch wenn der Metrikwert kein " "Zeitstempel ist" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:217 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 msgid "Use legacy datasource editor" msgstr "Verwenden des Legacy-Datenquellen-Editors" @@ -17830,13 +17939,12 @@ msgstr "Verwenden Sie nur einen einzigen Wert." #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:117 msgid "Use the Advanced Analytics options below" -msgstr "" -"Verwenden Sie die untenstehenden fortgeschrittenen Analytik-Optionen" +msgstr "Verwenden Sie die untenstehenden fortgeschrittenen Analytik-Optionen" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 msgid "" -"Use the JSON file you automatically downloaded when creating your service " -"account." +"Use the JSON file you automatically downloaded when creating your service" +" account." msgstr "" "Verwenden Sie die JSON-Datei, die Sie beim Erstellen Ihres Dienstkontos " "automatisch heruntergeladen haben." @@ -17854,8 +17962,7 @@ msgstr "" #: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 msgid "Use this section if you want to query atomic rows" -msgstr "" -"Verwenden Sie diesen Abschnitt, wenn Sie atomare Zeilen abfragen möchten" +msgstr "Verwenden Sie diesen Abschnitt, wenn Sie atomare Zeilen abfragen möchten" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:130 #: superset-frontend/src/explore/controls.jsx:206 @@ -17866,29 +17973,12 @@ msgstr "" #: superset/views/dynamic_plugins.py:48 msgid "" -"Used internally to identify the plugin. Should be set to the package name " -"from the pluginʼs package.json" +"Used internally to identify the plugin. Should be set to the package name" +" from the pluginʼs package.json" msgstr "" "Wird intern verwendet, um das Plugin zu identifizieren. Sollte auf den " "Paketnamen aus der paket.json des Plugins gesetzt werden" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:28 -msgid "" -"Used to summarize a set of data by grouping together multiple statistics " -"along two axes. Examples: Sales numbers by region and month, tasks by " -"status and assignee, active users by age and location.\n" -"\n" -" This chart is being deprecated and we recommend checking out Pivot " -"Table V2 instead!" -msgstr "" -"Wird verwendet, um einen Datensatz zusammenzufassen, indem mehrere " -"Statistiken entlang zweier Achsen gruppiert werden. Beispiele: " -"Verkaufszahlen nach Region und Monat, Aufgaben nach Status und " -"Beauftragtem, aktive Nutzer nach Alter und Standort.\n" -"\n" -"Dieses Diagramm ist überholt, und wir empfehlen stattdessen, Pivot Table " -"V2 auszuprobieren!" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 msgid "" "Used to summarize a set of data by grouping together multiple statistics " @@ -17937,11 +18027,17 @@ msgstr "Benutzer*innen-Abfrage" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:133 #: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 -#: superset/db_engine_specs/base.py:1837 +#: superset/db_engine_specs/base.py:1868 #: superset/db_engine_specs/clickhouse.py:201 msgid "Username" msgstr "Benutzer*innenname" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:27 +msgid "" +"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" +" of data" +msgstr "" + #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:45 msgid "" "Uses a gauge to showcase progress of a metric towards a target. The " @@ -17999,9 +18095,9 @@ msgstr "Wertformat" msgid "Value is required" msgstr "Wert ist erforderlich" -#: superset/reports/schemas.py:186 superset/reports/schemas.py:192 -#: superset/reports/schemas.py:198 superset/reports/schemas.py:280 -#: superset/reports/schemas.py:286 superset/reports/schemas.py:293 +#: superset/reports/schemas.py:190 superset/reports/schemas.py:195 +#: superset/reports/schemas.py:200 superset/reports/schemas.py:291 +#: superset/reports/schemas.py:296 superset/reports/schemas.py:302 msgid "Value must be greater than 0" msgstr "Der Wert muss größer als 0 sein" @@ -18025,17 +18121,16 @@ msgstr "" msgid "Vehicle Types" msgstr "Fahrzeugtypen" -#: superset/connectors/sqla/views.py:156 -#: superset/connectors/sqla/views.py:252 +#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:251 msgid "Verbose Name" msgstr "Ausführlicher Name" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:503 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:539 #: superset-frontend/src/features/home/RightMenu.tsx:501 msgid "Version" msgstr "Version" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:509 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:545 msgid "Version number" msgstr "Versionsnummer" @@ -18046,7 +18141,7 @@ msgstr "Versionsnummer" msgid "Vertical" msgstr "Vertikal" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:162 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 msgid "Vertical (Left)" msgstr "Vertikal (links)" @@ -18073,7 +18168,7 @@ msgstr "Datensatz anzeigen" msgid "View all charts" msgstr "Alle Diagramme anzeigen" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:434 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 msgid "View as table" msgstr "Als Tabelle anzeigen" @@ -18087,8 +18182,8 @@ msgstr "In SQL Lab anzeigen" msgid "View keys & indexes (%s)" msgstr "Schlüssel und Indizes anzeigen (%s)" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:415 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:417 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:424 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:426 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:394 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:396 msgid "View query" @@ -18109,8 +18204,8 @@ msgstr "%s angesehen" msgid "Viewport" msgstr "Ansichtsfenster" -#: superset-frontend/src/pages/DatasetList/index.tsx:342 -#: superset-frontend/src/pages/DatasetList/index.tsx:559 +#: superset-frontend/src/pages/DatasetList/index.tsx:353 +#: superset-frontend/src/pages/DatasetList/index.tsx:570 msgid "Virtual" msgstr "Virtuell" @@ -18118,21 +18213,20 @@ msgstr "Virtuell" msgid "Virtual (SQL)" msgstr "Virtuell (SQL)" -#: superset-frontend/src/pages/DatasetList/index.tsx:281 +#: superset-frontend/src/pages/DatasetList/index.tsx:292 msgid "Virtual dataset" msgstr "Virtueller Datensatz" -#: superset/connectors/sqla/models.py:960 -#: superset/connectors/sqla/utils.py:111 superset/models/helpers.py:1036 +#: superset/connectors/sqla/models.py:921 superset/connectors/sqla/utils.py:110 +#: superset/models/helpers.py:1079 msgid "Virtual dataset query cannot be empty" msgstr "Virtuelle Datensatzabfrage darf nicht leer sein" -#: superset/connectors/sqla/models.py:963 superset/models/helpers.py:1039 +#: superset/connectors/sqla/models.py:924 superset/models/helpers.py:1082 msgid "Virtual dataset query cannot consist of multiple statements" -msgstr "" -"Virtuelle Datensatzabfrage kann nicht aus mehreren Anweisungen bestehen" +msgstr "Virtuelle Datensatzabfrage kann nicht aus mehreren Anweisungen bestehen" -#: superset/connectors/sqla/models.py:928 superset/models/helpers.py:1062 +#: superset/connectors/sqla/models.py:889 superset/models/helpers.py:1105 msgid "Virtual dataset query must be read-only" msgstr "Virtuelle Datensatzabfrage muss schreibgeschützt sein" @@ -18151,12 +18245,12 @@ msgstr "Visualisierungstyp" #: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:56 msgid "" -"Visualize a parallel set of metrics across multiple groups. Each group is " -"visualized using its own line of points and each metric is represented as " -"an edge in the chart." +"Visualize a parallel set of metrics across multiple groups. Each group is" +" visualized using its own line of points and each metric is represented " +"as an edge in the chart." msgstr "" -"Visualisieren Sie einen parallelen Satz von Metriken über mehrere Gruppen " -"hinweg. Jede Gruppe wird mit einer eigenen Punktlinie visualisiert und " +"Visualisieren Sie einen parallelen Satz von Metriken über mehrere Gruppen" +" hinweg. Jede Gruppe wird mit einer eigenen Punktlinie visualisiert und " "jede Metrik wird als Kante im Diagramm dargestellt." #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 @@ -18167,8 +18261,8 @@ msgid "" msgstr "" "Visualisieren Sie eine verwandte Metrik über Gruppenpaare hinweg. " "Heatmaps zeichnen sich dadurch aus, dass sie die Korrelation oder Stärke " -"zwischen zwei Gruppen darstellen. Farbe wird verwendet, um die Stärke der " -"Verbindung zwischen jedem Gruppenpaar zu betonen." +"zwischen zwei Gruppen darstellen. Farbe wird verwendet, um die Stärke der" +" Verbindung zwischen jedem Gruppenpaar zu betonen." #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:27 msgid "" @@ -18218,9 +18312,9 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 msgid "" -"Visualize two different time series using the same x-axis. Note that each " -"time series can be visualized differently (e.g. 1 using bars and 1 using " -"a line)." +"Visualize two different time series using the same x-axis. Note that each" +" time series can be visualized differently (e.g. 1 using bars and 1 using" +" a line)." msgstr "" "Visualisieren Sie zwei verschiedene Zeitreihen mit derselben x-Achse. " "Beachten Sie, dass jede Zeitreihe unterschiedlich visualisiert werden " @@ -18231,8 +18325,8 @@ msgid "" "Visualizes 2 metrics as line plots using the same x-axis. This chart is " "useful for comparing metrics across the same time range." msgstr "" -"Visualisiert 2 Metriken als Liniendiagramme mit derselben x-Achse. Dieses " -"Diagramm ist nützlich, um Metriken über den gleichen Zeitraum zu " +"Visualisiert 2 Metriken als Liniendiagramme mit derselben x-Achse. Dieses" +" Diagramm ist nützlich, um Metriken über den gleichen Zeitraum zu " "vergleichen." #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 @@ -18247,8 +18341,7 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:27 msgid "Visualizes connected points, which form a path, on a map." -msgstr "" -"Visualisiert verbundene Punkte, die einen Pfad bilden, auf einer Karte." +msgstr "Visualisiert verbundene Punkte, die einen Pfad bilden, auf einer Karte." #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:27 msgid "" @@ -18261,8 +18354,8 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 msgid "" -"Visualizes how a metric has changed over a time using a color scale and a " -"calendar view. Gray values are used to indicate missing values and the " +"Visualizes how a metric has changed over a time using a color scale and a" +" calendar view. Gray values are used to indicate missing values and the " "linear color scheme is used to encode the magnitude of each day's value." msgstr "" "Visualisiert, wie sich eine Metrik im Laufe der Zeit mithilfe einer " @@ -18299,9 +18392,9 @@ msgid "" "layers. The thickness of the bars or edges represent the metric being " "visualized." msgstr "" -"Visualisiert den Fluss der Werte verschiedener Gruppen durch verschiedene " -"Phasen eines Systems. Neue Stufen in der Pipeline werden als Knoten oder " -"Layer visualisiert. Die Dicke der Balken oder Kanten stellt die Metrik " +"Visualisiert den Fluss der Werte verschiedener Gruppen durch verschiedene" +" Phasen eines Systems. Neue Stufen in der Pipeline werden als Knoten oder" +" Layer visualisiert. Die Dicke der Balken oder Kanten stellt die Metrik " "dar, die visualisiert wird." #: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 @@ -18312,7 +18405,7 @@ msgstr "" "Visualisiert die Wörter in einer Spalte, die am häufigsten vorkommen. " "Größere Schrift entspricht einer höheren Frequenz." -#: superset/viz.py:141 +#: superset/viz.py:140 msgid "Viz is missing a datasource" msgstr "Visualisierung fehlt eine Datenquelle" @@ -18324,21 +18417,21 @@ msgstr "Visualisierungstyp" msgid "WED" msgstr "MI" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:948 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1003 msgid "Want to add a new database?" msgstr "Möchten Sie eine neue Datenbank hinzufügen?" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1246 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:216 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:214 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 msgid "Warning" msgstr "Warnung" -#: superset/connectors/sqla/views.py:258 +#: superset/connectors/sqla/views.py:257 msgid "Warning Message" msgstr "Warnmeldung" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:286 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 msgid "Warning!" msgstr "Warnung!" @@ -18355,7 +18448,7 @@ msgstr "" msgid "Was unable to check your query" msgstr "Ihre Abfrage konnte nicht überprüft werden" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1468 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1523 msgid "" "We are unable to connect to your database. Click \"See more\" for " "database-provided information that may help troubleshoot the issue." @@ -18365,20 +18458,18 @@ msgstr "" "Informationen zu erhalten, die bei der Behebung des Problems helfen " "können." -#: superset/db_engine_specs/bigquery.py:197 +#: superset/db_engine_specs/bigquery.py:198 #, python-format msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." -msgstr "" -"Wir können die Spalte \"%(column)s\" in Zeile %(location)s nicht auflösen." +msgstr "Wir können die Spalte \"%(column)s\" in Zeile %(location)s nicht auflösen." -#: superset/db_engine_specs/duckdb.py:56 -#: superset/db_engine_specs/sqlite.py:65 +#: superset/db_engine_specs/duckdb.py:56 superset/db_engine_specs/sqlite.py:65 #, python-format msgid "We can't seem to resolve the column \"%(column_name)s\"" msgstr "Wir können die Spalte „%(column_name)s“ nicht auflösen." -#: superset/db_engine_specs/postgres.py:153 -#: superset/db_engine_specs/presto.py:630 +#: superset/db_engine_specs/postgres.py:152 +#: superset/db_engine_specs/presto.py:657 #, python-format msgid "" "We can't seem to resolve the column \"%(column_name)s\" at line " @@ -18404,11 +18495,11 @@ msgstr "" "Wir konnten beim Wechsel zu diesem neuen Datensatz keine " "Steuerungselemente übernehmen." -#: superset/db_engine_specs/redshift.py:90 +#: superset/db_engine_specs/redshift.py:94 #, python-format msgid "" -"We were unable to connect to your database named \"%(database)s\". Please " -"verify your database name and try again." +"We were unable to connect to your database named \"%(database)s\". Please" +" verify your database name and try again." msgstr "" "Wir konnten keine Verbindung zu Ihrer Datenbank mit dem Namen " "\"%(database)s\" herstellen. Überprüfen Sie Ihren Datenbanknamen und " @@ -18424,31 +18515,31 @@ msgstr "Web" msgid "Wednesday" msgstr "Mittwoch" -#: superset/db_engine_specs/base.py:107 +#: superset/db_engine_specs/base.py:108 msgid "Week" msgstr "Woche" -#: superset/db_engine_specs/base.py:113 +#: superset/db_engine_specs/base.py:114 msgid "Week ending Saturday" msgstr "Woche endet am Samstag" -#: superset/db_engine_specs/base.py:112 +#: superset/db_engine_specs/base.py:113 msgid "Week starting Monday" msgstr "Woche beginnt am Montag" -#: superset/db_engine_specs/base.py:111 +#: superset/db_engine_specs/base.py:112 msgid "Week starting Sunday" msgstr "Woche beginnt am Sonntag" -#: superset/db_engine_specs/base.py:114 +#: superset/db_engine_specs/base.py:115 msgid "Week_ending Sunday" msgstr "Woche endet am Sonntag" -#: superset-frontend/src/components/ReportModal/index.tsx:123 +#: superset-frontend/src/components/ReportModal/index.tsx:122 msgid "Weekly Report" msgstr "Wöchentlicher Bericht" -#: superset-frontend/src/components/ReportModal/index.tsx:122 +#: superset-frontend/src/components/ReportModal/index.tsx:121 #, python-format msgid "Weekly Report for %s" msgstr "Wöchentlicher Bericht für %s" @@ -18462,6 +18553,7 @@ msgstr "Wöchentliche Saisonalität" msgid "Weeks %s" msgstr "Wochen %s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:49 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:77 msgid "Weight" @@ -18506,7 +18598,7 @@ msgstr[1] "" msgid "What should be shown on the label?" msgstr "Was sollte als Beschriftung angezeigt werden?" -#: superset/views/database/forms.py:165 +#: superset/views/database/forms.py:175 msgid "What should happen if the table already exists" msgstr "Was soll passieren, wenn die Tabelle bereits vorhanden ist?" @@ -18539,17 +18631,15 @@ msgstr "" "Wenn diese Option aktiviert ist, zoomt die Karte nach jeder Abfrage auf " "Ihre Daten" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:189 -msgid "" -"When enabled, users are able to visualize SQL Lab results in Explore." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 +msgid "When enabled, users are able to visualize SQL Lab results in Explore." msgstr "" -"Wenn diese Option aktiviert ist, können Benutzer*innen SQL Lab-Ergebnisse " -"in Explore visualisieren." +"Wenn diese Option aktiviert ist, können Benutzer*innen SQL Lab-Ergebnisse" +" in Explore visualisieren." #: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:76 #: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 -msgid "" -"When only a primary metric is provided, a categorical color scale is used." +msgid "When only a primary metric is provided, a categorical color scale is used." msgstr "" "Wenn nur eine primäre Metrik bereitgestellt wird, wird eine kategoriale " "Farbpalette verwendet." @@ -18575,18 +18665,18 @@ msgstr "" "Bei Verwendung von \"AutoVervollständigen-Filtern\" kann dies verwendet " "werden, um die Leistung der Abfrage zum Abrufen der Werte zu verbessern. " "Verwenden Sie diese Option, um ein Prädikat (WHERE-Klausel) auf die " -"Abfrage anzuwenden, die die verschiedenen Werte aus der Tabelle auswählt. " -"In der Regel besteht die Absicht darin, den Scan einzuschränken, indem " +"Abfrage anzuwenden, die die verschiedenen Werte aus der Tabelle auswählt." +" In der Regel besteht die Absicht darin, den Scan einzuschränken, indem " "ein relativer Zeitfilter auf ein partitioniertes oder indiziertes " "zeitbezogenes Feld angewendet wird." -#: superset/viz.py:861 +#: superset/viz.py:891 msgid "When using 'Group By' you are limited to use a single metric" msgstr "" -"Wenn Sie \"Gruppieren nach\" verwenden, sind Sie auf die Verwendung einer " -"einzelnen Metrik beschränkt" +"Wenn Sie \"Gruppieren nach\" verwenden, sind Sie auf die Verwendung einer" +" einzelnen Metrik beschränkt" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:74 msgid "When using other than adaptive formatting, labels may overlap" msgstr "" "Bei Verwendung einer anderen als der adaptiven Formatierung können sich " @@ -18594,22 +18684,19 @@ msgstr "" #: superset-frontend/src/filters/components/Select/controlPanel.ts:110 msgid "When using this option, default value can’t be set" -msgstr "" -"Bei Verwendung dieser Option kann der Standardwert nicht festgelegt werden" +msgstr "Bei Verwendung dieser Option kann der Standardwert nicht festgelegt werden" #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 -msgid "" -"Whether the progress bar overlaps when there are multiple groups of data" +msgid "Whether the progress bar overlaps when there are multiple groups of data" msgstr "" "Ob sich der Fortschrittsbalken überschneidet, wenn mehrere Datengruppen " "vorhanden sind" -#: superset/connectors/sqla/views.py:455 +#: superset/connectors/sqla/views.py:362 msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" -msgstr "" -"Ob die Tabelle durch den 'Visualize'-Fluss in SQL Lab generiert wurde" +msgstr "Ob die Tabelle durch den 'Visualize'-Fluss in SQL Lab generiert wurde" -#: superset/connectors/sqla/views.py:111 +#: superset/connectors/sqla/views.py:110 msgid "" "Whether this column is exposed in the `Filters` section of the explore " "view." @@ -18619,8 +18706,8 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 msgid "" -"Whether to align background charts with both positive and negative values " -"at 0" +"Whether to align background charts with both positive and negative values" +" at 0" msgstr "" "Ob Hintergrunddiagramme sowohl mit positiven als auch mit negativen " "Werten bei 0 ausgerichtet werden sollen" @@ -18637,12 +18724,10 @@ msgstr "Ob die Anmerkungs-Beschriftung immer angezeigt werden soll" #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 msgid "Whether to animate the progress and the value or just display them" -msgstr "" -"Ob der Fortschritt und der Wert animiert oder nur angezeigt werden sollen" +msgstr "Ob der Fortschritt und der Wert animiert oder nur angezeigt werden sollen" #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:331 -msgid "" -"Whether to apply a normal distribution based on rank on the color scale" +msgid "Whether to apply a normal distribution based on rank on the color scale" msgstr "" "Ob eine Normalverteilung basierend auf dem Rang auf der Farbskala " "angewendet werden soll" @@ -18653,8 +18738,7 @@ msgstr "Ob Filter angewendet werden soll, wenn auf Elemente geklickt wird" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:127 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:457 -msgid "" -"Whether to colorize numeric values by if they are positive or negative" +msgid "Whether to colorize numeric values by if they are positive or negative" msgstr "" "Ob numerische Werte eingefärbt werden sollen, wenn sie positiv oder " "negativ sind" @@ -18662,10 +18746,9 @@ msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:109 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 msgid "Whether to display a bar chart background in table columns" -msgstr "" -"Ob ein Balkendiagrammhintergrund in Tabellenspalten angezeigt werden soll" +msgstr "Ob ein Balkendiagrammhintergrund in Tabellenspalten angezeigt werden soll" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 msgid "Whether to display a legend for the chart" msgstr "Ob eine Legende für das Diagramm angezeigt werden soll" @@ -18692,21 +18775,21 @@ msgstr "Ob die Beschriftungen angezeigt werden sollen." #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 msgid "" -"Whether to display the labels. Note that the label only displays when the " -"5% threshold." +"Whether to display the labels. Note that the label only displays when the" +" 5% threshold." msgstr "" "Ob die Beschriftungen angezeigt werden sollen. Beachten Sie, dass die " "Beschriftung nur angezeigt wird, wenn der Schwellenwert von 5 % erreicht " "ist." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:157 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:118 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:159 msgid "Whether to display the legend (toggles)" msgstr "Ob die Legende angezeigt werden soll (Wechselschalter)" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:181 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 msgid "Whether to display the metric name as a title" msgstr "Ob der Metrikname als Titel angezeigt werden soll" @@ -18719,12 +18802,11 @@ msgstr "Ob die Min- und Max-Werte der X-Achse angezeigt werden sollen" msgid "Whether to display the min and max values of the Y-axis" msgstr "Ob die Min- und Max-Werte der Y-Achse angezeigt werden sollen" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:167 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:187 msgid "Whether to display the numerical values within the cells" -msgstr "" -"Ob die numerischen Werte innerhalb der Zellen angezeigt werden sollen" +msgstr "Ob die numerischen Werte innerhalb der Zellen angezeigt werden sollen" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:261 msgid "Whether to display the stroke" @@ -18745,14 +18827,13 @@ msgstr "Ob die Trendlinie angezeigt werden soll" #: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:171 #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:280 msgid "Whether to enable changing graph position and scaling." -msgstr "" -"Ob das Ändern der Diagrammposition und -skalierung aktiviert werden soll." +msgstr "Ob das Ändern der Diagrammposition und -skalierung aktiviert werden soll." #: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:145 msgid "Whether to enable node dragging in force layout mode." msgstr "" -"Ob das Ziehen von Knoten im Kräfte-basierten Layoutmodus aktiviert werden " -"soll." +"Ob das Ziehen von Knoten im Kräfte-basierten Layoutmodus aktiviert werden" +" soll." #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:250 msgid "Whether to fill the objects" @@ -18776,10 +18857,8 @@ msgstr "Ob der Prozentsatz in Tooltip aufgenommen werden soll" #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:337 -msgid "" -"Whether to include the time granularity as defined in the time section" -msgstr "" -"Ob die im Zeitabschnitt definierte Zeitgranularität einbezogen werden soll" +msgid "Whether to include the time granularity as defined in the time section" +msgstr "Ob die im Zeitabschnitt definierte Zeitgranularität einbezogen werden soll" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:273 msgid "Whether to make the grid 3D" @@ -18789,13 +18868,13 @@ msgstr "Ob das Raster in 3D umgewandelt werden soll" msgid "Whether to make the histogram cumulative" msgstr "Ob das Histogramm kumulativ dargestellt werden soll" -#: superset/connectors/sqla/views.py:106 +#: superset/connectors/sqla/views.py:105 msgid "" "Whether to make this column available as a [Time Granularity] option, " "column has to be DATETIME or DATETIME-like" msgstr "" -"Unabhängig davon, ob diese Spalte als [Zeitgranularität]-Option verfügbar " -"gemacht werden soll, muss die Spalte DATETIME oder DATETIME-ähnlich sein" +"Unabhängig davon, ob diese Spalte als [Zeitgranularität]-Option verfügbar" +" gemacht werden soll, muss die Spalte DATETIME oder DATETIME-ähnlich sein" #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:129 msgid "Whether to normalize the histogram" @@ -18803,13 +18882,13 @@ msgstr "Ob das Histogramm normalisiert werden soll" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:881 msgid "Whether to populate autocomplete filters options" -msgstr "" -"Ob Optionen für Auto-Vervollständigen-Filter vorgefühlt werden sollen" +msgstr "Ob Optionen für Auto-Vervollständigen-Filter vorgefühlt werden sollen" -#: superset/connectors/sqla/views.py:450 +#: superset/connectors/sqla/views.py:357 msgid "" "Whether to populate the filter's dropdown in the explore view's filter " -"section with a list of distinct values fetched from the backend on the fly" +"section with a list of distinct values fetched from the backend on the " +"fly" msgstr "" "Ob das Dropdown-Menü des Filters im Filterabschnitt der Ansicht " "\"Erkunden\" mit einer Liste unterschiedlicher Werte aufgefüllt werden " @@ -18818,8 +18897,8 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:170 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 msgid "" -"Whether to show extra controls or not. Extra controls include things like " -"making mulitBar charts stacked or side by side." +"Whether to show extra controls or not. Extra controls include things like" +" making mulitBar charts stacked or side by side." msgstr "" "Ob zusätzliche Steuerelemente angezeigt werden sollen oder nicht. Zu den " "zusätzlichen Steuerelementen gehören Elemente wie das gestapelt oder " @@ -18841,10 +18920,10 @@ msgstr "Ob der Fortschritt der Messgerätediagramms angezeigt werden soll" msgid "Whether to show the split lines on the axis" msgstr "Ob die geteilten Linien auf der Achse angezeigt werden sollen" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:124 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:143 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:174 msgid "Whether to sort ascending or descending on the base Axis." -msgstr "" -"Ob aufsteigend oder absteigend auf der Basisachse sortiert werden soll." +msgstr "Ob aufsteigend oder absteigend auf der Basisachse sortiert werden soll." #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:258 #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:100 @@ -18876,7 +18955,7 @@ msgstr "" "Ob die Ergebnisse nach der ausgewählten Metrik in absteigender " "Reihenfolge sortiert werden sollen." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:207 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 msgid "Whether to sort tooltip by the selected metric in descending order." msgstr "" "Ob der Tooltip nach der ausgewählten Metrik in absteigender Reihenfolge " @@ -18892,8 +18971,7 @@ msgstr "Für welches Land soll die Karte geplottet werden?" #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:198 msgid "Which relatives to highlight on hover" -msgstr "" -"Welche Verwandten beim Überfahren mit der Maus hervorgehoben werden sollen" +msgstr "Welche Verwandten beim Überfahren mit der Maus hervorgehoben werden sollen" #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:89 #: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:41 @@ -18943,7 +19021,7 @@ msgid "Working timeout" msgstr "Zeitüberschreitung" #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 -#: superset/viz.py:2079 +#: superset/viz.py:2006 msgid "World Map" msgstr "Weltkarte" @@ -18955,11 +19033,11 @@ msgstr "Beschreibung Ihrer Anfrage" msgid "Write a handlebars template to render the data" msgstr "Handlebars-Template zur Darstellung der Daten verfassen" -#: superset/views/database/forms.py:219 +#: superset/views/database/forms.py:229 msgid "Write dataframe index as a column" msgstr "Dataframe-Index als Spalte schreiben" -#: superset/views/database/forms.py:380 superset/views/database/forms.py:471 +#: superset/views/database/forms.py:390 superset/views/database/forms.py:481 msgid "Write dataframe index as a column." msgstr "Schreiben Sie den Dataframe-Index als Spalte." @@ -19017,11 +19095,13 @@ msgstr "X Tick Layout" msgid "X bounds" msgstr "X-Grenzen" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:122 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:141 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:172 msgid "X-Axis Sort Ascending" msgstr "X-Achse aufsteigend sortieren" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:69 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:156 msgid "X-Axis Sort By" msgstr "X-Achse Sortieren nach" @@ -19080,7 +19160,6 @@ msgid "Y Axis 2 Bounds" msgstr "Grenzen der Y-Achse 2" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:260 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:248 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:192 @@ -19119,11 +19198,13 @@ msgstr "Y-Log-Skala" msgid "Y bounds" msgstr "Y-Grenzen" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:121 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:140 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:171 msgid "Y-Axis Sort Ascending" msgstr "Y-Achse aufsteigend sortieren" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:68 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 msgid "Y-Axis Sort By" msgstr "Y-Achse Sortieren nach" @@ -19139,7 +19220,7 @@ msgstr "Grenzen der Y-Achse" msgid "YScale Interval" msgstr "Y-Skalen-Intervall" -#: superset/db_engine_specs/base.py:110 +#: superset/db_engine_specs/base.py:111 msgid "Year" msgstr "Jahr" @@ -19164,9 +19245,9 @@ msgstr "Jahre %s" #: superset-frontend/src/pages/ChartList/index.tsx:707 #: superset-frontend/src/pages/DashboardList/index.tsx:506 #: superset-frontend/src/pages/DashboardList/index.tsx:588 -#: superset-frontend/src/pages/DatabaseList/index.tsx:467 -#: superset-frontend/src/pages/DatabaseList/index.tsx:487 -#: superset-frontend/src/pages/DatasetList/index.tsx:572 +#: superset-frontend/src/pages/DatabaseList/index.tsx:478 +#: superset-frontend/src/pages/DatabaseList/index.tsx:498 +#: superset-frontend/src/pages/DatasetList/index.tsx:583 msgid "Yes" msgstr "Ja" @@ -19199,7 +19280,7 @@ msgstr "" "Das Überschreiben kann dazu führen, dass Sie einen Teil Ihrer Arbeit " "verlieren. Sind Sie sicher, dass Sie diese überschreiben möchten?" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1394 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1449 msgid "" "You are importing one or more databases that already exist. Overwriting " "might cause you to lose some of your work. Are you sure you want to " @@ -19229,13 +19310,13 @@ msgstr "" "vorhanden sind. Das Überschreiben kann dazu führen, dass Sie einen Teil " "Ihrer Arbeit verlieren. Sind Sie sicher, dass Sie überschreiben möchten?" -#: superset/views/core.py:2177 +#: superset/views/core.py:2213 msgid "" "You are not authorized to see this query. If you think this is an error, " "please reach out to your administrator." msgstr "" -"Sie sind nicht berechtigt, diese Abfrage anzuzeigen. Wenn Sie der Meinung " -"sind, dass dies ein Fehler ist, wenden Sie sich bitte an Ihre*n " +"Sie sind nicht berechtigt, diese Abfrage anzuzeigen. Wenn Sie der Meinung" +" sind, dass dies ein Fehler ist, wenden Sie sich bitte an Ihre*n " "Administrator*in." #: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:192 @@ -19250,7 +19331,7 @@ msgstr "Hinzufügen können Sie die Komponenten in der" msgid "You can add the components in the edit mode." msgstr "Sie können die Komponenten im Bearbeitungsmodus hinzufügen." -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:127 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:157 msgid "You can also just click on the chart to apply cross-filter." msgstr "" "Sie können auch einfach auf das Diagramm klicken, um den Kreuzfilter " @@ -19260,8 +19341,8 @@ msgstr "" msgid "" "You can choose to display all charts that you have access to or only the " "ones you own.\n" -" Your filter selection will be saved and remain active until " -"you choose to change it." +" Your filter selection will be saved and remain active until" +" you choose to change it." msgstr "" "Sie können auswählen, ob alle Diagramme angezeigt werden sollen, auf die " "Sie Zugriff haben, oder nur die Diagramme, die Sie besitzen.\n" @@ -19274,17 +19355,16 @@ msgid "" "You can create a new chart or use existing ones from the panel on the " "right" msgstr "" -"Sie können ein neues Diagramm erstellen oder vorhandene Diagramme aus dem " -"Bereich auf der rechten Seite verwenden." +"Sie können ein neues Diagramm erstellen oder vorhandene Diagramme aus dem" +" Bereich auf der rechten Seite verwenden." #: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:183 -msgid "" -"You can preview the list of dashboards in the chart settings dropdown." +msgid "You can preview the list of dashboards in the chart settings dropdown." msgstr "" -"Sie können eine Vorschauliste der Dashboards in der Dropdownliste für die " -"Diagrammeinstellungen anzeigen." +"Sie können eine Vorschauliste der Dashboards in der Dropdownliste für die" +" Diagrammeinstellungen anzeigen." -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:148 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:178 msgid "You can't apply cross-filter on this data point." msgstr "Sie können keinen Kreuzfilter auf diesen Datenpunkt anwenden." @@ -19302,14 +19382,14 @@ msgstr "" "Sie können das 45°-Strich-Layout nicht zusammen mit dem " "Zeitbereichsfilter verwenden" -#: superset/viz.py:723 +#: superset/viz.py:748 msgid "" -"You cannot use [Columns] in combination with [Group By]/[Metrics]/" -"[Percentage Metrics]. Please choose one or the other." +"You cannot use [Columns] in combination with [Group " +"By]/[Metrics]/[Percentage Metrics]. Please choose one or the other." msgstr "" -"Sie können [Spalten] nicht in Kombination mit [Gruppieren nach]/" -"[Metriken]/[Prozentmetriken] verwenden. Bitte wählen Sie das eine oder " -"das andere." +"Sie können [Spalten] nicht in Kombination mit [Gruppieren " +"nach]/[Metriken]/[Prozentmetriken] verwenden. Bitte wählen Sie das eine " +"oder das andere." #: superset-frontend/src/utils/getClientErrorObject.ts:107 #, python-format @@ -19321,7 +19401,7 @@ msgid "You do not have permission to edit this chart" msgstr "Sie sind nicht berechtigt, dieses Diagramm zu bearbeiten" #: superset-frontend/src/components/Tags/utils.tsx:69 -#: superset-frontend/src/dashboard/actions/dashboardState.js:366 +#: superset-frontend/src/dashboard/actions/dashboardState.js:368 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:134 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:40 @@ -19335,7 +19415,7 @@ msgstr "" "Sie haben keine Berechtigungen für den Zugriff auf die Datenquelle(n): " "%(name)s." -#: superset-frontend/src/dashboard/actions/dashboardState.js:162 +#: superset-frontend/src/dashboard/actions/dashboardState.js:160 msgid "You do not have permissions to edit this dashboard." msgstr "Sie haben keine Berechtigungen zum Bearbeiten dieses Dashboards." @@ -19347,14 +19427,13 @@ msgstr "Sie haben keinen Zugriff auf dieses Diagramm." msgid "You don't have access to this dashboard." msgstr "Sie haben keinen Zugriff auf dieses Dashboard." -#: superset/datasets/commands/exceptions.py:189 +#: superset/datasets/commands/exceptions.py:206 msgid "You don't have access to this dataset." msgstr "Sie haben keinen Zugriff auf dieses Dataset." #: superset/embedded_dashboard/commands/exceptions.py:34 msgid "You don't have access to this embedded dashboard config." -msgstr "" -"Sie haben keinen Zugriff auf diese eingebettete Dashboard-Konfiguration." +msgstr "Sie haben keinen Zugriff auf diese eingebettete Dashboard-Konfiguration." #: superset-frontend/src/features/home/EmptyState.tsx:170 msgid "You don't have any favorites yet!" @@ -19365,16 +19444,16 @@ msgstr "Sie haben noch keine Favoriten!" msgid "You don't have permission to modify the value." msgstr "Sie sind nicht berechtigt, den Wert zu ändern." -#: superset/security/manager.py:2267 +#: superset/security/manager.py:2262 #, python-format msgid "You don't have the rights to alter %(resource)s" msgstr "Sie sind nicht berechtigt, %(resource)s zu ändern" -#: superset/views/core.py:923 +#: superset/views/core.py:945 msgid "You don't have the rights to alter this chart" msgstr "Sie sind nicht berechtigt, dieses Diagramm zu ändern" -#: superset/views/core.py:1097 +#: superset/views/core.py:1119 msgid "You don't have the rights to alter this dashboard" msgstr "Sie sind nicht berechtigt, dieses Dashboard zu ändern" @@ -19382,19 +19461,19 @@ msgstr "Sie sind nicht berechtigt, dieses Dashboard zu ändern" msgid "You don't have the rights to alter this title." msgstr "Sie haben nicht das Recht, diesen Titel zu ändern." -#: superset/views/core.py:929 +#: superset/views/core.py:951 msgid "You don't have the rights to create a chart" msgstr "Sie haben nicht die Rechte zum Erstellen eines Diagramms" -#: superset/views/core.py:1113 +#: superset/views/core.py:1135 msgid "You don't have the rights to create a dashboard" msgstr "Sie haben nicht die Rechte zum Erstellen eines Dashboards" -#: superset/views/core.py:644 +#: superset/views/core.py:649 msgid "You don't have the rights to download as csv" msgstr "Sie haben nicht die Rechte, als CSV herunterzuladen" -#: superset/views/core.py:424 +#: superset/views/core.py:425 msgid "You have no permission to approve this request" msgstr "Sie haben keine Berechtigung, diese Anforderung zu genehmigen" @@ -19406,7 +19485,7 @@ msgstr "Sie haben diesen Filter entfernt." msgid "You have unsaved changes." msgstr "Ungesicherte Änderungen vorhanden." -#: superset-frontend/src/dashboard/actions/dashboardState.js:652 +#: superset-frontend/src/dashboard/actions/dashboardState.js:650 #, python-format msgid "" "You have used all %(historyLength)s undo slots and will not be able to " @@ -19418,7 +19497,7 @@ msgstr "" "Ihren aktuellen Status speichern, um den Verlauf zurückzusetzen." #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:300 -#: superset-frontend/src/pages/DatasetList/index.tsx:453 +#: superset-frontend/src/pages/DatasetList/index.tsx:464 msgid "" "You must be a dataset owner in order to edit. Please reach out to a " "dataset owner to request modifications or edit access." @@ -19431,7 +19510,7 @@ msgstr "" msgid "You must pick a name for the new dashboard" msgstr "Sie müssen einen Namen für das neue Dashboard auswählen" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:525 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:519 msgid "You must run the query successfully first" msgstr "Sie müssen die Abfrage zuerst erfolgreich ausführen" @@ -19441,7 +19520,7 @@ msgstr "" "Sie müssen die HTML-Bereinigung (sanitization) aktivieren, um CSS " "verwenden zu können" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:350 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 msgid "" "You updated the values in the control panel, but the chart was not " "updated automatically. Run the query by clicking on the \"Update chart\" " @@ -19460,7 +19539,7 @@ msgstr "" "Sie haben Datensätze geändert. Alle Steuerelemente mit Daten (Spalten, " "Metriken), die diesem neuen Dataset entsprechen, wurden beibehalten." -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:343 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 msgid "Your chart is not up to date" msgstr "Ihr Diagramm ist nicht aktuell" @@ -19469,13 +19548,12 @@ msgid "Your chart is ready to go!" msgstr "Ihr Chart ist startklar!" #: superset-frontend/src/dashboard/components/Header/index.jsx:409 -msgid "" -"Your dashboard is too large. Please reduce its size before saving it." +msgid "Your dashboard is too large. Please reduce its size before saving it." msgstr "" "Ihr Dashboard ist zu groß. Bitte reduzieren Sie die Größe, bevor Sie es " "speichern." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1036 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1028 msgid "Your query could not be saved" msgstr "Ihre Abfrage konnte nicht gespeichert werden" @@ -19483,7 +19561,7 @@ msgstr "Ihre Abfrage konnte nicht gespeichert werden" msgid "Your query could not be scheduled" msgstr "Ihre Abfrage konnte nicht eingeplant werden" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1071 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1063 msgid "Your query could not be updated" msgstr "Ihre Abfrage konnte nicht aktualisiert werden." @@ -19495,15 +19573,15 @@ msgstr "" "Ihre Abfrage wurde geplant. Um Details zu Ihrer Abfrage anzuzeigen, " "navigieren Sie zu Gespeicherte Abfragen" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1051 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 msgid "Your query was not properly saved" msgstr "Ihre Abfrage wurde nicht ordnungsgemäß gespeichert" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1054 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1046 msgid "Your query was saved" msgstr "Ihre Abfrage wurde gespeichert" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1067 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1059 msgid "Your query was updated" msgstr "Ihre Abfrage wurde angehalten" @@ -19524,21 +19602,21 @@ msgstr "Zoom" msgid "Zoom level of the map" msgstr "Zoomstufe der Karte" -#: superset-frontend/src/dashboard/actions/dashboardState.js:262 +#: superset-frontend/src/dashboard/actions/dashboardState.js:260 msgid "[ untitled dashboard ]" msgstr "[ unbenanntes Dashboard ]" -#: superset/viz.py:2386 +#: superset/viz.py:2323 msgid "[Longitude] and [Latitude] columns must be present in [Group By]" msgstr "" "Die Spalten [Longitude] und [Latitude] müssen in [Group By] vorhanden " "sein." -#: superset/viz.py:2336 +#: superset/viz.py:2273 msgid "[Longitude] and [Latitude] must be set" msgstr "[Longitude] und [Latitude] müssen eingestellt sein" -#: superset/explore/commands/get.py:121 superset/views/core.py:870 +#: superset/explore/commands/get.py:121 superset/views/core.py:892 msgid "[Missing Dataset]" msgstr "[Fehlender Datensatz]" @@ -19551,7 +19629,7 @@ msgstr "[Superset] Zugriff auf die Datenquelle %(name)s wurde gewährt" msgid "[Untitled]" msgstr "[Unbenannt]" -#: superset/connectors/base/models.py:252 superset/models/sql_lab.py:228 +#: superset/connectors/base/models.py:262 superset/models/sql_lab.py:216 msgid "[asc]" msgstr "[asc]" @@ -19563,7 +19641,7 @@ msgstr "[Kopie]" msgid "[dashboard name]" msgstr "[Dashboard-Name]" -#: superset/connectors/base/models.py:255 superset/models/sql_lab.py:231 +#: superset/connectors/base/models.py:265 superset/models/sql_lab.py:219 msgid "[desc]" msgstr "[Beschreibung]" @@ -19584,8 +19662,7 @@ msgstr "[Unbenannt]" #: superset/utils/pandas_postprocessing/compare.py:53 msgid "`compare_columns` must have the same length as `source_columns`." -msgstr "" -"„compare_columns“ muss die gleiche Länge wie „source_columns“ haben." +msgstr "„compare_columns“ muss die gleiche Länge wie „source_columns“ haben." #: superset/utils/pandas_postprocessing/compare.py:57 msgid "`compare_type` must be `difference`, `percentage` or `ratio`" @@ -19593,7 +19670,7 @@ msgstr "" "\"compare_type\" muss \"Differenz\", \"Prozentsatz\" oder \"Verhältnis\" " "sein" -#: superset/charts/schemas.py:573 +#: superset/charts/schemas.py:654 msgid "`confidence_interval` must be between 0 and 1 (exclusive)" msgstr "\"confidence_interval\" muss zwischen 0 und 1 liegen (exklusiv)" @@ -19620,15 +19697,15 @@ msgstr "Paket 'prophet' nicht installiert" msgid "`rename_columns` must have the same length as `columns`." msgstr "\"rename_columns\" muss die gleiche Länge wie „columns“ haben." -#: superset/charts/schemas.py:1114 +#: superset/charts/schemas.py:1284 msgid "`row_limit` must be greater than or equal to 0" msgstr "\"row_limit\" muss größer oder gleich 0 sein" -#: superset/charts/schemas.py:1121 +#: superset/charts/schemas.py:1291 msgid "`row_offset` must be greater than or equal to 0" msgstr "\"row_offset\" muss größer oder gleich 0 sein" -#: superset/charts/schemas.py:972 +#: superset/charts/schemas.py:1108 msgid "`width` must be greater or equal to 0" msgstr "\"Breite\" muss größer oder gleich 0 sein" @@ -19636,10 +19713,16 @@ msgstr "\"Breite\" muss größer oder gleich 0 sein" msgid "aggregate" msgstr "Aggregat" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 #: superset-frontend/src/pages/AlertReportList/index.tsx:110 msgid "alert" msgstr "Alarm" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 +#, fuzzy +msgid "alert dark" +msgstr "Alarm" + #: superset-frontend/src/pages/AlertReportList/index.tsx:111 msgid "alerts" msgstr "Alarme" @@ -19776,7 +19859,7 @@ msgid "clear all filters" msgstr "Alle Filter löschen" #: superset-frontend/src/components/Chart/Chart.jsx:290 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:354 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 msgid "click here" msgstr "klicken Sie hier" @@ -19806,7 +19889,7 @@ msgstr "verbinde mit %(dbModelName)s." msgid "count" msgstr "Anzahl" -#: superset-frontend/src/explore/components/SaveModal.tsx:365 +#: superset-frontend/src/explore/components/SaveModal.tsx:400 msgid "create" msgstr "Erstellen" @@ -19850,16 +19933,16 @@ msgid "dashboards" msgstr "Dashboards" #: superset-frontend/src/features/databases/DatabaseModal/index.tsx:543 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:712 -#: superset-frontend/src/pages/DatabaseList/index.tsx:91 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:729 +#: superset-frontend/src/pages/DatabaseList/index.tsx:102 msgid "database" msgstr "Datenbank" #: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 #: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 #: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 -#: superset-frontend/src/pages/DatasetList/index.tsx:148 -#: superset-frontend/src/pages/DatasetList/index.tsx:822 +#: superset-frontend/src/pages/DatasetList/index.tsx:159 +#: superset-frontend/src/pages/DatasetList/index.tsx:844 msgid "dataset" msgstr "Datensatz" @@ -19871,8 +19954,8 @@ msgstr "Datensatzname" msgid "date" msgstr "Datum" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 msgid "day" msgstr "Tag" @@ -19901,6 +19984,11 @@ msgstr "Deck.gl - GeoJSON" msgid "deck.gl Grid" msgstr "Deck.gl - Raster" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:30 +#, fuzzy +msgid "deck.gl Heatmap" +msgstr "Deck.gl - Diagramme" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:28 msgid "deck.gl Multiple Layers" msgstr "Deck.gl - Mehrere Ebenen" @@ -19929,6 +20017,7 @@ msgstr "Deck.gl - Diagramme" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:34 @@ -20012,11 +20101,11 @@ msgstr "z.B.sql/protocolv1/o/12345" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:112 #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:657 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:674 msgid "e.g. world_population" msgstr "z.B. world_population" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:655 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:672 msgid "e.g. xy12345.us-east-2.aws" msgstr "z.B. xy12345.us-east-2.aws" @@ -20032,7 +20121,16 @@ msgstr "Bearbeitungsmodus" msgid "entries" msgstr "Einträge" -#: superset/connectors/sqla/models.py:1537 superset/models/helpers.py:1742 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +#, fuzzy +msgid "error" +msgstr "Fehler" + +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 +msgid "error dark" +msgstr "" + +#: superset/models/helpers.py:1803 msgid "error_message" msgstr "Fehlermeldung" @@ -20114,10 +20212,6 @@ msgstr "Symbol für Funktionstyp" msgid "geohash (square)" msgstr "Geohash (quadratisch)" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 -msgid "green" -msgstr "Grün" - #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:168 msgid "heatmap" msgstr "Heatmap" @@ -20130,13 +20224,13 @@ msgstr "Heatmap: Werte werden über die gesamte Heatmap normalisiert" #: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:125 #: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1800 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1856 msgid "here" msgstr "hier" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 msgid "hour" msgstr "Stunde" @@ -20175,7 +20269,7 @@ msgstr "wird als Ganzzahl erwartet" msgid "joined" msgstr "Verknüpft" -#: superset/views/base.py:595 +#: superset/views/base.py:596 msgid "json isn't valid" msgstr "JSON ist ungültig" @@ -20234,7 +20328,7 @@ msgstr "linear" msgid "log" msgstr "Protokoll" -#: superset/charts/schemas.py:645 +#: superset/charts/schemas.py:735 msgid "" "lower percentile must be greater than 0 and less than 100. Must be lower " "than upper percentile." @@ -20243,7 +20337,6 @@ msgstr "" "niedriger als das obere Perzentil sein." #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:189 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:58 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 #: superset-frontend/src/filters/components/Range/buildQuery.ts:69 msgid "max" @@ -20252,9 +20345,9 @@ msgstr "Maximum" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:187 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:254 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:56 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:136 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:119 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:403 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:531 @@ -20272,14 +20365,13 @@ msgstr "Mittelwert" msgid "median" msgstr "Median" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:60 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:62 #: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 msgid "metric" msgstr "Metrik" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:188 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:57 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 #: superset-frontend/src/filters/components/Range/buildQuery.ts:58 msgid "min" @@ -20298,8 +20390,8 @@ msgid "monotone" msgstr "monoton" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 #: superset-frontend/src/explore/controls.jsx:267 msgid "month" @@ -20310,7 +20402,7 @@ msgid "more than {max} {name}" msgstr "mehr als {max} {name}" #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:53 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:78 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:77 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:116 msgid "must have a value" msgstr "Muss einen Wert haben" @@ -20371,7 +20463,7 @@ msgstr "Oder" msgid "or use existing ones from the panel on the right" msgstr "oder verwenden Sie vorhandene aus dem Bereich auf der rechten Seite" -#: superset/charts/schemas.py:1143 +#: superset/charts/schemas.py:1313 msgid "orderby column must be populated" msgstr "ORDER BY-Spalte muss angegeben werden" @@ -20423,13 +20515,13 @@ msgstr "Perzentil (exklusiv)" #: superset/utils/pandas_postprocessing/boxplot.py:88 msgid "" -"percentiles must be a list or tuple with two numeric values, of which the " -"first is lower than the second value" +"percentiles must be a list or tuple with two numeric values, of which the" +" first is lower than the second value" msgstr "" "Perzentile müssen eine Liste oder ein Tupel mit zwei numerischen Werten " "sein, von denen der erste niedriger als der zweite Wert ist" -#: superset/views/core.py:1921 +#: superset/views/core.py:1958 msgid "permalink state not found" msgstr "Permalink-Status nicht gefunden" @@ -20482,11 +20574,7 @@ msgstr "Kürzlich" msgid "recents" msgstr "Kürzlich" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 -msgid "red" -msgstr "Rot" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:563 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:566 #: superset-frontend/src/pages/AlertReportList/index.tsx:110 msgid "report" msgstr "Report" @@ -20498,7 +20586,7 @@ msgstr "Report" msgid "reports" msgstr "Reports" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:491 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:522 msgid "restore zoom" msgstr "Zoom wiederherstellen" @@ -20507,6 +20595,11 @@ msgstr "Zoom wiederherstellen" msgid "right" msgstr "Rechts" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:139 +#, fuzzy +msgid "rowlevelsecurity" +msgstr "Sicherheit auf Zeilenebene" + #: superset-frontend/src/SqlLab/constants.ts:36 #: superset-frontend/src/SqlLab/constants.ts:52 msgid "running" @@ -20530,8 +20623,8 @@ msgstr "Zeitreihen" #: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:90 msgid "" -"series: Treat each series independently; overall: All series use the same " -"scale; change: Show changes compared to the first data point in each " +"series: Treat each series independently; overall: All series use the same" +" scale; change: Show changes compared to the first data point in each " "series" msgstr "" "Serie: Behandeln Sie jede Serie unabhängig voneinander; insgesamt: Alle " @@ -20555,7 +20648,6 @@ msgstr "gestaffelt" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:190 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:59 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:138 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:405 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:185 @@ -20586,15 +20678,21 @@ msgstr "Symbol für Zeichenfolgentyp" #: superset-frontend/src/SqlLab/constants.ts:38 #: superset-frontend/src/SqlLab/constants.ts:50 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 msgid "success" msgstr "Erfolg" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +#, fuzzy +msgid "success dark" +msgstr "Erfolg" + #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:186 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:255 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:378 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:55 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:260 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:532 @@ -20637,10 +20735,10 @@ msgstr "Rückgängig" msgid "unknown type icon" msgstr "Symbol für unbekannten Typ" -#: superset/charts/schemas.py:660 +#: superset/charts/schemas.py:750 msgid "" -"upper percentile must be greater than 0 and less than 100. Must be higher " -"than lower percentile." +"upper percentile must be greater than 0 and less than 100. Must be higher" +" than lower percentile." msgstr "" "Das obere Perzentil muss größer als 0 und kleiner als 100 sein. Muss " "größer als das untere Perzentil sein." @@ -20660,9 +20758,9 @@ msgid "value descending" msgstr "Wert absteigend" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:60 +#, fuzzy msgid "var" -msgstr "var" +msgstr "Balken" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 msgid "variance" @@ -20680,13 +20778,13 @@ msgstr "virtuell" msgid "viz type" msgstr "Visualisierungstyp" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:451 msgid "was created" msgstr "wurde erstellt" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:62 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 #: superset-frontend/src/explore/controls.jsx:264 msgid "week" @@ -20719,16 +20817,12 @@ msgid "y: values are normalized within each row" msgstr "y: Werte werden innerhalb jeder Zeile normalisiert" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 #: superset-frontend/src/explore/controls.jsx:269 msgid "year" msgstr "Jahr" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 -msgid "yellow" -msgstr "Gelb" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:490 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:521 msgid "zoom area" msgstr "Zoombereich" diff --git a/superset/translations/en/LC_MESSAGES/messages.json b/superset/translations/en/LC_MESSAGES/messages.json index dce9e4e643..50dfd11dc9 100644 --- a/superset/translations/en/LC_MESSAGES/messages.json +++ b/superset/translations/en/LC_MESSAGES/messages.json @@ -161,6 +161,9 @@ "" ], "A database with the same name already exists.": [""], + "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ + "" + ], "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ "" ], @@ -234,7 +237,7 @@ "Add Log": [""], "Add Metric": [""], "Add Report": [""], - "Add Row level security filter": [""], + "Add Rule": [""], "Add Saved Query": [""], "Add a Plugin": [""], "Add a dataset": [""], @@ -250,6 +253,7 @@ "" ], "Add cross-filter": [""], + "Add custom scoping": [""], "Add delivery method": [""], "Add extra connection information.": [""], "Add filter": [""], @@ -305,6 +309,7 @@ "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ "" ], + "Aggregation": [""], "Aggregation function": [""], "Alert": [""], "Alert Triggered, In Grace Period": [""], @@ -332,6 +337,7 @@ "All Entities": [""], "All Text": [""], "All charts": [""], + "All charts/global scoping": [""], "All filters": [""], "All filters (%(filterCount)d)": [""], "All panels": [""], @@ -420,6 +426,7 @@ "" ], "An error occurred while importing %s: %s": [""], + "An error occurred while loading dashboard information.": [""], "An error occurred while loading the SQL": [""], "An error occurred while opening Explore": [""], "An error occurred while parsing the key.": [""], @@ -523,6 +530,7 @@ "" ], "Apply": [""], + "Apply conditional color formatting to metric": [""], "Apply conditional color formatting to metrics": [""], "Apply conditional color formatting to numeric columns": [""], "Apply filters": [""], @@ -542,6 +550,7 @@ "Are you sure you want to delete the selected datasets?": [""], "Are you sure you want to delete the selected layers?": [""], "Are you sure you want to delete the selected queries?": [""], + "Are you sure you want to delete the selected rules?": [""], "Are you sure you want to delete the selected tags?": [""], "Are you sure you want to delete the selected templates?": [""], "Are you sure you want to overwrite this dataset?": [""], @@ -588,6 +597,7 @@ "Bar Charts are used to show metrics as a series of bars.": [""], "Bar Values": [""], "Bar orientation": [""], + "Base": [""], "Base layer map style": [""], "Based on a metric": [""], "Based on granularity, number of time periods to compare against": [""], @@ -613,6 +623,12 @@ "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ "" ], + "Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "" + ], + "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [ + "" + ], "Box Plot": [""], "Breakdowns": [""], "Bubble Chart": [""], @@ -798,7 +814,6 @@ "Choose a source": [""], "Choose a source and a target": [""], "Choose a target": [""], - "Choose a unique name": [""], "Choose chart type": [""], "Choose one of the available databases from the panel on the left.": [""], "Choose one or more charts for left axis": [""], @@ -842,7 +857,6 @@ ], "Click to cancel sorting": [""], "Click to edit": [""], - "Click to edit %s in a new tab": [""], "Click to edit %s.": [""], "Click to edit chart.": [""], "Click to edit label": [""], @@ -881,6 +895,7 @@ "" ], "Column Configuration": [""], + "Column Data Types": [""], "Column Formatting": [""], "Column Label(s)": [""], "Column containing ISO 3166-2 codes of region/province/department in your table.": [ @@ -888,6 +903,7 @@ ], "Column containing latitude data": [""], "Column containing longitude data": [""], + "Column datatype": [""], "Column header tooltip": [""], "Column is required": [""], "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ @@ -923,7 +939,6 @@ "Columns to group by on the columns": [""], "Columns to group by on the rows": [""], "Columns to show": [""], - "Combine Metrics": [""], "Combine metrics": [""], "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ "" @@ -951,6 +966,7 @@ "Compose multiple layers together to form complex visuals.": [""], "Compute the contribution to the total": [""], "Condition": [""], + "Conditional Formatting": [""], "Conditional formatting": [""], "Confidence interval": [""], "Confidence interval must be between 0 and 1 (exclusive)": [""], @@ -1006,12 +1022,14 @@ "Copy to clipboard": [""], "Correlation": [""], "Cost estimate": [""], + "Could not connect to database: \"%(database)s\"": [""], "Could not determine datasource type": [""], "Could not fetch all saved charts": [""], "Could not find viz object": [""], "Could not load database driver": [""], "Could not load database driver: %(driver_name)s": [""], "Could not load database driver: {}": [""], + "Could not resolve hostname: \"%(host)s\".": [""], "Count": [""], "Count Unique Values": [""], "Count as Fraction of Columns": [""], @@ -1049,6 +1067,8 @@ "" ], "Cross-filtering is not enabled for this dashboard.": [""], + "Cross-filtering is not enabled in this dashboard": [""], + "Cross-filtering scoping": [""], "Cross-filters": [""], "Cumulative": [""], "Currently rendered: %s": [""], @@ -1199,11 +1219,13 @@ "Deactivate": [""], "December": [""], "Decides which column to sort the base axis by.": [""], + "Decides which measure to sort the base axis by.": [""], "Decimal Character": [""], "Deck.gl - 3D Grid": [""], "Deck.gl - 3D HEX": [""], "Deck.gl - Arc": [""], "Deck.gl - GeoJSON": [""], + "Deck.gl - Heatmap": [""], "Deck.gl - Multiple Layers": [""], "Deck.gl - Paths": [""], "Deck.gl - Polygon": [""], @@ -1272,6 +1294,7 @@ "Delete query": [""], "Delete template": [""], "Delete this container and save to remove this message.": [""], + "Deleted": [""], "Deleted %(num)d annotation": ["", "Deleted %(num)d annotations"], "Deleted %(num)d annotation layer": [ "", @@ -1286,6 +1309,7 @@ "Deleted %(num)d report schedules" ], "Deleted %(num)d saved query": ["", "Deleted %(num)d saved queries"], + "Deleted %s": [""], "Deleted: %s": [""], "Deleting a tab will remove all content within it. You may still reverse this action with the": [ "" @@ -1333,7 +1357,6 @@ ], "Display row level total": [""], "Display settings": [""], - "Display total row/column": [""], "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ "" ], @@ -1371,10 +1394,7 @@ ], "Drill to detail: %s": [""], "Drop a temporal column here or click": [""], - "Drop columns here": [""], - "Drop columns or metrics here": [""], "Drop columns/metrics here or click": [""], - "Drop temporal column here": [""], "Dual Line Chart": [""], "Duplicate": [""], "Duplicate column name(s): %(columns)s": [""], @@ -1435,7 +1455,7 @@ "Edit Metric": [""], "Edit Plugin": [""], "Edit Report": [""], - "Edit Row level security filter": [""], + "Edit Rule": [""], "Edit Saved Query": [""], "Edit Table": [""], "Edit annotation": [""], @@ -1551,6 +1571,7 @@ ], "Excel to Database configuration": [""], "Exclude selected values": [""], + "Excluded roles": [""], "Executed SQL": [""], "Executed query": [""], "Execution ID": [""], @@ -1609,9 +1630,12 @@ "Failed at stopping query. %s": [""], "Failed to create report": [""], "Failed to execute %(query)s": [""], + "Failed to generate chart edit URL": [""], "Failed to load chart data": [""], "Failed to load chart data.": [""], + "Failed to load dimensions for drill by": [""], "Failed to retrieve advanced type": [""], + "Failed to save cross-filter scoping": [""], "Failed to start remote query on a worker.": [""], "Failed to update report": [""], "Failed to verify select options: %s": [""], @@ -1635,7 +1659,7 @@ "Filter List": [""], "Filter Settings": [""], "Filter Type": [""], - "Filter box": [""], + "Filter box (deprecated)": [""], "Filter charts": [""], "Filter configuration": [""], "Filter configuration for the filter box": [""], @@ -1745,8 +1769,8 @@ "Grid Size": [""], "Group By": [""], "Group By filter plugin": [""], - "Group By' and 'Columns' can't overlap": [""], "Group By, Metrics or Percentage Metrics must have a value": [""], + "Group Key": [""], "Group by": [""], "Groupable": [""], "Handlebars": [""], @@ -1850,6 +1874,11 @@ "Input field supports custom rotation. e.g. 30 for 30°": [""], "Instant filtering": [""], "Intensity": [""], + "Intensity Radius": [""], + "Intensity Radius is the radius at which the weight is distributed": [""], + "Intensity is the value multiplied by the weight to obtain the final weight": [ + "" + ], "Interpret Datetime Format Automatically": [""], "Interpret the datetime format automatically": [""], "Interval": [""], @@ -1858,6 +1887,10 @@ "Interval colors": [""], "Interval start column": [""], "Intervals": [""], + "Intesity": [""], + "Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:port/database'.": [ + "" + ], "Invalid JSON": [""], "Invalid advanced data type: %(advanced_data_type)s": [""], "Invalid certificate": [""], @@ -1884,6 +1917,7 @@ "Invalid numpy function: %(operator)s": [""], "Invalid options for %(rolling_type)s: %(options)s": [""], "Invalid permalink key": [""], + "Invalid reference to column: \"%(column)s\"": [""], "Invalid result type: %(result_type)s": [""], "Invalid rolling_type: %(type)s": [""], "Invalid spatial point encountered: %s": [""], @@ -2241,6 +2275,7 @@ "No Access!": [""], "No Data": [""], "No Results": [""], + "No Rules yet": [""], "No annotation layers yet": [""], "No annotation yet": [""], "No applied filters": [""], @@ -2262,7 +2297,6 @@ "No database tables found": [""], "No databases match your search": [""], "No description available.": [""], - "No dimensions available for drill by": [""], "No favorite charts yet, go click on stars!": [""], "No favorite dashboards yet, go click on stars!": [""], "No filter": [""], @@ -2409,7 +2443,6 @@ "Optional d3 number format string": [""], "Optional name of the data column.": [""], "Optional warning about use of this metric": [""], - "Optionally add a detailed description": [""], "Options": [""], "Or choose from a list of other databases we support:": [""], "Order by entity id": [""], @@ -2515,9 +2548,7 @@ "Pie Chart": [""], "Pie shape": [""], "Pin": [""], - "Pivot Options": [""], "Pivot Table": [""], - "Pivot Table (legacy)": [""], "Pivot operation must include at least one aggregate": [""], "Pivot operation requires at least one index": [""], "Pivoted": [""], @@ -2538,9 +2569,7 @@ "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ "" ], - "Please choose at least one 'Group by' field": [""], "Please choose at least one groupby": [""], - "Please choose at least one metric": [""], "Please choose different metrics on left and right axis": [""], "Please confirm": [""], "Please confirm the overwrite values.": [""], @@ -2585,6 +2614,7 @@ "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ "" ], + "Port out of range 0-65535": [""], "Position JSON": [""], "Position of child node label on tree": [""], "Position of column level subtotal": [""], @@ -2608,6 +2638,7 @@ "Primary Metric": [""], "Primary key": [""], "Primary or secondary y-axis": [""], + "Primary y-axis Bounds": [""], "Primary y-axis format": [""], "Private Key": [""], "Private Key & Password": [""], @@ -2649,6 +2680,8 @@ "Query was stopped.": [""], "RANGE TYPE": [""], "RGB Color": [""], + "RLS Rule could not be deleted.": [""], + "RLS Rule not found.": [""], "Radar": [""], "Radar Chart": [""], "Radar render type, whether to display 'circle' shape.": [""], @@ -2706,7 +2739,8 @@ "Refreshing charts": [""], "Refreshing columns": [""], "Regex": [""], - "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter. Base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ + "Regular": [""], + "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter, base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ "" ], "Relational": [""], @@ -2821,13 +2855,14 @@ "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ "" ], - "Row level security filter": [""], "Row limit": [""], "Rows": [""], "Rows per page, 0 means no pagination": [""], "Rows subtotal position": [""], "Rows to Read": [""], "Rule": [""], + "Rule Name": [""], + "Rule added": [""], "Run": [""], "Run a query to display query history": [""], "Run a query to display results": [""], @@ -2950,6 +2985,7 @@ "Second": [""], "Secondary": [""], "Secondary Metric": [""], + "Secondary y-axis Bounds": [""], "Secondary y-axis format": [""], "Secondary y-axis title": [""], "Seconds %s": [""], @@ -3008,6 +3044,12 @@ "Select subject": [""], "Select table or type to search tables": [""], "Select the Annotation Layer you would like to use.": [""], + "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" + ], + "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" + ], "Select the geojson column": [""], "Select the number of bins for the histogram": [""], "Select the numeric columns to draw the histogram": [""], @@ -3072,7 +3114,6 @@ "Show Metric": [""], "Show Metric Names": [""], "Show Range Filter": [""], - "Show Row level security filter": [""], "Show Saved Query": [""], "Show Table": [""], "Show Timestamp": [""], @@ -3294,7 +3335,6 @@ "Superset encountered an unexpected error.": [""], "Supported databases": [""], "Survey Responses": [""], - "Swap Groups and Columns": [""], "Swap dataset": [""], "Swap rows and columns": [""], "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ @@ -3308,6 +3348,9 @@ "Symbol size": [""], "Sync columns from source": [""], "Syntax": [""], + "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ + "" + ], "TABLES": [""], "TEMPORAL X-AXIS": [""], "TEMPORAL_RANGE": [""], @@ -3331,6 +3374,7 @@ "Table loading": [""], "Table name cannot contain a schema": [""], "Table name undefined": [""], + "Table or View \"%(table)s\" does not exist.": [""], "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ "" ], @@ -3606,6 +3650,9 @@ "The type of visualization to display": [""], "The unit of measure for the specified point radius": [""], "The user seems to have been deleted": [""], + "The user/password combination is not valid (Incorrect password for user).": [ + "" + ], "The username \"%(username)s\" does not exist.": [""], "The username provided when connecting to a database is not valid.": [""], "The way the ticks are laid out on the X-axis": [""], @@ -3631,12 +3678,14 @@ "There was an error fetching tables": [""], "There was an error fetching the favorite status: %s": [""], "There was an error fetching your recent activity:": [""], + "There was an error loading the chart data": [""], "There was an error loading the dataset metadata": [""], "There was an error loading the schemas": [""], "There was an error loading the tables": [""], "There was an error saving the favorite status: %s": [""], "There was an error with your request": [""], "There was an issue deleting %s: %s": [""], + "There was an issue deleting rules: %s": [""], "There was an issue deleting the selected %s: %s": [""], "There was an issue deleting the selected annotations: %s": [""], "There was an issue deleting the selected charts: %s": [""], @@ -3677,7 +3726,7 @@ "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ "" ], - "This chart emits/applies cross-filters to other charts that use the same dataset": [ + "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ "" ], "This chart has been moved to a different filter scope.": [""], @@ -3869,7 +3918,6 @@ "Title or Slug": [""], "To filter on a metric, use Custom SQL tab.": [""], "To get a readable URL for your dashboard": [""], - "Too many columns to filter": [""], "Tools": [""], "Tooltip": [""], "Tooltip sort by metric": [""], @@ -3886,7 +3934,6 @@ "Track job": [""], "Transformable": [""], "Transparent": [""], - "Transpose Pivot": [""], "Transpose pivot": [""], "Tree Chart": [""], "Tree layout": [""], @@ -3936,6 +3983,8 @@ "" ], "Unable to create chart without a query id.": [""], + "Unable to decode value": [""], + "Unable to encode value": [""], "Unable to find such a holiday: [%(holiday)s]": [""], "Unable to load columns for the selected table. Please select a different table.": [ "" @@ -4026,9 +4075,6 @@ "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ "" ], - "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location.\n\n This chart is being deprecated and we recommend checking out Pivot Table V2 instead!": [ - "" - ], "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ "" ], @@ -4039,6 +4085,9 @@ "User must select a value for this filter": [""], "User query": [""], "Username": [""], + "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ + "" + ], "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ "" ], @@ -4464,6 +4513,7 @@ "`width` must be greater or equal to 0": [""], "aggregate": [""], "alert": [""], + "alert dark": [""], "alerts": [""], "all": [""], "also copy (duplicate) charts": [""], @@ -4519,6 +4569,7 @@ "deck.gl Arc": [""], "deck.gl Geojson": [""], "deck.gl Grid": [""], + "deck.gl Heatmap": [""], "deck.gl Multiple Layers": [""], "deck.gl Path": [""], "deck.gl Polygon": [""], @@ -4547,6 +4598,8 @@ "e.g., a \"user id\" column": [""], "edit mode": [""], "entries": [""], + "error": [""], + "error dark": [""], "error_message": [""], "every": [""], "every day of the month": [""], @@ -4566,7 +4619,6 @@ "for more information on how to structure your URI.": [""], "function type icon": [""], "geohash (square)": [""], - "green": [""], "heatmap": [""], "heatmap: values are normalized across the entire heatmap": [""], "here": [""], @@ -4647,11 +4699,11 @@ "reboot": [""], "recent": [""], "recents": [""], - "red": [""], "report": [""], "reports": [""], "restore zoom": [""], "right": [""], + "rowlevelsecurity": [""], "running": [""], "saved queries": [""], "search by tags": [""], @@ -4670,6 +4722,7 @@ "stream": [""], "string type icon": [""], "success": [""], + "success dark": [""], "sum": [""], "syntax.": [""], "tag": [""], @@ -4699,7 +4752,6 @@ "y": [""], "y: values are normalized within each row": [""], "year": [""], - "yellow": [""], "zoom area": [""] } } diff --git a/superset/translations/en/LC_MESSAGES/messages.po b/superset/translations/en/LC_MESSAGES/messages.po index 181dbe9835..2774edd0da 100644 --- a/superset/translations/en/LC_MESSAGES/messages.po +++ b/superset/translations/en/LC_MESSAGES/messages.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-04-07 19:09+0200\n" +"POT-Creation-Date: 2023-05-23 16:30-0300\n" "PO-Revision-Date: 2016-05-02 08:49-0700\n" "Last-Translator: FULL NAME \n" "Language: en\n" @@ -37,7 +37,7 @@ msgid "" " " msgstr "" -#: superset/reports/notifications/email.py:88 +#: superset/reports/notifications/email.py:89 #, python-format msgid "" "\n" @@ -56,11 +56,11 @@ msgid "" "in the GeoJSON" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:364 +#: superset-frontend/src/explore/components/SaveModal.tsx:399 msgid " a dashboard OR " msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:366 +#: superset-frontend/src/explore/components/SaveModal.tsx:401 msgid " a new one" msgstr "" @@ -90,7 +90,7 @@ msgid "" " database/column name level via the extra parameter." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:334 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:340 msgid " to add calculated columns" msgstr "" @@ -102,8 +102,8 @@ msgstr "" msgid " to edit or add columns and metrics." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:323 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:358 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:364 msgid " to mark a column as a time column" msgstr "" @@ -111,7 +111,7 @@ msgstr "" msgid " to open SQL Lab. From there you can save the query as a dataset." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:333 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 msgid " to visualize your data." msgstr "" @@ -119,7 +119,7 @@ msgstr "" msgid "!= (Is not equal)" msgstr "" -#: superset/security/analytics_db_safety.py:44 +#: superset/security/analytics_db_safety.py:48 #, python-format msgid "%(dialect)s cannot be used as a data source for security reasons." msgstr "" @@ -132,7 +132,7 @@ msgid "" "%(issues)s" msgstr "" -#: superset/reports/notifications/email.py:168 +#: superset/reports/notifications/email.py:171 #, python-format msgid "%(name)s.csv" msgstr "" @@ -162,14 +162,14 @@ msgstr "" msgid "%(other)s saved queries will appear here" msgstr "" -#: superset/reports/notifications/email.py:177 +#: superset/reports/notifications/email.py:180 #, python-format msgid "%(prefix)s %(title)s" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:345 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:363 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:377 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:338 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:356 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:370 #, python-format msgid "%(rows)d rows returned" msgstr "" @@ -191,19 +191,19 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: superset/views/core.py:384 +#: superset/views/core.py:385 #, python-format msgid "" "%(user)s was granted the role %(role)s that gives access to the " "%(datasource)s" msgstr "" -#: superset/views/core.py:2672 +#: superset/views/core.py:2709 #, python-format msgid "%(user)s's profile" msgstr "" -#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2327 +#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2369 #, python-format msgid "" "%(validator)s was unable to check your query.\n" @@ -217,25 +217,25 @@ msgid "%s Error" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:298 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1300 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1355 #, python-format msgid "%s PASSWORD" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:318 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1318 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1373 #, python-format msgid "%s SSH TUNNEL PASSWORD" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:341 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1336 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1391 #, python-format msgid "%s SSH TUNNEL PRIVATE KEY" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:363 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1356 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1411 #, python-format msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" msgstr "" @@ -245,17 +245,17 @@ msgstr "" msgid "%s Selected" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:808 +#: superset-frontend/src/pages/DatasetList/index.tsx:830 #, python-format msgid "%s Selected (%s Physical, %s Virtual)" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:801 +#: superset-frontend/src/pages/DatasetList/index.tsx:823 #, python-format msgid "%s Selected (Physical)" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:794 +#: superset-frontend/src/pages/DatasetList/index.tsx:816 #, python-format msgid "%s Selected (Virtual)" msgstr "" @@ -265,8 +265,8 @@ msgstr "" msgid "%s aggregates(s)" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:274 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:371 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:280 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:377 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:346 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 #, python-format @@ -305,8 +305,8 @@ msgstr[1] "" msgid "%s saved metric(s)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:636 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:652 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:639 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:655 #, python-format msgid "%s updated" msgstr "" @@ -323,7 +323,7 @@ msgstr "" msgid "%s-%s of %s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:115 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:116 msgid "(Removed)" msgstr "" @@ -373,22 +373,22 @@ msgstr "" msgid "+ %s more" msgstr "" -#: superset/views/database/forms.py:153 +#: superset/views/database/forms.py:163 msgid "," msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:656 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:652 msgid "" "-- Note: Unless you save your query, these tabs will NOT persist if you " "clear your cookies or change browsers.\n" "\n" msgstr "" -#: superset/views/database/forms.py:154 +#: superset/views/database/forms.py:164 msgid "." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:791 +#: superset-frontend/src/pages/DatasetList/index.tsx:813 msgid "0 Selected" msgstr "" @@ -480,7 +480,7 @@ msgstr "" msgid "1 year start frequency" msgstr "" -#: superset/db_engine_specs/base.py:101 +#: superset/db_engine_specs/base.py:102 msgid "10 minute" msgstr "" @@ -495,7 +495,7 @@ msgstr "" msgid "104 weeks ago" msgstr "" -#: superset/db_engine_specs/base.py:102 +#: superset/db_engine_specs/base.py:103 msgid "15 minute" msgstr "" @@ -610,7 +610,7 @@ msgstr "" msgid "30 days ago" msgstr "" -#: superset/db_engine_specs/base.py:103 +#: superset/db_engine_specs/base.py:104 msgid "30 minute" msgstr "" @@ -619,7 +619,7 @@ msgstr "" msgid "30 minutes" msgstr "" -#: superset/db_engine_specs/base.py:98 +#: superset/db_engine_specs/base.py:99 msgid "30 second" msgstr "" @@ -639,7 +639,7 @@ msgstr "" msgid "4 weeks (freq=4W-MON)" msgstr "" -#: superset/db_engine_specs/base.py:100 +#: superset/db_engine_specs/base.py:101 msgid "5 minute" msgstr "" @@ -648,7 +648,7 @@ msgstr "" msgid "5 minutes" msgstr "" -#: superset/db_engine_specs/base.py:97 +#: superset/db_engine_specs/base.py:98 msgid "5 second" msgstr "" @@ -674,7 +674,7 @@ msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 #: superset-frontend/src/explore/controls.jsx:261 -#: superset/db_engine_specs/base.py:105 +#: superset/db_engine_specs/base.py:106 msgid "6 hour" msgstr "" @@ -757,15 +757,15 @@ msgstr "" msgid "A Big Number" msgstr "" -#: superset/views/database/forms.py:184 +#: superset/views/database/forms.py:194 msgid "A comma separated list of columns that should be parsed as dates" msgstr "" -#: superset/views/database/forms.py:367 +#: superset/views/database/forms.py:377 msgid "A comma separated list of columns that should be parsed as dates." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:433 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 msgid "A comma-separated list of schemas that files are allowed to upload to." msgstr "" @@ -773,6 +773,12 @@ msgstr "" msgid "A database with the same name already exists." msgstr "" +#: superset/views/database/forms.py:145 +msgid "" +"A dictionary with column names and their data types if you need to change" +" the defaults. Example: {\"user_id\":\"integer\"}" +msgstr "" + #: superset/views/dynamic_plugins.py:52 msgid "" "A full URL pointing to the location of the built plugin (could be hosted " @@ -838,16 +844,16 @@ msgstr "" msgid "A report named \"%(name)s\" already exists" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:333 +#: superset-frontend/src/explore/components/SaveModal.tsx:368 msgid "A reusable dataset will be saved with your chart." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:309 +#: superset-frontend/src/components/ReportModal/index.tsx:308 msgid "A screenshot of the dashboard will be sent to your email at" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 -#: superset/connectors/sqla/views.py:458 +#: superset/connectors/sqla/views.py:365 msgid "" "A set of parameters that become available in the query using Jinja " "templating syntax" @@ -891,8 +897,8 @@ msgstr "" msgid "APR" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:312 -#: superset-frontend/src/pages/DatabaseList/index.tsx:478 +#: superset-frontend/src/pages/DatabaseList/index.tsx:323 +#: superset-frontend/src/pages/DatabaseList/index.tsx:489 msgid "AQE" msgstr "" @@ -919,7 +925,7 @@ msgstr "" msgid "Access" msgstr "" -#: superset/initialization/__init__.py:431 +#: superset/initialization/__init__.py:425 msgid "Access requests" msgstr "" @@ -931,7 +937,7 @@ msgstr "" msgid "Access token" msgstr "" -#: superset/views/core.py:317 +#: superset/views/core.py:318 msgid "Access was requested" msgstr "" @@ -939,7 +945,7 @@ msgstr "" msgid "Action" msgstr "" -#: superset/initialization/__init__.py:393 +#: superset/initialization/__init__.py:387 msgid "Action Log" msgstr "" @@ -950,9 +956,10 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:569 #: superset-frontend/src/pages/CssTemplateList/index.tsx:229 #: superset-frontend/src/pages/DashboardList/index.tsx:477 -#: superset-frontend/src/pages/DatabaseList/index.tsx:448 -#: superset-frontend/src/pages/DatasetList/index.tsx:488 +#: superset-frontend/src/pages/DatabaseList/index.tsx:459 +#: superset-frontend/src/pages/DatasetList/index.tsx:499 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:327 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:216 #: superset-frontend/src/pages/SavedQueryList/index.tsx:437 #: superset-frontend/src/pages/Tags/index.tsx:171 msgid "Actions" @@ -982,18 +989,19 @@ msgstr "" msgid "Actual values" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:35 -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 #: superset-frontend/src/explore/controls.jsx:78 #: superset-frontend/src/explore/controls.jsx:101 msgid "Adaptive formatting" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:229 +#: superset-frontend/src/components/ReportModal/index.tsx:228 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 #: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 #: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 msgid "Add" msgstr "" @@ -1013,7 +1021,7 @@ msgstr "" msgid "Add Chart" msgstr "" -#: superset/connectors/sqla/views.py:74 +#: superset/connectors/sqla/views.py:73 msgid "Add Column" msgstr "" @@ -1029,7 +1037,7 @@ msgstr "" msgid "Add Log" msgstr "" -#: superset/connectors/sqla/views.py:209 +#: superset/connectors/sqla/views.py:208 msgid "Add Metric" msgstr "" @@ -1037,8 +1045,8 @@ msgstr "" msgid "Add Report" msgstr "" -#: superset/connectors/sqla/views.py:292 -msgid "Add Row level security filter" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +msgid "Add Rule" msgstr "" #: superset/views/sql_lab/views.py:54 @@ -1053,11 +1061,11 @@ msgstr "" msgid "Add a dataset" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:262 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:272 msgid "Add a new tab" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:286 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:296 msgid "Add a new tab to create SQL Query" msgstr "" @@ -1088,23 +1096,27 @@ msgstr "" msgid "Add annotation layer" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:300 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:306 msgid "Add calculated columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:297 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:303 msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:167 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:197 msgid "Add cross-filter" msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 +msgid "Add custom scoping" +msgstr "" + #: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 msgid "Add delivery method" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:330 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 msgid "Add extra connection information." msgstr "" @@ -1174,7 +1186,7 @@ msgstr "" msgid "Add the name of the dashboard" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:351 +#: superset-frontend/src/explore/components/SaveModal.tsx:386 msgid "Add to dashboard" msgstr "" @@ -1199,7 +1211,7 @@ msgstr[1] "" msgid "Additional Parameters" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1787 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1843 msgid "Additional fields may be required" msgstr "" @@ -1211,16 +1223,16 @@ msgstr "" msgid "Additional metadata" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:54 msgid "Additional padding for legend." msgstr "" -#: superset/db_engine_specs/base.py:1847 -#: superset/db_engine_specs/clickhouse.py:214 +#: superset/db_engine_specs/base.py:1885 +#: superset/db_engine_specs/clickhouse.py:221 msgid "Additional parameters" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:444 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 msgid "Additional settings." msgstr "" @@ -1235,17 +1247,18 @@ msgstr "" msgid "Additive" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:75 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 msgid "Adjust how this database will interact with SQL Lab." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:221 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:231 msgid "Adjust performance settings of this database." msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:132 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:91 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:127 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:93 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 @@ -1254,7 +1267,7 @@ msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:939 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:771 #: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1811 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 msgid "Advanced" msgstr "" @@ -1350,7 +1363,6 @@ msgid "" "produce the cluster label." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:63 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:202 msgid "" "Aggregate function to apply when pivoting and computing the total rows " @@ -1363,12 +1375,14 @@ msgid "" " values to a dynamic color scale" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +msgid "Aggregation" +msgstr "" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 msgid "Aggregation function" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:593 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:162 msgid "Alert" msgstr "" @@ -1447,7 +1461,7 @@ msgstr "" msgid "Alerts" msgstr "" -#: superset/initialization/__init__.py:410 +#: superset/initialization/__init__.py:404 msgid "Alerts & Reports" msgstr "" @@ -1473,8 +1487,8 @@ msgstr "" #: superset-frontend/src/pages/DashboardList/index.tsx:528 #: superset-frontend/src/pages/DashboardList/index.tsx:550 #: superset-frontend/src/pages/DashboardList/index.tsx:600 -#: superset-frontend/src/pages/DatabaseList/index.tsx:465 -#: superset-frontend/src/pages/DatabaseList/index.tsx:485 +#: superset-frontend/src/pages/DatabaseList/index.tsx:476 +#: superset-frontend/src/pages/DatabaseList/index.tsx:496 #: superset-frontend/src/pages/Home/index.tsx:205 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:354 #: superset-frontend/src/pages/SavedQueryList/index.tsx:453 @@ -1483,7 +1497,7 @@ msgid "All" msgstr "" #: superset-frontend/src/pages/AllEntities/index.tsx:76 -#: superset/initialization/__init__.py:376 +#: superset/initialization/__init__.py:370 msgid "All Entities" msgstr "" @@ -1494,13 +1508,18 @@ msgstr "" msgid "All Text" msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 #: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:69 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 #: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:85 #: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:128 msgid "All charts" msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 +msgid "All charts/global scoping" +msgstr "" + #: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 msgid "All filters" msgstr "" @@ -1510,7 +1529,7 @@ msgstr "" msgid "All filters (%(filterCount)d)" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:49 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 msgid "All panels" msgstr "" @@ -1518,7 +1537,7 @@ msgstr "" msgid "All panels with this column will be affected by this filter" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:107 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 #: superset/views/database/mixins.py:184 msgid "Allow CREATE TABLE AS" msgstr "" @@ -1527,7 +1546,7 @@ msgstr "" msgid "Allow CREATE TABLE AS option in SQL Lab" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:121 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 #: superset/views/database/mixins.py:185 msgid "Allow CREATE VIEW AS" msgstr "" @@ -1540,7 +1559,7 @@ msgstr "" msgid "Allow Csv Upload" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 #: superset/views/database/mixins.py:186 msgid "Allow DML" msgstr "" @@ -1549,15 +1568,15 @@ msgstr "" msgid "Allow columns to be rearranged" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:110 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 msgid "Allow creation of new tables based on queries" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:124 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 msgid "Allow creation of new views based on queries" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:329 +#: superset-frontend/src/pages/DatabaseList/index.tsx:340 msgid "Allow data manipulation language" msgstr "" @@ -1567,11 +1586,11 @@ msgid "" "their changes won't persist for the next time they open the chart." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:411 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:421 msgid "Allow file uploads to database" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:157 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 msgid "" "Allow manipulation of the database using non-SELECT statements such as " "UPDATE, DELETE, CREATE, etc." @@ -1589,11 +1608,11 @@ msgstr "" msgid "Allow sending multiple polygons as a filter event" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:186 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 msgid "Allow this database to be explored" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:91 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 msgid "Allow this database to be queried in SQL Lab" msgstr "" @@ -1634,20 +1653,20 @@ msgstr "" msgid "An alert named \"%(name)s\" already exists" msgstr "" -#: superset/common/query_context_processor.py:326 superset/viz.py:1447 +#: superset/common/query_context_processor.py:326 superset/viz.py:1352 msgid "" "An enclosed time range (both start and end) must be specified when using " "a Time Comparison." msgstr "" -#: superset/databases/schemas.py:285 +#: superset/databases/schemas.py:289 msgid "" "An engine must be specified when passing individual parameters to a " "database." msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:791 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:141 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:183 #: superset-frontend/src/components/Tags/utils.tsx:67 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:127 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:109 @@ -1662,7 +1681,7 @@ msgstr "" msgid "An error occurred" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:317 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:323 msgid "An error occurred saving dataset" msgstr "" @@ -1673,19 +1692,19 @@ msgstr "" msgid "An error occurred while accessing the value." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1368 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1360 msgid "" "An error occurred while collapsing the table schema. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:304 +#: superset-frontend/src/views/CRUD/hooks.ts:308 #, python-format msgid "An error occurred while creating %ss: %s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1529 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1551 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1530 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1552 msgid "An error occurred while creating the data source" msgstr "" @@ -1701,7 +1720,7 @@ msgstr "" msgid "An error occurred while deleting the value." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1344 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1336 msgid "" "An error occurred while expanding the table schema. Please contact your " "administrator." @@ -1713,8 +1732,8 @@ msgid "An error occurred while fetching %s info: %s" msgstr "" #: superset-frontend/src/views/CRUD/hooks.ts:174 -#: superset-frontend/src/views/CRUD/hooks.ts:261 -#: superset-frontend/src/views/CRUD/hooks.ts:349 +#: superset-frontend/src/views/CRUD/hooks.ts:265 +#: superset-frontend/src/views/CRUD/hooks.ts:353 #, python-format msgid "An error occurred while fetching %ss: %s" msgstr "" @@ -1758,7 +1777,7 @@ msgstr "" msgid "An error occurred while fetching dashboards: %s" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:145 +#: superset-frontend/src/pages/DatabaseList/index.tsx:156 #, python-format msgid "An error occurred while fetching database related data: %s" msgstr "" @@ -1775,26 +1794,26 @@ msgstr "" msgid "An error occurred while fetching dataset datasource values: %s" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:510 +#: superset-frontend/src/pages/DatasetList/index.tsx:521 #, python-format msgid "An error occurred while fetching dataset owner values: %s" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:222 +#: superset-frontend/src/pages/DatasetList/index.tsx:233 msgid "An error occurred while fetching dataset related data" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:242 +#: superset-frontend/src/pages/DatasetList/index.tsx:253 #, python-format msgid "An error occurred while fetching dataset related data: %s" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:530 +#: superset-frontend/src/pages/DatasetList/index.tsx:541 #, python-format msgid "An error occurred while fetching datasets: %s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1581 +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx:120 msgid "An error occurred while fetching function names." msgstr "" @@ -1803,23 +1822,23 @@ msgstr "" msgid "An error occurred while fetching owners values: %s" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:546 +#: superset-frontend/src/pages/DatasetList/index.tsx:557 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:378 #: superset-frontend/src/pages/SavedQueryList/index.tsx:480 #, python-format msgid "An error occurred while fetching schema values: %s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:799 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:795 msgid "An error occurred while fetching tab state" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1199 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1224 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1191 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1216 msgid "An error occurred while fetching table metadata" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1296 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1288 msgid "" "An error occurred while fetching table metadata. Please contact your " "administrator." @@ -1835,23 +1854,27 @@ msgstr "" msgid "An error occurred while fetching user values: %s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:835 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:831 msgid "" "An error occurred while hiding the left bar. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:502 -#: superset-frontend/src/views/CRUD/hooks.ts:518 +#: superset-frontend/src/views/CRUD/hooks.ts:506 +#: superset-frontend/src/views/CRUD/hooks.ts:522 #, python-format msgid "An error occurred while importing %s: %s" msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:135 +msgid "An error occurred while loading dashboard information." +msgstr "" + #: superset-frontend/src/components/Chart/chartAction.js:579 msgid "An error occurred while loading the SQL" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:332 +#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:325 msgid "An error occurred while opening Explore" msgstr "" @@ -1863,15 +1886,15 @@ msgstr "" msgid "An error occurred while pruning logs " msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:892 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:888 msgid "An error occurred while removing query. Please contact your administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:857 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:853 msgid "An error occurred while removing tab. Please contact your administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1396 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1388 msgid "" "An error occurred while removing the table schema. Please contact your " "administrator." @@ -1882,38 +1905,38 @@ msgstr "" msgid "An error occurred while rendering the visualization: %s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:710 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:706 msgid "" "An error occurred while setting the active tab. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:975 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:967 msgid "" "An error occurred while setting the tab autorun. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:915 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:911 msgid "" "An error occurred while setting the tab database ID. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1004 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1128 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:996 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1120 msgid "" "An error occurred while setting the tab name. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:946 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:942 msgid "" "An error occurred while setting the tab schema. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1154 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1146 msgid "" "An error occurred while setting the tab template parameters. Please " "contact your administrator." @@ -1923,14 +1946,14 @@ msgstr "" msgid "An error occurred while starring this chart" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:251 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:297 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:255 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:301 msgid "" "An error occurred while storing the latest query id in the backend. " "Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1095 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1087 msgid "" "An error occurred while storing your query in the backend. To avoid " "losing your changes, please save your query using the \"Save Query\" " @@ -1950,7 +1973,7 @@ msgstr "" msgid "An unexpected error occurred" msgstr "" -#: superset/views/core.py:734 +#: superset/views/core.py:745 msgid "An unknown error occurred. Please contact your Superset administrator" msgstr "" @@ -1982,7 +2005,7 @@ msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:127 -#: superset/initialization/__init__.py:420 +#: superset/initialization/__init__.py:414 msgid "Annotation Layers" msgstr "" @@ -2130,7 +2153,8 @@ msgstr "" #: superset-frontend/src/pages/DashboardList/index.tsx:504 #: superset-frontend/src/pages/DashboardList/index.tsx:572 #: superset-frontend/src/pages/DashboardList/index.tsx:586 -#: superset-frontend/src/pages/DatasetList/index.tsx:570 +#: superset-frontend/src/pages/DatasetList/index.tsx:581 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:260 msgid "Any" msgstr "" @@ -2145,18 +2169,18 @@ msgid "" "dashboard's individual charts" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:953 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1008 msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:967 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1022 msgid "" "Any databases that allow connections via SQL Alchemy URIs can be added. " "Learn about how to connect a database driver " msgstr "" -#: superset/views/database/forms.py:169 superset/views/database/forms.py:326 -#: superset/views/database/forms.py:457 +#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 +#: superset/views/database/forms.py:467 msgid "Append" msgstr "" @@ -2175,7 +2199,7 @@ msgstr "" msgid "Applied filters: %s" msgstr "" -#: superset/viz.py:246 +#: superset/viz.py:250 msgid "" "Applied rolling window did not return any data. Please make sure the " "source query satisfies the minimum periods defined in the rolling window." @@ -2184,11 +2208,15 @@ msgstr "" #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:856 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:228 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:476 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:479 msgid "Apply" msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:100 +msgid "Apply conditional color formatting to metric" +msgstr "" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:386 msgid "Apply conditional color formatting to metrics" msgstr "" @@ -2235,6 +2263,7 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:509 #: superset-frontend/src/pages/DashboardList/index.tsx:418 #: superset-frontend/src/pages/DashboardList/index.tsx:739 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:173 #: superset-frontend/src/pages/Tags/index.tsx:144 msgid "Are you sure you want to delete" msgstr "" @@ -2261,7 +2290,7 @@ msgstr "" msgid "Are you sure you want to delete the selected dashboards?" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:741 +#: superset-frontend/src/pages/DatasetList/index.tsx:763 msgid "Are you sure you want to delete the selected datasets?" msgstr "" @@ -2273,6 +2302,10 @@ msgstr "" msgid "Are you sure you want to delete the selected queries?" msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:305 +msgid "Are you sure you want to delete the selected rules?" +msgstr "" + #: superset-frontend/src/pages/Tags/index.tsx:282 msgid "Are you sure you want to delete the selected tags?" msgstr "" @@ -2281,7 +2314,7 @@ msgstr "" msgid "Are you sure you want to delete the selected templates?" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:426 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:434 msgid "Are you sure you want to overwrite this dataset?" msgstr "" @@ -2289,7 +2322,7 @@ msgstr "" msgid "Are you sure you want to proceed?" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:174 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:216 msgid "Are you sure you want to save and apply changes?" msgstr "" @@ -2328,7 +2361,7 @@ msgstr "" msgid "Assign a set of parameters as" msgstr "" -#: superset/connectors/sqla/views.py:476 +#: superset/connectors/sqla/views.py:383 msgid "Associated Charts" msgstr "" @@ -2336,9 +2369,9 @@ msgstr "" msgid "Async Execution" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:295 -#: superset-frontend/src/pages/DatabaseList/index.tsx:309 -#: superset-frontend/src/pages/DatabaseList/index.tsx:475 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:305 +#: superset-frontend/src/pages/DatabaseList/index.tsx:320 +#: superset-frontend/src/pages/DatabaseList/index.tsx:486 msgid "Asynchronous query execution" msgstr "" @@ -2355,7 +2388,7 @@ msgstr "" msgid "Auto Zoom" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:530 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 msgid "Autocomplete" msgstr "" @@ -2380,7 +2413,7 @@ msgstr "" msgid "Average" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:233 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 msgid "Average value" msgstr "" @@ -2413,10 +2446,10 @@ msgstr "" msgid "BOOLEAN" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:366 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1051 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1068 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1088 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:373 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1123 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1143 msgid "Back" msgstr "" @@ -2426,7 +2459,7 @@ msgstr "" msgid "Back to all" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:300 +#: superset-frontend/src/pages/DatabaseList/index.tsx:311 #: superset/views/database/mixins.py:200 msgid "Backend" msgstr "" @@ -2440,7 +2473,7 @@ msgstr "" msgid "Bad formula." msgstr "" -#: superset/viz.py:2509 superset/viz.py:2545 +#: superset/viz.py:2452 superset/viz.py:2492 msgid "Bad spatial key" msgstr "" @@ -2473,6 +2506,11 @@ msgstr "" msgid "Bar orientation" msgstr "" +#: superset-frontend/src/features/rls/constants.ts:28 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:263 +msgid "Base" +msgstr "" + #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:239 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 msgid "Base layer map style" @@ -2486,12 +2524,12 @@ msgstr "" msgid "Based on granularity, number of time periods to compare against" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:228 msgid "Based on what should series be ordered on the chart and legend" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:854 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1723 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1779 msgid "Basic" msgstr "" @@ -2522,7 +2560,7 @@ msgid "Before" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:37 -#: superset/viz.py:1286 +#: superset/viz.py:1186 msgid "Big Number" msgstr "" @@ -2531,11 +2569,11 @@ msgid "Big Number Font Size" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:36 -#: superset/viz.py:1252 +#: superset/viz.py:1150 msgid "Big Number with Trendline" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 msgid "Bottom" msgstr "" @@ -2564,7 +2602,6 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:261 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:277 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:263 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:251 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:195 @@ -2583,6 +2620,24 @@ msgid "" " the axis range. It won't narrow the data's extent." msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 +msgid "" +"Bounds for the primary Y-axis. When left empty, the bounds are " +"dynamically defined based on the min/max of the data. Note that this " +"feature will only expand the axis range. It won't narrow the data's " +"extent." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:411 +msgid "" +"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" +" bounds are enabled. When left empty, the bounds are " +"dynamically defined\n" +" based on the min/max of the data. Note that this feature " +"will only expand\n" +" the axis range. It won't narrow the data's extent." +msgstr "" + #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:58 #: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/createMetadata.ts:27 @@ -2594,7 +2649,7 @@ msgid "Breakdowns" msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:32 -#: superset/viz.py:1171 +#: superset/viz.py:1065 msgid "Bubble Chart" msgstr "" @@ -2625,14 +2680,15 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:789 #: superset-frontend/src/pages/CssTemplateList/index.tsx:262 #: superset-frontend/src/pages/DashboardList/index.tsx:662 -#: superset-frontend/src/pages/DatasetList/index.tsx:596 +#: superset-frontend/src/pages/DatasetList/index.tsx:607 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 #: superset-frontend/src/pages/SavedQueryList/index.tsx:177 #: superset-frontend/src/pages/Tags/index.tsx:267 msgid "Bulk select" msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 -#: superset/viz.py:1222 +#: superset/viz.py:1118 msgid "Bullet Chart" msgstr "" @@ -2648,7 +2704,7 @@ msgstr "" msgid "Business" msgstr "" -#: superset/connectors/sqla/views.py:165 +#: superset/connectors/sqla/views.py:164 msgid "Business Data Type" msgstr "" @@ -2679,15 +2735,15 @@ msgstr "" msgid "CANCEL" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1520 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1575 msgid "CREATE DATASET" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:585 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:579 msgid "CREATE TABLE AS" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:596 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:590 msgid "CREATE VIEW AS" msgstr "" @@ -2712,7 +2768,7 @@ msgstr "" msgid "CSS Styles" msgstr "" -#: superset/initialization/__init__.py:286 superset/views/css_templates.py:38 +#: superset/initialization/__init__.py:288 superset/views/css_templates.py:38 msgid "CSS Templates" msgstr "" @@ -2745,26 +2801,26 @@ msgstr "" msgid "CSV Upload" msgstr "" -#: superset/views/database/views.py:287 +#: superset/views/database/views.py:290 #, python-format msgid "" "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " "database \"%(db_name)s\"" msgstr "" -#: superset/views/database/views.py:160 +#: superset/views/database/views.py:161 msgid "CSV to Database configuration" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:344 +#: superset-frontend/src/pages/DatabaseList/index.tsx:355 msgid "CSV upload" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:130 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 msgid "CTAS & CVAS SCHEMA" msgstr "" -#: superset/sql_lab.py:440 +#: superset/sql_lab.py:432 msgid "" "CTAS (create table as select) can only be run with a query where the last" " statement is a SELECT. Please make sure your query has a SELECT as its " @@ -2775,7 +2831,7 @@ msgstr "" msgid "CTAS Schema" msgstr "" -#: superset/sql_lab.py:457 +#: superset/sql_lab.py:449 msgid "" "CVAS (create view as select) can only be run with a query with a single " "SELECT statement. Please make sure your query has only a SELECT " @@ -2790,7 +2846,7 @@ msgstr "" msgid "CVAS (create view as select) query is not a SELECT statement." msgstr "" -#: superset/connectors/sqla/views.py:486 superset/views/chart/mixin.py:76 +#: superset/connectors/sqla/views.py:393 superset/views/chart/mixin.py:76 msgid "Cache Timeout" msgstr "" @@ -2808,16 +2864,16 @@ msgstr "" msgid "Cached" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:349 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:351 #, python-format msgid "Cached %s" msgstr "" -#: superset/viz.py:562 +#: superset/viz.py:578 msgid "Cached value not found" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:53 msgid "Calculate contribution per series or row" msgstr "" @@ -2839,7 +2895,7 @@ msgid "Calculation type" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 -#: superset/viz.py:1080 +#: superset/viz.py:972 msgid "Calendar Heatmap" msgstr "" @@ -2852,17 +2908,17 @@ msgstr "" msgid "Can select multiple values" msgstr "" -#: superset/viz.py:1810 +#: superset/viz.py:1727 msgid "Can't have overlap between Series and Breakdowns" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:206 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:759 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:263 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:185 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 -#: superset-frontend/src/components/Modal/Modal.tsx:262 -#: superset-frontend/src/components/ReportModal/index.tsx:220 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:205 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:753 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:227 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:268 +#: superset-frontend/src/components/Modal/Modal.tsx:269 +#: superset-frontend/src/components/ReportModal/index.tsx:219 #: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:72 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:649 #: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 @@ -2870,14 +2926,14 @@ msgstr "" #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:76 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 -#: superset-frontend/src/explore/components/SaveModal.tsx:379 +#: superset-frontend/src/explore/components/SaveModal.tsx:413 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:843 #: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 #: superset/templates/superset/request_access.html:34 msgid "Cancel" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:314 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 msgid "Cancel query on window unload event" msgstr "" @@ -2893,7 +2949,7 @@ msgstr "" msgid "Cannot have multiple credentials for the SSH Tunnel" msgstr "" -#: superset/views/core.py:723 +#: superset/views/core.py:734 #, python-format msgid "" "Cannot import dashboard: %(db_error)s.\n" @@ -2957,7 +3013,7 @@ msgstr "" msgid "Category and Value" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:229 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:67 msgid "Category name" msgstr "" @@ -2971,15 +3027,15 @@ msgstr "" msgid "Category, Value and Percentage" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:103 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 msgid "Cell Padding" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:117 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 msgid "Cell Radius" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 msgid "Cell Size" msgstr "" @@ -2987,7 +3043,7 @@ msgstr "" msgid "Cell bars" msgstr "" -#: superset-frontend/src/components/FilterableTable/index.tsx:431 +#: superset-frontend/src/components/FilterableTable/index.tsx:303 msgid "Cell content" msgstr "" @@ -2999,6 +3055,7 @@ msgstr "" msgid "Center" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:33 msgid "Centroid (Longitude and Latitude): " msgstr "" @@ -3020,7 +3077,7 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:699 #: superset-frontend/src/pages/DashboardList/index.tsx:580 -#: superset-frontend/src/pages/DatasetList/index.tsx:564 +#: superset-frontend/src/pages/DatasetList/index.tsx:575 msgid "Certified" msgstr "" @@ -3051,7 +3108,7 @@ msgstr "" msgid "Change order of rows." msgstr "" -#: superset/connectors/sqla/views.py:478 +#: superset/connectors/sqla/views.py:385 msgid "Changed By" msgstr "" @@ -3098,7 +3155,7 @@ msgstr "" msgid "Changing this control takes effect instantly" msgstr "" -#: superset/datasets/commands/exceptions.py:181 +#: superset/datasets/commands/exceptions.py:198 msgid "Changing this dataset is forbidden" msgstr "" @@ -3115,14 +3172,15 @@ msgstr "" msgid "Changing this report is forbidden" msgstr "" -#: superset/views/database/forms.py:196 +#: superset/views/database/forms.py:206 msgid "Character to interpret as decimal point" msgstr "" -#: superset/views/database/forms.py:375 +#: superset/views/database/forms.py:385 msgid "Character to interpret as decimal point." msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:51 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:449 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:405 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:69 @@ -3130,11 +3188,11 @@ msgstr "" #: superset-frontend/src/features/home/RightMenu.tsx:219 #: superset-frontend/src/pages/ChartList/index.tsx:369 #: superset-frontend/src/pages/ChartList/index.tsx:799 -#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:90 +#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 msgid "Chart" msgstr "" -#: superset/views/core.py:1727 +#: superset/views/core.py:1762 #, python-format msgid "Chart %(id)s not found" msgstr "" @@ -3143,7 +3201,7 @@ msgstr "" msgid "Chart Cache Timeout" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:437 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:442 #, python-format msgid "Chart Data: %s" msgstr "" @@ -3153,7 +3211,7 @@ msgstr "" msgid "Chart ID" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:53 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:55 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:61 @@ -3175,7 +3233,7 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:59 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:131 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:107 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:74 @@ -3219,34 +3277,34 @@ msgstr "" msgid "Chart Title" msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:127 +#: superset-frontend/src/explore/actions/saveModalActions.js:121 #, python-format msgid "Chart [%s] has been overwritten" msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:124 +#: superset-frontend/src/explore/actions/saveModalActions.js:118 #, python-format msgid "Chart [%s] has been saved" msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:145 +#: superset-frontend/src/explore/actions/saveModalActions.js:139 #, python-format msgid "Chart [%s] was added to dashboard [%s]" msgstr "" -#: superset/views/core.py:1077 +#: superset/views/core.py:1099 msgid "Chart [{}] has been overwritten" msgstr "" -#: superset/views/core.py:1073 +#: superset/views/core.py:1095 msgid "Chart [{}] has been saved" msgstr "" -#: superset/views/core.py:1102 +#: superset/views/core.py:1124 msgid "Chart [{}] was added to dashboard [{}]" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:228 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:238 msgid "Chart cache timeout" msgstr "" @@ -3302,7 +3360,7 @@ msgstr "" msgid "Chart last modified by" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:320 +#: superset-frontend/src/explore/components/SaveModal.tsx:355 msgid "Chart name" msgstr "" @@ -3331,7 +3389,7 @@ msgstr "" msgid "Chart type" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:315 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 msgid "Chart type requires a dataset" msgstr "" @@ -3346,7 +3404,7 @@ msgstr "" #: superset-frontend/src/pages/Home/index.tsx:399 #: superset-frontend/src/profile/components/CreatedContent.tsx:104 #: superset-frontend/src/profile/components/Favorites.tsx:102 -#: superset/initialization/__init__.py:257 superset/views/chart/mixin.py:25 +#: superset/initialization/__init__.py:259 superset/views/chart/mixin.py:25 #: superset/views/dashboard/mixin.py:80 msgid "Charts" msgstr "" @@ -3378,7 +3436,7 @@ msgstr "" msgid "Check out this chart in dashboard:" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:474 msgid "Check out this chart: " msgstr "" @@ -3408,11 +3466,11 @@ msgstr "" msgid "Child label position" msgstr "" -#: superset/viz.py:2370 +#: superset/viz.py:2307 msgid "Choice of [Label] must be present in [Group By]" msgstr "" -#: superset/viz.py:2378 +#: superset/viz.py:2315 msgid "Choice of [Point Radius] must be present in [Group By]" msgstr "" @@ -3425,7 +3483,7 @@ msgstr "" msgid "Choose a chart or dashboard not both" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:924 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:979 msgid "Choose a database..." msgstr "" @@ -3460,15 +3518,11 @@ msgstr "" msgid "Choose a target" msgstr "" -#: superset/connectors/sqla/views.py:327 -msgid "Choose a unique name" -msgstr "" - #: superset-frontend/src/pages/ChartCreation/index.tsx:404 msgid "Choose chart type" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:745 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:739 msgid "Choose one of the available databases from the panel on the left." msgstr "" @@ -3544,7 +3598,8 @@ msgid "" "showcase a view into the underlying data or to show aggregated metrics." msgstr "" -#: superset/connectors/sqla/views.py:365 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:454 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:144 msgid "Clause" msgstr "" @@ -3556,7 +3611,7 @@ msgstr "" msgid "Clear all" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:206 +#: superset-frontend/src/components/Table/index.tsx:210 msgid "Clear all data" msgstr "" @@ -3582,19 +3637,19 @@ msgstr "" msgid "Click the lock to prevent further changes." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1955 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2012 msgid "" "Click this link to switch to an alternate form that allows you to input " "the SQLAlchemy URL for this database manually." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1771 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1827 msgid "" "Click this link to switch to an alternate form that exposes only the " "required fields needed to connect this database." msgstr "" -#: superset-frontend/src/components/Table/index.tsx:213 +#: superset-frontend/src/components/Table/index.tsx:217 msgid "Click to cancel sorting" msgstr "" @@ -3604,16 +3659,10 @@ msgstr "" #: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 #, python-format -msgid "Click to edit %s in a new tab" -msgstr "" - -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:32 -#, python-format msgid "Click to edit %s." msgstr "" #: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:33 msgid "Click to edit chart." msgstr "" @@ -3634,25 +3683,25 @@ msgstr "" msgid "Click to see difference" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:212 +#: superset-frontend/src/components/Table/index.tsx:216 msgid "Click to sort ascending" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:211 +#: superset-frontend/src/components/Table/index.tsx:215 msgid "Click to sort descending" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:83 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:132 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:52 #: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:209 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:219 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:224 #: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:786 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:408 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:414 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:339 #: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:36 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1109 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1164 msgid "Close" msgstr "" @@ -3685,15 +3734,15 @@ msgstr "" msgid "Collapse data panel" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:210 +#: superset-frontend/src/components/Table/index.tsx:214 msgid "Collapse row" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:598 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:599 msgid "Collapse tab content" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:197 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 msgid "Collapse table preview" msgstr "" @@ -3715,7 +3764,7 @@ msgstr "" msgid "Color Scheme" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:129 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 msgid "Color Steps" msgstr "" @@ -3736,8 +3785,8 @@ msgid "Color of the target location" msgstr "" #: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:214 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:218 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 #: superset-frontend/src/explore/controlPanels/sections.tsx:60 #: superset-frontend/src/explore/controls.jsx:460 msgid "Color scheme" @@ -3757,8 +3806,8 @@ msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 #: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:204 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:250 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:256 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:137 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:140 #: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 @@ -3766,7 +3815,7 @@ msgstr "" #: superset-frontend/src/filters/components/Range/controlPanel.ts:39 #: superset-frontend/src/filters/components/Select/controlPanel.ts:49 #: superset-frontend/src/filters/components/Time/controlPanel.ts:37 -#: superset/connectors/sqla/views.py:155 +#: superset/connectors/sqla/views.py:154 msgid "Column" msgstr "" @@ -3781,12 +3830,16 @@ msgstr "" msgid "Column Configuration" msgstr "" +#: superset/views/database/forms.py:144 +msgid "Column Data Types" +msgstr "" + #: superset-frontend/src/explore/components/DataTableControl/index.tsx:194 msgid "Column Formatting" msgstr "" -#: superset/views/database/forms.py:222 superset/views/database/forms.py:383 -#: superset/views/database/forms.py:474 +#: superset/views/database/forms.py:232 superset/views/database/forms.py:393 +#: superset/views/database/forms.py:484 msgid "Column Label(s)" msgstr "" @@ -3804,6 +3857,10 @@ msgstr "" msgid "Column containing longitude data" msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:69 +msgid "Column datatype" +msgstr "" + #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 msgid "Column header tooltip" msgstr "" @@ -3812,19 +3869,19 @@ msgstr "" msgid "Column is required" msgstr "" -#: superset/views/database/forms.py:384 superset/views/database/forms.py:475 +#: superset/views/database/forms.py:394 superset/views/database/forms.py:485 msgid "" "Column label for index column(s). If None is given and Dataframe Index is" " True, Index Names are used." msgstr "" -#: superset/views/database/forms.py:223 +#: superset/views/database/forms.py:233 msgid "" "Column label for index column(s). If None is given and Dataframe Index is" " checked, Index Names are used" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:77 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:90 msgid "Column name" msgstr "" @@ -3842,30 +3899,30 @@ msgstr "" msgid "Column select" msgstr "" -#: superset/views/database/forms.py:211 +#: superset/views/database/forms.py:221 msgid "" "Column to use as the row labels of the dataframe. Leave empty if no index" " column" msgstr "" -#: superset/views/database/forms.py:342 +#: superset/views/database/forms.py:352 msgid "" "Column to use as the row labels of the dataframe. Leave empty if no index" " column." msgstr "" -#: superset/views/database/forms.py:414 +#: superset/views/database/forms.py:424 msgid "Columnar File" msgstr "" -#: superset/views/database/views.py:565 +#: superset/views/database/views.py:568 #, python-format msgid "" "Columnar file \"%(columnar_filename)s\" uploaded to table " "\"%(table_name)s\" in database \"%(db_name)s\"" msgstr "" -#: superset/views/database/views.py:440 +#: superset/views/database/views.py:443 msgid "Columnar to Database configuration" msgstr "" @@ -3881,15 +3938,15 @@ msgstr "" #: superset-frontend/src/explore/controls.jsx:244 #: superset-frontend/src/explore/fixtures.tsx:97 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 -#: superset/connectors/sqla/views.py:72 +#: superset/connectors/sqla/views.py:71 msgid "Columns" msgstr "" -#: superset/views/database/forms.py:183 +#: superset/views/database/forms.py:193 msgid "Columns To Be Parsed as Dates" msgstr "" -#: superset/views/database/forms.py:231 +#: superset/views/database/forms.py:241 msgid "Columns To Read" msgstr "" @@ -3898,7 +3955,7 @@ msgstr "" msgid "Columns missing in dataset: %(invalid_columns)s" msgstr "" -#: superset/viz.py:577 +#: superset/viz.py:593 #, python-format msgid "Columns missing in datasource: %(invalid_columns)s" msgstr "" @@ -3937,10 +3994,6 @@ msgstr "" msgid "Columns to show" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:85 -msgid "Combine Metrics" -msgstr "" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:250 msgid "Combine metrics" msgstr "" @@ -3998,6 +4051,7 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:35 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:35 @@ -4042,6 +4096,10 @@ msgstr "" msgid "Condition" msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 +msgid "Conditional Formatting" +msgstr "" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:385 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:504 msgid "Conditional formatting" @@ -4095,15 +4153,15 @@ msgstr "" msgid "Confirm overwrite" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:180 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:222 msgid "Confirm save" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1059 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1097 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1656 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1695 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1857 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1152 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1712 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 msgid "Connect" msgstr "" @@ -4115,9 +4173,9 @@ msgstr "" msgid "Connect Google Sheets as tables to this database" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1660 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1700 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1861 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1716 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1918 msgid "Connect a database" msgstr "" @@ -4125,24 +4183,24 @@ msgstr "" msgid "Connect database" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1768 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 msgid "Connect this database using the dynamic form instead" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1950 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2007 msgid "Connect this database with a SQLAlchemy URI string instead" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:225 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 msgid "Connection" msgstr "" #: superset/databases/commands/exceptions.py:107 -#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1430 +#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1471 msgid "Connection failed, please check your connection settings" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:697 +#: superset-frontend/src/views/CRUD/hooks.ts:701 msgid "Connection looks good!" msgstr "" @@ -4166,7 +4224,7 @@ msgstr "" msgid "Contribution" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:42 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 msgid "Contribution Mode" msgstr "" @@ -4218,8 +4276,8 @@ msgstr "" msgid "Copy message" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:683 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1469 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:679 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1461 #: superset-frontend/src/SqlLab/reducers/sqlLab.js:107 #, python-format msgid "Copy of %s" @@ -4230,7 +4288,7 @@ msgid "Copy partition query to clipboard" msgstr "" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:329 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:468 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:340 msgid "Copy permalink to clipboard" msgstr "" @@ -4255,7 +4313,7 @@ msgstr "" msgid "Copy the name of the database you are trying to connect to." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:273 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:271 msgid "Copy to Clipboard" msgstr "" @@ -4275,7 +4333,12 @@ msgstr "" msgid "Cost estimate" msgstr "" -#: superset/views/utils.py:498 +#: superset/db_engine_specs/ocient.py:259 +#, python-format +msgid "Could not connect to database: \"%(database)s\"" +msgstr "" + +#: superset/views/utils.py:496 msgid "Could not determine datasource type" msgstr "" @@ -4284,7 +4347,7 @@ msgstr "" msgid "Could not fetch all saved charts" msgstr "" -#: superset/views/utils.py:514 +#: superset/views/utils.py:512 msgid "Could not find viz object" msgstr "" @@ -4292,7 +4355,7 @@ msgstr "" msgid "Could not load database driver" msgstr "" -#: superset/views/core.py:1413 +#: superset/views/core.py:1454 #, python-format msgid "Could not load database driver: %(driver_name)s" msgstr "" @@ -4301,6 +4364,11 @@ msgstr "" msgid "Could not load database driver: {}" msgstr "" +#: superset/db_engine_specs/ocient.py:264 +#, python-format +msgid "Could not resolve hostname: \"%(host)s\"." +msgstr "" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 msgid "Count" msgstr "" @@ -4340,12 +4408,12 @@ msgid "Country Field Type" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 -#: superset/viz.py:2044 +#: superset/viz.py:1969 msgid "Country Map" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:767 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:761 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:770 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:96 msgid "Create" msgstr "" @@ -4355,10 +4423,10 @@ msgid "Create Chart" msgstr "" #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:331 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:321 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:332 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:356 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:327 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:338 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:362 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 #, fuzzy msgid "Create a dataset" @@ -4402,7 +4470,7 @@ msgstr "" msgid "Create new filter set" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 msgid "Create or select schema..." msgstr "" @@ -4425,7 +4493,7 @@ msgstr "" #: superset-frontend/src/pages/CssTemplateList/index.tsx:273 #: superset-frontend/src/pages/DashboardList/index.tsx:358 #: superset-frontend/src/pages/DashboardList/index.tsx:545 -#: superset-frontend/src/pages/DatabaseList/index.tsx:365 +#: superset-frontend/src/pages/DatabaseList/index.tsx:376 #: superset-frontend/src/pages/Tags/index.tsx:128 #: superset-frontend/src/pages/Tags/index.tsx:183 msgid "Created by" @@ -4454,9 +4522,8 @@ msgstr "" msgid "Creating a data source and creating a new tab" msgstr "" -#: superset/connectors/sqla/views.py:366 superset/views/chart/mixin.py:77 -#: superset/views/dashboard/mixin.py:84 superset/views/dashboard/views.py:185 -#: superset/views/database/mixins.py:189 +#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 +#: superset/views/dashboard/views.py:185 superset/views/database/mixins.py:189 msgid "Creator" msgstr "" @@ -4464,14 +4531,24 @@ msgstr "" msgid "Crimson" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:122 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:152 msgid "Cross-filter will be applied to all of the charts that use this dataset." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:134 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:164 msgid "Cross-filtering is not enabled for this dashboard." msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 +msgid "Cross-filtering is not enabled in this dashboard" +msgstr "" + +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:414 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 +msgid "Cross-filtering scoping" +msgstr "" + #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 msgid "Cross-filters" msgstr "" @@ -4497,7 +4574,7 @@ msgstr "" msgid "Custom Plugins" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:385 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:391 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 @@ -4508,8 +4585,7 @@ msgstr "" msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" msgstr "" -#: superset/connectors/sqla/utils.py:194 superset/errors.py:145 -#: superset/models/helpers.py:129 superset/models/helpers.py:864 +#: superset/errors.py:145 superset/models/helpers.py:138 msgid "Custom SQL fields cannot contain sub-queries." msgstr "" @@ -4533,7 +4609,7 @@ msgstr "" msgid "Cyclic dependency detected" msgstr "" -#: superset/connectors/sqla/views.py:256 +#: superset/connectors/sqla/views.py:255 msgid "D3 Format" msgstr "" @@ -4543,7 +4619,7 @@ msgstr "" msgid "D3 format" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:22 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:146 msgid "D3 format syntax: https://github.com/d3/d3-format" msgstr "" @@ -4559,7 +4635,7 @@ msgstr "" msgid "D3 time format for datetime columns" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:53 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 msgid "D3 time format syntax: https://github.com/d3/d3-time-format" msgstr "" @@ -4581,7 +4657,7 @@ msgstr "" msgid "DELETE" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:332 +#: superset-frontend/src/pages/DatabaseList/index.tsx:343 msgid "DML" msgstr "" @@ -4610,12 +4686,12 @@ msgstr "" msgid "Dashboard" msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:135 +#: superset-frontend/src/explore/actions/saveModalActions.js:129 #, python-format msgid "Dashboard [%s] just got created and chart [%s] was added to it" msgstr "" -#: superset/views/core.py:1122 +#: superset/views/core.py:1144 msgid "Dashboard [{}] just got created and chart [{}] was added to it" msgstr "" @@ -4677,7 +4753,7 @@ msgstr "" #: superset-frontend/src/pages/Home/index.tsx:385 #: superset-frontend/src/profile/components/CreatedContent.tsx:101 #: superset-frontend/src/profile/components/Favorites.tsx:99 -#: superset/initialization/__init__.py:249 superset/views/chart/mixin.py:78 +#: superset/initialization/__init__.py:251 superset/views/chart/mixin.py:78 #: superset/views/dashboard/mixin.py:24 msgid "Dashboards" msgstr "" @@ -4701,7 +4777,7 @@ msgstr "" #: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:708 #: superset-frontend/src/features/home/RightMenu.tsx:169 -#: superset/initialization/__init__.py:244 +#: superset/initialization/__init__.py:246 msgid "Data" msgstr "" @@ -4709,7 +4785,7 @@ msgstr "" msgid "Data Table" msgstr "" -#: superset/datasets/commands/exceptions.py:197 +#: superset/datasets/commands/exceptions.py:214 msgid "Data URI is not allowed." msgstr "" @@ -4723,14 +4799,14 @@ msgstr "" msgid "Data Zoom" msgstr "" -#: superset/sqllab/commands/results.py:116 superset/views/core.py:2195 +#: superset/sqllab/commands/results.py:116 superset/views/core.py:2231 msgid "" "Data could not be deserialized from the results backend. The storage " "format might have changed, rendering the old data stake. You need to re-" "run the original query." msgstr "" -#: superset/sqllab/commands/results.py:75 superset/views/core.py:2148 +#: superset/sqllab/commands/results.py:75 superset/views/core.py:2184 msgid "" "Data could not be retrieved from the results backend. You need to re-run " "the original query." @@ -4744,7 +4820,7 @@ msgstr "" msgid "Data preview" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:283 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:278 msgid "Data refreshed" msgstr "" @@ -4763,50 +4839,50 @@ msgstr "" msgid "DataFrame must include temporal column" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:275 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:274 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -#: superset-frontend/src/pages/DatabaseList/index.tsx:267 -#: superset-frontend/src/pages/DatabaseList/index.tsx:296 -#: superset-frontend/src/pages/DatasetList/index.tsx:349 -#: superset-frontend/src/pages/DatasetList/index.tsx:520 +#: superset-frontend/src/pages/DatabaseList/index.tsx:278 +#: superset-frontend/src/pages/DatabaseList/index.tsx:307 +#: superset-frontend/src/pages/DatasetList/index.tsx:360 +#: superset-frontend/src/pages/DatasetList/index.tsx:531 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:241 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:349 #: superset-frontend/src/pages/SavedQueryList/index.tsx:287 #: superset-frontend/src/pages/SavedQueryList/index.tsx:448 -#: superset/connectors/sqla/views.py:479 superset/connectors/sqla/views.py:480 +#: superset/connectors/sqla/views.py:386 superset/connectors/sqla/views.py:387 #: superset/templates/superset/import_dashboards.html:53 -#: superset/views/database/forms.py:137 superset/views/database/forms.py:305 -#: superset/views/database/forms.py:436 superset/views/database/mixins.py:188 +#: superset/views/database/forms.py:137 superset/views/database/forms.py:315 +#: superset/views/database/forms.py:446 superset/views/database/mixins.py:188 #: superset/views/sql_lab/views.py:83 msgid "Database" msgstr "" -#: superset/views/database/views.py:478 +#: superset/views/database/views.py:481 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " "for columnar uploads. Please contact your Superset Admin." msgstr "" -#: superset/views/database/views.py:179 +#: superset/views/database/views.py:180 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " "for csv uploads. Please contact your Superset Admin." msgstr "" -#: superset/views/database/views.py:318 +#: superset/views/database/views.py:321 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " "for excel uploads. Please contact your Superset Admin." msgstr "" -#: superset/initialization/__init__.py:241 +#: superset/initialization/__init__.py:243 msgid "Database Connections" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1467 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1522 msgid "Database Creation Error" msgstr "" @@ -4815,9 +4891,9 @@ msgid "Database URL" msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:827 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:849 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1150 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:882 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:904 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1205 msgid "Database connected" msgstr "" @@ -4843,7 +4919,7 @@ msgstr "" msgid "Database does not exist" msgstr "" -#: superset/connectors/sqla/models.py:1793 superset/models/helpers.py:1966 +#: superset/models/helpers.py:2063 msgid "Database does not support subqueries" msgstr "" @@ -4853,7 +4929,7 @@ msgid "" "documentation page for installation instructions: " msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:429 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 msgid "Database error" msgstr "" @@ -4866,8 +4942,8 @@ msgid "Database is required for alerts" msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:113 -#: superset/db_engine_specs/base.py:1845 -#: superset/db_engine_specs/clickhouse.py:209 +#: superset/db_engine_specs/base.py:1880 +#: superset/db_engine_specs/clickhouse.py:212 msgid "Database name" msgstr "" @@ -4879,7 +4955,7 @@ msgstr "" msgid "Database not found." msgstr "" -#: superset/views/core.py:1179 +#: superset/views/core.py:1201 #, python-format msgid "Database not found: %(id)s" msgstr "" @@ -4892,24 +4968,24 @@ msgstr "" msgid "Database passwords" msgstr "" -#: superset/db_engine_specs/base.py:1842 -#: superset/db_engine_specs/clickhouse.py:206 +#: superset/db_engine_specs/base.py:1876 +#: superset/db_engine_specs/clickhouse.py:208 #: superset/db_engine_specs/databricks.py:52 msgid "Database port" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:811 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:853 msgid "Database settings updated" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:258 +#: superset-frontend/src/pages/DatabaseList/index.tsx:269 #: superset-frontend/src/profile/components/Security.tsx:47 #: superset/views/database/mixins.py:33 msgid "Databases" msgstr "" -#: superset/views/database/forms.py:219 superset/views/database/forms.py:380 -#: superset/views/database/forms.py:471 +#: superset/views/database/forms.py:229 superset/views/database/forms.py:390 +#: superset/views/database/forms.py:481 msgid "Dataframe Index" msgstr "" @@ -4921,7 +4997,7 @@ msgstr "" #: superset-frontend/src/pages/ChartCreation/index.tsx:390 #: superset-frontend/src/pages/ChartList/index.tsx:391 #: superset-frontend/src/pages/ChartList/index.tsx:678 -#: superset-frontend/src/pages/DatasetList/index.tsx:606 +#: superset-frontend/src/pages/DatasetList/index.tsx:617 msgid "Dataset" msgstr "" @@ -4930,7 +5006,7 @@ msgstr "" msgid "Dataset %(name)s already exists" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:331 +#: superset-frontend/src/explore/components/SaveModal.tsx:366 msgid "Dataset Name" msgstr "" @@ -4942,28 +5018,28 @@ msgstr "" msgid "Dataset column not found." msgstr "" -#: superset/datasets/commands/exceptions.py:157 +#: superset/datasets/commands/exceptions.py:174 msgid "Dataset could not be created." msgstr "" -#: superset/datasets/commands/exceptions.py:165 +#: superset/datasets/commands/exceptions.py:182 msgid "Dataset could not be deleted." msgstr "" -#: superset/datasets/commands/exceptions.py:193 +#: superset/datasets/commands/exceptions.py:210 msgid "Dataset could not be duplicated." msgstr "" -#: superset/datasets/commands/exceptions.py:161 -#: superset/datasets/commands/exceptions.py:173 +#: superset/datasets/commands/exceptions.py:178 +#: superset/datasets/commands/exceptions.py:190 msgid "Dataset could not be updated." msgstr "" -#: superset/datasets/commands/exceptions.py:149 +#: superset/datasets/commands/exceptions.py:166 msgid "Dataset does not exist" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:185 +#: superset-frontend/src/pages/DatasetList/index.tsx:196 msgid "Dataset imported" msgstr "" @@ -4984,22 +5060,22 @@ msgstr "" msgid "Dataset name" msgstr "" -#: superset/datasets/commands/exceptions.py:153 +#: superset/datasets/commands/exceptions.py:170 msgid "Dataset parameters are invalid." msgstr "" -#: superset/dashboards/api.py:430 +#: superset/dashboards/api.py:415 #, python-format msgid "Dataset schema is invalid, caused by: %(error)s" msgstr "" -#: superset/datasets/commands/exceptions.py:169 +#: superset/datasets/commands/exceptions.py:186 msgid "Dataset(s) could not be bulk deleted." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:589 +#: superset-frontend/src/pages/DatasetList/index.tsx:600 #: superset-frontend/src/profile/components/Security.tsx:61 -#: superset/initialization/__init__.py:265 +#: superset/initialization/__init__.py:267 msgid "Datasets" msgstr "" @@ -5022,11 +5098,11 @@ msgstr "" msgid "Datasource & Chart Type" msgstr "" -#: superset/commands/exceptions.py:131 +#: superset/commands/exceptions.py:135 msgid "Datasource does not exist" msgstr "" -#: superset/commands/exceptions.py:123 +#: superset/commands/exceptions.py:127 msgid "Datasource type is invalid" msgstr "" @@ -5043,8 +5119,7 @@ msgstr "" msgid "Date filter" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:71 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:151 #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:135 @@ -5064,11 +5139,11 @@ msgstr "" msgid "Date/Time" msgstr "" -#: superset/connectors/sqla/views.py:163 +#: superset/connectors/sqla/views.py:162 msgid "Datetime Format" msgstr "" -#: superset/connectors/sqla/models.py:1237 superset/models/helpers.py:1427 +#: superset/models/helpers.py:1502 msgid "" "Datetime column not provided as part table configuration and is required " "by this type of chart" @@ -5078,7 +5153,7 @@ msgstr "" msgid "Datetime format" msgstr "" -#: superset/db_engine_specs/base.py:106 +#: superset/db_engine_specs/base.py:107 msgid "Day" msgstr "" @@ -5091,7 +5166,7 @@ msgstr "" msgid "Days %s" msgstr "" -#: superset/connectors/sqla/models.py:1936 superset/models/helpers.py:988 +#: superset/connectors/sqla/models.py:1222 superset/models/helpers.py:1024 msgid "Db engine did not return all queried columns" msgstr "" @@ -5103,47 +5178,55 @@ msgstr "" msgid "December" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:70 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:89 msgid "Decides which column to sort the base axis by." msgstr "" -#: superset/views/database/forms.py:194 superset/views/database/forms.py:373 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:160 +msgid "Decides which measure to sort the base axis by." +msgstr "" + +#: superset/views/database/forms.py:204 superset/views/database/forms.py:383 msgid "Decimal Character" msgstr "" -#: superset/viz.py:2743 +#: superset/viz.py:2700 msgid "Deck.gl - 3D Grid" msgstr "" -#: superset/viz.py:2859 +#: superset/viz.py:2825 msgid "Deck.gl - 3D HEX" msgstr "" -#: superset/viz.py:2899 +#: superset/viz.py:2890 msgid "Deck.gl - Arc" msgstr "" -#: superset/viz.py:2880 +#: superset/viz.py:2869 msgid "Deck.gl - GeoJSON" msgstr "" -#: superset/viz.py:2468 +#: superset/viz.py:2848 +msgid "Deck.gl - Heatmap" +msgstr "" + +#: superset/viz.py:2406 msgid "Deck.gl - Multiple Layers" msgstr "" -#: superset/viz.py:2775 +#: superset/viz.py:2735 msgid "Deck.gl - Paths" msgstr "" -#: superset/viz.py:2826 +#: superset/viz.py:2789 msgid "Deck.gl - Polygon" msgstr "" -#: superset/viz.py:2662 +#: superset/viz.py:2612 msgid "Deck.gl - Scatter plot" msgstr "" -#: superset/viz.py:2714 +#: superset/viz.py:2668 msgid "Deck.gl - Screen Grid" msgstr "" @@ -5151,7 +5234,7 @@ msgstr "" msgid "Default" msgstr "" -#: superset/connectors/sqla/views.py:484 +#: superset/connectors/sqla/views.py:391 msgid "Default Endpoint" msgstr "" @@ -5280,11 +5363,13 @@ msgstr "" #: superset-frontend/src/pages/CssTemplateList/index.tsx:338 #: superset-frontend/src/pages/DashboardList/index.tsx:427 #: superset-frontend/src/pages/DashboardList/index.tsx:712 -#: superset-frontend/src/pages/DatasetList/index.tsx:418 -#: superset-frontend/src/pages/DatasetList/index.tsx:751 +#: superset-frontend/src/pages/DatasetList/index.tsx:429 +#: superset-frontend/src/pages/DatasetList/index.tsx:773 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:182 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:313 #: superset-frontend/src/pages/SavedQueryList/index.tsx:542 #: superset-frontend/src/pages/Tags/index.tsx:153 -#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:663 +#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:664 msgid "Delete" msgstr "" @@ -5297,11 +5382,11 @@ msgstr "" msgid "Delete Annotation?" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:529 +#: superset-frontend/src/pages/DatabaseList/index.tsx:551 msgid "Delete Database?" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:723 +#: superset-frontend/src/pages/DatasetList/index.tsx:745 msgid "Delete Dataset?" msgstr "" @@ -5322,7 +5407,7 @@ msgstr "" msgid "Delete Template?" msgstr "" -#: superset/views/base.py:663 +#: superset/views/base.py:664 msgid "Delete all Really?" msgstr "" @@ -5334,7 +5419,7 @@ msgstr "" msgid "Delete dashboard tab?" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:405 +#: superset-frontend/src/pages/DatabaseList/index.tsx:416 msgid "Delete database" msgstr "" @@ -5356,6 +5441,10 @@ msgstr "" msgid "Delete this container and save to remove this message." msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:108 +msgid "Deleted" +msgstr "" + #: superset/annotation_layers/annotations/api.py:504 #, python-format msgid "Deleted %(num)d annotation" @@ -5370,7 +5459,7 @@ msgid_plural "Deleted %(num)d annotation layers" msgstr[0] "" msgstr[1] "" -#: superset/charts/api.py:524 +#: superset/charts/api.py:521 #, python-format msgid "Deleted %(num)d chart" msgid_plural "Deleted %(num)d charts" @@ -5384,14 +5473,14 @@ msgid_plural "Deleted %(num)d css templates" msgstr[0] "" msgstr[1] "" -#: superset/dashboards/api.py:760 +#: superset/dashboards/api.py:745 #, python-format msgid "Deleted %(num)d dashboard" msgid_plural "Deleted %(num)d dashboards" msgstr[0] "" msgstr[1] "" -#: superset/datasets/api.py:783 +#: superset/datasets/api.py:789 #, python-format msgid "Deleted %(num)d dataset" msgid_plural "Deleted %(num)d datasets" @@ -5405,6 +5494,13 @@ msgid_plural "Deleted %(num)d report schedules" msgstr[0] "" msgstr[1] "" +#: superset/row_level_security/api.py:349 +#, fuzzy, python-format +msgid "Deleted %(num)d rules" +msgid_plural "Deleted %(num)d rules" +msgstr[0] "" +msgstr[1] "" + #: superset/queries/saved_queries/api.py:222 #, python-format msgid "Deleted %(num)d saved query" @@ -5412,13 +5508,18 @@ msgid_plural "Deleted %(num)d saved queries" msgstr[0] "" msgstr[1] "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:94 +#, python-format +msgid "Deleted %s" +msgstr "" + #: superset-frontend/src/features/home/SavedQueries.tsx:172 #: superset-frontend/src/pages/AlertReportList/index.tsx:183 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 #: superset-frontend/src/pages/AnnotationList/index.tsx:117 #: superset-frontend/src/pages/CssTemplateList/index.tsx:93 -#: superset-frontend/src/pages/DatabaseList/index.tsx:158 -#: superset-frontend/src/pages/DatasetList/index.tsx:653 +#: superset-frontend/src/pages/DatabaseList/index.tsx:169 +#: superset-frontend/src/pages/DatasetList/index.tsx:664 #: superset-frontend/src/pages/SavedQueryList/index.tsx:242 #: superset-frontend/src/reports/actions/reports.js:158 #: superset-frontend/src/views/CRUD/utils.tsx:272 @@ -5437,7 +5538,7 @@ msgstr "" msgid "Delimited long & lat single column" msgstr "" -#: superset/views/database/forms.py:150 +#: superset/views/database/forms.py:160 msgid "Delimiter" msgstr "" @@ -5464,32 +5565,34 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:40 +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 msgid "Deprecated" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:83 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:114 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:96 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:127 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:55 #: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:157 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:156 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:265 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1206 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1210 -#: superset-frontend/src/components/ReportModal/index.tsx:294 +#: superset-frontend/src/components/ReportModal/index.tsx:293 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1158 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:465 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 #: superset-frontend/src/pages/AnnotationList/index.tsx:161 -#: superset/connectors/sqla/views.py:157 superset/connectors/sqla/views.py:251 -#: superset/connectors/sqla/views.py:362 superset/connectors/sqla/views.py:491 -#: superset/views/chart/mixin.py:80 superset/views/sql_lab/views.py:84 +#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:398 superset/views/chart/mixin.py:80 +#: superset/views/sql_lab/views.py:84 msgid "Description" msgstr "" @@ -5502,7 +5605,7 @@ msgstr "" msgid "Description Columns" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:50 msgid "Description text that shows up below your Big Number" msgstr "" @@ -5568,7 +5671,7 @@ msgstr "" msgid "Dimensions" msgstr "" -#: superset/viz.py:2005 +#: superset/viz.py:1928 msgid "Directed Force Layout" msgstr "" @@ -5578,11 +5681,11 @@ msgstr "" msgid "Directional" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:202 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 msgid "Disable SQL Lab data preview queries" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:205 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 msgid "" "Disable data preview when fetching table metadata in SQL Lab. Useful to " "avoid browser performance issues when using databases with very wide " @@ -5621,7 +5724,6 @@ msgstr "" msgid "Display configuration" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:87 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:252 msgid "" "Display metrics side by side within each column, as opposed to each " @@ -5632,14 +5734,10 @@ msgstr "" msgid "Display row level total" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:39 msgid "Display settings" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:78 -msgid "Display total row/column" -msgstr "" - #: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:35 msgid "" "Displays connections between entities in a graph structure. Useful for " @@ -5659,7 +5757,7 @@ msgstr "" msgid "Distribution" msgstr "" -#: superset/viz.py:1801 +#: superset/viz.py:1717 msgid "Distribution - Bar Chart" msgstr "" @@ -5677,7 +5775,7 @@ msgstr "" msgid "Documentation" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:40 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 msgid "Domain" msgstr "" @@ -5690,18 +5788,18 @@ msgstr "" msgid "Dotted" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:480 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:482 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:292 msgid "Download" msgstr "" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:317 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:504 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:512 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:329 msgid "Download as image" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:264 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:262 msgid "Download to CSV" msgstr "" @@ -5753,20 +5851,20 @@ msgstr "" msgid "Draw split lines for minor y-axis ticks" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:181 -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:191 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 msgid "Drill by" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:172 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 msgid "Drill by is not available for this data point" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:170 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 msgid "Drill by is not yet supported for this chart type" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:154 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:420 #, python-format msgid "Drill by: %s" msgstr "" @@ -5795,64 +5893,38 @@ msgstr "" msgid "Drill to detail: %s" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:206 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:184 #, fuzzy msgid "Drop a column here or click" msgid_plural "Drop columns here or click" msgstr[0] "" msgstr[1] "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:335 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:330 #, fuzzy msgid "Drop a column/metric here or click" msgid_plural "Drop columns/metrics here or click" msgstr[0] "" msgstr[1] "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:248 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 msgid "Drop a temporal column here or click" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:216 -#, fuzzy -msgid "Drop column here" -msgid_plural "Drop columns here" -msgstr[0] "" -msgstr[1] "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:340 -#, fuzzy -msgid "Drop column or metric here" -msgid_plural "Drop columns or metrics here" -msgstr[0] "" -msgstr[1] "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndSelectLabel.tsx:83 -msgid "Drop columns here" -msgstr "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:402 -msgid "Drop columns or metrics here" -msgstr "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:401 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:405 msgid "Drop columns/metrics here or click" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 -msgid "Drop temporal column here" -msgstr "" - #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:32 msgid "Dual Line Chart" msgstr "" #: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 -#: superset-frontend/src/pages/DatasetList/index.tsx:472 +#: superset-frontend/src/pages/DatasetList/index.tsx:483 msgid "Duplicate" msgstr "" -#: superset/views/datasource/views.py:122 +#: superset/views/datasource/views.py:124 #, python-format msgid "Duplicate column name(s): %(columns)s" msgstr "" @@ -5877,7 +5949,7 @@ msgstr "" msgid "Duration" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:239 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:249 msgid "" "Duration (in seconds) of the caching timeout for charts of this database." " A timeout of 0 indicates that the cache never expires, and -1 bypasses " @@ -5904,26 +5976,26 @@ msgid "" "undefined." msgstr "" -#: superset/connectors/sqla/views.py:462 +#: superset/connectors/sqla/views.py:369 msgid "" "Duration (in seconds) of the caching timeout for this table. A timeout of" " 0 indicates that the cache never expires. Note this defaults to the " "database timeout if undefined." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:261 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:271 msgid "" "Duration (in seconds) of the metadata caching timeout for schemas of this" " database. If left unset, the cache never expires." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:282 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:292 msgid "" "Duration (in seconds) of the metadata caching timeout for tables of this " "database. If left unset, the cache never expires. " msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:50 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" msgstr "" @@ -5931,7 +6003,7 @@ msgstr "" msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:49 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 #: superset-frontend/src/explore/controls.jsx:89 msgid "Duration in ms (66000 => 1m 6s)" msgstr "" @@ -5969,7 +6041,7 @@ msgstr "" msgid "ECharts" msgstr "" -#: superset/reports/notifications/email.py:130 +#: superset/reports/notifications/email.py:133 msgid "EMAIL_REPORTS_CTA" msgstr "" @@ -5979,11 +6051,11 @@ msgstr "" msgid "END (EXCLUSIVE)" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:171 +#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 msgid "ERROR" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:700 +#: superset-frontend/src/views/CRUD/hooks.ts:704 #, python-format msgid "ERROR: %s" msgstr "" @@ -6014,8 +6086,9 @@ msgstr "" #: superset-frontend/src/pages/AlertReportList/index.tsx:385 #: superset-frontend/src/pages/ChartList/index.tsx:553 #: superset-frontend/src/pages/DashboardList/index.tsx:461 -#: superset-frontend/src/pages/DatabaseList/index.tsx:431 -#: superset-frontend/src/pages/DatasetList/index.tsx:452 +#: superset-frontend/src/pages/DatabaseList/index.tsx:442 +#: superset-frontend/src/pages/DatasetList/index.tsx:463 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:200 msgid "Edit" msgstr "" @@ -6043,7 +6116,7 @@ msgstr "" msgid "Edit Chart Properties" msgstr "" -#: superset/connectors/sqla/views.py:75 +#: superset/connectors/sqla/views.py:74 msgid "Edit Column" msgstr "" @@ -6055,7 +6128,7 @@ msgstr "" msgid "Edit Database" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:199 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:241 msgid "Edit Dataset " msgstr "" @@ -6063,7 +6136,7 @@ msgstr "" msgid "Edit Log" msgstr "" -#: superset/connectors/sqla/views.py:210 +#: superset/connectors/sqla/views.py:209 msgid "Edit Metric" msgstr "" @@ -6075,15 +6148,15 @@ msgstr "" msgid "Edit Report" msgstr "" -#: superset/connectors/sqla/views.py:293 -msgid "Edit Row level security filter" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +msgid "Edit Rule" msgstr "" #: superset/views/sql_lab/views.py:55 msgid "Edit Saved Query" msgstr "" -#: superset/connectors/sqla/views.py:387 +#: superset/connectors/sqla/views.py:294 msgid "Edit Table" msgstr "" @@ -6100,9 +6173,9 @@ msgstr "" msgid "Edit annotation layer properties" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:74 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:122 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:44 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:212 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:217 #: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:405 msgid "Edit chart" msgstr "" @@ -6117,7 +6190,7 @@ msgstr "" msgid "Edit dashboard" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1700 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 msgid "Edit database" msgstr "" @@ -6127,7 +6200,7 @@ msgstr "" #: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:243 #: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:264 -#: superset-frontend/src/components/ReportModal/index.tsx:212 +#: superset-frontend/src/components/ReportModal/index.tsx:211 msgid "Edit email report" msgstr "" @@ -6152,7 +6225,7 @@ msgstr "" msgid "Edit template parameters" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:717 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:718 #: superset-frontend/src/dashboard/components/DashboardGrid.jsx:242 #, fuzzy msgid "Edit the dashboard" @@ -6178,8 +6251,9 @@ msgstr "" msgid "Either the database is spelled incorrectly or does not exist." msgstr "" -#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:654 -#: superset/db_engine_specs/redshift.py:67 +#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:681 +#: superset/db_engine_specs/redshift.py:71 +#: superset/db_engine_specs/starrocks.py:122 #, python-format msgid "Either the username \"%(username)s\" or the password is incorrect." msgstr "" @@ -6246,11 +6320,11 @@ msgstr "" msgid "Empty column" msgstr "" -#: superset/charts/data/api.py:363 +#: superset/charts/data/api.py:366 msgid "Empty query result" msgstr "" -#: superset/connectors/sqla/models.py:1243 superset/models/helpers.py:1433 +#: superset/models/helpers.py:1508 msgid "Empty query?" msgstr "" @@ -6263,11 +6337,11 @@ msgstr "" msgid "Enable 'Allow file uploads to database' in any database's settings" msgstr "" -#: superset/connectors/sqla/views.py:482 +#: superset/connectors/sqla/views.py:389 msgid "Enable Filter Select" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:139 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 msgid "Enable cross-filtering" msgstr "" @@ -6302,7 +6376,7 @@ msgstr "" msgid "Enable node dragging" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:170 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 msgid "Enable query cost estimation" msgstr "" @@ -6311,7 +6385,7 @@ msgstr "" msgid "Enable server side pagination of results (experimental feature)" msgstr "" -#: superset/viz.py:2567 +#: superset/viz.py:2514 msgid "" "Encountered invalid NULL spatial entry," " please consider filtering those " @@ -6358,18 +6432,18 @@ msgstr "" msgid "Engine \"%(engine)s\" cannot be configured through parameters." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:476 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:512 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:516 msgid "Engine Parameters" msgstr "" -#: superset/databases/schemas.py:298 +#: superset/databases/schemas.py:302 msgid "" "Engine spec \"InvalidEngine\" does not support being configured via " "individual parameters." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:366 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:376 msgid "Enter CA_BUNDLE" msgstr "" @@ -6377,7 +6451,7 @@ msgstr "" msgid "Enter Primary Credentials" msgstr "" -#: superset/views/database/forms.py:151 +#: superset/views/database/forms.py:161 msgid "Enter a delimiter for this data" msgstr "" @@ -6389,14 +6463,14 @@ msgstr "" msgid "Enter a new title for the tab" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:234 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:255 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:276 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:244 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:286 msgid "Enter duration in seconds" msgstr "" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:265 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:367 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:369 msgid "Enter fullscreen" msgstr "" @@ -6423,7 +6497,7 @@ msgstr "" msgid "Equal to (=)" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:140 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:182 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:139 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:298 #: superset-frontend/src/explore/components/EmbedCodeContent.jsx:57 @@ -6432,22 +6506,22 @@ msgstr "" msgid "Error" msgstr "" -#: superset/connectors/sqla/models.py:1650 superset/models/helpers.py:1843 +#: superset/models/helpers.py:1919 #, python-format msgid "Error in jinja expression in HAVING clause: %(msg)s" msgstr "" -#: superset/connectors/sqla/models.py:1145 +#: superset/connectors/sqla/models.py:1105 superset/models/helpers.py:835 #, python-format msgid "Error in jinja expression in RLS filters: %(msg)s" msgstr "" -#: superset/connectors/sqla/models.py:1633 superset/models/helpers.py:1831 +#: superset/models/helpers.py:1901 #, python-format msgid "Error in jinja expression in WHERE clause: %(msg)s" msgstr "" -#: superset/connectors/sqla/models.py:826 +#: superset/connectors/sqla/models.py:789 #, python-format msgid "Error in jinja expression in fetch values predicate: %(msg)s" msgstr "" @@ -6471,7 +6545,7 @@ msgstr "" msgid "Error while fetching data: %s" msgstr "" -#: superset/connectors/sqla/models.py:953 superset/models/helpers.py:1029 +#: superset/connectors/sqla/models.py:914 superset/models/helpers.py:1072 #, python-format msgid "Error while rendering virtual dataset query: %(msg)s" msgstr "" @@ -6481,12 +6555,12 @@ msgstr "" msgid "Error: %(error)s" msgstr "" -#: superset/views/core.py:820 superset/views/core.py:1918 +#: superset/views/core.py:842 superset/views/core.py:1955 #, python-format msgid "Error: %(msg)s" msgstr "" -#: superset/views/core.py:817 +#: superset/views/core.py:839 msgid "Error: permalink state not found" msgstr "" @@ -6498,7 +6572,7 @@ msgstr "" msgid "Estimate selected query cost" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:621 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:615 msgid "Estimate the cost before running a query" msgstr "" @@ -6519,7 +6593,7 @@ msgstr "" msgid "Event definition" msgstr "" -#: superset/viz.py:2933 +#: superset/viz.py:2927 msgid "Event flow" msgstr "" @@ -6566,18 +6640,18 @@ msgstr "" msgid "Examples" msgstr "" -#: superset/views/database/forms.py:278 +#: superset/views/database/forms.py:288 msgid "Excel File" msgstr "" -#: superset/views/database/views.py:424 +#: superset/views/database/views.py:427 #, python-format msgid "" "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" " database \"%(db_name)s\"" msgstr "" -#: superset/views/database/views.py:303 +#: superset/views/database/views.py:306 msgid "Excel to Database configuration" msgstr "" @@ -6585,6 +6659,10 @@ msgstr "" msgid "Exclude selected values" msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:405 +msgid "Excluded roles" +msgstr "" + #: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 msgid "Executed SQL" msgstr "" @@ -6601,16 +6679,16 @@ msgstr "" msgid "Execution log" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:411 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:419 msgid "Existing dataset" msgstr "" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:264 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:366 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:368 msgid "Exit fullscreen" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 msgid "Expand" msgstr "" @@ -6622,11 +6700,11 @@ msgstr "" msgid "Expand data panel" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:209 +#: superset-frontend/src/components/Table/index.tsx:213 msgid "Expand row" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:197 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 msgid "Expand table preview" msgstr "" @@ -6643,6 +6721,7 @@ msgid "" msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:38 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:37 @@ -6657,11 +6736,11 @@ msgid "Experimental" msgstr "" #: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 -#: superset/views/core.py:987 +#: superset/views/core.py:1009 msgid "Explore" msgstr "" -#: superset/views/core.py:985 +#: superset/views/core.py:1007 #, python-format msgid "Explore - %(table)s" msgstr "" @@ -6677,9 +6756,9 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:854 #: superset-frontend/src/pages/DashboardList/index.tsx:445 #: superset-frontend/src/pages/DashboardList/index.tsx:720 -#: superset-frontend/src/pages/DatabaseList/index.tsx:415 -#: superset-frontend/src/pages/DatasetList/index.tsx:434 -#: superset-frontend/src/pages/DatasetList/index.tsx:759 +#: superset-frontend/src/pages/DatabaseList/index.tsx:426 +#: superset-frontend/src/pages/DatasetList/index.tsx:445 +#: superset-frontend/src/pages/DatasetList/index.tsx:781 #: superset-frontend/src/pages/SavedQueryList/index.tsx:550 #: superset/views/dashboard/views.py:65 msgid "Export" @@ -6693,7 +6772,7 @@ msgstr "" msgid "Export query" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:485 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:487 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:316 msgid "Export to .CSV" msgstr "" @@ -6702,19 +6781,20 @@ msgstr "" msgid "Export to .JSON" msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:335 msgid "Export to Excel" msgstr "" -#: superset/views/base.py:606 +#: superset/views/base.py:607 msgid "Export to YAML" msgstr "" -#: superset/views/base.py:606 +#: superset/views/base.py:607 msgid "Export to YAML?" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:496 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:498 msgid "Export to full .CSV" msgstr "" @@ -6726,12 +6806,12 @@ msgstr "" msgid "Export to pivoted .CSV" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:88 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 msgid "Expose database in SQL Lab" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:354 -#: superset-frontend/src/pages/DatabaseList/index.tsx:460 +#: superset-frontend/src/pages/DatabaseList/index.tsx:365 +#: superset-frontend/src/pages/DatabaseList/index.tsx:471 #: superset/views/database/mixins.py:183 msgid "Expose in SQL Lab" msgstr "" @@ -6740,12 +6820,12 @@ msgstr "" msgid "Expose this DB in SQL Lab" msgstr "" -#: superset/connectors/sqla/views.py:161 +#: superset/connectors/sqla/views.py:160 msgid "Expression" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:908 -#: superset/connectors/sqla/views.py:257 superset/connectors/sqla/views.py:494 +#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:401 #: superset/views/database/mixins.py:193 msgid "Extra" msgstr "" @@ -6810,8 +6890,8 @@ msgstr "" msgid "Factor to multiply the metric by" msgstr "" -#: superset/views/database/forms.py:167 superset/views/database/forms.py:324 -#: superset/views/database/forms.py:455 +#: superset/views/database/forms.py:177 superset/views/database/forms.py:334 +#: superset/views/database/forms.py:465 msgid "Fail" msgstr "" @@ -6822,16 +6902,16 @@ msgid "Failed" msgstr "" #: superset-frontend/src/SqlLab/actions/sqlLab.js:210 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:346 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:350 msgid "Failed at retrieving results" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:500 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:496 #, python-format msgid "Failed at stopping query. %s" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:343 +#: superset-frontend/src/components/ReportModal/index.tsx:342 msgid "Failed to create report" msgstr "" @@ -6840,23 +6920,36 @@ msgstr "" msgid "Failed to execute %(query)s" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:97 +msgid "Failed to generate chart edit URL" +msgstr "" + #: superset-frontend/src/pages/Chart/index.tsx:57 msgid "Failed to load chart data" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:402 #: superset-frontend/src/pages/Chart/index.tsx:69 msgid "Failed to load chart data." msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 +msgid "Failed to load dimensions for drill by" +msgstr "" + #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 msgid "Failed to retrieve advanced type" msgstr "" +#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +msgid "Failed to save cross-filter scoping" +msgstr "" + #: superset/errors.py:143 superset/sqllab/sql_json_executer.py:189 msgid "Failed to start remote query on a worker." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:342 +#: superset-frontend/src/components/ReportModal/index.tsx:341 msgid "Failed to update report" msgstr "" @@ -6880,15 +6973,15 @@ msgstr "" msgid "February" msgstr "" -#: superset/connectors/sqla/views.py:488 +#: superset/connectors/sqla/views.py:395 msgid "Fetch Values Predicate" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:538 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:531 msgid "Fetch data preview" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:352 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:354 #, python-format msgid "Fetched %s" msgstr "" @@ -6952,11 +7045,16 @@ msgid "Filter Settings" msgstr "" #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:825 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:362 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:373 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:134 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:255 msgid "Filter Type" msgstr "" #: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:28 -msgid "Filter box" +msgid "Filter box (deprecated)" msgstr "" #: superset-frontend/src/dashboard/components/SliceAdder.jsx:351 @@ -6975,7 +7073,7 @@ msgstr "" msgid "Filter has default value" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:197 +#: superset-frontend/src/components/Table/index.tsx:201 msgid "Filter menu" msgstr "" @@ -6991,7 +7089,7 @@ msgstr "" msgid "Filter only displays values relevant to selections made in other filters." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:289 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:283 msgid "Filter results" msgstr "" @@ -7027,7 +7125,7 @@ msgstr "" msgid "Filter value is required" msgstr "" -#: superset/connectors/sqla/models.py:1549 superset/models/helpers.py:1754 +#: superset/models/helpers.py:1815 msgid "Filter value list cannot be empty" msgstr "" @@ -7035,7 +7133,7 @@ msgstr "" msgid "Filter your charts" msgstr "" -#: superset/connectors/sqla/views.py:159 +#: superset/connectors/sqla/views.py:158 msgid "Filterable" msgstr "" @@ -7043,7 +7141,7 @@ msgstr "" #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 #: superset-frontend/src/explore/controls.jsx:446 #: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:35 -#: superset/viz.py:2142 +#: superset/viz.py:2071 msgid "Filters" msgstr "" @@ -7069,7 +7167,7 @@ msgstr "" msgid "Filters out of scope (%d)" msgstr "" -#: superset/connectors/sqla/views.py:342 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:435 msgid "" "Filters with the same group key will be ORed together within the group, " "while different filter groups will be ANDed together. Undefined group " @@ -7081,9 +7179,9 @@ msgid "" " 'Europe')." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1077 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1125 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1857 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1132 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1180 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 msgid "Finish" msgstr "" @@ -7140,7 +7238,7 @@ msgstr "" msgid "Font size for the smallest value in the list" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:173 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 msgid "" "For Bigquery, Presto and Postgres, shows a button to compute cost before " "running a query." @@ -7156,7 +7254,7 @@ msgid "" "function, refer to the" msgstr "" -#: superset/connectors/sqla/views.py:336 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:408 msgid "" "For regular filters, these are the roles this filter will be applied to. " "For base filters, these are the roles that the filter DOES NOT apply to, " @@ -7167,26 +7265,26 @@ msgstr "" msgid "Force" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:141 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 msgid "" "Force all tables and views to be created in this schema when clicking " "CTAS or CVAS in SQL Lab." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:84 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 msgid "Force date format" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:381 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 msgid "Force refresh" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:292 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:291 msgid "Force refresh schema list" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:317 +#: superset-frontend/src/components/TableSelector/index.tsx:307 msgid "Force refresh table list" msgstr "" @@ -7202,11 +7300,11 @@ msgstr "" msgid "Forest Green" msgstr "" -#: superset/explore/commands/get.py:87 superset/views/core.py:834 +#: superset/explore/commands/get.py:87 superset/views/core.py:856 msgid "Form data not found in cache, reverting to chart metadata." msgstr "" -#: superset/explore/commands/get.py:95 superset/views/core.py:840 +#: superset/explore/commands/get.py:95 superset/views/core.py:862 msgid "Form data not found in cache, reverting to dataset metadata." msgstr "" @@ -7216,7 +7314,7 @@ msgstr "" msgid "Formattable" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:255 +#: superset-frontend/src/components/ReportModal/index.tsx:254 msgid "Formatted CSV attached in email" msgstr "" @@ -7267,7 +7365,7 @@ msgstr "" msgid "Friday" msgstr "" -#: superset/utils/date_parser.py:267 superset/viz.py:392 +#: superset/utils/date_parser.py:267 superset/viz.py:403 msgid "From date cannot be larger than to date" msgstr "" @@ -7337,7 +7435,7 @@ msgstr "" msgid "Get the specify date for the holiday" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:713 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:714 msgid "Go to the edit mode to configure the dashboard and add charts" msgstr "" @@ -7390,20 +7488,22 @@ msgstr "" msgid "Group By filter plugin" msgstr "" -#: superset/viz.py:927 -msgid "Group By' and 'Columns' can't overlap" -msgstr "" - #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:84 msgid "Group By, Metrics or Percentage Metrics must have a value" msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:433 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:139 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:267 +msgid "Group Key" +msgstr "" + #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 msgid "Group by" msgstr "" -#: superset/connectors/sqla/views.py:158 +#: superset/connectors/sqla/views.py:157 msgid "Groupable" msgstr "" @@ -7429,12 +7529,12 @@ msgstr "" msgid "Header" msgstr "" -#: superset/views/database/forms.py:244 superset/views/database/forms.py:331 +#: superset/views/database/forms.py:254 superset/views/database/forms.py:341 msgid "Header Row" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 -#: superset/viz.py:2249 +#: superset/viz.py:2183 msgid "Heatmap" msgstr "" @@ -7458,7 +7558,7 @@ msgstr "" msgid "Hide Line" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:394 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:396 msgid "Hide chart description" msgstr "" @@ -7484,12 +7584,12 @@ msgid "Hierarchy" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 -#: superset/viz.py:1743 +#: superset/viz.py:1656 msgid "Histogram" msgstr "" #: superset-frontend/src/pages/Home/index.tsx:333 -#: superset/initialization/__init__.py:233 +#: superset/initialization/__init__.py:235 msgid "Home" msgstr "" @@ -7497,7 +7597,7 @@ msgstr "" msgid "Horizon Chart" msgstr "" -#: superset/viz.py:2310 +#: superset/viz.py:2246 msgid "Horizon Charts" msgstr "" @@ -7505,7 +7605,7 @@ msgstr "" msgid "Horizontal" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:166 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 msgid "Horizontal (Top)" msgstr "" @@ -7517,12 +7617,12 @@ msgstr "" msgid "Host" msgstr "" -#: superset/db_engine_specs/base.py:1839 -#: superset/db_engine_specs/clickhouse.py:203 +#: superset/db_engine_specs/base.py:1872 +#: superset/db_engine_specs/clickhouse.py:204 msgid "Hostname or IP address" msgstr "" -#: superset/db_engine_specs/base.py:104 +#: superset/db_engine_specs/base.py:105 msgid "Hour" msgstr "" @@ -7579,7 +7679,7 @@ msgstr "" msgid "Id of root node of the tree." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:391 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:401 msgid "" "If Presto or Trino, all the queries in SQL Lab are going to be executed " "as the currently logged on user who must have permission to run them. If " @@ -7597,7 +7697,7 @@ msgid "" "hive.server2.proxy.user property." msgstr "" -#: superset/views/database/forms.py:164 +#: superset/views/database/forms.py:174 msgid "If Table Already Exists" msgstr "" @@ -7605,7 +7705,7 @@ msgstr "" msgid "If a metric is specified, sorting will be done based on the metric value" msgstr "" -#: superset/views/database/forms.py:238 +#: superset/views/database/forms.py:248 msgid "" "If duplicate columns are not overridden, they will be presented as \"X.1," " X.2 ...X.x\"" @@ -7615,7 +7715,7 @@ msgstr "" msgid "If selected, please set the schemas allowed for csv upload in Extra." msgstr "" -#: superset/views/database/forms.py:318 superset/views/database/forms.py:449 +#: superset/views/database/forms.py:328 superset/views/database/forms.py:459 msgid "" "If table exists do one of the following: Fail (do nothing), Replace (drop" " and recreate table) or Append (insert data)." @@ -7633,7 +7733,7 @@ msgstr "" msgid "Ignore time" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:252 +#: superset-frontend/src/components/ReportModal/index.tsx:251 msgid "Image (PNG) embedded in email" msgstr "" @@ -7641,7 +7741,7 @@ msgstr "" msgid "Image download failed, please refresh and try again." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:386 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:396 msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" msgstr "" @@ -7662,11 +7762,11 @@ msgstr "" msgid "Import Dashboard(s)" msgstr "" -#: superset/initialization/__init__.py:337 +#: superset/initialization/__init__.py:331 msgid "Import Dashboards" msgstr "" -#: superset/connectors/sqla/views.py:386 +#: superset/connectors/sqla/views.py:293 msgid "Import a table definition" msgstr "" @@ -7691,15 +7791,15 @@ msgstr "" msgid "Import database failed for an unknown reason" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1912 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1969 msgid "Import database from file" msgstr "" -#: superset/datasets/commands/exceptions.py:185 +#: superset/datasets/commands/exceptions.py:202 msgid "Import dataset failed for an unknown reason" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:620 +#: superset-frontend/src/pages/DatasetList/index.tsx:631 msgid "Import datasets" msgstr "" @@ -7725,7 +7825,7 @@ msgstr "" msgid "Include Series" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:295 +#: superset-frontend/src/components/ReportModal/index.tsx:294 msgid "Include a description that will be sent with your report" msgstr "" @@ -7742,7 +7842,7 @@ msgstr "" msgid "Index" msgstr "" -#: superset/views/database/forms.py:210 superset/views/database/forms.py:341 +#: superset/views/database/forms.py:220 superset/views/database/forms.py:351 msgid "Index Column" msgstr "" @@ -7781,11 +7881,23 @@ msgstr "" msgid "Intensity" msgstr "" -#: superset/views/database/forms.py:190 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:85 +msgid "Intensity Radius" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:86 +msgid "Intensity Radius is the radius at which the weight is distributed" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:69 +msgid "Intensity is the value multiplied by the weight to obtain the final weight" +msgstr "" + +#: superset/views/database/forms.py:200 msgid "Interpret Datetime Format Automatically" msgstr "" -#: superset/views/database/forms.py:191 +#: superset/views/database/forms.py:201 msgid "Interpret the datetime format automatically" msgstr "" @@ -7814,6 +7926,16 @@ msgstr "" msgid "Intervals" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:68 +msgid "Intesity" +msgstr "" + +#: superset/db_engine_specs/ocient.py:274 +msgid "" +"Invalid Connection String: Expecting String of the form " +"'ocient://user:pass@host:port/database'." +msgstr "" + #: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 msgid "Invalid JSON" msgstr "" @@ -7827,7 +7949,7 @@ msgstr "" msgid "Invalid certificate" msgstr "" -#: superset/views/core.py:1422 +#: superset/views/core.py:1463 msgid "" "Invalid connection string, a valid string usually follows:\n" "'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" @@ -7856,15 +7978,15 @@ msgstr "" msgid "Invalid cumulative operator: %(operator)s" msgstr "" -#: superset/connectors/sqla/views.py:181 superset/datasets/schemas.py:44 +#: superset/connectors/sqla/views.py:180 superset/datasets/schemas.py:44 msgid "Invalid date/timestamp format" msgstr "" -#: superset/viz.py:2160 +#: superset/viz.py:2091 msgid "Invalid filter configuration, please select a column" msgstr "" -#: superset/connectors/sqla/models.py:1623 superset/models/helpers.py:1820 +#: superset/models/helpers.py:1891 #, python-format msgid "Invalid filter operation type: %(op)s" msgstr "" @@ -7889,7 +8011,7 @@ msgstr "" msgid "Invalid longitude/latitude" msgstr "" -#: superset/utils/core.py:1364 +#: superset/utils/core.py:1373 #, python-format msgid "Invalid metric object: %(metric)s" msgstr "" @@ -7908,7 +8030,12 @@ msgstr "" msgid "Invalid permalink key" msgstr "" -#: superset/common/query_actions.py:228 +#: superset/db_engine_specs/ocient.py:292 +#, python-format +msgid "Invalid reference to column: \"%(column)s\"" +msgstr "" + +#: superset/common/query_actions.py:227 #, python-format msgid "Invalid result type: %(result_type)s" msgstr "" @@ -7918,7 +8045,7 @@ msgstr "" msgid "Invalid rolling_type: %(type)s" msgstr "" -#: superset/viz.py:2530 +#: superset/viz.py:2474 #, python-format msgid "Invalid spatial point encountered: %s" msgstr "" @@ -7928,7 +8055,7 @@ msgstr "" msgid "Invalid state." msgstr "" -#: superset/reports/commands/create.py:144 +#: superset/reports/commands/create.py:142 #, python-format msgid "Invalid tab ids: %s(tab_ids)" msgstr "" @@ -7937,7 +8064,7 @@ msgstr "" msgid "Inverse selection" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:205 +#: superset-frontend/src/components/Table/index.tsx:209 msgid "Invert current page" msgstr "" @@ -7955,7 +8082,7 @@ msgstr "" msgid "Is false" msgstr "" -#: superset/views/base_api.py:143 +#: superset/views/base_api.py:149 msgid "Is favorite" msgstr "" @@ -7972,13 +8099,13 @@ msgstr "" msgid "Is null" msgstr "" -#: superset/views/base_api.py:171 +#: superset/views/base_api.py:177 msgid "Is tagged" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:362 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 -#: superset/connectors/sqla/views.py:162 +#: superset/connectors/sqla/views.py:161 msgid "Is temporal" msgstr "" @@ -8021,7 +8148,7 @@ msgstr "" msgid "JSON metadata is invalid!" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 msgid "" "JSON string containing additional connection configuration. This is used " "to provide connection information for systems like Hive, Presto and " @@ -8057,24 +8184,24 @@ msgstr "" msgid "Jinja templating" msgstr "" -#: superset/views/database/forms.py:233 +#: superset/views/database/forms.py:243 msgid "Json list of the column names that should be read" msgstr "" -#: superset/views/database/forms.py:464 +#: superset/views/database/forms.py:474 msgid "" "Json list of the column names that should be read. If not None, only " "these columns will be read from the file." msgstr "" -#: superset/views/database/forms.py:203 +#: superset/views/database/forms.py:213 msgid "" "Json list of the values that should be treated as null. Examples: [\"\"] " "for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " "Hive database supports only a single value" msgstr "" -#: superset/views/database/forms.py:394 +#: superset/views/database/forms.py:404 msgid "" "Json list of the values that should be treated as null. Examples: [\"\"]," " [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " @@ -8121,8 +8248,8 @@ msgstr "" msgid "LIMIT" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:80 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:109 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:93 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:122 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:251 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:255 @@ -8199,7 +8326,7 @@ msgstr "" msgid "Last" msgstr "" -#: superset/connectors/sqla/views.py:481 superset/views/database/mixins.py:190 +#: superset/connectors/sqla/views.py:388 superset/views/database/mixins.py:190 msgid "Last Changed" msgstr "" @@ -8226,7 +8353,7 @@ msgstr "" #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:177 #: superset-frontend/src/pages/ChartList/index.tsx:445 #: superset-frontend/src/pages/CssTemplateList/index.tsx:158 -#: superset-frontend/src/pages/DatabaseList/index.tsx:380 +#: superset-frontend/src/pages/DatabaseList/index.tsx:391 msgid "Last modified" msgstr "" @@ -8284,7 +8411,7 @@ msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:28 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:90 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:371 msgid "Left" msgstr "" @@ -8316,7 +8443,7 @@ msgstr "" msgid "Left to Right" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:144 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 msgid "Left value" msgstr "" @@ -8329,7 +8456,6 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:33 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 #: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 #: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 @@ -8345,15 +8471,16 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:35 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 #: superset-frontend/src/visualizations/TimeTable/index.ts:35 msgid "Legacy" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:154 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:289 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:115 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:99 msgid "Legend" msgstr "" @@ -8361,7 +8488,7 @@ msgstr "" msgid "Legend Format" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:95 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:92 msgid "Legend Orientation" msgstr "" @@ -8369,7 +8496,7 @@ msgstr "" msgid "Legend Position" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:72 msgid "Legend type" msgstr "" @@ -8507,7 +8634,7 @@ msgid "Lines encoding" msgstr "" #: superset-frontend/src/pages/SavedQueryList/index.tsx:226 -#: superset-frontend/src/views/CRUD/hooks.ts:673 +#: superset-frontend/src/views/CRUD/hooks.ts:677 msgid "Link Copied!" msgstr "" @@ -8535,7 +8662,7 @@ msgstr "" msgid "List of values to mark with triangles" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:187 +#: superset-frontend/src/components/TableSelector/index.tsx:184 msgid "List updated" msgstr "" @@ -8564,8 +8691,8 @@ msgid "Loading" msgstr "" #: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:495 -#: superset-frontend/src/components/Select/Select.tsx:470 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:496 +#: superset-frontend/src/components/Select/Select.tsx:477 #: superset-frontend/src/components/Select/utils.tsx:152 #: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 #: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 @@ -8593,13 +8720,13 @@ msgstr "" msgid "Logarithmic scale on primary y-axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:432 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:449 msgid "Logarithmic scale on secondary y-axis" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:396 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:420 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:429 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:437 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:446 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:222 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:225 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:210 @@ -8668,27 +8795,27 @@ msgstr "" msgid "MON" msgstr "" -#: superset/connectors/sqla/views.py:490 +#: superset/connectors/sqla/views.py:397 msgid "Main Datetime Column" msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:283 +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:292 msgid "" "Make sure that the controls are configured properly and the datasource " "contains data for the selected time range" msgstr "" -#: superset/views/core.py:1717 +#: superset/views/core.py:1752 msgid "" "Malformed request. slice_id or table_name and db_name arguments are " "expected" msgstr "" -#: superset/initialization/__init__.py:277 -#: superset/initialization/__init__.py:289 -#: superset/initialization/__init__.py:341 -#: superset/initialization/__init__.py:412 -#: superset/initialization/__init__.py:425 +#: superset/initialization/__init__.py:279 +#: superset/initialization/__init__.py:291 +#: superset/initialization/__init__.py:335 +#: superset/initialization/__init__.py:406 +#: superset/initialization/__init__.py:419 msgid "Manage" msgstr "" @@ -8706,7 +8833,7 @@ msgstr "" msgid "Mandatory" msgstr "" -#: superset/views/database/forms.py:350 +#: superset/views/database/forms.py:360 msgid "Mangle Duplicate Columns" msgstr "" @@ -8725,6 +8852,8 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:67 @@ -8747,7 +8876,7 @@ msgstr "" msgid "MapBox" msgstr "" -#: superset/viz.py:2322 +#: superset/viz.py:2258 msgid "Mapbox" msgstr "" @@ -8755,11 +8884,11 @@ msgstr "" msgid "March" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:50 msgid "Margin" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:348 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:354 msgid "Mark a column as temporal in \"Edit datasource\" modal" msgstr "" @@ -8838,7 +8967,7 @@ msgid "" "this insures that the circle respects this maximum radius." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:232 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 msgid "Maximum value" msgstr "" @@ -8888,7 +9017,7 @@ msgstr "" msgid "Menu actions trigger" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:237 +#: superset-frontend/src/components/ReportModal/index.tsx:236 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 msgid "Message content" msgstr "" @@ -8897,8 +9026,8 @@ msgstr "" msgid "Metadata" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:450 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:454 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:486 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:490 msgid "Metadata Parameters" msgstr "" @@ -8923,13 +9052,12 @@ msgstr "" #: superset-frontend/src/explore/controls.jsx:167 #: superset-frontend/src/explore/controls.jsx:168 #: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 -#: superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:249 msgid "Metric" msgstr "" -#: superset/connectors/sqla/models.py:1264 -#: superset/connectors/sqla/models.py:1847 superset/models/helpers.py:1192 -#: superset/models/helpers.py:1448 +#: superset/connectors/sqla/models.py:1133 superset/models/helpers.py:1236 +#: superset/models/helpers.py:1529 #, python-format msgid "Metric '%(metric)s' does not exist" msgstr "" @@ -8964,7 +9092,7 @@ msgstr "" msgid "Metric for node values" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:106 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:119 msgid "Metric name" msgstr "" @@ -8989,6 +9117,7 @@ msgstr "" msgid "Metric to sort the results by" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:139 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:78 msgid "Metric used as a weight for the grid's coloring" msgstr "" @@ -9027,7 +9156,7 @@ msgstr "" #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 #: superset-frontend/src/explore/controls.jsx:152 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 -#: superset/connectors/sqla/views.py:207 +#: superset/connectors/sqla/views.py:206 msgid "Metrics" msgstr "" @@ -9107,11 +9236,11 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:85 #: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:152 msgid "Minimum threshold in percentage points for showing labels." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:231 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:69 msgid "Minimum value" msgstr "" @@ -9133,7 +9262,7 @@ msgstr "" msgid "Minor Split Line" msgstr "" -#: superset/db_engine_specs/base.py:99 +#: superset/db_engine_specs/base.py:100 msgid "Minute" msgstr "" @@ -9163,12 +9292,13 @@ msgstr "" #: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:278 #: superset-frontend/src/pages/AlertReportList/index.tsx:335 #: superset-frontend/src/pages/DashboardList/index.tsx:347 -#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:375 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:152 #: superset-frontend/src/pages/SavedQueryList/index.tsx:369 #: superset-frontend/src/pages/Tags/index.tsx:118 -#: superset/connectors/sqla/views.py:367 superset/connectors/sqla/views.py:495 -#: superset/views/dashboard/mixin.py:85 superset/views/dashboard/views.py:186 -#: superset/views/database/mixins.py:199 superset/views/sql_lab/views.py:85 +#: superset/connectors/sqla/views.py:402 superset/views/dashboard/mixin.py:85 +#: superset/views/dashboard/views.py:186 superset/views/database/mixins.py:199 +#: superset/views/sql_lab/views.py:85 msgid "Modified" msgstr "" @@ -9183,7 +9313,7 @@ msgstr "" #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 #: superset-frontend/src/pages/ChartList/index.tsx:431 #: superset-frontend/src/pages/DashboardList/index.tsx:326 -#: superset-frontend/src/pages/DatasetList/index.tsx:374 +#: superset-frontend/src/pages/DatasetList/index.tsx:385 msgid "Modified by" msgstr "" @@ -9196,7 +9326,7 @@ msgstr "" msgid "Monday" msgstr "" -#: superset/db_engine_specs/base.py:108 +#: superset/db_engine_specs/base.py:109 msgid "Month" msgstr "" @@ -9260,7 +9390,7 @@ msgstr "" msgid "Multiple Line Charts" msgstr "" -#: superset/views/database/views.py:465 +#: superset/views/database/views.py:468 msgid "" "Multiple file extensions are not allowed for columnar uploads. Please " "make sure all files are of the same extension." @@ -9292,11 +9422,11 @@ msgstr "" msgid "Must choose either a chart or a dashboard" msgstr "" -#: superset/viz.py:2346 +#: superset/viz.py:2283 msgid "Must have a [Group By] column to have 'count' as the [Label]" msgstr "" -#: superset/viz.py:1752 +#: superset/viz.py:1666 msgid "Must have at least one numeric column specified" msgstr "" @@ -9304,7 +9434,7 @@ msgstr "" msgid "Must provide credentials for the SSH Tunnel" msgstr "" -#: superset/connectors/sqla/models.py:1582 superset/models/helpers.py:1780 +#: superset/models/helpers.py:1848 msgid "Must specify a value for filters with comparison operators" msgstr "" @@ -9343,19 +9473,21 @@ msgid "NUMERIC" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:149 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:782 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:212 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:148 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:789 #: superset-frontend/src/pages/AlertReportList/index.tsx:272 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 #: superset-frontend/src/pages/CssTemplateList/index.tsx:131 -#: superset-frontend/src/pages/DatasetList/index.tsx:334 +#: superset-frontend/src/pages/DatasetList/index.tsx:345 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:130 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:248 #: superset-frontend/src/pages/SavedQueryList/index.tsx:283 #: superset-frontend/src/pages/Tags/index.tsx:109 -#: superset/connectors/sqla/views.py:361 superset/views/chart/mixin.py:85 +#: superset/views/chart/mixin.py:85 msgid "Name" msgstr "" @@ -9368,11 +9500,11 @@ msgstr "" msgid "Name must be unique" msgstr "" -#: superset/views/database/forms.py:406 +#: superset/views/database/forms.py:416 msgid "Name of table to be created from columnar data." msgstr "" -#: superset/views/database/forms.py:270 +#: superset/views/database/forms.py:280 msgid "Name of table to be created from excel data." msgstr "" @@ -9392,7 +9524,7 @@ msgstr "" msgid "Name of the source nodes" msgstr "" -#: superset/connectors/sqla/views.py:428 +#: superset/connectors/sqla/views.py:335 msgid "Name of the table that exists in the source database" msgstr "" @@ -9446,17 +9578,17 @@ msgstr "" msgid "New header" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:329 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:331 msgid "New tab" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:268 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:310 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:278 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:320 msgid "New tab (Ctrl + q)" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:269 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:311 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:279 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:321 msgid "New tab (Ctrl + t)" msgstr "" @@ -9478,9 +9610,9 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:708 #: superset-frontend/src/pages/DashboardList/index.tsx:507 #: superset-frontend/src/pages/DashboardList/index.tsx:589 -#: superset-frontend/src/pages/DatabaseList/index.tsx:468 -#: superset-frontend/src/pages/DatabaseList/index.tsx:488 -#: superset-frontend/src/pages/DatasetList/index.tsx:573 +#: superset-frontend/src/pages/DatabaseList/index.tsx:479 +#: superset-frontend/src/pages/DatabaseList/index.tsx:499 +#: superset-frontend/src/pages/DatasetList/index.tsx:584 msgid "No" msgstr "" @@ -9502,6 +9634,10 @@ msgstr "" msgid "No Results" msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:235 +msgid "No Rules yet" +msgstr "" + #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:116 #, fuzzy msgid "No annotation layers" @@ -9536,7 +9672,7 @@ msgstr "" msgid "No columns" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:242 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 msgid "No columns found" msgstr "" @@ -9548,7 +9684,7 @@ msgstr "" msgid "No compatible datasets found" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 msgid "No compatible schema found" msgstr "" @@ -9560,14 +9696,14 @@ msgstr "" msgid "No dashboards yet" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:133 -#: superset-frontend/src/components/Table/index.tsx:203 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 +#: superset-frontend/src/components/Table/index.tsx:207 #: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:225 #: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 msgid "No data" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 msgid "No data after filtering or data is NULL for the latest time record" msgstr "" @@ -9587,10 +9723,6 @@ msgstr "" msgid "No description available." msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:174 -msgid "No dimensions available for drill by" -msgstr "" - #: superset-frontend/src/profile/components/Favorites.tsx:61 msgid "No favorite charts yet, go click on stars!" msgstr "" @@ -9609,7 +9741,7 @@ msgstr "" msgid "No filter is selected." msgstr "" -#: superset-frontend/src/components/Table/index.tsx:200 +#: superset-frontend/src/components/Table/index.tsx:204 msgid "No filters" msgstr "" @@ -9648,7 +9780,7 @@ msgid "No results" msgstr "" #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:425 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:428 msgid "No results found" msgstr "" @@ -9656,7 +9788,7 @@ msgstr "" msgid "No results match your filter criteria" msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:280 +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:289 #: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 msgid "No results were returned for this query" msgstr "" @@ -9676,8 +9808,8 @@ msgstr "" msgid "No samples were returned for this dataset" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:293 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:311 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:299 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:317 msgid "No saved expressions found" msgstr "" @@ -9702,9 +9834,9 @@ msgstr "" msgid "No table columns" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:292 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:310 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:345 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:298 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:316 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:351 msgid "No temporal columns found" msgstr "" @@ -9733,7 +9865,7 @@ msgid "Node size" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:45 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:187 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:270 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:286 @@ -9743,12 +9875,12 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:402 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:182 #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:124 #: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 #: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:196 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:576 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:48 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:51 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:138 #: superset-frontend/src/explore/controlPanels/sections.tsx:134 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:127 @@ -9829,7 +9961,7 @@ msgstr "" msgid "Now" msgstr "" -#: superset/views/database/forms.py:201 +#: superset/views/database/forms.py:211 msgid "Null Values" msgstr "" @@ -9842,11 +9974,11 @@ msgstr "" msgid "Null or Empty" msgstr "" -#: superset/views/database/forms.py:392 +#: superset/views/database/forms.py:402 msgid "Null values" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:191 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 msgid "Number Format" msgstr "" @@ -9861,11 +9993,10 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:60 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:65 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:144 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:117 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:67 #: superset-frontend/plugins/legacy-plugin-chart-treemap/src/controlPanel.ts:67 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:97 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:137 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:276 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:137 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:113 @@ -9906,19 +10037,19 @@ msgstr "" msgid "Number of periods to ratio against" msgstr "" -#: superset/views/database/forms.py:255 +#: superset/views/database/forms.py:265 msgid "Number of rows of file to read" msgstr "" -#: superset/views/database/forms.py:361 +#: superset/views/database/forms.py:371 msgid "Number of rows of file to read." msgstr "" -#: superset/views/database/forms.py:261 +#: superset/views/database/forms.py:271 msgid "Number of rows to skip at start of file" msgstr "" -#: superset/views/database/forms.py:355 +#: superset/views/database/forms.py:365 msgid "Number of rows to skip at start of file." msgstr "" @@ -9942,15 +10073,15 @@ msgstr "" msgid "OCT" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:184 -#: superset-frontend/src/components/Modal/Modal.tsx:231 -#: superset-frontend/src/components/Table/index.tsx:198 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 +#: superset-frontend/src/components/Modal/Modal.tsx:238 +#: superset-frontend/src/components/Table/index.tsx:202 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:865 msgid "OK" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:267 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1379 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1434 msgid "OVERWRITE" msgstr "" @@ -9963,7 +10094,7 @@ msgstr "" msgid "Offline" msgstr "" -#: superset/connectors/sqla/views.py:485 +#: superset/connectors/sqla/views.py:392 msgid "Offset" msgstr "" @@ -10004,27 +10135,27 @@ msgstr "" msgid "One or many metrics to display" msgstr "" -#: superset/datasets/commands/exceptions.py:90 +#: superset/datasets/commands/exceptions.py:107 msgid "One or more columns already exist" msgstr "" -#: superset/datasets/commands/exceptions.py:80 +#: superset/datasets/commands/exceptions.py:97 msgid "One or more columns are duplicated" msgstr "" -#: superset/datasets/commands/exceptions.py:70 +#: superset/datasets/commands/exceptions.py:87 msgid "One or more columns do not exist" msgstr "" -#: superset/datasets/commands/exceptions.py:119 +#: superset/datasets/commands/exceptions.py:136 msgid "One or more metrics already exist" msgstr "" -#: superset/datasets/commands/exceptions.py:109 +#: superset/datasets/commands/exceptions.py:126 msgid "One or more metrics are duplicated" msgstr "" -#: superset/datasets/commands/exceptions.py:99 +#: superset/datasets/commands/exceptions.py:116 msgid "One or more metrics do not exist" msgstr "" @@ -10040,7 +10171,7 @@ msgstr "" msgid "One or more parameters specified in the query are missing." msgstr "" -#: superset/views/core.py:1992 +#: superset/views/core.py:2029 msgid "" "One or more required fields are missing in the request. Please try again," " and if the problem persists contact your administrator." @@ -10050,23 +10181,23 @@ msgstr "" msgid "One ore more annotation layers failed loading." msgstr "" -#: superset/sql_lab.py:230 +#: superset/sql_lab.py:228 msgid "Only SELECT statements are allowed against this database." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:133 msgid "Only Total" msgstr "" -#: superset/connectors/sqla/utils.py:123 +#: superset/connectors/sqla/utils.py:122 msgid "Only `SELECT` statements are allowed" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:29 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 msgid "Only applies when \"Label Type\" is not set to a percentage." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:26 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 msgid "Only applies when \"Label Type\" is set to show values." msgstr "" @@ -10074,18 +10205,18 @@ msgstr "" msgid "Only selected panels will be affected by this filter" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:139 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 msgid "" "Only show the total value on the stacked chart, and not show on the " "selected category" msgstr "" -#: superset/connectors/sqla/utils.py:132 +#: superset/connectors/sqla/utils.py:131 msgid "Only single queries supported" msgstr "" -#: superset/views/database/forms.py:119 superset/views/database/forms.py:288 -#: superset/views/database/forms.py:426 +#: superset/views/database/forms.py:119 superset/views/database/forms.py:298 +#: superset/views/database/forms.py:436 #, python-format msgid "Only the following file extensions are allowed: %(allowed_extensions)s" msgstr "" @@ -10133,7 +10264,7 @@ msgstr "" msgid "Open query in SQL Lab" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:298 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 #: superset/views/database/mixins.py:104 msgid "" "Operate the database in asynchronous mode, meaning that the queries are " @@ -10142,8 +10273,8 @@ msgid "" " Refer to the installation docs for more information." msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:126 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:130 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 msgid "Operator" msgstr "" @@ -10152,7 +10283,7 @@ msgstr "" msgid "Operator undefined for aggregator: %(name)s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:381 msgid "" "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" " certain database engines." @@ -10174,13 +10305,8 @@ msgstr "" msgid "Optional warning about use of this metric" msgstr "" -#: superset/connectors/sqla/views.py:328 -msgid "Optionally add a detailed description" -msgstr "" - #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:39 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:68 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:108 #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:74 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:45 #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:70 @@ -10193,7 +10319,7 @@ msgstr "" msgid "Options" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:918 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:973 msgid "Or choose from a list of other databases we support:" msgstr "" @@ -10211,7 +10337,7 @@ msgstr "" msgid "Ordering" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:83 msgid "Orientation" msgstr "" @@ -10219,7 +10345,7 @@ msgstr "" msgid "Orientation of bar chart" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:158 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 msgid "Orientation of filter bar" msgstr "" @@ -10235,7 +10361,7 @@ msgstr "" msgid "Original table column order" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 #: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 #: superset-frontend/src/explore/controls.jsx:79 @@ -10247,10 +10373,10 @@ msgid "Orthogonal" msgstr "" #: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:126 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:938 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:479 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:993 #: superset-frontend/src/features/home/EmptyState.tsx:112 -#: superset/views/database/forms.py:155 superset/views/database/forms.py:161 +#: superset/views/database/forms.py:165 superset/views/database/forms.py:171 msgid "Other" msgstr "" @@ -10304,15 +10430,15 @@ msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:426 #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:493 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:459 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:463 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:464 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:148 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 msgid "Overwrite" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:249 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:192 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:247 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 msgid "Overwrite & Explore" msgstr "" @@ -10321,11 +10447,11 @@ msgstr "" msgid "Overwrite Dashboard [%s]" msgstr "" -#: superset/views/database/forms.py:237 +#: superset/views/database/forms.py:247 msgid "Overwrite Duplicate Columns" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:404 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:412 msgid "Overwrite existing" msgstr "" @@ -10340,11 +10466,11 @@ msgstr "" #: superset-frontend/src/pages/AlertReportList/index.tsx:452 #: superset-frontend/src/pages/ChartList/index.tsx:608 #: superset-frontend/src/pages/DashboardList/index.tsx:523 -#: superset-frontend/src/pages/DatasetList/index.tsx:500 +#: superset-frontend/src/pages/DatasetList/index.tsx:511 msgid "Owner" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:235 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:93 #: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:408 @@ -10359,14 +10485,14 @@ msgstr "" #: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 #: superset-frontend/src/pages/AlertReportList/index.tsx:324 #: superset-frontend/src/pages/DashboardList/index.tsx:369 -#: superset-frontend/src/pages/DatasetList/index.tsx:389 -#: superset/connectors/sqla/views.py:489 superset/views/chart/mixin.py:82 +#: superset-frontend/src/pages/DatasetList/index.tsx:400 +#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:82 #: superset/views/dashboard/mixin.py:81 msgid "Owners" msgstr "" -#: superset/commands/exceptions.py:108 -#: superset/datasets/commands/exceptions.py:144 +#: superset/commands/exceptions.py:112 +#: superset/datasets/commands/exceptions.py:161 msgid "Owners are invalid" msgstr "" @@ -10408,7 +10534,7 @@ msgid "Pandas resample rule" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 -#: superset/viz.py:2219 +#: superset/viz.py:2152 msgid "Parallel Coordinates" msgstr "" @@ -10433,7 +10559,7 @@ msgstr "" msgid "Parent" msgstr "" -#: superset/views/database/forms.py:366 +#: superset/views/database/forms.py:376 msgid "Parse Dates" msgstr "" @@ -10451,7 +10577,7 @@ msgstr "" msgid "Partition Chart" msgstr "" -#: superset/viz.py:3071 +#: superset/viz.py:3069 msgid "Partition Diagram" msgstr "" @@ -10471,7 +10597,7 @@ msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:154 #: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 -#: superset/db_engine_specs/base.py:1838 +#: superset/db_engine_specs/base.py:1870 #: superset/db_engine_specs/clickhouse.py:202 msgid "Password" msgstr "" @@ -10522,7 +10648,7 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:81 #: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:148 msgid "Percentage threshold" msgstr "" @@ -10540,7 +10666,7 @@ msgstr "" msgid "Percentages" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:219 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:229 msgid "Performance" msgstr "" @@ -10575,8 +10701,8 @@ msgid "Person or group that has certified this metric" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1114 -#: superset-frontend/src/pages/DatasetList/index.tsx:342 -#: superset-frontend/src/pages/DatasetList/index.tsx:560 +#: superset-frontend/src/pages/DatasetList/index.tsx:353 +#: superset-frontend/src/pages/DatasetList/index.tsx:571 msgid "Physical" msgstr "" @@ -10584,7 +10710,7 @@ msgstr "" msgid "Physical (table or view)" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:273 +#: superset-frontend/src/pages/DatasetList/index.tsx:284 msgid "Physical dataset" msgstr "" @@ -10593,27 +10719,27 @@ msgstr "" msgid "Pick a dimension from which categorical colors are defined" msgstr "" -#: superset/viz.py:769 +#: superset/viz.py:795 msgid "Pick a granularity in the Time section or uncheck 'Include Time'" msgstr "" -#: superset/viz.py:1605 +#: superset/viz.py:1514 msgid "Pick a metric for left axis!" msgstr "" -#: superset/viz.py:1607 +#: superset/viz.py:1516 msgid "Pick a metric for right axis!" msgstr "" -#: superset/viz.py:1195 +#: superset/viz.py:1090 msgid "Pick a metric for x, y and size" msgstr "" -#: superset/viz.py:1234 +#: superset/viz.py:1131 msgid "Pick a metric to display" msgstr "" -#: superset/viz.py:1260 superset/viz.py:1294 +#: superset/viz.py:1159 superset/viz.py:1195 msgid "Pick a metric!" msgstr "" @@ -10629,7 +10755,7 @@ msgstr "" msgid "Pick a set of deck.gl charts to layer on top of one another" msgstr "" -#: superset/viz.py:1390 superset/viz.py:1653 +#: superset/viz.py:1294 superset/viz.py:1564 msgid "Pick a time granularity for your time series" msgstr "" @@ -10637,15 +10763,15 @@ msgstr "" msgid "Pick a title for you annotation." msgstr "" -#: superset/viz.py:1815 +#: superset/viz.py:1732 msgid "Pick at least one field for [Series]" msgstr "" -#: superset/viz.py:857 superset/viz.py:1813 +#: superset/viz.py:887 superset/viz.py:1730 msgid "Pick at least one metric" msgstr "" -#: superset/viz.py:1943 +#: superset/viz.py:1863 msgid "Pick exactly 2 columns as [Source / Target]" msgstr "" @@ -10672,19 +10798,10 @@ msgstr "" msgid "Pin" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:45 -msgid "Pivot Options" -msgstr "" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 -#: superset/viz.py:894 msgid "Pivot Table" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:32 -msgid "Pivot Table (legacy)" -msgstr "" - #: superset/utils/pandas_postprocessing/pivot.py:70 msgid "Pivot operation must include at least one aggregate" msgstr "" @@ -10705,7 +10822,7 @@ msgstr "" msgid "Pixels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 msgid "Plain" msgstr "" @@ -10717,7 +10834,7 @@ msgstr "" msgid "Please apply filter changes" msgstr "" -#: superset/sqllab/query_render.py:120 +#: superset/sqllab/query_render.py:118 msgid "" "Please check your query and confirm that all template parameters are " "surround by double braces, for example, \"{{ ds }}\". Then, try running " @@ -10725,8 +10842,8 @@ msgid "" msgstr "" #: superset/db_engine_specs/athena.py:56 -#: superset/db_engine_specs/bigquery.py:210 -#: superset/db_engine_specs/postgres.py:161 +#: superset/db_engine_specs/bigquery.py:211 +#: superset/db_engine_specs/postgres.py:160 #: superset/db_engine_specs/snowflake.py:117 #, python-format msgid "" @@ -10734,7 +10851,7 @@ msgid "" "\"%(syntax_error)s\". Then, try running your query again." msgstr "" -#: superset/db_engine_specs/gsheets.py:80 superset/db_engine_specs/mysql.py:170 +#: superset/db_engine_specs/gsheets.py:82 superset/db_engine_specs/mysql.py:170 #, python-format msgid "" "Please check your query for syntax errors near \"%(server_error)s\". " @@ -10748,19 +10865,11 @@ msgid "" "your query again." msgstr "" -#: superset/viz.py:911 -msgid "Please choose at least one 'Group by' field" -msgstr "" - -#: superset/viz.py:3229 +#: superset/viz.py:3234 msgid "Please choose at least one groupby" msgstr "" -#: superset/viz.py:923 -msgid "Please choose at least one metric" -msgstr "" - -#: superset/viz.py:1610 +#: superset/viz.py:1519 msgid "Please choose different metrics on left and right axis" msgstr "" @@ -10776,18 +10885,20 @@ msgstr "" #: superset-frontend/src/pages/DashboardList/index.tsx:415 #: superset-frontend/src/pages/DashboardList/index.tsx:701 #: superset-frontend/src/pages/DashboardList/index.tsx:756 -#: superset-frontend/src/pages/DatasetList/index.tsx:740 +#: superset-frontend/src/pages/DatasetList/index.tsx:762 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:170 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:304 #: superset-frontend/src/pages/SavedQueryList/index.tsx:533 #: superset-frontend/src/pages/Tags/index.tsx:141 #: superset-frontend/src/pages/Tags/index.tsx:281 msgid "Please confirm" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:442 +#: superset-frontend/src/dashboard/actions/dashboardState.js:447 msgid "Please confirm the overwrite values." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:624 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:641 msgid "Please enter a SQLAlchemy URI to test" msgstr "" @@ -10795,11 +10906,11 @@ msgstr "" msgid "Please filter set name" msgstr "" -#: superset/db_engine_specs/postgres.py:125 +#: superset/db_engine_specs/postgres.py:124 msgid "Please re-enter the password." msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:435 +#: superset-frontend/src/views/CRUD/hooks.ts:439 msgid "Please re-export your file and try importing again" msgstr "" @@ -10827,7 +10938,7 @@ msgstr "" msgid "Please select both a Dataset and a Chart type to proceed" msgstr "" -#: superset/viz.py:1193 +#: superset/viz.py:1088 msgid "Please use 3 different metric labels" msgstr "" @@ -10842,7 +10953,7 @@ msgid "" "multiple metrics across all of the samples or rows in the data." msgstr "" -#: superset/initialization/__init__.py:275 +#: superset/initialization/__init__.py:277 msgid "Plugins" msgstr "" @@ -10934,13 +11045,17 @@ msgid "Port" msgstr "" #: superset/db_engine_specs/mssql.py:98 -#: superset/db_engine_specs/postgres.py:135 -#: superset/db_engine_specs/presto.py:672 -#: superset/db_engine_specs/redshift.py:77 +#: superset/db_engine_specs/postgres.py:134 +#: superset/db_engine_specs/presto.py:699 +#: superset/db_engine_specs/redshift.py:81 #, python-format msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." msgstr "" +#: superset/db_engine_specs/ocient.py:269 +msgid "Port out of range 0-65535" +msgstr "" + #: superset/views/dashboard/mixin.py:86 msgid "Position JSON" msgstr "" @@ -10977,7 +11092,7 @@ msgstr "" msgid "Pre-filter is required" msgstr "" -#: superset/connectors/sqla/views.py:440 +#: superset/connectors/sqla/views.py:347 msgid "" "Predicate applied when fetching distinct value to populate the filter " "control component. Supports jinja template syntax. Applies only when " @@ -11019,7 +11134,7 @@ msgstr "" msgid "Previous" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:346 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:348 msgid "Previous Line" msgstr "" @@ -11040,6 +11155,10 @@ msgstr "" msgid "Primary or secondary y-axis" msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 +msgid "Primary y-axis Bounds" +msgstr "" + #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:387 msgid "Primary y-axis format" msgstr "" @@ -11056,7 +11175,7 @@ msgstr "" msgid "Private Key Password" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:269 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 msgid "Proceed" msgstr "" @@ -11135,11 +11254,11 @@ msgstr "" msgid "Python datetime string pattern" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1530 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1585 msgid "QUERY DATA IN SQL LAB" msgstr "" -#: superset/db_engine_specs/base.py:109 +#: superset/db_engine_specs/base.py:110 msgid "Quarter" msgstr "" @@ -11152,9 +11271,9 @@ msgstr "" msgid "Queries" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:51 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:43 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:53 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:30 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:33 #: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:90 @@ -11165,7 +11284,6 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:36 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:32 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:34 #: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:30 @@ -11176,6 +11294,7 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:44 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:55 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:43 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:41 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:60 @@ -11189,7 +11308,7 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:361 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:34 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:35 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:44 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:43 @@ -11205,7 +11324,7 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:152 #: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:30 #: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:26 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1479 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1471 #: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 #: superset-frontend/src/explore/controlPanels/sections.tsx:94 #: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:34 @@ -11217,7 +11336,7 @@ msgstr "" msgid "Query" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:361 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:363 #, python-format msgid "Query %s: %s" msgstr "" @@ -11232,11 +11351,11 @@ msgstr "" msgid "Query B" msgstr "" -#: superset/initialization/__init__.py:366 +#: superset/initialization/__init__.py:360 msgid "Query History" msgstr "" -#: superset/commands/exceptions.py:138 +#: superset/commands/exceptions.py:142 msgid "Query does not exist" msgstr "" @@ -11250,7 +11369,7 @@ msgstr "" msgid "Query imported" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:465 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 msgid "Query in a new tab" msgstr "" @@ -11275,11 +11394,11 @@ msgstr "" msgid "Query preview" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:415 msgid "Query was stopped" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:498 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:494 msgid "Query was stopped." msgstr "" @@ -11292,6 +11411,14 @@ msgstr "" msgid "RGB Color" msgstr "" +#: superset/row_level_security/commands/exceptions.py:29 +msgid "RLS Rule could not be deleted." +msgstr "" + +#: superset/row_level_security/commands/exceptions.py:25 +msgid "RLS Rule not found." +msgstr "" + #: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:159 msgid "Radar" msgstr "" @@ -11423,7 +11550,7 @@ msgstr "" msgid "Rectangle" msgstr "" -#: superset/connectors/sqla/views.py:446 +#: superset/connectors/sqla/views.py:353 msgid "Redirects to this endpoint when clicking on the table from the table list" msgstr "" @@ -11451,7 +11578,7 @@ msgstr "" msgid "Referenced columns not available in DataFrame." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:549 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:542 msgid "Refetch results" msgstr "" @@ -11500,10 +11627,15 @@ msgstr "" msgid "Regex" msgstr "" -#: superset/connectors/sqla/views.py:329 +#: superset-frontend/src/features/rls/constants.ts:24 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:262 +msgid "Regular" +msgstr "" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:364 msgid "" "Regular filters add where clauses to queries if a user belongs to a role " -"referenced in the filter. Base filters apply filters to all queries " +"referenced in the filter, base filters apply filters to all queries " "except the roles defined in the filter, and can be used to define what " "users can see if no RLS filters within a filter group apply to them." msgstr "" @@ -11548,7 +11680,7 @@ msgstr "" msgid "Remove" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:164 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:194 msgid "Remove cross-filter" msgstr "" @@ -11581,8 +11713,8 @@ msgstr "" msgid "Rendering" msgstr "" -#: superset/views/database/forms.py:168 superset/views/database/forms.py:325 -#: superset/views/database/forms.py:456 +#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 +#: superset/views/database/forms.py:466 msgid "Replace" msgstr "" @@ -11596,12 +11728,11 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:593 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:163 msgid "Report" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:282 +#: superset-frontend/src/components/ReportModal/index.tsx:281 msgid "Report Name" msgstr "" @@ -11718,7 +11849,7 @@ msgid "Request Permissions" msgstr "" #: superset/charts/data/api.py:153 superset/charts/data/api.py:243 -#: superset/charts/data/api.py:309 +#: superset/charts/data/api.py:312 #, python-format msgid "Request is incorrect: %(error)s" msgstr "" @@ -11727,7 +11858,7 @@ msgstr "" msgid "Request is not JSON" msgstr "" -#: superset/views/datasource/views.py:75 +#: superset/views/datasource/views.py:77 msgid "Request missing data field." msgstr "" @@ -11735,14 +11866,14 @@ msgstr "" msgid "Request timed out" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:94 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:98 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:105 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:252 msgid "Required" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:342 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 msgid "Required control values have been removed" msgstr "" @@ -11763,11 +11894,11 @@ msgstr "" msgid "Resample operation requires DatetimeIndex" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:199 +#: superset-frontend/src/components/Table/index.tsx:203 msgid "Reset" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:293 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:280 msgid "Reset state" msgstr "" @@ -11790,14 +11921,15 @@ msgstr "" msgid "Results" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 #: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:212 #: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 #, python-format msgid "Results %s" msgstr "" -#: superset/sql_lab.py:410 superset/sqllab/commands/results.py:59 -#: superset/views/core.py:2133 +#: superset/sql_lab.py:402 superset/sqllab/commands/results.py:59 +#: superset/views/core.py:2169 msgid "Results backend is not configured." msgstr "" @@ -11823,12 +11955,12 @@ msgstr "" msgid "Rich Tooltip" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:178 msgid "Rich tooltip" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:372 msgid "Right" msgstr "" @@ -11853,7 +11985,7 @@ msgstr "" msgid "Right to Left" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:157 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 msgid "Right value" msgstr "" @@ -11865,7 +11997,7 @@ msgstr "" msgid "Role" msgstr "" -#: superset/views/core.py:407 +#: superset/views/core.py:408 #, python-format msgid "Role %(r)s was extended to provide the access to the datasource %(ds)s" msgstr "" @@ -11874,8 +12006,10 @@ msgstr "" #: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:389 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:551 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:406 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:415 #: superset-frontend/src/profile/components/Security.tsx:35 -#: superset/connectors/sqla/views.py:364 superset/views/dashboard/mixin.py:82 +#: superset/views/dashboard/mixin.py:82 msgid "Roles" msgstr "" @@ -11921,7 +12055,7 @@ msgstr "" msgid "Rolling window" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 #: superset/views/database/mixins.py:195 msgid "Root certificate" msgstr "" @@ -11951,31 +12085,29 @@ msgstr "" msgid "Round cap" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 #: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 msgid "Row" msgstr "" -#: superset/initialization/__init__.py:295 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:70 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:302 +#: superset/initialization/__init__.py:436 msgid "Row Level Security" msgstr "" -#: superset/views/database/forms.py:245 +#: superset/views/database/forms.py:255 msgid "" "Row containing the headers to use as column names (0 is first line of " "data). Leave empty if there is no header row" msgstr "" -#: superset/views/database/forms.py:332 +#: superset/views/database/forms.py:342 msgid "" "Row containing the headers to use as column names (0 is first line of " "data). Leave empty if there is no header row." msgstr "" -#: superset/connectors/sqla/views.py:290 -msgid "Row level security filter" -msgstr "" - #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:247 #: superset-frontend/src/explore/controls.jsx:340 msgid "Row limit" @@ -11998,7 +12130,7 @@ msgstr "" msgid "Rows subtotal position" msgstr "" -#: superset/views/database/forms.py:254 superset/views/database/forms.py:360 +#: superset/views/database/forms.py:264 superset/views/database/forms.py:370 msgid "Rows to Read" msgstr "" @@ -12008,10 +12140,19 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:504 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:233 #: superset-frontend/src/explore/controlPanels/sections.tsx:230 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:286 msgid "Rule" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:54 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:355 +msgid "Rule Name" +msgstr "" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:253 +msgid "Rule added" +msgstr "" + +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:53 msgid "Run" msgstr "" @@ -12028,12 +12169,12 @@ msgstr "" msgid "Run in SQL Lab" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:309 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:319 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:311 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:321 msgid "Run query" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:131 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:132 msgid "Run query (Ctrl + Return)" msgstr "" @@ -12041,7 +12182,7 @@ msgstr "" msgid "Run query in a new tab" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:52 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:51 msgid "Run selection" msgstr "" @@ -12050,7 +12191,7 @@ msgstr "" msgid "Running" msgstr "" -#: superset/sql_lab.py:488 +#: superset/sql_lab.py:480 #, python-format msgid "Running statement %(statement_num)s out of %(statement_count)s" msgstr "" @@ -12072,8 +12213,8 @@ msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 #: superset-frontend/src/features/home/commonMenuData.ts:22 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:312 -#: superset/initialization/__init__.py:354 -#: superset/initialization/__init__.py:362 +#: superset/initialization/__init__.py:348 +#: superset/initialization/__init__.py:356 msgid "SQL" msgstr "" @@ -12081,17 +12222,17 @@ msgstr "" msgid "SQL Copied!" msgstr "" -#: superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:253 msgid "SQL Expression" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:73 -#: superset/initialization/__init__.py:349 -#: superset/initialization/__init__.py:371 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 +#: superset/initialization/__init__.py:343 +#: superset/initialization/__init__.py:365 msgid "SQL Lab" msgstr "" -#: superset/connectors/sqla/views.py:492 +#: superset/connectors/sqla/views.py:399 msgid "SQL Lab View" msgstr "" @@ -12207,7 +12348,7 @@ msgstr "" msgid "Samples" msgstr "" -#: superset/datasets/commands/exceptions.py:177 +#: superset/datasets/commands/exceptions.py:194 msgid "Samples for dataset could not be retrieved." msgstr "" @@ -12215,7 +12356,7 @@ msgstr "" msgid "Samples for datasource could not be retrieved." msgstr "" -#: superset/viz.py:1935 +#: superset/viz.py:1854 msgid "Sankey" msgstr "" @@ -12243,25 +12384,26 @@ msgstr "" #: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 #: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:199 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:214 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:246 -#: superset-frontend/src/components/ReportModal/index.tsx:229 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:288 +#: superset-frontend/src/components/ReportModal/index.tsx:228 #: superset-frontend/src/dashboard/components/Header/index.jsx:607 #: superset-frontend/src/dashboard/components/Header/index.jsx:609 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 #: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 #: superset-frontend/src/dashboard/components/SaveModal.tsx:211 #: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:794 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:156 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:492 #: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:268 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:458 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:462 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 -#: superset-frontend/src/explore/components/SaveModal.tsx:415 +#: superset-frontend/src/explore/components/SaveModal.tsx:449 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:418 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:424 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:147 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 @@ -12271,29 +12413,30 @@ msgstr "" #: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 #: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1695 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 #: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 msgid "Save" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:246 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:190 msgid "Save & Explore" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:396 +#: superset-frontend/src/explore/components/SaveModal.tsx:430 msgid "Save & go to dashboard" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:395 +#: superset-frontend/src/explore/components/SaveModal.tsx:429 msgid "Save & go to new dashboard" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:308 +#: superset-frontend/src/explore/components/SaveModal.tsx:343 msgid "Save (Overwrite)" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:199 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:306 msgid "Save as" msgstr "" @@ -12306,16 +12449,16 @@ msgstr "" msgid "Save as dataset" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:394 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:214 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:402 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 msgid "Save as new" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:412 +#: superset-frontend/src/explore/components/SaveModal.tsx:446 msgid "Save as new chart" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:316 +#: superset-frontend/src/explore/components/SaveModal.tsx:351 msgid "Save as..." msgstr "" @@ -12327,7 +12470,7 @@ msgstr "" msgid "Save changes" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:432 +#: superset-frontend/src/explore/components/SaveModal.tsx:466 msgid "Save chart" msgstr "" @@ -12335,7 +12478,7 @@ msgstr "" msgid "Save dashboard" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:106 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:105 msgid "Save dataset" msgstr "" @@ -12343,11 +12486,11 @@ msgstr "" msgid "Save for this session" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:350 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:356 msgid "Save or Overwrite Dataset" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:202 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:201 msgid "Save query" msgstr "" @@ -12355,27 +12498,27 @@ msgstr "" msgid "Save the query to enable this feature" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:250 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:465 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:149 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 msgid "Save this query as a virtual dataset to continue exploring" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:414 +#: superset-frontend/src/explore/components/SaveModal.tsx:448 msgid "Save to new dashboard" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:265 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:271 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 msgid "Saved" msgstr "" -#: superset/initialization/__init__.py:358 +#: superset/initialization/__init__.py:352 msgid "Saved Queries" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:249 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:255 msgid "Saved expressions" msgstr "" @@ -12434,12 +12577,12 @@ msgid "" msgstr "" #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 -#: superset-frontend/src/components/ReportModal/index.tsx:306 +#: superset-frontend/src/components/ReportModal/index.tsx:305 #: superset-frontend/src/pages/AlertReportList/index.tsx:276 msgid "Schedule" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:212 +#: superset-frontend/src/components/ReportModal/index.tsx:211 msgid "Schedule a new email report" msgstr "" @@ -12455,7 +12598,7 @@ msgstr "" msgid "Schedule settings" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:518 msgid "Schedule the query periodically" msgstr "" @@ -12473,31 +12616,31 @@ msgstr "" msgid "Scheduled task executor not found" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:299 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:221 -#: superset-frontend/src/pages/DatasetList/index.tsx:354 -#: superset-frontend/src/pages/DatasetList/index.tsx:536 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:298 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 +#: superset-frontend/src/pages/DatasetList/index.tsx:365 +#: superset-frontend/src/pages/DatasetList/index.tsx:547 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:250 #: superset-frontend/src/pages/SavedQueryList/index.tsx:297 #: superset-frontend/src/pages/SavedQueryList/index.tsx:469 -#: superset/connectors/sqla/views.py:483 superset/views/database/forms.py:144 -#: superset/views/database/forms.py:311 superset/views/database/forms.py:442 +#: superset/connectors/sqla/views.py:390 superset/views/database/forms.py:154 +#: superset/views/database/forms.py:321 superset/views/database/forms.py:452 msgid "Schema" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:247 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:257 msgid "Schema cache timeout" msgstr "" -#: superset/views/core.py:1164 +#: superset/views/core.py:1186 msgid "Schema undefined" msgstr "" -#: superset/connectors/sqla/views.py:429 +#: superset/connectors/sqla/views.py:336 msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:419 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:429 msgid "Schemas allowed for File upload" msgstr "" @@ -12509,7 +12652,7 @@ msgstr "" msgid "Scoping" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 msgid "Scroll" msgstr "" @@ -12525,15 +12668,15 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:724 #: superset-frontend/src/pages/CssTemplateList/index.tsx:293 #: superset-frontend/src/pages/DashboardList/index.tsx:516 -#: superset-frontend/src/pages/DatabaseList/index.tsx:492 -#: superset-frontend/src/pages/DatasetList/index.tsx:577 +#: superset-frontend/src/pages/DatabaseList/index.tsx:503 +#: superset-frontend/src/pages/DatasetList/index.tsx:588 #: superset-frontend/src/pages/SavedQueryList/index.tsx:494 #: superset-frontend/src/pages/Tags/index.tsx:204 #: superset/templates/appbuilder/general/widgets/search.html:40 msgid "Search" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:294 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 msgid "Search / Filter" msgstr "" @@ -12557,11 +12700,11 @@ msgstr "" msgid "Search by query text" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:207 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 msgid "Search columns" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:202 +#: superset-frontend/src/components/Table/index.tsx:206 msgid "Search in filters" msgstr "" @@ -12573,7 +12716,7 @@ msgstr "" msgid "Search..." msgstr "" -#: superset/db_engine_specs/base.py:96 +#: superset/db_engine_specs/base.py:97 msgid "Second" msgstr "" @@ -12587,10 +12730,14 @@ msgid "Secondary Metric" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:408 +msgid "Secondary y-axis Bounds" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:425 msgid "Secondary y-axis format" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:417 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:434 msgid "Secondary y-axis title" msgstr "" @@ -12603,15 +12750,15 @@ msgstr "" msgid "Secure Extra" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:336 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:341 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:346 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 msgid "Secure extra" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:329 -#: superset/initialization/__init__.py:297 -#: superset/initialization/__init__.py:395 -#: superset/initialization/__init__.py:433 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:339 +#: superset/initialization/__init__.py:389 +#: superset/initialization/__init__.py:427 +#: superset/initialization/__init__.py:438 msgid "Security" msgstr "" @@ -12634,24 +12781,24 @@ msgstr "" msgid "See more" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:412 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:405 msgid "See query details" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:288 +#: superset-frontend/src/components/TableSelector/index.tsx:277 msgid "See table schema" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:363 +#: superset-frontend/src/explore/components/SaveModal.tsx:398 #: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 msgid "Select" msgstr "" #: superset-frontend/src/components/AsyncSelect/index.jsx:41 #: superset-frontend/src/components/Select/AsyncSelect.tsx:123 -#: superset-frontend/src/components/Select/Select.tsx:103 +#: superset-frontend/src/components/Select/Select.tsx:104 #: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 -#: superset-frontend/src/explore/components/controls/SelectControl.jsx:230 +#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 msgid "Select ..." msgstr "" @@ -12663,11 +12810,11 @@ msgstr "" msgid "Select Viz Type" msgstr "" -#: superset/views/database/forms.py:415 +#: superset/views/database/forms.py:425 msgid "Select a Columnar file to be uploaded to a database." msgstr "" -#: superset/views/database/forms.py:279 +#: superset/views/database/forms.py:289 msgid "Select a Excel file to be uploaded to a database." msgstr "" @@ -12675,7 +12822,7 @@ msgstr "" msgid "Select a column" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:357 +#: superset-frontend/src/explore/components/SaveModal.tsx:392 #, fuzzy msgid "Select a dashboard" msgstr "" @@ -12696,7 +12843,7 @@ msgstr "" msgid "Select a database to upload the file to" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:744 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:738 msgid "Select a database to write a query" msgstr "" @@ -12708,7 +12855,7 @@ msgstr "" msgid "Select a file to be uploaded to the database" msgstr "" -#: superset/views/database/forms.py:145 +#: superset/views/database/forms.py:155 msgid "Select a schema if the database supports this" msgstr "" @@ -12720,11 +12867,11 @@ msgstr "" msgid "Select aggregate options" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:207 +#: superset-frontend/src/components/Table/index.tsx:211 msgid "Select all data" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:201 +#: superset-frontend/src/components/Table/index.tsx:205 msgid "Select all items" msgstr "" @@ -12732,6 +12879,11 @@ msgstr "" msgid "Select any columns for metadata inspection" msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +#, fuzzy +msgid "Select chart" +msgstr "" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:45 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:103 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:138 @@ -12742,13 +12894,13 @@ msgstr "" msgid "Select color scheme" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:208 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 msgid "Select column" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:204 +#: superset-frontend/src/components/Table/index.tsx:208 msgid "Select current page" msgstr "" @@ -12756,8 +12908,8 @@ msgstr "" msgid "Select database & schema" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:272 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:280 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:271 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:279 msgid "Select database or type to search databases" msgstr "" @@ -12765,7 +12917,7 @@ msgstr "" msgid "Select database table" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1791 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1847 msgid "" "Select databases require additional fields to be completed in the " "Advanced tab to successfully connect the database. Learn what " @@ -12802,7 +12954,7 @@ msgstr "" msgid "Select or type a value" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:410 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:418 msgid "Select or type dataset name" msgstr "" @@ -12814,8 +12966,8 @@ msgstr "" msgid "Select saved metrics" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:297 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:304 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:296 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 msgid "Select schema or type to search schemas" msgstr "" @@ -12823,7 +12975,7 @@ msgstr "" msgid "Select scheme" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:304 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:307 msgid "Select start and end date" msgstr "" @@ -12831,8 +12983,8 @@ msgstr "" msgid "Select subject" msgstr "" +#: superset-frontend/src/components/TableSelector/index.tsx:284 #: superset-frontend/src/components/TableSelector/index.tsx:295 -#: superset-frontend/src/components/TableSelector/index.tsx:306 msgid "Select table or type to search tables" msgstr "" @@ -12840,6 +12992,23 @@ msgstr "" msgid "Select the Annotation Layer you would like to use." msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +msgid "" +"Select the charts to which you want to apply cross-filters in this " +"dashboard. Deselecting a chart will exclude it from being filtered when " +"applying cross-filters from any chart on the dashboard. You can select " +"\"All charts\" to apply cross-filters to all charts that use the same " +"dataset or contain the same column name in the dashboard." +msgstr "" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +msgid "" +"Select the charts to which you want to apply cross-filters when " +"interacting with this chart. You can select \"All charts\" to apply " +"filters to all charts that use the same dataset or contain the same " +"column name in the dashboard." +msgstr "" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:392 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:37 msgid "Select the geojson column" @@ -12885,7 +13054,7 @@ msgstr "" msgid "Sequential" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 msgid "Series" msgstr "" @@ -12901,7 +13070,7 @@ msgstr "" msgid "Series Limit Sort Descending" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:255 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:246 msgid "Series Order" msgstr "" @@ -12973,13 +13142,13 @@ msgid "Settings for time series" msgstr "" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:325 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:464 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:467 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 #: superset-frontend/src/features/home/SavedQueries.tsx:211 msgid "Share" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:469 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:472 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:343 msgid "Share chart by email" msgstr "" @@ -12988,7 +13157,7 @@ msgstr "" msgid "Share permalink by email" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1429 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1421 msgid "Shared query" msgstr "" @@ -12996,7 +13165,7 @@ msgstr "" msgid "Shared query fields" msgstr "" -#: superset/views/database/forms.py:298 +#: superset/views/database/forms.py:308 msgid "Sheet Name" msgstr "" @@ -13046,7 +13215,7 @@ msgstr "" msgid "Show Chart" msgstr "" -#: superset/connectors/sqla/views.py:73 +#: superset/connectors/sqla/views.py:72 msgid "Show Column" msgstr "" @@ -13080,11 +13249,11 @@ msgstr "" msgid "Show Markers" msgstr "" -#: superset/connectors/sqla/views.py:208 +#: superset/connectors/sqla/views.py:207 msgid "Show Metric" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:178 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 msgid "Show Metric Names" msgstr "" @@ -13092,15 +13261,11 @@ msgstr "" msgid "Show Range Filter" msgstr "" -#: superset/connectors/sqla/views.py:291 -msgid "Show Row level security filter" -msgstr "" - #: superset/views/sql_lab/views.py:53 msgid "Show Saved Query" msgstr "" -#: superset/connectors/sqla/views.py:385 +#: superset/connectors/sqla/views.py:292 msgid "Show Table" msgstr "" @@ -13121,11 +13286,11 @@ msgstr "" msgid "Show Upper Labels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:110 msgid "Show Value" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:164 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:315 #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:184 msgid "Show Values" @@ -13158,7 +13323,7 @@ msgstr "" msgid "Show cell bars" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:395 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 msgid "Show chart description" msgstr "" @@ -13193,7 +13358,7 @@ msgstr "" msgid "Show labels when the node has children." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:39 msgid "Show legend" msgstr "" @@ -13229,7 +13394,7 @@ msgstr "" msgid "Show rows total" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 msgid "Show series values on the chart" msgstr "" @@ -13256,7 +13421,6 @@ msgid "" " apply to the result." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:76 #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:365 msgid "Show totals" @@ -13301,7 +13465,7 @@ msgstr "" msgid "Showing %s of %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:184 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 msgid "Shows a list of all series available at that point in time" msgstr "" @@ -13321,7 +13485,7 @@ msgstr "" msgid "Significance Level" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:341 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 @@ -13370,23 +13534,23 @@ msgstr "" msgid "Sizes of vehicles" msgstr "" -#: superset/views/database/forms.py:177 +#: superset/views/database/forms.py:187 msgid "Skip Blank Lines" msgstr "" -#: superset/views/database/forms.py:174 +#: superset/views/database/forms.py:184 msgid "Skip Initial Space" msgstr "" -#: superset/views/database/forms.py:260 superset/views/database/forms.py:354 +#: superset/views/database/forms.py:270 superset/views/database/forms.py:364 msgid "Skip Rows" msgstr "" -#: superset/views/database/forms.py:178 +#: superset/views/database/forms.py:188 msgid "Skip blank lines rather than interpreting them as Not A Number values" msgstr "" -#: superset/views/database/forms.py:174 +#: superset/views/database/forms.py:184 msgid "Skip spaces after delimiter" msgstr "" @@ -13422,7 +13586,7 @@ msgstr "" msgid "Solid" msgstr "" -#: superset/commands/exceptions.py:115 +#: superset/commands/exceptions.py:119 msgid "Some roles do not exist" msgstr "" @@ -13430,7 +13594,7 @@ msgstr "" msgid "Something went wrong." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:864 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:919 #, python-format msgid "Sorry there was an error fetching database information: %s" msgstr "" @@ -13448,7 +13612,7 @@ msgstr "" msgid "Sorry, an error occurred" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:357 +#: superset-frontend/src/dashboard/actions/dashboardState.js:359 msgid "Sorry, an unknown error occurred" msgstr "" @@ -13477,14 +13641,14 @@ msgstr "" msgid "Sorry, there was an error saving this %s: %s" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:360 +#: superset-frontend/src/dashboard/actions/dashboardState.js:362 #, python-format msgid "Sorry, there was an error saving this dashboard: %s" msgstr "" #: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 #: superset-frontend/src/pages/SavedQueryList/index.tsx:229 -#: superset-frontend/src/views/CRUD/hooks.ts:676 +#: superset-frontend/src/views/CRUD/hooks.ts:680 msgid "Sorry, your browser does not support copying." msgstr "" @@ -13494,7 +13658,7 @@ msgstr "" #: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 #: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 -#: superset-frontend/src/components/Table/index.tsx:208 +#: superset-frontend/src/components/Table/index.tsx:212 msgid "Sort" msgstr "" @@ -13512,11 +13676,11 @@ msgstr "" msgid "Sort Metric" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:247 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:238 msgid "Sort Series Ascending" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:227 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:224 msgid "Sort Series By" msgstr "" @@ -13591,7 +13755,7 @@ msgstr "" msgid "Sort rows by" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:250 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:241 msgid "Sort series in ascending order" msgstr "" @@ -13622,6 +13786,7 @@ msgstr "" msgid "Sparkline" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:978 msgid "Spatial" msgstr "" @@ -13630,23 +13795,23 @@ msgstr "" msgid "Specific Date/Time" msgstr "" -#: superset/views/database/forms.py:312 superset/views/database/forms.py:443 +#: superset/views/database/forms.py:322 superset/views/database/forms.py:453 msgid "Specify a schema (if database flavor supports this)." msgstr "" -#: superset/views/database/forms.py:351 +#: superset/views/database/forms.py:361 msgid "Specify duplicate columns as \"X.0, X.1\"." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:711 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:705 msgid "Specify name to CREATE TABLE AS schema in: public" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:710 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:704 msgid "Specify name to CREATE VIEW AS schema in: public" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:515 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:551 msgid "" "Specify the database version. This should be used with Presto in order to" " enable query cost estimation." @@ -13668,7 +13833,7 @@ msgstr "" msgid "Square miles" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 msgid "Stack" msgstr "" @@ -13682,7 +13847,7 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:161 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:115 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:128 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:125 msgid "Stack series on top of each other" msgstr "" @@ -13702,7 +13867,7 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:124 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:121 #: superset-frontend/src/explore/fixtures.tsx:58 msgid "Stacked Style" msgstr "" @@ -13770,7 +13935,7 @@ msgstr "" msgid "State" msgstr "" -#: superset/sql_lab.py:511 +#: superset/sql_lab.py:503 #, python-format msgid "Statement %(statement_num)s out of %(statement_count)s" msgstr "" @@ -13820,20 +13985,20 @@ msgid "" "irregular intervals." msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:47 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:46 #: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 msgid "Stop" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:337 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:339 msgid "Stop query" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:116 msgid "Stop running (Ctrl + e)" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:114 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 msgid "Stop running (Ctrl + x)" msgstr "" @@ -13841,7 +14006,7 @@ msgstr "" msgid "Stopped an unsafe database connection" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 msgid "Stream" msgstr "" @@ -13858,7 +14023,7 @@ msgstr "" msgid "Stretched style" msgstr "" -#: superset/views/database/forms.py:299 +#: superset/views/database/forms.py:309 msgid "Strings used for sheet names (default is the first sheet)." msgstr "" @@ -13887,11 +14052,11 @@ msgstr "" msgid "Style the ends of the progress bar with a round cap" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:56 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 msgid "Subdomain" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 msgid "Subheader" msgstr "" @@ -13903,8 +14068,8 @@ msgstr "" msgid "Submit" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:472 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:678 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 #: superset/charts/post_processing.py:161 #: superset/charts/post_processing.py:178 msgid "Subtotal" @@ -13916,7 +14081,7 @@ msgstr "" msgid "Success" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:193 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 msgid "Successfully changed dataset!" msgstr "" @@ -13949,7 +14114,7 @@ msgstr "" msgid "Sum values" msgstr "" -#: superset/viz.py:1888 +#: superset/viz.py:1805 msgid "Sunburst" msgstr "" @@ -13974,7 +14139,7 @@ msgid "Superset Embedded SDK documentation." msgstr "" #: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:470 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:473 msgid "Superset chart" msgstr "" @@ -13990,7 +14155,7 @@ msgstr "" msgid "Superset encountered an unexpected error." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:920 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 msgid "Supported databases" msgstr "" @@ -13998,11 +14163,7 @@ msgstr "" msgid "Survey Responses" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:101 -msgid "Swap Groups and Columns" -msgstr "" - -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:254 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:311 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:435 msgid "Swap dataset" @@ -14050,6 +14211,11 @@ msgstr "" msgid "Syntax" msgstr "" +#: superset/db_engine_specs/ocient.py:282 +#, python-format +msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +msgstr "" + #: superset-frontend/src/pages/QueryHistoryList/index.tsx:268 #: superset-frontend/src/pages/SavedQueryList/index.tsx:315 msgid "TABLES" @@ -14081,36 +14247,36 @@ msgstr "" msgid "Tab title" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:26 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 -#: superset-frontend/src/components/TableSelector/index.tsx:290 +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 +#: superset-frontend/src/components/TableSelector/index.tsx:279 #: superset-frontend/src/visualizations/TimeTable/index.ts:26 -#: superset/connectors/sqla/views.py:160 superset/connectors/sqla/views.py:255 -#: superset/connectors/sqla/views.py:477 superset/views/chart/mixin.py:86 +#: superset/connectors/sqla/views.py:159 superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:384 superset/views/chart/mixin.py:86 msgid "Table" msgstr "" -#: superset/views/core.py:1740 +#: superset/views/core.py:1775 #, python-format msgid "Table %(table)s wasn't found in the database %(db)s" msgstr "" -#: superset/views/database/forms.py:317 superset/views/database/forms.py:448 +#: superset/views/database/forms.py:327 superset/views/database/forms.py:458 msgid "Table Exists" msgstr "" -#: superset/connectors/sqla/views.py:487 superset/views/database/forms.py:128 -#: superset/views/database/forms.py:269 superset/views/database/forms.py:405 +#: superset/connectors/sqla/views.py:394 superset/views/database/forms.py:128 +#: superset/views/database/forms.py:279 superset/views/database/forms.py:415 msgid "Table Name" msgstr "" -#: superset/viz.py:698 +#: superset/viz.py:722 msgid "Table View" msgstr "" -#: superset/datasets/commands/exceptions.py:130 +#: superset/datasets/commands/exceptions.py:147 #, python-format msgid "" "Table [%(table_name)s] could not be found, please double check your " @@ -14123,7 +14289,7 @@ msgid "" "connection, schema, and table name, error: {}" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:268 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:278 msgid "Table cache timeout" msgstr "" @@ -14135,8 +14301,8 @@ msgstr "" msgid "Table loading" msgstr "" -#: superset/views/database/forms.py:132 superset/views/database/forms.py:273 -#: superset/views/database/forms.py:409 +#: superset/views/database/forms.py:132 superset/views/database/forms.py:283 +#: superset/views/database/forms.py:419 msgid "Table name cannot contain a schema" msgstr "" @@ -14144,15 +14310,22 @@ msgstr "" msgid "Table name undefined" msgstr "" +#: superset/db_engine_specs/ocient.py:287 +#, python-format +msgid "Table or View \"%(table)s\" does not exist." +msgstr "" + #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 msgid "" "Table that visualizes paired t-tests, which are used to understand " "statistical differences between groups." msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:384 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:393 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:287 #: superset-frontend/src/pages/SavedQueryList/index.tsx:334 -#: superset/connectors/sqla/views.py:363 superset/connectors/sqla/views.py:384 +#: superset/connectors/sqla/views.py:291 msgid "Tables" msgstr "" @@ -14199,7 +14372,7 @@ msgstr "" #: superset-frontend/src/pages/SavedQueryList/index.tsx:382 #: superset-frontend/src/pages/SavedQueryList/index.tsx:487 #: superset-frontend/src/pages/Tags/index.tsx:279 -#: superset/initialization/__init__.py:384 +#: superset/initialization/__init__.py:378 msgid "Tags" msgstr "" @@ -14226,7 +14399,7 @@ msgstr "" msgid "Target category" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:173 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 msgid "Target value" msgstr "" @@ -14236,7 +14409,7 @@ msgstr "" #: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:962 -#: superset/connectors/sqla/views.py:493 +#: superset/connectors/sqla/views.py:400 msgid "Template parameters" msgstr "" @@ -14246,7 +14419,7 @@ msgid "" "coming from the controls." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:317 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:327 msgid "" "Terminate running queries when browser window closed or navigated to " "another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " @@ -14270,7 +14443,7 @@ msgstr "" msgid "Text align" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:248 +#: superset-frontend/src/components/ReportModal/index.tsx:247 msgid "Text embedded in email" msgstr "" @@ -14315,7 +14488,7 @@ msgid "" " the filters list?" msgstr "" -#: superset/views/core.py:372 +#: superset/views/core.py:373 msgid "The access requests seem to have been deleted" msgstr "" @@ -14333,11 +14506,11 @@ msgid "" "associated with more than one category, only the first will be used." msgstr "" -#: superset/common/query_context_processor.py:586 +#: superset/common/query_context_processor.py:585 msgid "The chart datasource does not exist" msgstr "" -#: superset/common/query_context_processor.py:584 +#: superset/common/query_context_processor.py:583 msgid "The chart does not exist" msgstr "" @@ -14389,14 +14562,14 @@ msgstr "" msgid "The data source seems to have been deleted" msgstr "" -#: superset/connectors/sqla/views.py:115 +#: superset/connectors/sqla/views.py:114 msgid "" "The data type that was inferred by the database. It may be necessary to " "input a type manually for expression-defined columns in some cases. In " "most case users should not need to alter this." msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:515 +#: superset-frontend/src/pages/DatabaseList/index.tsx:529 #, python-format msgid "" "The database %s is linked to %s charts that appear on %s dashboards and " @@ -14435,11 +14608,11 @@ msgstr "" msgid "The database was deleted." msgstr "" -#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2002 +#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2039 msgid "The database was not found." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:710 +#: superset-frontend/src/pages/DatasetList/index.tsx:724 #, python-format msgid "" "The dataset %s is linked to %s charts that appear on %s dashboards. Are " @@ -14448,11 +14621,11 @@ msgid "" msgstr "" #: superset-frontend/src/components/Chart/Chart.jsx:88 -#: superset/views/utils.py:274 +#: superset/views/utils.py:272 msgid "The dataset associated with this chart no longer exists" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:168 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:210 msgid "" "The dataset configuration exposed here\n" " affects all the charts using this dataset.\n" @@ -14461,7 +14634,7 @@ msgid "" " in undesirable ways." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:129 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:164 #: superset-frontend/src/pages/ChartCreation/index.tsx:261 msgid "The dataset has been saved" msgstr "" @@ -14470,7 +14643,7 @@ msgstr "" msgid "The dataset linked to this chart may have been deleted." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1496 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1488 msgid "The datasource couldn't be loaded" msgstr "" @@ -14484,7 +14657,7 @@ msgid "" " Supports markdown." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:104 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 msgid "The distance between cells, in pixels" msgstr "" @@ -14498,7 +14671,7 @@ msgstr "" msgid "The encoding format of the lines" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:495 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:531 msgid "" "The engine_params object gets unpacked into the sqlalchemy.create_engine " "call." @@ -14511,6 +14684,7 @@ msgid "" "%(columns)s. " msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:111 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:67 msgid "The function to use when aggregating points into groups" msgstr "" @@ -14521,9 +14695,9 @@ msgid "The host \"%(hostname)s\" might be down and can't be reached." msgstr "" #: superset/db_engine_specs/mssql.py:103 -#: superset/db_engine_specs/postgres.py:140 -#: superset/db_engine_specs/presto.py:664 -#: superset/db_engine_specs/redshift.py:82 +#: superset/db_engine_specs/postgres.py:139 +#: superset/db_engine_specs/presto.py:691 +#: superset/db_engine_specs/redshift.py:86 #, python-format msgid "" "The host \"%(hostname)s\" might be down, and can't be reached on port " @@ -14535,9 +14709,9 @@ msgid "The host might be down, and can't be reached on the provided port." msgstr "" #: superset/db_engine_specs/mssql.py:93 -#: superset/db_engine_specs/postgres.py:130 -#: superset/db_engine_specs/presto.py:659 -#: superset/db_engine_specs/redshift.py:72 +#: superset/db_engine_specs/postgres.py:129 +#: superset/db_engine_specs/presto.py:686 +#: superset/db_engine_specs/redshift.py:76 #, python-format msgid "The hostname \"%(hostname)s\" cannot be resolved." msgstr "" @@ -14551,7 +14725,7 @@ msgstr "" msgid "The id of the active chart" msgstr "" -#: superset/connectors/sqla/views.py:418 +#: superset/connectors/sqla/views.py:325 msgid "" "The list of charts associated with this table. By altering this " "datasource, you may change how these associated charts behave. Also note " @@ -14588,7 +14762,7 @@ msgid "" "%{key}s is invalid." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:469 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:505 msgid "" "The metadata_params object gets unpacked into the sqlalchemy.MetaData " "call." @@ -14608,7 +14782,7 @@ msgid "" "periods" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:130 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 msgid "The number color \"steps\"" msgstr "" @@ -14618,7 +14792,7 @@ msgid "" " can be used to move UTC time to local time." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:308 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:301 #, python-format msgid "" "The number of results displayed is limited to %(rows)d by the " @@ -14626,7 +14800,7 @@ msgid "" "download to csv to see more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:314 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:307 #, python-format msgid "" "The number of results displayed is limited to %(rows)d. Please add " @@ -14634,22 +14808,22 @@ msgid "" "more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:365 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:358 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the dropdown." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:334 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:326 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:319 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the query" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:339 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:332 #, python-format msgid "" "The number of rows displayed is limited to %(rows)d by the query and " @@ -14665,14 +14839,14 @@ msgstr "" msgid "The object does not exist in the given database." msgstr "" -#: superset/sqllab/query_render.py:96 +#: superset/sqllab/query_render.py:94 #, python-format msgid "The parameter %(parameters)s in your query is undefined." msgid_plural "The following parameters in your query are undefined: %(parameters)s." msgstr[0] "" msgstr[1] "" -#: superset/db_engine_specs/postgres.py:120 +#: superset/db_engine_specs/postgres.py:119 #, python-format msgid "The password provided for username \"%(username)s\" is incorrect." msgstr "" @@ -14717,7 +14891,7 @@ msgid "" " they are needed." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1284 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1339 msgid "" "The passwords for the databases below are needed in order to import them." " Please note that the \"Secure Extra\" and \"Certificate\" sections of " @@ -14737,7 +14911,7 @@ msgid "" "\"freq\" expressions." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 msgid "The pixel radius" msgstr "" @@ -14761,7 +14935,7 @@ msgstr "" msgid "The primary metric is used to define the arc segment sizes" msgstr "" -#: superset/views/core.py:2212 +#: superset/views/core.py:2248 msgid "The provided `rows` argument is not a valid integer." msgstr "" @@ -14770,13 +14944,13 @@ msgid "The query associated with the results was deleted." msgstr "" #: superset/sqllab/commands/export.py:63 superset/sqllab/commands/results.py:91 -#: superset/views/core.py:2162 +#: superset/views/core.py:2198 msgid "" "The query associated with these results could not be found. You need to " "re-run the original query." msgstr "" -#: superset/sqllab/query_render.py:117 +#: superset/sqllab/query_render.py:115 msgid "The query contains one or more malformed template parameters." msgstr "" @@ -14795,11 +14969,11 @@ msgstr "" msgid "The query has a syntax error." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:519 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:512 msgid "The query returned no data" msgstr "" -#: superset/sql_lab.py:301 +#: superset/sql_lab.py:297 #, python-format msgid "" "The query was killed after %(sqllab_timeout)s seconds. It might be too " @@ -14840,14 +15014,14 @@ msgstr "" msgid "The rich tooltip shows a list of all series for that point in time" msgstr "" -#: superset/db_engine_specs/bigquery.py:202 +#: superset/db_engine_specs/bigquery.py:203 #, python-format msgid "" "The schema \"%(schema)s\" does not exist. A valid schema must be used to " "run this query." msgstr "" -#: superset/db_engine_specs/presto.py:646 +#: superset/db_engine_specs/presto.py:673 #, python-format msgid "" "The schema \"%(schema_name)s\" does not exist. A valid schema must be " @@ -14858,11 +15032,12 @@ msgstr "" msgid "The schema was deleted or renamed in the database." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:92 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 msgid "The size of the square cell, in pixels" msgstr "" -#: superset/views/datasource/views.py:88 +#: superset/datasets/commands/exceptions.py:72 +#: superset/views/datasource/views.py:90 msgid "" "The submitted URL is not considered safe, only use URLs with the same " "domain as Superset." @@ -14876,21 +15051,21 @@ msgstr "" msgid "The submitted payload has the incorrect schema." msgstr "" -#: superset/db_engine_specs/bigquery.py:189 +#: superset/db_engine_specs/bigquery.py:190 #, python-format msgid "" "The table \"%(table)s\" does not exist. A valid table must be used to run" " this query." msgstr "" -#: superset/db_engine_specs/presto.py:638 +#: superset/db_engine_specs/presto.py:665 #, python-format msgid "" "The table \"%(table_name)s\" does not exist. A valid table must be used " "to run this query." msgstr "" -#: superset/connectors/sqla/views.py:515 +#: superset/connectors/sqla/views.py:422 msgid "" "The table was created. As part of this two-phase configuration process, " "you should now click the edit button by the new table to configure it." @@ -14941,13 +15116,13 @@ msgid "" " the start and/or end time." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 msgid "" "The time unit for each block. Should be a smaller unit than " "domain_granularity. Should be larger or equal to Time Grain" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 msgid "The time unit used for the grouping of blocks" msgstr "" @@ -14965,7 +15140,12 @@ msgstr "" msgid "The user seems to have been deleted" msgstr "" -#: superset/db_engine_specs/postgres.py:115 +#: superset/db_engine_specs/ocient.py:251 +msgid "The user/password combination is not valid (Incorrect password for user)." +msgstr "" + +#: superset/db_engine_specs/ocient.py:246 +#: superset/db_engine_specs/postgres.py:114 #, python-format msgid "The username \"%(username)s\" does not exist." msgstr "" @@ -14992,16 +15172,16 @@ msgstr "" msgid "There are associated alerts or reports" msgstr "" -#: superset/charts/commands/bulk_delete.py:62 -#: superset/charts/commands/delete.py:71 -#: superset/dashboards/commands/bulk_delete.py:63 -#: superset/dashboards/commands/delete.py:64 -#: superset/databases/commands/delete.py:63 +#: superset/charts/commands/bulk_delete.py:61 +#: superset/charts/commands/delete.py:70 +#: superset/dashboards/commands/bulk_delete.py:62 +#: superset/dashboards/commands/delete.py:63 +#: superset/databases/commands/delete.py:62 #, python-format msgid "There are associated alerts or reports: %s," msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:710 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:711 msgid "There are no charts added to this dashboard" msgstr "" @@ -15054,7 +15234,7 @@ msgstr "" msgid "There was an error fetching tables" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:589 +#: superset-frontend/src/views/CRUD/hooks.ts:593 #, python-format msgid "There was an error fetching the favorite status: %s" msgstr "" @@ -15063,19 +15243,23 @@ msgstr "" msgid "There was an error fetching your recent activity:" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:450 +msgid "There was an error loading the chart data" +msgstr "" + #: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 msgid "There was an error loading the dataset metadata" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:241 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:240 msgid "There was an error loading the schemas" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:194 +#: superset-frontend/src/components/TableSelector/index.tsx:191 msgid "There was an error loading the tables" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:612 +#: superset-frontend/src/views/CRUD/hooks.ts:616 #, python-format msgid "There was an error saving the favorite status: %s" msgstr "" @@ -15089,14 +15273,20 @@ msgstr "" #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 #: superset-frontend/src/pages/AnnotationList/index.tsx:121 #: superset-frontend/src/pages/CssTemplateList/index.tsx:97 -#: superset-frontend/src/pages/DatabaseList/index.tsx:167 -#: superset-frontend/src/pages/DatasetList/index.tsx:657 +#: superset-frontend/src/pages/DatabaseList/index.tsx:178 +#: superset-frontend/src/pages/DatasetList/index.tsx:668 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:97 #: superset-frontend/src/pages/SavedQueryList/index.tsx:245 #: superset-frontend/src/views/CRUD/utils.tsx:315 #, python-format msgid "There was an issue deleting %s: %s" msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:111 +#, python-format +msgid "There was an issue deleting rules: %s" +msgstr "" + #: superset-frontend/src/pages/AlertReportList/index.tsx:201 #, python-format msgid "There was an issue deleting the selected %s: %s" @@ -15116,7 +15306,7 @@ msgstr "" msgid "There was an issue deleting the selected dashboards: " msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:675 +#: superset-frontend/src/pages/DatasetList/index.tsx:686 #, python-format msgid "There was an issue deleting the selected datasets: %s" msgstr "" @@ -15141,16 +15331,16 @@ msgstr "" msgid "There was an issue deleting: %s" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:683 +#: superset-frontend/src/pages/DatasetList/index.tsx:694 msgid "There was an issue duplicating the dataset." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:699 +#: superset-frontend/src/pages/DatasetList/index.tsx:710 #, python-format msgid "There was an issue duplicating the selected datasets: %s" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:129 +#: superset-frontend/src/dashboard/actions/dashboardState.js:127 msgid "There was an issue favoriting this dashboard." msgstr "" @@ -15158,7 +15348,7 @@ msgstr "" msgid "There was an issue fetching reports attached to this dashboard." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:104 +#: superset-frontend/src/dashboard/actions/dashboardState.js:103 msgid "There was an issue fetching the favorite status of this dashboard." msgstr "" @@ -15192,13 +15382,13 @@ msgstr "" msgid "There was an issue previewing the selected query. %s" msgstr "" -#: superset/viz.py:1992 +#: superset/viz.py:1915 msgid "" "There's a loop in your Sankey, please provide a tree. Here's a faulty " "link: {}" msgstr "" -#: superset/connectors/sqla/views.py:335 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:386 msgid "These are the tables this filter will be applied to." msgstr "" @@ -15247,10 +15437,10 @@ msgid "" "mydatabase.com)." msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:244 +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:245 msgid "" -"This chart emits/applies cross-filters to other charts that use the same " -"dataset" +"This chart applies cross-filters to charts whose datasets contain columns" +" with the same name." msgstr "" #: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 @@ -15265,7 +15455,7 @@ msgstr "" msgid "This chart might be incompatible with the filter (datasets don't match)" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:322 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 msgid "" "This chart type is not supported when using an unsaved query as a chart " "source. " @@ -15277,7 +15467,7 @@ msgid "" " Check the JSON metadata in the Advanced settings" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:121 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:113 msgid "This column might be incompatible with current dataset" msgstr "" @@ -15324,11 +15514,11 @@ msgid "" "dashboards. Click here to publish this dashboard." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:154 +#: superset-frontend/src/dashboard/actions/dashboardState.js:152 msgid "This dashboard is now hidden" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:153 +#: superset-frontend/src/dashboard/actions/dashboardState.js:151 msgid "This dashboard is now published" msgstr "" @@ -15342,18 +15532,18 @@ msgid "" " id to the SDK:" msgstr "" -#: superset/views/core.py:1319 +#: superset/views/core.py:1353 msgid "" "This dashboard was changed recently. Please reload dashboard to get " "latest version." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:311 -#: superset-frontend/src/dashboard/actions/dashboardState.js:350 +#: superset-frontend/src/dashboard/actions/dashboardState.js:313 +#: superset-frontend/src/dashboard/actions/dashboardState.js:352 msgid "This dashboard was saved successfully." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1119 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1174 msgid "This database is managed externally, and can't be edited in Superset" msgstr "" @@ -15363,7 +15553,7 @@ msgid "" "table." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:240 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:282 msgid "This dataset is managed externally, and can't be edited in Superset" msgstr "" @@ -15380,7 +15570,7 @@ msgstr "" msgid "This defines the level of the hierarchy" msgstr "" -#: superset/connectors/sqla/views.py:436 +#: superset/connectors/sqla/views.py:343 msgid "" "This fields acts a Superset view, meaning that Superset will run a query " "against this string as a subquery." @@ -15403,7 +15593,7 @@ msgstr "" msgid "This functionality is disabled in your environment for security reasons." msgstr "" -#: superset/connectors/sqla/views.py:352 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:456 msgid "" "This is the condition that will be added to the WHERE clause. For " "example, to only return rows for a particular client, you might define a " @@ -15432,7 +15622,7 @@ msgstr "" msgid "This may be triggered by:" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:258 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:256 msgid "This metric might be incompatible with current dataset" msgstr "" @@ -15473,15 +15663,15 @@ msgid "" "associate one dataset with a table.\n" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:85 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 msgid "This value should be greater than the left target value" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:80 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 msgid "This value should be smaller than the right target value" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:141 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:171 msgid "This visualization type does not support cross-filtering." msgstr "" @@ -15518,6 +15708,7 @@ msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:38 #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 @@ -15547,7 +15738,7 @@ msgstr "" msgid "Time Comparison" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:141 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 msgid "Time Format" msgstr "" @@ -15577,39 +15768,39 @@ msgstr "" msgid "Time Series" msgstr "" -#: superset/viz.py:1670 +#: superset/viz.py:1581 msgid "Time Series - Bar Chart" msgstr "" -#: superset/viz.py:1596 +#: superset/viz.py:1504 msgid "Time Series - Dual Axis Line Chart" msgstr "" -#: superset/viz.py:1308 +#: superset/viz.py:1209 msgid "Time Series - Line Chart" msgstr "" -#: superset/viz.py:1518 +#: superset/viz.py:1424 msgid "Time Series - Multiple Line Charts" msgstr "" -#: superset/viz.py:3036 +#: superset/viz.py:3033 msgid "Time Series - Nightingale Rose Chart" msgstr "" -#: superset/viz.py:2965 +#: superset/viz.py:2961 msgid "Time Series - Paired t-test" msgstr "" -#: superset/viz.py:1725 +#: superset/viz.py:1638 msgid "Time Series - Percent Change" msgstr "" -#: superset/viz.py:1679 +#: superset/viz.py:1590 msgid "Time Series - Period Pivot" msgstr "" -#: superset/viz.py:1733 +#: superset/viz.py:1646 msgid "Time Series - Stacked" msgstr "" @@ -15624,7 +15815,7 @@ msgstr "" msgid "Time Shift" msgstr "" -#: superset/viz.py:849 +#: superset/viz.py:878 msgid "Time Table View" msgstr "" @@ -15635,7 +15826,7 @@ msgstr "" msgid "Time column" msgstr "" -#: superset/connectors/sqla/models.py:1392 superset/models/helpers.py:1575 +#: superset/models/helpers.py:1659 #, python-format msgid "Time column \"%(col)s\" does not exist in dataset" msgstr "" @@ -15718,6 +15909,7 @@ msgid "Time ratio" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 #: superset-frontend/src/explore/controlPanels/sections.tsx:66 msgid "Time related form attributes" msgstr "" @@ -15838,12 +16030,12 @@ msgstr "" msgid "Timestamp format" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:326 +#: superset-frontend/src/components/ReportModal/index.tsx:325 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 msgid "Timezone" msgstr "" -#: superset/connectors/sqla/views.py:427 +#: superset/connectors/sqla/views.py:334 msgid "Timezone offset (in hours) for this datasource" msgstr "" @@ -15885,30 +16077,27 @@ msgstr "" msgid "To get a readable URL for your dashboard" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:288 -msgid "Too many columns to filter" -msgstr "" - #: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:27 msgid "Tools" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:216 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:213 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 msgid "Tooltip" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:201 msgid "Tooltip sort by metric" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:191 msgid "Tooltip time format" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 msgid "Top" msgstr "" @@ -15930,14 +16119,14 @@ msgstr "" msgid "Total (%(aggfunc)s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:497 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:562 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:784 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 #, python-format msgid "Total (%(aggregatorName)s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:230 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:68 msgid "Total value" msgstr "" @@ -15951,7 +16140,7 @@ msgstr "" msgid "Totals" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:411 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:404 msgid "Track job" msgstr "" @@ -15971,10 +16160,6 @@ msgstr "" msgid "Transparent" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:99 -msgid "Transpose Pivot" -msgstr "" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:238 msgid "Transpose pivot" msgstr "" @@ -15992,7 +16177,7 @@ msgid "Tree orientation" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:60 -#: superset/viz.py:1035 +#: superset/viz.py:925 msgid "Treemap" msgstr "" @@ -16058,7 +16243,7 @@ msgstr "" msgid "Truncates the specified date to the accuracy specified by the date unit." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 msgid "Try applying different filters or ensuring your datasource has data" msgstr "" @@ -16079,21 +16264,21 @@ msgstr "" msgid "Tukey" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:216 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:65 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:272 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:276 -#: superset-frontend/src/pages/DatasetList/index.tsx:343 -#: superset-frontend/src/pages/DatasetList/index.tsx:552 -#: superset/connectors/sqla/views.py:164 superset/connectors/sqla/views.py:253 +#: superset-frontend/src/pages/DatasetList/index.tsx:354 +#: superset-frontend/src/pages/DatasetList/index.tsx:563 +#: superset/connectors/sqla/views.py:163 superset/connectors/sqla/views.py:252 msgid "Type" msgstr "" #: superset-frontend/src/components/DeleteModal/index.tsx:92 #: superset-frontend/src/components/ImportModal/index.tsx:397 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1405 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1460 #, python-format msgid "Type \"%s\" to confirm" msgstr "" @@ -16119,7 +16304,7 @@ msgstr "" msgid "Type of comparison, value difference or percentage" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:404 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:407 #, python-format msgid "Type or Select [%s]" msgstr "" @@ -16149,22 +16334,23 @@ msgstr "" msgid "URL slug" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:622 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:618 msgid "Unable to add a new tab to the backend. Please contact your administrator." msgstr "" -#: superset/db_engine_specs/presto.py:677 +#: superset/db_engine_specs/presto.py:704 #, python-format msgid "Unable to connect to catalog named \"%(catalog_name)s\"." msgstr "" #: superset/db_engine_specs/mysql.py:165 -#: superset/db_engine_specs/postgres.py:148 +#: superset/db_engine_specs/postgres.py:147 +#: superset/db_engine_specs/starrocks.py:127 #, python-format msgid "Unable to connect to database \"%(database)s\"." msgstr "" -#: superset/db_engine_specs/bigquery.py:177 +#: superset/db_engine_specs/bigquery.py:178 msgid "" "Unable to connect. Verify that the following roles are set on the service" " account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " @@ -16172,10 +16358,18 @@ msgid "" "\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:218 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:216 msgid "Unable to create chart without a query id." msgstr "" +#: superset/key_value/exceptions.py:66 +msgid "Unable to decode value" +msgstr "" + +#: superset/key_value/exceptions.py:62 +msgid "Unable to encode value" +msgstr "" + #: superset/utils/date_parser.py:393 #, python-format msgid "Unable to find such a holiday: [%(holiday)s]" @@ -16187,19 +16381,19 @@ msgid "" "table." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:589 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:585 msgid "" "Unable to migrate query editor state to backend. Superset will retry " "later. Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:543 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:539 msgid "" "Unable to migrate query state to backend. Superset will retry later. " "Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:525 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:521 msgid "" "Unable to migrate table schema state to backend. Superset will retry " "later. Please contact your administrator if this problem persists." @@ -16209,14 +16403,14 @@ msgstr "" msgid "Unable to retrieve dashboard colors" msgstr "" -#: superset/views/database/views.py:275 +#: superset/views/database/views.py:278 #, python-format msgid "" "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" " database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset/views/database/views.py:553 +#: superset/views/database/views.py:556 #, python-format msgid "" "Unable to upload Columnar file \"%(filename)s\" to table " @@ -16224,14 +16418,14 @@ msgid "" "%(error_msg)s" msgstr "" -#: superset/views/database/views.py:412 +#: superset/views/database/views.py:415 #, python-format msgid "" "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " "in database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:93 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:92 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 msgid "Undefined" msgstr "" @@ -16244,7 +16438,7 @@ msgstr "" msgid "Undo the action" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:131 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:132 msgid "Undo?" msgstr "" @@ -16254,7 +16448,7 @@ msgid "Unexpected error" msgstr "" #: superset/databases/commands/exceptions.py:137 -#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1438 +#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1479 msgid "Unexpected error occurred, please check your logs for details" msgstr "" @@ -16262,7 +16456,7 @@ msgstr "" msgid "Unexpected error: " msgstr "" -#: superset/views/api.py:109 +#: superset/views/api.py:108 #, python-format msgid "Unexpected time range: %s" msgstr "" @@ -16276,7 +16470,7 @@ msgstr "" msgid "Unknown MySQL server host \"%(hostname)s\"." msgstr "" -#: superset/db_engine_specs/presto.py:1319 +#: superset/db_engine_specs/presto.py:1342 msgid "Unknown Presto Error" msgstr "" @@ -16284,13 +16478,13 @@ msgstr "" msgid "Unknown Status" msgstr "" -#: superset/connectors/sqla/models.py:1317 superset/models/helpers.py:1498 +#: superset/models/helpers.py:1582 #, python-format msgid "Unknown column used in orderby: %(col)s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:402 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:480 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:398 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:476 msgid "Unknown error" msgstr "" @@ -16349,7 +16543,7 @@ msgstr "" msgid "Untitled query" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:223 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:222 msgid "Update" msgstr "" @@ -16366,7 +16560,7 @@ msgstr "" msgid "Upload" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:202 +#: superset-frontend/src/pages/DatabaseList/index.tsx:213 msgid "Upload CSV" msgstr "" @@ -16382,7 +16576,7 @@ msgstr "" msgid "Upload Enabled" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:216 +#: superset-frontend/src/pages/DatabaseList/index.tsx:227 msgid "Upload Excel file" msgstr "" @@ -16394,7 +16588,7 @@ msgstr "" msgid "Upload JSON file" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:209 +#: superset-frontend/src/pages/DatabaseList/index.tsx:220 msgid "Upload columnar file" msgstr "" @@ -16402,7 +16596,7 @@ msgstr "" msgid "Upload columnar file to database" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:199 +#: superset-frontend/src/pages/DatabaseList/index.tsx:210 msgid "Upload file to database" msgstr "" @@ -16415,7 +16609,7 @@ msgstr "" msgid "Use \"%(menuName)s\" menu instead." msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:36 +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 #, python-format msgid "Use %s to open in a new tab." msgstr "" @@ -16426,7 +16620,7 @@ msgstr "" msgid "Use Area Proportions" msgstr "" -#: superset/views/database/forms.py:462 +#: superset/views/database/forms.py:472 msgid "Use Columns" msgstr "" @@ -16442,9 +16636,9 @@ msgstr "" msgid "Use a log scale for the Y-axis" msgstr "" -#: superset/db_engine_specs/base.py:1850 -#: superset/db_engine_specs/clickhouse.py:211 -#: superset/db_engine_specs/databricks.py:57 +#: superset/db_engine_specs/base.py:1889 +#: superset/db_engine_specs/clickhouse.py:216 +#: superset/db_engine_specs/databricks.py:58 msgid "Use an encrypted connection to the database" msgstr "" @@ -16455,12 +16649,12 @@ msgid "" " Your chart must be one of these visualization types: [%s]" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:87 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 msgid "Use date formatting even when metric value is not a timestamp" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:217 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 msgid "Use legacy datasource editor" msgstr "" @@ -16506,16 +16700,6 @@ msgid "" " from the pluginʼs package.json" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:28 -msgid "" -"Used to summarize a set of data by grouping together multiple statistics " -"along two axes. Examples: Sales numbers by region and month, tasks by " -"status and assignee, active users by age and location.\n" -"\n" -" This chart is being deprecated and we recommend checking out Pivot " -"Table V2 instead!" -msgstr "" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 msgid "" "Used to summarize a set of data by grouping together multiple statistics " @@ -16559,11 +16743,17 @@ msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:133 #: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 -#: superset/db_engine_specs/base.py:1837 +#: superset/db_engine_specs/base.py:1868 #: superset/db_engine_specs/clickhouse.py:201 msgid "Username" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:27 +msgid "" +"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" +" of data" +msgstr "" + #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:45 msgid "" "Uses a gauge to showcase progress of a metric towards a target. The " @@ -16613,9 +16803,9 @@ msgstr "" msgid "Value is required" msgstr "" -#: superset/reports/schemas.py:186 superset/reports/schemas.py:192 -#: superset/reports/schemas.py:198 superset/reports/schemas.py:280 -#: superset/reports/schemas.py:286 superset/reports/schemas.py:293 +#: superset/reports/schemas.py:190 superset/reports/schemas.py:195 +#: superset/reports/schemas.py:200 superset/reports/schemas.py:291 +#: superset/reports/schemas.py:296 superset/reports/schemas.py:302 msgid "Value must be greater than 0" msgstr "" @@ -16637,16 +16827,16 @@ msgstr "" msgid "Vehicle Types" msgstr "" -#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:252 +#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:251 msgid "Verbose Name" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:503 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:539 #: superset-frontend/src/features/home/RightMenu.tsx:501 msgid "Version" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:509 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:545 msgid "Version number" msgstr "" @@ -16657,7 +16847,7 @@ msgstr "" msgid "Vertical" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:162 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 msgid "Vertical (Left)" msgstr "" @@ -16684,7 +16874,7 @@ msgstr "" msgid "View all charts" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:434 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 msgid "View as table" msgstr "" @@ -16698,8 +16888,8 @@ msgstr "" msgid "View keys & indexes (%s)" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:415 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:417 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:424 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:426 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:394 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:396 msgid "View query" @@ -16720,8 +16910,8 @@ msgstr "" msgid "Viewport" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:342 -#: superset-frontend/src/pages/DatasetList/index.tsx:559 +#: superset-frontend/src/pages/DatasetList/index.tsx:353 +#: superset-frontend/src/pages/DatasetList/index.tsx:570 msgid "Virtual" msgstr "" @@ -16729,20 +16919,20 @@ msgstr "" msgid "Virtual (SQL)" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:281 +#: superset-frontend/src/pages/DatasetList/index.tsx:292 msgid "Virtual dataset" msgstr "" -#: superset/connectors/sqla/models.py:960 superset/connectors/sqla/utils.py:111 -#: superset/models/helpers.py:1036 +#: superset/connectors/sqla/models.py:921 superset/connectors/sqla/utils.py:110 +#: superset/models/helpers.py:1079 msgid "Virtual dataset query cannot be empty" msgstr "" -#: superset/connectors/sqla/models.py:963 superset/models/helpers.py:1039 +#: superset/connectors/sqla/models.py:924 superset/models/helpers.py:1082 msgid "Virtual dataset query cannot consist of multiple statements" msgstr "" -#: superset/connectors/sqla/models.py:928 superset/models/helpers.py:1062 +#: superset/connectors/sqla/models.py:889 superset/models/helpers.py:1105 msgid "Virtual dataset query must be read-only" msgstr "" @@ -16871,7 +17061,7 @@ msgid "" "corresponds to higher frequency." msgstr "" -#: superset/viz.py:141 +#: superset/viz.py:140 msgid "Viz is missing a datasource" msgstr "" @@ -16883,21 +17073,21 @@ msgstr "" msgid "WED" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:948 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1003 msgid "Want to add a new database?" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1246 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:216 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:214 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 msgid "Warning" msgstr "" -#: superset/connectors/sqla/views.py:258 +#: superset/connectors/sqla/views.py:257 msgid "Warning Message" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:286 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 msgid "Warning!" msgstr "" @@ -16912,13 +17102,13 @@ msgstr "" msgid "Was unable to check your query" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1468 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1523 msgid "" "We are unable to connect to your database. Click \"See more\" for " "database-provided information that may help troubleshoot the issue." msgstr "" -#: superset/db_engine_specs/bigquery.py:197 +#: superset/db_engine_specs/bigquery.py:198 #, python-format msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." msgstr "" @@ -16928,8 +17118,8 @@ msgstr "" msgid "We can't seem to resolve the column \"%(column_name)s\"" msgstr "" -#: superset/db_engine_specs/postgres.py:153 -#: superset/db_engine_specs/presto.py:630 +#: superset/db_engine_specs/postgres.py:152 +#: superset/db_engine_specs/presto.py:657 #, python-format msgid "" "We can't seem to resolve the column \"%(column_name)s\" at line " @@ -16951,7 +17141,7 @@ msgid "" "dataset." msgstr "" -#: superset/db_engine_specs/redshift.py:90 +#: superset/db_engine_specs/redshift.py:94 #, python-format msgid "" "We were unable to connect to your database named \"%(database)s\". Please" @@ -16968,31 +17158,31 @@ msgstr "" msgid "Wednesday" msgstr "" -#: superset/db_engine_specs/base.py:107 +#: superset/db_engine_specs/base.py:108 msgid "Week" msgstr "" -#: superset/db_engine_specs/base.py:113 +#: superset/db_engine_specs/base.py:114 msgid "Week ending Saturday" msgstr "" -#: superset/db_engine_specs/base.py:112 +#: superset/db_engine_specs/base.py:113 msgid "Week starting Monday" msgstr "" -#: superset/db_engine_specs/base.py:111 +#: superset/db_engine_specs/base.py:112 msgid "Week starting Sunday" msgstr "" -#: superset/db_engine_specs/base.py:114 +#: superset/db_engine_specs/base.py:115 msgid "Week_ending Sunday" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:123 +#: superset-frontend/src/components/ReportModal/index.tsx:122 msgid "Weekly Report" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:122 +#: superset-frontend/src/components/ReportModal/index.tsx:121 #, python-format msgid "Weekly Report for %s" msgstr "" @@ -17006,6 +17196,7 @@ msgstr "" msgid "Weeks %s" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:49 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:77 msgid "Weight" @@ -17042,7 +17233,7 @@ msgstr[1] "" msgid "What should be shown on the label?" msgstr "" -#: superset/views/database/forms.py:165 +#: superset/views/database/forms.py:175 msgid "What should happen if the table already exists" msgstr "" @@ -17067,7 +17258,7 @@ msgstr "" msgid "When checked, the map will zoom to your data after each query" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:189 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 msgid "When enabled, users are able to visualize SQL Lab results in Explore." msgstr "" @@ -17092,11 +17283,11 @@ msgid "" "relative time filter on a partitioned or indexed time-related field." msgstr "" -#: superset/viz.py:861 +#: superset/viz.py:891 msgid "When using 'Group By' you are limited to use a single metric" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:74 msgid "When using other than adaptive formatting, labels may overlap" msgstr "" @@ -17108,11 +17299,11 @@ msgstr "" msgid "Whether the progress bar overlaps when there are multiple groups of data" msgstr "" -#: superset/connectors/sqla/views.py:455 +#: superset/connectors/sqla/views.py:362 msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" msgstr "" -#: superset/connectors/sqla/views.py:111 +#: superset/connectors/sqla/views.py:110 msgid "" "Whether this column is exposed in the `Filters` section of the explore " "view." @@ -17154,7 +17345,7 @@ msgstr "" msgid "Whether to display a bar chart background in table columns" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 msgid "Whether to display a legend for the chart" msgstr "" @@ -17185,14 +17376,14 @@ msgid "" " 5% threshold." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:157 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:118 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:159 msgid "Whether to display the legend (toggles)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:181 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 msgid "Whether to display the metric name as a title" msgstr "" @@ -17205,7 +17396,7 @@ msgstr "" msgid "Whether to display the min and max values of the Y-axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:167 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:187 msgid "Whether to display the numerical values within the cells" @@ -17269,7 +17460,7 @@ msgstr "" msgid "Whether to make the histogram cumulative" msgstr "" -#: superset/connectors/sqla/views.py:106 +#: superset/connectors/sqla/views.py:105 msgid "" "Whether to make this column available as a [Time Granularity] option, " "column has to be DATETIME or DATETIME-like" @@ -17283,7 +17474,7 @@ msgstr "" msgid "Whether to populate autocomplete filters options" msgstr "" -#: superset/connectors/sqla/views.py:450 +#: superset/connectors/sqla/views.py:357 msgid "" "Whether to populate the filter's dropdown in the explore view's filter " "section with a list of distinct values fetched from the backend on the " @@ -17313,7 +17504,8 @@ msgstr "" msgid "Whether to show the split lines on the axis" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:124 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:143 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:174 msgid "Whether to sort ascending or descending on the base Axis." msgstr "" @@ -17343,7 +17535,7 @@ msgstr "" msgid "Whether to sort results by the selected metric in descending order." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:207 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 msgid "Whether to sort tooltip by the selected metric in descending order." msgstr "" @@ -17407,7 +17599,7 @@ msgid "Working timeout" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 -#: superset/viz.py:2079 +#: superset/viz.py:2006 msgid "World Map" msgstr "" @@ -17419,11 +17611,11 @@ msgstr "" msgid "Write a handlebars template to render the data" msgstr "" -#: superset/views/database/forms.py:219 +#: superset/views/database/forms.py:229 msgid "Write dataframe index as a column" msgstr "" -#: superset/views/database/forms.py:380 superset/views/database/forms.py:471 +#: superset/views/database/forms.py:390 superset/views/database/forms.py:481 msgid "Write dataframe index as a column." msgstr "" @@ -17481,11 +17673,13 @@ msgstr "" msgid "X bounds" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:122 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:141 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:172 msgid "X-Axis Sort Ascending" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:69 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:156 msgid "X-Axis Sort By" msgstr "" @@ -17544,7 +17738,6 @@ msgid "Y Axis 2 Bounds" msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:260 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:248 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:192 @@ -17583,11 +17776,13 @@ msgstr "" msgid "Y bounds" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:121 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:140 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:171 msgid "Y-Axis Sort Ascending" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:68 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 msgid "Y-Axis Sort By" msgstr "" @@ -17603,7 +17798,7 @@ msgstr "" msgid "YScale Interval" msgstr "" -#: superset/db_engine_specs/base.py:110 +#: superset/db_engine_specs/base.py:111 msgid "Year" msgstr "" @@ -17628,9 +17823,9 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:707 #: superset-frontend/src/pages/DashboardList/index.tsx:506 #: superset-frontend/src/pages/DashboardList/index.tsx:588 -#: superset-frontend/src/pages/DatabaseList/index.tsx:467 -#: superset-frontend/src/pages/DatabaseList/index.tsx:487 -#: superset-frontend/src/pages/DatasetList/index.tsx:572 +#: superset-frontend/src/pages/DatabaseList/index.tsx:478 +#: superset-frontend/src/pages/DatabaseList/index.tsx:498 +#: superset-frontend/src/pages/DatasetList/index.tsx:583 msgid "Yes" msgstr "" @@ -17657,7 +17852,7 @@ msgid "" "overwrite?" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1394 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1449 msgid "" "You are importing one or more databases that already exist. Overwriting " "might cause you to lose some of your work. Are you sure you want to " @@ -17678,7 +17873,7 @@ msgid "" "want to overwrite?" msgstr "" -#: superset/views/core.py:2177 +#: superset/views/core.py:2213 msgid "" "You are not authorized to see this query. If you think this is an error, " "please reach out to your administrator." @@ -17696,7 +17891,7 @@ msgstr "" msgid "You can add the components in the edit mode." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:127 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:157 msgid "You can also just click on the chart to apply cross-filter." msgstr "" @@ -17719,7 +17914,7 @@ msgstr "" msgid "You can preview the list of dashboards in the chart settings dropdown." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:148 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:178 msgid "You can't apply cross-filter on this data point." msgstr "" @@ -17733,7 +17928,7 @@ msgstr "" msgid "You cannot use 45° tick layout along with the time range filter" msgstr "" -#: superset/viz.py:723 +#: superset/viz.py:748 msgid "" "You cannot use [Columns] in combination with [Group " "By]/[Metrics]/[Percentage Metrics]. Please choose one or the other." @@ -17749,7 +17944,7 @@ msgid "You do not have permission to edit this chart" msgstr "" #: superset-frontend/src/components/Tags/utils.tsx:69 -#: superset-frontend/src/dashboard/actions/dashboardState.js:366 +#: superset-frontend/src/dashboard/actions/dashboardState.js:368 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:134 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:40 @@ -17761,7 +17956,7 @@ msgstr "" msgid "You do not have permissions to access the datasource(s): %(name)s." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:162 +#: superset-frontend/src/dashboard/actions/dashboardState.js:160 msgid "You do not have permissions to edit this dashboard." msgstr "" @@ -17773,7 +17968,7 @@ msgstr "" msgid "You don't have access to this dashboard." msgstr "" -#: superset/datasets/commands/exceptions.py:189 +#: superset/datasets/commands/exceptions.py:206 msgid "You don't have access to this dataset." msgstr "" @@ -17790,16 +17985,16 @@ msgstr "" msgid "You don't have permission to modify the value." msgstr "" -#: superset/security/manager.py:2267 +#: superset/security/manager.py:2262 #, python-format msgid "You don't have the rights to alter %(resource)s" msgstr "" -#: superset/views/core.py:923 +#: superset/views/core.py:945 msgid "You don't have the rights to alter this chart" msgstr "" -#: superset/views/core.py:1097 +#: superset/views/core.py:1119 msgid "You don't have the rights to alter this dashboard" msgstr "" @@ -17807,19 +18002,19 @@ msgstr "" msgid "You don't have the rights to alter this title." msgstr "" -#: superset/views/core.py:929 +#: superset/views/core.py:951 msgid "You don't have the rights to create a chart" msgstr "" -#: superset/views/core.py:1113 +#: superset/views/core.py:1135 msgid "You don't have the rights to create a dashboard" msgstr "" -#: superset/views/core.py:644 +#: superset/views/core.py:649 msgid "You don't have the rights to download as csv" msgstr "" -#: superset/views/core.py:424 +#: superset/views/core.py:425 msgid "You have no permission to approve this request" msgstr "" @@ -17831,7 +18026,7 @@ msgstr "" msgid "You have unsaved changes." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:652 +#: superset-frontend/src/dashboard/actions/dashboardState.js:650 #, python-format msgid "" "You have used all %(historyLength)s undo slots and will not be able to " @@ -17840,7 +18035,7 @@ msgid "" msgstr "" #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:300 -#: superset-frontend/src/pages/DatasetList/index.tsx:453 +#: superset-frontend/src/pages/DatasetList/index.tsx:464 msgid "" "You must be a dataset owner in order to edit. Please reach out to a " "dataset owner to request modifications or edit access." @@ -17850,7 +18045,7 @@ msgstr "" msgid "You must pick a name for the new dashboard" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:525 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:519 msgid "You must run the query successfully first" msgstr "" @@ -17858,7 +18053,7 @@ msgstr "" msgid "You need to configure HTML sanitization to use CSS" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:350 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 msgid "" "You updated the values in the control panel, but the chart was not " "updated automatically. Run the query by clicking on the \"Update chart\" " @@ -17871,7 +18066,7 @@ msgid "" "match this new dataset have been retained." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:343 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 msgid "Your chart is not up to date" msgstr "" @@ -17883,7 +18078,7 @@ msgstr "" msgid "Your dashboard is too large. Please reduce its size before saving it." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1036 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1028 msgid "Your query could not be saved" msgstr "" @@ -17891,7 +18086,7 @@ msgstr "" msgid "Your query could not be scheduled" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1071 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1063 msgid "Your query could not be updated" msgstr "" @@ -17901,15 +18096,15 @@ msgid "" "Saved queries" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1051 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 msgid "Your query was not properly saved" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1054 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1046 msgid "Your query was saved" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1067 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1059 msgid "Your query was updated" msgstr "" @@ -17930,19 +18125,19 @@ msgstr "" msgid "Zoom level of the map" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:262 +#: superset-frontend/src/dashboard/actions/dashboardState.js:260 msgid "[ untitled dashboard ]" msgstr "" -#: superset/viz.py:2386 +#: superset/viz.py:2323 msgid "[Longitude] and [Latitude] columns must be present in [Group By]" msgstr "" -#: superset/viz.py:2336 +#: superset/viz.py:2273 msgid "[Longitude] and [Latitude] must be set" msgstr "" -#: superset/explore/commands/get.py:121 superset/views/core.py:870 +#: superset/explore/commands/get.py:121 superset/views/core.py:892 msgid "[Missing Dataset]" msgstr "" @@ -17955,7 +18150,7 @@ msgstr "" msgid "[Untitled]" msgstr "" -#: superset/connectors/base/models.py:252 superset/models/sql_lab.py:228 +#: superset/connectors/base/models.py:262 superset/models/sql_lab.py:216 msgid "[asc]" msgstr "" @@ -17967,7 +18162,7 @@ msgstr "" msgid "[dashboard name]" msgstr "" -#: superset/connectors/base/models.py:255 superset/models/sql_lab.py:231 +#: superset/connectors/base/models.py:265 superset/models/sql_lab.py:219 msgid "[desc]" msgstr "" @@ -17991,7 +18186,7 @@ msgstr "" msgid "`compare_type` must be `difference`, `percentage` or `ratio`" msgstr "" -#: superset/charts/schemas.py:573 +#: superset/charts/schemas.py:654 msgid "`confidence_interval` must be between 0 and 1 (exclusive)" msgstr "" @@ -18014,15 +18209,15 @@ msgstr "" msgid "`rename_columns` must have the same length as `columns`." msgstr "" -#: superset/charts/schemas.py:1114 +#: superset/charts/schemas.py:1284 msgid "`row_limit` must be greater than or equal to 0" msgstr "" -#: superset/charts/schemas.py:1121 +#: superset/charts/schemas.py:1291 msgid "`row_offset` must be greater than or equal to 0" msgstr "" -#: superset/charts/schemas.py:972 +#: superset/charts/schemas.py:1108 msgid "`width` must be greater or equal to 0" msgstr "" @@ -18030,10 +18225,15 @@ msgstr "" msgid "aggregate" msgstr "" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 #: superset-frontend/src/pages/AlertReportList/index.tsx:110 msgid "alert" msgstr "" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 +msgid "alert dark" +msgstr "" + #: superset-frontend/src/pages/AlertReportList/index.tsx:111 msgid "alerts" msgstr "" @@ -18170,7 +18370,7 @@ msgid "clear all filters" msgstr "" #: superset-frontend/src/components/Chart/Chart.jsx:290 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:354 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 msgid "click here" msgstr "" @@ -18200,7 +18400,7 @@ msgstr "" msgid "count" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:365 +#: superset-frontend/src/explore/components/SaveModal.tsx:400 msgid "create" msgstr "" @@ -18244,16 +18444,16 @@ msgid "dashboards" msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/index.tsx:543 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:712 -#: superset-frontend/src/pages/DatabaseList/index.tsx:91 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:729 +#: superset-frontend/src/pages/DatabaseList/index.tsx:102 msgid "database" msgstr "" #: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 #: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 #: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 -#: superset-frontend/src/pages/DatasetList/index.tsx:148 -#: superset-frontend/src/pages/DatasetList/index.tsx:822 +#: superset-frontend/src/pages/DatasetList/index.tsx:159 +#: superset-frontend/src/pages/DatasetList/index.tsx:844 msgid "dataset" msgstr "" @@ -18265,8 +18465,8 @@ msgstr "" msgid "date" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 msgid "day" msgstr "" @@ -18295,6 +18495,10 @@ msgstr "" msgid "deck.gl Grid" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:30 +msgid "deck.gl Heatmap" +msgstr "" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:28 msgid "deck.gl Multiple Layers" msgstr "" @@ -18323,6 +18527,7 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:34 @@ -18406,11 +18611,11 @@ msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:112 #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:657 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:674 msgid "e.g. world_population" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:655 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:672 msgid "e.g. xy12345.us-east-2.aws" msgstr "" @@ -18426,7 +18631,15 @@ msgstr "" msgid "entries" msgstr "" -#: superset/connectors/sqla/models.py:1537 superset/models/helpers.py:1742 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +msgid "error" +msgstr "" + +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 +msgid "error dark" +msgstr "" + +#: superset/models/helpers.py:1803 msgid "error_message" msgstr "" @@ -18506,10 +18719,6 @@ msgstr "" msgid "geohash (square)" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 -msgid "green" -msgstr "" - #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:168 msgid "heatmap" msgstr "" @@ -18522,13 +18731,13 @@ msgstr "" #: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:125 #: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1800 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1856 msgid "here" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 msgid "hour" msgstr "" @@ -18565,7 +18774,7 @@ msgstr "" msgid "joined" msgstr "" -#: superset/views/base.py:595 +#: superset/views/base.py:596 msgid "json isn't valid" msgstr "" @@ -18624,14 +18833,13 @@ msgstr "" msgid "log" msgstr "" -#: superset/charts/schemas.py:645 +#: superset/charts/schemas.py:735 msgid "" "lower percentile must be greater than 0 and less than 100. Must be lower " "than upper percentile." msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:189 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:58 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 #: superset-frontend/src/filters/components/Range/buildQuery.ts:69 msgid "max" @@ -18640,9 +18848,9 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:187 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:254 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:56 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:136 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:119 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:403 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:531 @@ -18660,14 +18868,13 @@ msgstr "" msgid "median" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:60 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:62 #: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 msgid "metric" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:188 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:57 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 #: superset-frontend/src/filters/components/Range/buildQuery.ts:58 msgid "min" @@ -18686,8 +18893,8 @@ msgid "monotone" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 #: superset-frontend/src/explore/controls.jsx:267 msgid "month" @@ -18698,7 +18905,7 @@ msgid "more than {max} {name}" msgstr "" #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:53 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:78 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:77 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:116 msgid "must have a value" msgstr "" @@ -18759,7 +18966,7 @@ msgstr "" msgid "or use existing ones from the panel on the right" msgstr "" -#: superset/charts/schemas.py:1143 +#: superset/charts/schemas.py:1313 msgid "orderby column must be populated" msgstr "" @@ -18815,7 +19022,7 @@ msgid "" " first is lower than the second value" msgstr "" -#: superset/views/core.py:1921 +#: superset/views/core.py:1958 msgid "permalink state not found" msgstr "" @@ -18868,11 +19075,7 @@ msgstr "" msgid "recents" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 -msgid "red" -msgstr "" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:563 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:566 #: superset-frontend/src/pages/AlertReportList/index.tsx:110 msgid "report" msgstr "" @@ -18884,7 +19087,7 @@ msgstr "" msgid "reports" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:491 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:522 msgid "restore zoom" msgstr "" @@ -18893,6 +19096,10 @@ msgstr "" msgid "right" msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:139 +msgid "rowlevelsecurity" +msgstr "" + #: superset-frontend/src/SqlLab/constants.ts:36 #: superset-frontend/src/SqlLab/constants.ts:52 msgid "running" @@ -18938,7 +19145,6 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:190 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:59 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:138 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:405 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:185 @@ -18969,15 +19175,20 @@ msgstr "" #: superset-frontend/src/SqlLab/constants.ts:38 #: superset-frontend/src/SqlLab/constants.ts:50 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 msgid "success" msgstr "" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +msgid "success dark" +msgstr "" + #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:186 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:255 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:378 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:55 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:260 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:532 @@ -19020,7 +19231,7 @@ msgstr "" msgid "unknown type icon" msgstr "" -#: superset/charts/schemas.py:660 +#: superset/charts/schemas.py:750 msgid "" "upper percentile must be greater than 0 and less than 100. Must be higher" " than lower percentile." @@ -19041,7 +19252,6 @@ msgid "value descending" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:60 msgid "var" msgstr "" @@ -19061,13 +19271,13 @@ msgstr "" msgid "viz type" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:451 msgid "was created" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:62 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 #: superset-frontend/src/explore/controls.jsx:264 msgid "week" @@ -19100,16 +19310,12 @@ msgid "y: values are normalized within each row" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 #: superset-frontend/src/explore/controls.jsx:269 msgid "year" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 -msgid "yellow" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:490 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:521 msgid "zoom area" msgstr "" diff --git a/superset/translations/es/LC_MESSAGES/messages.json b/superset/translations/es/LC_MESSAGES/messages.json index 75ab88b5b9..a413fb1a9f 100644 --- a/superset/translations/es/LC_MESSAGES/messages.json +++ b/superset/translations/es/LC_MESSAGES/messages.json @@ -121,6 +121,9 @@ "A comma separated list of columns that should be parsed as dates.": [ "Una lista separada por comas de columnas que deben ser parseadas como fechas." ], + "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ + "" + ], "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ "" ], @@ -186,9 +189,6 @@ "Add Database": ["Añadir Base de Datos"], "Add Log": ["Agregar Registro"], "Add Metric": ["Añadir Métrica"], - "Add Row level security filter": [ - "Añadir filtro de seguridad de nivel de fila" - ], "Add Saved Query": ["Añadir Consulta Guardada"], "Add a Plugin": ["Añadir Columna"], "Add a new tab to create SQL Query": [""], @@ -198,6 +198,7 @@ "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ "" ], + "Add custom scoping": [""], "Add delivery method": ["Agregar método de entrega"], "Add filter": ["Añadir filtro"], "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ @@ -275,6 +276,7 @@ "All": [""], "All Text": ["Todo el Texto"], "All charts": ["Todos los gráficos"], + "All charts/global scoping": [""], "All filters": ["Todos los filtros"], "All filters (%(filterCount)d)": [""], "All panels with this column will be affected by this filter": [""], @@ -558,6 +560,12 @@ "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ "" ], + "Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "" + ], + "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [ + "" + ], "Box Plot": ["Diagrama de Caja"], "Bubble Chart": ["Gráfico de Burbujas"], "Bubble size": ["Tamaño burbuja"], @@ -728,7 +736,6 @@ "Choose a metric for right axis": [ "Elige una métrica para el eje derecho" ], - "Choose a unique name": [""], "Choose one of the available databases from the panel on the left.": [""], "Choose the annotation layer type": ["Capas de Anotación"], "Choose whether a country should be shaded by the metric, or assigned a color based on a categorical color palette": [ @@ -925,6 +932,7 @@ "Could not load database driver: {}": [ "No se ha podido cargar el controlador de la base de datos: {}" ], + "Could not resolve hostname: \"%(host)s\".": [""], "Count as Fraction of Columns": [""], "Count as Fraction of Rows": [""], "Count as Fraction of Total": [""], @@ -1088,6 +1096,7 @@ "Db engine did not return all queried columns": [""], "December": ["Diciembre"], "Decides which column to sort the base axis by.": [""], + "Decides which measure to sort the base axis by.": [""], "Decimal Character": ["Caracter Decimal"], "Deck.gl - 3D Grid": [""], "Deck.gl - 3D HEX": [""], @@ -1210,7 +1219,6 @@ "" ], "Display row level total": [""], - "Display total row/column": [""], "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ "" ], @@ -1241,9 +1249,7 @@ ], "Drill to detail: %s": [""], "Drop a temporal column here or click": [""], - "Drop columns here": [""], "Drop columns/metrics here or click": [""], - "Drop temporal column here": [""], "Duplicate column name(s): %(columns)s": [""], "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ "" @@ -1293,9 +1299,6 @@ "Edit Log": ["Editar Registro"], "Edit Metric": ["Editar Métrica"], "Edit Plugin": ["Editar Columna"], - "Edit Row level security filter": [ - "Editar filtro de seguridad de nivel de fila" - ], "Edit Saved Query": ["Editar Consulta Guardada"], "Edit Table": ["Esitar Tabla"], "Edit annotation": ["Editar anotación"], @@ -1398,6 +1401,7 @@ "Excel to Database configuration": [ "Configuración de Excel a base de datos" ], + "Excluded roles": [""], "Executed query": ["Consulta ejecutada"], "Execution log": ["Registro de ejecución"], "Expand all": ["Expandir todo"], @@ -1446,8 +1450,10 @@ "Failed at stopping query. %s": [""], "Failed to create report": [""], "Failed to execute %(query)s": [""], + "Failed to generate chart edit URL": [""], "Failed to load chart data": [""], "Failed to load chart data.": [""], + "Failed to load dimensions for drill by": [""], "Failed to start remote query on a worker.": [""], "Failed to update report": [""], "Failed to verify select options: %s": [ @@ -1466,7 +1472,6 @@ "File": ["Archivo"], "Fill all required fields to enable \"Default Value\"": [""], "Filter List": ["Filtrar lista"], - "Filter box": ["Caja de filtro"], "Filter configuration": ["Configuración de filtros"], "Filter configuration for the filter box": [ "Configuración de filtros en caja de filtros" @@ -1544,9 +1549,6 @@ "Graph layout": [""], "Gravity": [""], "Group By filter plugin": [""], - "Group By' and 'Columns' can't overlap": [ - "'Group By' y 'Columns' no pueden solaparse" - ], "Group By, Metrics or Percentage Metrics must have a value": [""], "Group by": ["Agrupar por"], "Groupable": ["Agrupable"], @@ -1626,6 +1628,13 @@ "Inner radius of donut hole": [""], "Input field supports custom rotation. e.g. 30 for 30°": [""], "Instant filtering": ["Filtrado Instantáneo"], + "Intensity Radius is the radius at which the weight is distributed": [""], + "Intensity is the value multiplied by the weight to obtain the final weight": [ + "" + ], + "Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:port/database'.": [ + "" + ], "Invalid JSON": ["JSON inválido"], "Invalid certificate": ["Certificado Inválido"], "Invalid connection string, a valid string usually follows:\n'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'": [ @@ -1662,6 +1671,7 @@ "Opciones inválidas para %(rolling_type)s: %(options)s" ], "Invalid permalink key": [""], + "Invalid reference to column: \"%(column)s\"": [""], "Invalid rolling_type: %(type)s": ["rolling_type inválido: %(type)s"], "Invalid spatial point encountered: %s": [ "Punto espacial inválido encontrado: %s" @@ -1939,7 +1949,6 @@ ], "No data in file": ["No hay datos en el archivo"], "No databases match your search": [""], - "No dimensions available for drill by": [""], "No favorite charts yet, go click on stars!": [ "No hay gráficos favoritos aun, clica en la estrella!" ], @@ -2069,7 +2078,6 @@ ], "Optional name of the data column.": [""], "Optional warning about use of this metric": [""], - "Optionally add a detailed description": [""], "Or choose from a list of other databases we support:": [""], "Order by entity id": [""], "Order results by selected columns": [""], @@ -2167,7 +2175,6 @@ "Elige tu idioma favorito de markup" ], "Pivot Table": ["Tabla Dinámica"], - "Pivot Table (legacy)": [""], "Pivot operation must include at least one aggregate": [ "La operación de pivote debe incluir al menos un agregado" ], @@ -2191,9 +2198,6 @@ "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ "" ], - "Please choose at least one metric": [ - "Por favor elige al menos una métrica" - ], "Please choose different metrics on left and right axis": [ "Por favor, elige diferentes métricas en el eje izquierdo y derecho" ], @@ -2238,6 +2242,7 @@ "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ "" ], + "Port out of range 0-65535": [""], "Position JSON": ["Posición JSON"], "Position of child node label on tree": [""], "Position of column level subtotal": [""], @@ -2253,6 +2258,7 @@ "Preview: `%s`": ["Previsualizar: `%s`"], "Previous": ["Anterior"], "Primary or secondary y-axis": [""], + "Primary y-axis Bounds": [""], "Primary y-axis format": [""], "Private Key": [""], "Private Key & Password": [""], @@ -2327,7 +2333,8 @@ "Refresh interval": ["Intérvalo de actualización"], "Refresh table list": [""], "Refresh the default values": [""], - "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter. Base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ + "Regular": [""], + "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter, base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ "" ], "Relationships between community channels": [""], @@ -2433,13 +2440,13 @@ "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ "" ], - "Row level security filter": ["Filtro de seguridad de nivel de fila"], "Row limit": ["Límite filas"], "Rows": ["Filas"], "Rows per page, 0 means no pagination": [""], "Rows subtotal position": [""], "Rows to Read": ["Filas a Leer"], "Rule": ["Regla"], + "Rule added": [""], "Run": ["Ejecutar"], "Run in SQL Lab": ["Ejecutar en Laboratiorio SQL"], "Run query": ["Ejecutar consulta"], @@ -2526,6 +2533,7 @@ "Search all filter options": ["Buscar / Filtrar"], "Search by query text": ["Buscar por texto"], "Search...": ["Buscar..."], + "Secondary y-axis Bounds": [""], "Secondary y-axis format": [""], "Secondary y-axis title": [""], "Secure Extra": [""], @@ -2549,6 +2557,12 @@ "Select first filter value by default": [""], "Select start and end date": ["Seleciona fecha de inicio y de fin"], "Select subject": [""], + "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" + ], + "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" + ], "Select the number of bins for the histogram": [""], "Select the numeric columns to draw the histogram": [""], "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ @@ -2602,9 +2616,6 @@ "Show Log": ["Mostrar Registro"], "Show Markers": [""], "Show Metric": ["Mostrar Métrica"], - "Show Row level security filter": [ - "Mostrar filtro de seguridad de nivel de fila" - ], "Show Saved Query": ["Mostrar Consulta Guardada"], "Show Table": ["Mostrar Tabla"], "Show Timestamp": [""], @@ -2765,7 +2776,6 @@ "Superset chart": ["Gráfico Superset"], "Superset dashboard": ["Dashboard Superset"], "Survey Responses": [""], - "Swap Groups and Columns": [""], "Swap rows and columns": [""], "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ "" @@ -2776,6 +2786,9 @@ "Symbol of two ends of edge line": [""], "Sync columns from source": ["Sincronizar las columnas desde la fuente"], "Syntax": [""], + "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ + "" + ], "TABLES": ["TABLAS"], "THU": ["JUE"], "TUE": ["MAR"], @@ -3044,6 +3057,9 @@ "The user seems to have been deleted": [ "El usuario parece haber sido eliminado" ], + "The user/password combination is not valid (Incorrect password for user).": [ + "" + ], "The username provided when connecting to a database is not valid.": [""], "The way the ticks are laid out on the X-axis": [""], "There are associated alerts or reports": [ @@ -3140,7 +3156,7 @@ "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ "" ], - "This chart emits/applies cross-filters to other charts that use the same dataset": [ + "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ "" ], "This chart has been moved to a different filter scope.": [""], @@ -3325,7 +3341,6 @@ "Track job": ["Seguir trabajo"], "Transformable": ["Transformable"], "Transparent": ["Transparente"], - "Transpose Pivot": [""], "Transpose pivot": ["Transponer pivot"], "Tree layout": [""], "Treemap": ["Mapa de Árbol"], @@ -3369,6 +3384,8 @@ "" ], "Unable to create chart without a query id.": [""], + "Unable to decode value": [""], + "Unable to encode value": [""], "Unable to load columns for the selected table. Please select a different table.": [ "" ], @@ -3469,9 +3486,6 @@ "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ "" ], - "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location.\n\n This chart is being deprecated and we recommend checking out Pivot Table V2 instead!": [ - "" - ], "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ "" ], @@ -3481,6 +3495,9 @@ "El usuario debe elegir un valor para este filtro" ], "User query": ["Ver consulta"], + "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ + "" + ], "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ "" ], @@ -3939,6 +3956,7 @@ "e.g. sql/protocolv1/o/12345": [""], "e.g. world_population": [""], "e.g. xy12345.us-east-2.aws": [""], + "error dark": [""], "every": ["cada"], "every day of the month": ["todos los días del mes"], "every day of the week": ["todos los días de la semana"], @@ -3950,7 +3968,6 @@ ], "function type icon": [""], "geohash (square)": [""], - "green": [""], "heatmap: values are normalized across the entire heatmap": [""], "hour": ["hora"], "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ @@ -4030,7 +4047,6 @@ "y": [""], "y: values are normalized within each row": [""], "year": ["año"], - "yellow": [""], "zoom area": [""] } } diff --git a/superset/translations/es/LC_MESSAGES/messages.po b/superset/translations/es/LC_MESSAGES/messages.po index 33241411e5..74e1426308 100644 --- a/superset/translations/es/LC_MESSAGES/messages.po +++ b/superset/translations/es/LC_MESSAGES/messages.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-04-07 19:09+0200\n" +"POT-Creation-Date: 2023-05-23 16:30-0300\n" "PO-Revision-Date: 2018-11-03 00:11+0100\n" "Last-Translator: Ruben Sastre \n" "Language: es\n" @@ -37,7 +37,7 @@ msgid "" " " msgstr "" -#: superset/reports/notifications/email.py:88 +#: superset/reports/notifications/email.py:89 #, python-format msgid "" "\n" @@ -56,12 +56,12 @@ msgid "" "in the GeoJSON" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:364 +#: superset-frontend/src/explore/components/SaveModal.tsx:399 #, fuzzy msgid " a dashboard OR " msgstr "Guardar Dashboard" -#: superset-frontend/src/explore/components/SaveModal.tsx:366 +#: superset-frontend/src/explore/components/SaveModal.tsx:401 #, fuzzy msgid " a new one" msgstr "Cambiado el" @@ -92,7 +92,7 @@ msgid "" " database/column name level via the extra parameter." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:334 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:340 #, fuzzy msgid " to add calculated columns" msgstr "Columnas calculadas" @@ -107,8 +107,8 @@ msgstr "Añadir Métrica" msgid " to edit or add columns and metrics." msgstr "%s columna(s) y métrca(s)" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:323 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:358 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:364 msgid " to mark a column as a time column" msgstr "" @@ -116,7 +116,7 @@ msgstr "" msgid " to open SQL Lab. From there you can save the query as a dataset." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:333 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 msgid " to visualize your data." msgstr "" @@ -124,7 +124,7 @@ msgstr "" msgid "!= (Is not equal)" msgstr "!= (No es igual)" -#: superset/security/analytics_db_safety.py:44 +#: superset/security/analytics_db_safety.py:48 #, fuzzy, python-format msgid "%(dialect)s cannot be used as a data source for security reasons." msgstr "" @@ -139,7 +139,7 @@ msgid "" "%(issues)s" msgstr "" -#: superset/reports/notifications/email.py:168 +#: superset/reports/notifications/email.py:171 #, python-format msgid "%(name)s.csv" msgstr "" @@ -171,14 +171,14 @@ msgstr "" "Aquí aparecerán los gráficos, los dashboards y las consultas vistas " "recientemente" -#: superset/reports/notifications/email.py:177 +#: superset/reports/notifications/email.py:180 #, python-format msgid "%(prefix)s %(title)s" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:345 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:363 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:377 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:338 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:356 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:370 #, fuzzy, python-format msgid "%(rows)d rows returned" msgstr "líneas obtenidas" @@ -200,19 +200,19 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: superset/views/core.py:384 +#: superset/views/core.py:385 #, python-format msgid "" "%(user)s was granted the role %(role)s that gives access to the " "%(datasource)s" msgstr "%(user)s recibió el rol %(role)s que le da acceso a %(datasource)s" -#: superset/views/core.py:2672 +#: superset/views/core.py:2709 #, python-format msgid "%(user)s's profile" msgstr "Perfil de %(user)s" -#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2327 +#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2369 #, python-format msgid "" "%(validator)s was unable to check your query.\n" @@ -226,25 +226,25 @@ msgid "%s Error" msgstr "%s Error" #: superset-frontend/src/components/ImportModal/index.tsx:298 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1300 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1355 #, fuzzy, python-format msgid "%s PASSWORD" msgstr "Contraseña de Broker" #: superset-frontend/src/components/ImportModal/index.tsx:318 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1318 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1373 #, python-format msgid "%s SSH TUNNEL PASSWORD" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:341 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1336 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1391 #, python-format msgid "%s SSH TUNNEL PRIVATE KEY" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:363 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1356 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1411 #, python-format msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" msgstr "" @@ -254,17 +254,17 @@ msgstr "" msgid "%s Selected" msgstr "%s seleccionados" -#: superset-frontend/src/pages/DatasetList/index.tsx:808 +#: superset-frontend/src/pages/DatasetList/index.tsx:830 #, python-format msgid "%s Selected (%s Physical, %s Virtual)" msgstr "%s Seleccionados (%s Físico, %s Virtual)" -#: superset-frontend/src/pages/DatasetList/index.tsx:801 +#: superset-frontend/src/pages/DatasetList/index.tsx:823 #, python-format msgid "%s Selected (Physical)" msgstr "%s Seleccionados (Físico)" -#: superset-frontend/src/pages/DatasetList/index.tsx:794 +#: superset-frontend/src/pages/DatasetList/index.tsx:816 #, python-format msgid "%s Selected (Virtual)" msgstr "%s Seleccionados (Virtual)" @@ -274,8 +274,8 @@ msgstr "%s Seleccionados (Virtual)" msgid "%s aggregates(s)" msgstr "%s aggregación(es)" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:274 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:371 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:280 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:377 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:346 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 #, python-format @@ -314,8 +314,8 @@ msgstr[1] "" msgid "%s saved metric(s)" msgstr "%s métrica(s) guardada(s)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:636 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:652 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:639 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:655 #, fuzzy, python-format msgid "%s updated" msgstr "Última actualización %s" @@ -332,7 +332,7 @@ msgstr "" msgid "%s-%s of %s" msgstr "%s-%s de %s" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:115 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:116 msgid "(Removed)" msgstr "(Eliminado)" @@ -382,22 +382,22 @@ msgstr "" msgid "+ %s more" msgstr "" -#: superset/views/database/forms.py:153 +#: superset/views/database/forms.py:163 msgid "," msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:656 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:652 msgid "" "-- Note: Unless you save your query, these tabs will NOT persist if you " "clear your cookies or change browsers.\n" "\n" msgstr "" -#: superset/views/database/forms.py:154 +#: superset/views/database/forms.py:164 msgid "." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:791 +#: superset-frontend/src/pages/DatasetList/index.tsx:813 msgid "0 Selected" msgstr "0 Seleccionados" @@ -495,7 +495,7 @@ msgstr "Frecuencia de actualización" msgid "1 year start frequency" msgstr "Frecuencia de actualización" -#: superset/db_engine_specs/base.py:101 +#: superset/db_engine_specs/base.py:102 #, fuzzy msgid "10 minute" msgstr "1 minuto" @@ -512,7 +512,7 @@ msgstr "semana" msgid "104 weeks ago" msgstr "" -#: superset/db_engine_specs/base.py:102 +#: superset/db_engine_specs/base.py:103 #, fuzzy msgid "15 minute" msgstr "1 minuto" @@ -634,7 +634,7 @@ msgstr "30 días" msgid "30 days ago" msgstr "30 días" -#: superset/db_engine_specs/base.py:103 +#: superset/db_engine_specs/base.py:104 #, fuzzy msgid "30 minute" msgstr "30 minutos" @@ -644,7 +644,7 @@ msgstr "30 minutos" msgid "30 minutes" msgstr "30 minutos" -#: superset/db_engine_specs/base.py:98 +#: superset/db_engine_specs/base.py:99 #, fuzzy msgid "30 second" msgstr "30 segundos" @@ -665,7 +665,7 @@ msgstr "" msgid "4 weeks (freq=4W-MON)" msgstr "" -#: superset/db_engine_specs/base.py:100 +#: superset/db_engine_specs/base.py:101 #, fuzzy msgid "5 minute" msgstr "5 minutos" @@ -675,7 +675,7 @@ msgstr "5 minutos" msgid "5 minutes" msgstr "5 minutos" -#: superset/db_engine_specs/base.py:97 +#: superset/db_engine_specs/base.py:98 #, fuzzy msgid "5 second" msgstr "30 segundos" @@ -704,7 +704,7 @@ msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 #: superset-frontend/src/explore/controls.jsx:261 -#: superset/db_engine_specs/base.py:105 +#: superset/db_engine_specs/base.py:106 #, fuzzy msgid "6 hour" msgstr "6 horas" @@ -794,20 +794,20 @@ msgstr ">= (Mayor o igual)" msgid "A Big Number" msgstr "Número Grande" -#: superset/views/database/forms.py:184 +#: superset/views/database/forms.py:194 #, fuzzy msgid "A comma separated list of columns that should be parsed as dates" msgstr "" "Una lista separada por comas de columnas que deben ser parseadas como " "fechas." -#: superset/views/database/forms.py:367 +#: superset/views/database/forms.py:377 msgid "A comma separated list of columns that should be parsed as dates." msgstr "" "Una lista separada por comas de columnas que deben ser parseadas como " "fechas." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:433 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 #, fuzzy msgid "A comma-separated list of schemas that files are allowed to upload to." msgstr "" @@ -819,6 +819,12 @@ msgstr "" msgid "A database with the same name already exists." msgstr "La fuente de datos %(name)s ya existe" +#: superset/views/database/forms.py:145 +msgid "" +"A dictionary with column names and their data types if you need to change" +" the defaults. Example: {\"user_id\":\"integer\"}" +msgstr "" + #: superset/views/dynamic_plugins.py:52 msgid "" "A full URL pointing to the location of the built plugin (could be hosted " @@ -886,16 +892,16 @@ msgstr "" msgid "A report named \"%(name)s\" already exists" msgstr "La fuente de datos %(name)s ya existe" -#: superset-frontend/src/explore/components/SaveModal.tsx:333 +#: superset-frontend/src/explore/components/SaveModal.tsx:368 msgid "A reusable dataset will be saved with your chart." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:309 +#: superset-frontend/src/components/ReportModal/index.tsx:308 msgid "A screenshot of the dashboard will be sent to your email at" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 -#: superset/connectors/sqla/views.py:458 +#: superset/connectors/sqla/views.py:365 msgid "" "A set of parameters that become available in the query using Jinja " "templating syntax" @@ -943,8 +949,8 @@ msgstr "APPLICAR" msgid "APR" msgstr "ABR" -#: superset-frontend/src/pages/DatabaseList/index.tsx:312 -#: superset-frontend/src/pages/DatabaseList/index.tsx:478 +#: superset-frontend/src/pages/DatabaseList/index.tsx:323 +#: superset-frontend/src/pages/DatabaseList/index.tsx:489 msgid "AQE" msgstr "AQE" @@ -972,7 +978,7 @@ msgstr "" msgid "Access" msgstr "Acceso" -#: superset/initialization/__init__.py:431 +#: superset/initialization/__init__.py:425 msgid "Access requests" msgstr "Solicitudes de Acceso" @@ -984,7 +990,7 @@ msgstr "" msgid "Access token" msgstr "" -#: superset/views/core.py:317 +#: superset/views/core.py:318 msgid "Access was requested" msgstr "Se ha solicitado Acceso" @@ -992,7 +998,7 @@ msgstr "Se ha solicitado Acceso" msgid "Action" msgstr "Acción" -#: superset/initialization/__init__.py:393 +#: superset/initialization/__init__.py:387 msgid "Action Log" msgstr "Bitácora de acciones" @@ -1003,9 +1009,10 @@ msgstr "Bitácora de acciones" #: superset-frontend/src/pages/ChartList/index.tsx:569 #: superset-frontend/src/pages/CssTemplateList/index.tsx:229 #: superset-frontend/src/pages/DashboardList/index.tsx:477 -#: superset-frontend/src/pages/DatabaseList/index.tsx:448 -#: superset-frontend/src/pages/DatasetList/index.tsx:488 +#: superset-frontend/src/pages/DatabaseList/index.tsx:459 +#: superset-frontend/src/pages/DatasetList/index.tsx:499 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:327 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:216 #: superset-frontend/src/pages/SavedQueryList/index.tsx:437 #: superset-frontend/src/pages/Tags/index.tsx:171 msgid "Actions" @@ -1038,19 +1045,20 @@ msgstr "Valores Nulos" msgid "Actual values" msgstr "Valores Nulos" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:35 -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 #: superset-frontend/src/explore/controls.jsx:78 #: superset-frontend/src/explore/controls.jsx:101 #, fuzzy msgid "Adaptive formatting" msgstr "Formato Fecha/Hora" -#: superset-frontend/src/components/ReportModal/index.tsx:229 +#: superset-frontend/src/components/ReportModal/index.tsx:228 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 #: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 #: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 msgid "Add" msgstr "Agregar" @@ -1071,7 +1079,7 @@ msgstr "Cargar una plantilla CSS" msgid "Add Chart" msgstr "Añadir Gráfico" -#: superset/connectors/sqla/views.py:74 +#: superset/connectors/sqla/views.py:73 msgid "Add Column" msgstr "Añadir Columna" @@ -1087,7 +1095,7 @@ msgstr "Añadir Base de Datos" msgid "Add Log" msgstr "Agregar Registro" -#: superset/connectors/sqla/views.py:209 +#: superset/connectors/sqla/views.py:208 msgid "Add Metric" msgstr "Añadir Métrica" @@ -1096,9 +1104,10 @@ msgstr "Añadir Métrica" msgid "Add Report" msgstr "informe" -#: superset/connectors/sqla/views.py:292 -msgid "Add Row level security filter" -msgstr "Añadir filtro de seguridad de nivel de fila" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +#, fuzzy +msgid "Add Rule" +msgstr "Formato Fecha/Hora" #: superset/views/sql_lab/views.py:54 msgid "Add Saved Query" @@ -1113,12 +1122,12 @@ msgstr "Añadir Columna" msgid "Add a dataset" msgstr "Añadir conjunto de datos" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:262 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:272 #, fuzzy msgid "Add a new tab" msgstr "Consulta en nueva pestaña" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:286 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:296 msgid "Add a new tab to create SQL Query" msgstr "" @@ -1152,24 +1161,28 @@ msgstr "Añadir anotación" msgid "Add annotation layer" msgstr "Capas de Anotación" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:300 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:306 msgid "Add calculated columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:297 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:303 msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:167 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:197 #, fuzzy msgid "Add cross-filter" msgstr "Añadir filtro" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 +msgid "Add custom scoping" +msgstr "" + #: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 msgid "Add delivery method" msgstr "Agregar método de entrega" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:330 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 #, fuzzy msgid "Add extra connection information." msgstr "Información Basica" @@ -1243,7 +1256,7 @@ msgstr "El id del gráfico activo" msgid "Add the name of the dashboard" msgstr "Guardar e ir al Dashboard" -#: superset-frontend/src/explore/components/SaveModal.tsx:351 +#: superset-frontend/src/explore/components/SaveModal.tsx:386 msgid "Add to dashboard" msgstr "Añadir a un nuevo Dashboard" @@ -1270,7 +1283,7 @@ msgstr[1] "" msgid "Additional Parameters" msgstr "Editar parámetros de la plantilla" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1787 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1843 msgid "Additional fields may be required" msgstr "" @@ -1283,18 +1296,18 @@ msgstr "Información adicional" msgid "Additional metadata" msgstr "Información adicional" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:54 #, fuzzy msgid "Additional padding for legend." msgstr "Información adicional" -#: superset/db_engine_specs/base.py:1847 -#: superset/db_engine_specs/clickhouse.py:214 +#: superset/db_engine_specs/base.py:1885 +#: superset/db_engine_specs/clickhouse.py:221 #, fuzzy msgid "Additional parameters" msgstr "Editar parámetros de la plantilla" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:444 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 #, fuzzy msgid "Additional settings." msgstr "Información adicional" @@ -1311,17 +1324,18 @@ msgstr "" msgid "Additive" msgstr "Añadir elemento" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:75 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 msgid "Adjust how this database will interact with SQL Lab." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:221 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:231 msgid "Adjust performance settings of this database." msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:132 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:91 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:127 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:93 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 @@ -1330,7 +1344,7 @@ msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:939 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:771 #: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1811 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 msgid "Advanced" msgstr "Avanzado" @@ -1436,7 +1450,6 @@ msgid "" "produce the cluster label." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:63 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:202 msgid "" "Aggregate function to apply when pivoting and computing the total rows " @@ -1449,13 +1462,16 @@ msgid "" " values to a dynamic color scale" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +#, fuzzy +msgid "Aggregation" +msgstr "agregación" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 #, fuzzy msgid "Aggregation function" msgstr "Probar Conexión" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:593 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:162 #, fuzzy msgid "Alert" @@ -1535,7 +1551,7 @@ msgstr "Error de configuración del validador de alertas." msgid "Alerts" msgstr "Alertas" -#: superset/initialization/__init__.py:410 +#: superset/initialization/__init__.py:404 msgid "Alerts & Reports" msgstr "Alertas y reportes" @@ -1561,8 +1577,8 @@ msgstr "" #: superset-frontend/src/pages/DashboardList/index.tsx:528 #: superset-frontend/src/pages/DashboardList/index.tsx:550 #: superset-frontend/src/pages/DashboardList/index.tsx:600 -#: superset-frontend/src/pages/DatabaseList/index.tsx:465 -#: superset-frontend/src/pages/DatabaseList/index.tsx:485 +#: superset-frontend/src/pages/DatabaseList/index.tsx:476 +#: superset-frontend/src/pages/DatabaseList/index.tsx:496 #: superset-frontend/src/pages/Home/index.tsx:205 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:354 #: superset-frontend/src/pages/SavedQueryList/index.tsx:453 @@ -1571,7 +1587,7 @@ msgid "All" msgstr "" #: superset-frontend/src/pages/AllEntities/index.tsx:76 -#: superset/initialization/__init__.py:376 +#: superset/initialization/__init__.py:370 #, fuzzy msgid "All Entities" msgstr "Todos los filtros" @@ -1583,13 +1599,18 @@ msgstr "Todos los filtros" msgid "All Text" msgstr "Todo el Texto" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 #: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:69 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 #: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:85 #: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:128 msgid "All charts" msgstr "Todos los gráficos" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 +msgid "All charts/global scoping" +msgstr "" + #: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 msgid "All filters" msgstr "Todos los filtros" @@ -1599,7 +1620,7 @@ msgstr "Todos los filtros" msgid "All filters (%(filterCount)d)" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:49 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 #, fuzzy msgid "All panels" msgstr "Aplicar a todos los páneles" @@ -1608,7 +1629,7 @@ msgstr "Aplicar a todos los páneles" msgid "All panels with this column will be affected by this filter" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:107 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 #: superset/views/database/mixins.py:184 msgid "Allow CREATE TABLE AS" msgstr "Permitir CREATE TABLE AS" @@ -1617,7 +1638,7 @@ msgstr "Permitir CREATE TABLE AS" msgid "Allow CREATE TABLE AS option in SQL Lab" msgstr "Permitir la opción CREAR TABLA COMO en el laboratorio SQL" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:121 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 #: superset/views/database/mixins.py:185 msgid "Allow CREATE VIEW AS" msgstr "Permitir CREATE VIEW AS" @@ -1630,7 +1651,7 @@ msgstr "Permitie opción CREATE VIEW AS en el laboratorio SQL" msgid "Allow Csv Upload" msgstr "Permitir carga de CSV" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 #: superset/views/database/mixins.py:186 msgid "Allow DML" msgstr "Permitir DML" @@ -1639,15 +1660,15 @@ msgstr "Permitir DML" msgid "Allow columns to be rearranged" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:110 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 msgid "Allow creation of new tables based on queries" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:124 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 msgid "Allow creation of new views based on queries" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:329 +#: superset-frontend/src/pages/DatabaseList/index.tsx:340 msgid "Allow data manipulation language" msgstr "Permitir manipulación de datos" @@ -1657,12 +1678,12 @@ msgid "" "their changes won't persist for the next time they open the chart." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:411 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:421 #, fuzzy msgid "Allow file uploads to database" msgstr "Selecciona un archivo de Excel para ser cargado a una base de datos." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:157 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 msgid "" "Allow manipulation of the database using non-SELECT statements such as " "UPDATE, DELETE, CREATE, etc." @@ -1681,11 +1702,11 @@ msgstr "Permitir selección múltiple" msgid "Allow sending multiple polygons as a filter event" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:186 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 msgid "Allow this database to be explored" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:91 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 msgid "Allow this database to be queried in SQL Lab" msgstr "" @@ -1730,20 +1751,20 @@ msgstr "Se produjo un error" msgid "An alert named \"%(name)s\" already exists" msgstr "La fuente de datos %(name)s ya existe" -#: superset/common/query_context_processor.py:326 superset/viz.py:1447 +#: superset/common/query_context_processor.py:326 superset/viz.py:1352 msgid "" "An enclosed time range (both start and end) must be specified when using " "a Time Comparison." msgstr "" -#: superset/databases/schemas.py:285 +#: superset/databases/schemas.py:289 msgid "" "An engine must be specified when passing individual parameters to a " "database." msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:791 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:141 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:183 #: superset-frontend/src/components/Tags/utils.tsx:67 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:127 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:109 @@ -1758,7 +1779,7 @@ msgstr "Ha ocurrido un error" msgid "An error occurred" msgstr "Se produjo un error" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:317 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:323 msgid "An error occurred saving dataset" msgstr "Se produjo un error al crear el origen de datos" @@ -1770,19 +1791,19 @@ msgstr "Se produjo un error al crear el origen de datos" msgid "An error occurred while accessing the value." msgstr "Se produjo un error al crear el origen de datos" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1368 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1360 msgid "" "An error occurred while collapsing the table schema. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:304 +#: superset-frontend/src/views/CRUD/hooks.ts:308 #, fuzzy, python-format msgid "An error occurred while creating %ss: %s" msgstr "Se produjo un error al obtener conjuntos de datos: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1529 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1551 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1530 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1552 msgid "An error occurred while creating the data source" msgstr "Se produjo un error al crear el origen de datos" @@ -1800,7 +1821,7 @@ msgstr "Se produjo un error al crear el origen de datos" msgid "An error occurred while deleting the value." msgstr "Se produjo un error al obtener valores de esquema: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1344 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1336 msgid "" "An error occurred while expanding the table schema. Please contact your " "administrator." @@ -1812,8 +1833,8 @@ msgid "An error occurred while fetching %s info: %s" msgstr "Se produjo un error al obtener los dashboards: %s" #: superset-frontend/src/views/CRUD/hooks.ts:174 -#: superset-frontend/src/views/CRUD/hooks.ts:261 -#: superset-frontend/src/views/CRUD/hooks.ts:349 +#: superset-frontend/src/views/CRUD/hooks.ts:265 +#: superset-frontend/src/views/CRUD/hooks.ts:353 #, fuzzy, python-format msgid "An error occurred while fetching %ss: %s" msgstr "Se produjo un error al obtener conjuntos de datos: %s" @@ -1863,7 +1884,7 @@ msgstr "Se produjo un error al crear el origen de datos" msgid "An error occurred while fetching dashboards: %s" msgstr "Se produjo un error al obtener los dashboards: %s" -#: superset-frontend/src/pages/DatabaseList/index.tsx:145 +#: superset-frontend/src/pages/DatabaseList/index.tsx:156 #, python-format msgid "An error occurred while fetching database related data: %s" msgstr "" @@ -1882,30 +1903,30 @@ msgstr "Ha ocurrido un error cargando valores de la base de datos: %s" msgid "An error occurred while fetching dataset datasource values: %s" msgstr "Se produjo un error al obtener los valores de la fuente de datos: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:510 +#: superset-frontend/src/pages/DatasetList/index.tsx:521 #, python-format msgid "An error occurred while fetching dataset owner values: %s" msgstr "" "Se produjo un error al obtener los valores del propietario del conjunto " "de datos: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:222 +#: superset-frontend/src/pages/DatasetList/index.tsx:233 msgid "An error occurred while fetching dataset related data" msgstr "Se produjo un error al obtener datos relacionados con el conjunto de datos" -#: superset-frontend/src/pages/DatasetList/index.tsx:242 +#: superset-frontend/src/pages/DatasetList/index.tsx:253 #, python-format msgid "An error occurred while fetching dataset related data: %s" msgstr "" "Se produjo un error al obtener datos relacionados con el conjunto de " "datos: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:530 +#: superset-frontend/src/pages/DatasetList/index.tsx:541 #, python-format msgid "An error occurred while fetching datasets: %s" msgstr "Se produjo un error al obtener conjuntos de datos: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1581 +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx:120 #, fuzzy msgid "An error occurred while fetching function names." msgstr "Se produjo un error al recuperar el estado de la pestaña" @@ -1917,23 +1938,23 @@ msgstr "" "Se produjo un error al obtener los valores de los propietarios de " "gráfico: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:546 +#: superset-frontend/src/pages/DatasetList/index.tsx:557 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:378 #: superset-frontend/src/pages/SavedQueryList/index.tsx:480 #, python-format msgid "An error occurred while fetching schema values: %s" msgstr "Se produjo un error al obtener valores de esquema: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:799 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:795 msgid "An error occurred while fetching tab state" msgstr "Se produjo un error al recuperar el estado de la pestaña" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1199 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1224 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1191 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1216 msgid "An error occurred while fetching table metadata" msgstr "Se produjo un error al recuperar los metadatos de la tabla" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1296 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1288 msgid "" "An error occurred while fetching table metadata. Please contact your " "administrator." @@ -1949,7 +1970,7 @@ msgstr "Se produjo un error al obtener los valores creados por: %s" msgid "An error occurred while fetching user values: %s" msgstr "Se produjo un error al obtener valores de esquema: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:835 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:831 #, fuzzy msgid "" "An error occurred while hiding the left bar. Please contact your " @@ -1958,17 +1979,22 @@ msgstr "" "Se produjo un error desconocido. Por favor, contacta con tu administrador" " de Superset" -#: superset-frontend/src/views/CRUD/hooks.ts:502 -#: superset-frontend/src/views/CRUD/hooks.ts:518 +#: superset-frontend/src/views/CRUD/hooks.ts:506 +#: superset-frontend/src/views/CRUD/hooks.ts:522 #, fuzzy, python-format msgid "An error occurred while importing %s: %s" msgstr "Se produjo un error al limpiar los registros" +#: superset-frontend/src/explore/components/SaveModal.tsx:135 +#, fuzzy +msgid "An error occurred while loading dashboard information." +msgstr "Se produjo un error al crear el origen de datos" + #: superset-frontend/src/components/Chart/chartAction.js:579 msgid "An error occurred while loading the SQL" msgstr "Ocurrió un error al cargar SQL" -#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:332 +#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:325 #, fuzzy msgid "An error occurred while opening Explore" msgstr "Se produjo un error al limpiar los registros" @@ -1982,15 +2008,15 @@ msgstr "Se produjo un error al crear el origen de datos" msgid "An error occurred while pruning logs " msgstr "Se produjo un error al limpiar los registros" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:892 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:888 msgid "An error occurred while removing query. Please contact your administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:857 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:853 msgid "An error occurred while removing tab. Please contact your administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1396 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1388 msgid "" "An error occurred while removing the table schema. Please contact your " "administrator." @@ -2001,26 +2027,26 @@ msgstr "" msgid "An error occurred while rendering the visualization: %s" msgstr "Ocurrió un error al crear la visualización: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:710 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:706 msgid "" "An error occurred while setting the active tab. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:975 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:967 msgid "" "An error occurred while setting the tab autorun. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:915 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:911 msgid "" "An error occurred while setting the tab database ID. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1004 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1128 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:996 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1120 #, fuzzy msgid "" "An error occurred while setting the tab name. Please contact your " @@ -2029,13 +2055,13 @@ msgstr "" "Se produjo un error desconocido. Por favor, contacta con tu administrador" " de Superset" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:946 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:942 msgid "" "An error occurred while setting the tab schema. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1154 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1146 msgid "" "An error occurred while setting the tab template parameters. Please " "contact your administrator." @@ -2046,14 +2072,14 @@ msgstr "" msgid "An error occurred while starring this chart" msgstr "Ocurrió un error al cargar SQL" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:251 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:297 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:255 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:301 msgid "" "An error occurred while storing the latest query id in the backend. " "Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1095 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1087 msgid "" "An error occurred while storing your query in the backend. To avoid " "losing your changes, please save your query using the \"Save Query\" " @@ -2076,7 +2102,7 @@ msgstr "Se produjo un error al crear el origen de datos" msgid "An unexpected error occurred" msgstr "Se produjo un error" -#: superset/views/core.py:734 +#: superset/views/core.py:745 msgid "An unknown error occurred. Please contact your Superset administrator" msgstr "" "Se produjo un error desconocido. Por favor, contacta con tu administrador" @@ -2111,7 +2137,7 @@ msgstr "Capas de Anotación" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:127 -#: superset/initialization/__init__.py:420 +#: superset/initialization/__init__.py:414 msgid "Annotation Layers" msgstr "Capas de Anotación" @@ -2272,7 +2298,8 @@ msgstr "Las anotaciones no han podido eliminarse." #: superset-frontend/src/pages/DashboardList/index.tsx:504 #: superset-frontend/src/pages/DashboardList/index.tsx:572 #: superset-frontend/src/pages/DashboardList/index.tsx:586 -#: superset-frontend/src/pages/DatasetList/index.tsx:570 +#: superset-frontend/src/pages/DatasetList/index.tsx:581 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:260 #, fuzzy msgid "Any" msgstr "día" @@ -2288,18 +2315,18 @@ msgid "" "dashboard's individual charts" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:953 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1008 msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:967 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1022 msgid "" "Any databases that allow connections via SQL Alchemy URIs can be added. " "Learn about how to connect a database driver " msgstr "" -#: superset/views/database/forms.py:169 superset/views/database/forms.py:326 -#: superset/views/database/forms.py:457 +#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 +#: superset/views/database/forms.py:467 msgid "Append" msgstr "Agregar" @@ -2318,7 +2345,7 @@ msgstr "Filtros aplicados (%d)" msgid "Applied filters: %s" msgstr "Filtros aplicados (%d)" -#: superset/viz.py:246 +#: superset/viz.py:250 msgid "" "Applied rolling window did not return any data. Please make sure the " "source query satisfies the minimum periods defined in the rolling window." @@ -2327,11 +2354,16 @@ msgstr "" #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:856 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:228 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:476 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:479 msgid "Apply" msgstr "Aplicar" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:100 +#, fuzzy +msgid "Apply conditional color formatting to metric" +msgstr "Información adicional" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:386 msgid "Apply conditional color formatting to metrics" msgstr "" @@ -2382,6 +2414,7 @@ msgstr "¿Estas seguro de que quieres guardar y aplicar los cambios?" #: superset-frontend/src/pages/ChartList/index.tsx:509 #: superset-frontend/src/pages/DashboardList/index.tsx:418 #: superset-frontend/src/pages/DashboardList/index.tsx:739 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:173 #: superset-frontend/src/pages/Tags/index.tsx:144 msgid "Are you sure you want to delete" msgstr "onfirma que quieres eliminar" @@ -2408,7 +2441,7 @@ msgstr "¿Estas seguro de que quieres eliminar los gráficos seleccionados?" msgid "Are you sure you want to delete the selected dashboards?" msgstr "¿Estas seguro de que quieres eliminar los dashboards seleccionados?" -#: superset-frontend/src/pages/DatasetList/index.tsx:741 +#: superset-frontend/src/pages/DatasetList/index.tsx:763 msgid "Are you sure you want to delete the selected datasets?" msgstr "¿Está seguro de que desea eliminar los conjuntos de datos seleccionados?" @@ -2420,6 +2453,11 @@ msgstr "¿Estas seguro de que quieres eliminar las capas seleccionadas?" msgid "Are you sure you want to delete the selected queries?" msgstr "¿Estás seguro de que quieres eliminar las consultas seleccionadas?" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:305 +#, fuzzy +msgid "Are you sure you want to delete the selected rules?" +msgstr "¿Estas seguro de que quieres eliminar las capas seleccionadas?" + #: superset-frontend/src/pages/Tags/index.tsx:282 #, fuzzy msgid "Are you sure you want to delete the selected tags?" @@ -2429,7 +2467,7 @@ msgstr "¿Está seguro de que desea eliminar los %s seleccionados?" msgid "Are you sure you want to delete the selected templates?" msgstr "¿Estas seguro de que quieres eliminar las plantillas seleccionadas?" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:426 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:434 #, fuzzy msgid "Are you sure you want to overwrite this dataset?" msgstr "¿Está seguro de que desea eliminar los conjuntos de datos seleccionados?" @@ -2438,7 +2476,7 @@ msgstr "¿Está seguro de que desea eliminar los conjuntos de datos seleccionado msgid "Are you sure you want to proceed?" msgstr "¿Seguro que quieres proceder?" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:174 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:216 msgid "Are you sure you want to save and apply changes?" msgstr "¿Estas seguro de que quieres guardar y aplicar los cambios?" @@ -2483,7 +2521,7 @@ msgstr "hileras" msgid "Assign a set of parameters as" msgstr "Los parametros del conjunto de datos son inválidos." -#: superset/connectors/sqla/views.py:476 +#: superset/connectors/sqla/views.py:383 msgid "Associated Charts" msgstr "Gráficos asociados" @@ -2491,9 +2529,9 @@ msgstr "Gráficos asociados" msgid "Async Execution" msgstr "Ejecución Asincrónica" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:295 -#: superset-frontend/src/pages/DatabaseList/index.tsx:309 -#: superset-frontend/src/pages/DatabaseList/index.tsx:475 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:305 +#: superset-frontend/src/pages/DatabaseList/index.tsx:320 +#: superset-frontend/src/pages/DatabaseList/index.tsx:486 msgid "Asynchronous query execution" msgstr "Ejecución asíncrona de consultas" @@ -2511,7 +2549,7 @@ msgstr "en" msgid "Auto Zoom" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:530 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 #, fuzzy msgid "Autocomplete" msgstr "Autocompletar filtros" @@ -2538,7 +2576,7 @@ msgstr "" msgid "Average" msgstr "Compartir" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:233 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 #, fuzzy msgid "Average value" msgstr "Iniciar en" @@ -2578,10 +2616,10 @@ msgstr "Orden descendente" msgid "BOOLEAN" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:366 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1051 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1068 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1088 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:373 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1123 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1143 msgid "Back" msgstr "" @@ -2591,7 +2629,7 @@ msgstr "" msgid "Back to all" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:300 +#: superset-frontend/src/pages/DatabaseList/index.tsx:311 #: superset/views/database/mixins.py:200 msgid "Backend" msgstr "Backend" @@ -2607,7 +2645,7 @@ msgstr "Valores Nulos" msgid "Bad formula." msgstr "Formato Fecha/Hora" -#: superset/viz.py:2509 superset/viz.py:2545 +#: superset/viz.py:2452 superset/viz.py:2492 msgid "Bad spatial key" msgstr "Clave espacial errónea" @@ -2647,6 +2685,12 @@ msgstr "Valores Nulos" msgid "Bar orientation" msgstr "Eliminar anotación" +#: superset-frontend/src/features/rls/constants.ts:28 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:263 +#, fuzzy +msgid "Base" +msgstr "Base de datos" + #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:239 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 msgid "Base layer map style" @@ -2661,12 +2705,12 @@ msgstr "Consultas Guardadas" msgid "Based on granularity, number of time periods to compare against" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:228 msgid "Based on what should series be ordered on the chart and legend" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:854 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1723 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1779 msgid "Basic" msgstr "Básico" @@ -2698,7 +2742,7 @@ msgid "Before" msgstr "Intervlo de actualización" #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:37 -#: superset/viz.py:1286 +#: superset/viz.py:1186 msgid "Big Number" msgstr "Número Grande" @@ -2707,11 +2751,11 @@ msgid "Big Number Font Size" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:36 -#: superset/viz.py:1252 +#: superset/viz.py:1150 msgid "Big Number with Trendline" msgstr "Número Grande con Línea de Tendencia" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 #, fuzzy msgid "Bottom" @@ -2743,7 +2787,6 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:261 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:277 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:263 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:251 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:195 @@ -2762,6 +2805,24 @@ msgid "" " the axis range. It won't narrow the data's extent." msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 +msgid "" +"Bounds for the primary Y-axis. When left empty, the bounds are " +"dynamically defined based on the min/max of the data. Note that this " +"feature will only expand the axis range. It won't narrow the data's " +"extent." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:411 +msgid "" +"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" +" bounds are enabled. When left empty, the bounds are " +"dynamically defined\n" +" based on the min/max of the data. Note that this feature " +"will only expand\n" +" the axis range. It won't narrow the data's extent." +msgstr "" + #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:58 #: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/createMetadata.ts:27 @@ -2774,7 +2835,7 @@ msgid "Breakdowns" msgstr "Creado el" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:32 -#: superset/viz.py:1171 +#: superset/viz.py:1065 msgid "Bubble Chart" msgstr "Gráfico de Burbujas" @@ -2807,14 +2868,15 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:789 #: superset-frontend/src/pages/CssTemplateList/index.tsx:262 #: superset-frontend/src/pages/DashboardList/index.tsx:662 -#: superset-frontend/src/pages/DatasetList/index.tsx:596 +#: superset-frontend/src/pages/DatasetList/index.tsx:607 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 #: superset-frontend/src/pages/SavedQueryList/index.tsx:177 #: superset-frontend/src/pages/Tags/index.tsx:267 msgid "Bulk select" msgstr "Selección múltiple" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 -#: superset/viz.py:1222 +#: superset/viz.py:1118 msgid "Bullet Chart" msgstr "Gráfico de Puntos" @@ -2830,7 +2892,7 @@ msgstr "Gráfico de Puntos" msgid "Business" msgstr "" -#: superset/connectors/sqla/views.py:165 +#: superset/connectors/sqla/views.py:164 msgid "Business Data Type" msgstr "" @@ -2861,16 +2923,16 @@ msgstr "" msgid "CANCEL" msgstr "CANCELAR" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1520 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1575 #, fuzzy msgid "CREATE DATASET" msgstr "Cambiar fuente" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:585 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:579 msgid "CREATE TABLE AS" msgstr "Permitir CREATE TABLE AS" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:596 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:590 msgid "CREATE VIEW AS" msgstr "Permitir CREATE TABLE AS" @@ -2896,7 +2958,7 @@ msgstr "CSS" msgid "CSS Styles" msgstr "" -#: superset/initialization/__init__.py:286 superset/views/css_templates.py:38 +#: superset/initialization/__init__.py:288 superset/views/css_templates.py:38 msgid "CSS Templates" msgstr "Plantillas CSS" @@ -2930,26 +2992,26 @@ msgstr "Plantillas CSS" msgid "CSV Upload" msgstr "Subida de archivos CSV" -#: superset/views/database/views.py:287 +#: superset/views/database/views.py:290 #, python-format msgid "" "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " "database \"%(db_name)s\"" msgstr "" -#: superset/views/database/views.py:160 +#: superset/views/database/views.py:161 msgid "CSV to Database configuration" msgstr "Configuración de CSV a base de datos" -#: superset-frontend/src/pages/DatabaseList/index.tsx:344 +#: superset-frontend/src/pages/DatabaseList/index.tsx:355 msgid "CSV upload" msgstr "Subida de archivos CSV" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:130 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 msgid "CTAS & CVAS SCHEMA" msgstr "" -#: superset/sql_lab.py:440 +#: superset/sql_lab.py:432 msgid "" "CTAS (create table as select) can only be run with a query where the last" " statement is a SELECT. Please make sure your query has a SELECT as its " @@ -2960,7 +3022,7 @@ msgstr "" msgid "CTAS Schema" msgstr "Esquema CTAS" -#: superset/sql_lab.py:457 +#: superset/sql_lab.py:449 msgid "" "CVAS (create view as select) can only be run with a query with a single " "SELECT statement. Please make sure your query has only a SELECT " @@ -2975,7 +3037,7 @@ msgstr "" msgid "CVAS (create view as select) query is not a SELECT statement." msgstr "" -#: superset/connectors/sqla/views.py:486 superset/views/chart/mixin.py:76 +#: superset/connectors/sqla/views.py:393 superset/views/chart/mixin.py:76 msgid "Cache Timeout" msgstr "Tiempo máximo de memoria caché" @@ -2994,16 +3056,16 @@ msgstr "Tiempo de espera de caché" msgid "Cached" msgstr "en cache" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:349 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:351 #, python-format msgid "Cached %s" msgstr "En cache %s" -#: superset/viz.py:562 +#: superset/viz.py:578 msgid "Cached value not found" msgstr "Valor no encontrado en memoria caché" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:53 #, fuzzy msgid "Calculate contribution per series or row" msgstr "Calcular la contribución al total" @@ -3026,7 +3088,7 @@ msgid "Calculation type" msgstr "Tipo de Cálculo" #: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 -#: superset/viz.py:1080 +#: superset/viz.py:972 msgid "Calendar Heatmap" msgstr "Mapa de Calor de Calendario" @@ -3040,17 +3102,17 @@ msgstr "" msgid "Can select multiple values" msgstr "Limitar valores del selector" -#: superset/viz.py:1810 +#: superset/viz.py:1727 msgid "Can't have overlap between Series and Breakdowns" msgstr "No puede haber solapamiento entre Series y Distribuciones" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:206 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:759 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:263 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:185 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 -#: superset-frontend/src/components/Modal/Modal.tsx:262 -#: superset-frontend/src/components/ReportModal/index.tsx:220 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:205 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:753 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:227 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:268 +#: superset-frontend/src/components/Modal/Modal.tsx:269 +#: superset-frontend/src/components/ReportModal/index.tsx:219 #: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:72 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:649 #: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 @@ -3058,14 +3120,14 @@ msgstr "No puede haber solapamiento entre Series y Distribuciones" #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:76 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 -#: superset-frontend/src/explore/components/SaveModal.tsx:379 +#: superset-frontend/src/explore/components/SaveModal.tsx:413 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:843 #: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 #: superset/templates/superset/request_access.html:34 msgid "Cancel" msgstr "Cancelar" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:314 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 msgid "Cancel query on window unload event" msgstr "" @@ -3082,7 +3144,7 @@ msgstr "No se puede eliminar una base de datos que tiene tablas adjuntas" msgid "Cannot have multiple credentials for the SSH Tunnel" msgstr "" -#: superset/views/core.py:723 +#: superset/views/core.py:734 #, python-format msgid "" "Cannot import dashboard: %(db_error)s.\n" @@ -3150,7 +3212,7 @@ msgstr "" msgid "Category and Value" msgstr "Introduce un valor" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:229 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:67 #, fuzzy msgid "Category name" msgstr "Nombre de la consulta" @@ -3165,15 +3227,15 @@ msgstr "" msgid "Category, Value and Percentage" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:103 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 msgid "Cell Padding" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:117 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 msgid "Cell Radius" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 #, fuzzy msgid "Cell Size" msgstr "Archivo de Excel" @@ -3183,7 +3245,7 @@ msgstr "Archivo de Excel" msgid "Cell bars" msgstr "Todos los gráficos" -#: superset-frontend/src/components/FilterableTable/index.tsx:431 +#: superset-frontend/src/components/FilterableTable/index.tsx:303 msgid "Cell content" msgstr "Contenido de la celda" @@ -3197,6 +3259,7 @@ msgstr "Límite de Serie" msgid "Center" msgstr "Recientes" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:33 #, fuzzy msgid "Centroid (Longitude and Latitude): " @@ -3220,7 +3283,7 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:699 #: superset-frontend/src/pages/DashboardList/index.tsx:580 -#: superset-frontend/src/pages/DatasetList/index.tsx:564 +#: superset-frontend/src/pages/DatasetList/index.tsx:575 #, fuzzy msgid "Certified" msgstr "Certificado por" @@ -3253,7 +3316,7 @@ msgstr "" msgid "Change order of rows." msgstr "" -#: superset/connectors/sqla/views.py:478 +#: superset/connectors/sqla/views.py:385 msgid "Changed By" msgstr "Cambiado por" @@ -3300,7 +3363,7 @@ msgstr "No esta permitido modificar este Gráfico" msgid "Changing this control takes effect instantly" msgstr "Los aambios en este control surten efecto de inmediato" -#: superset/datasets/commands/exceptions.py:181 +#: superset/datasets/commands/exceptions.py:198 msgid "Changing this dataset is forbidden" msgstr "No está permitido cambiar este conjunto de datos" @@ -3319,15 +3382,16 @@ msgstr "No está permitido cambiar este conjunto de datos" msgid "Changing this report is forbidden" msgstr "No está permitido cambiar este informe" -#: superset/views/database/forms.py:196 +#: superset/views/database/forms.py:206 #, fuzzy msgid "Character to interpret as decimal point" msgstr "Caracter que interpreta como punto decimal." -#: superset/views/database/forms.py:375 +#: superset/views/database/forms.py:385 msgid "Character to interpret as decimal point." msgstr "Caracter que interpreta como punto decimal." +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:51 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:449 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:405 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:69 @@ -3335,11 +3399,11 @@ msgstr "Caracter que interpreta como punto decimal." #: superset-frontend/src/features/home/RightMenu.tsx:219 #: superset-frontend/src/pages/ChartList/index.tsx:369 #: superset-frontend/src/pages/ChartList/index.tsx:799 -#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:90 +#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 msgid "Chart" msgstr "Gráfico" -#: superset/views/core.py:1727 +#: superset/views/core.py:1762 #, python-format msgid "Chart %(id)s not found" msgstr "Gráfico %(id)s no encontrado" @@ -3348,7 +3412,7 @@ msgstr "Gráfico %(id)s no encontrado" msgid "Chart Cache Timeout" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:437 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:442 #, fuzzy, python-format msgid "Chart Data: %s" msgstr "Última actualización %s" @@ -3358,7 +3422,7 @@ msgstr "Última actualización %s" msgid "Chart ID" msgstr "ID de gráfico" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:53 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:55 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:61 @@ -3380,7 +3444,7 @@ msgstr "ID de gráfico" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:59 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:131 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:107 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:74 @@ -3428,34 +3492,34 @@ msgstr "Fuente de datos" msgid "Chart Title" msgstr "Tipo de dato" -#: superset-frontend/src/explore/actions/saveModalActions.js:127 +#: superset-frontend/src/explore/actions/saveModalActions.js:121 #, fuzzy, python-format msgid "Chart [%s] has been overwritten" msgstr "El gráfico [{}] ha sido sobreescrito" -#: superset-frontend/src/explore/actions/saveModalActions.js:124 +#: superset-frontend/src/explore/actions/saveModalActions.js:118 #, fuzzy, python-format msgid "Chart [%s] has been saved" msgstr "El gráfico [{}] ha sido guardado" -#: superset-frontend/src/explore/actions/saveModalActions.js:145 +#: superset-frontend/src/explore/actions/saveModalActions.js:139 #, fuzzy, python-format msgid "Chart [%s] was added to dashboard [%s]" msgstr "El gráfico [{}] ha sido añadido al dashboard [{}]" -#: superset/views/core.py:1077 +#: superset/views/core.py:1099 msgid "Chart [{}] has been overwritten" msgstr "El gráfico [{}] ha sido sobreescrito" -#: superset/views/core.py:1073 +#: superset/views/core.py:1095 msgid "Chart [{}] has been saved" msgstr "El gráfico [{}] ha sido guardado" -#: superset/views/core.py:1102 +#: superset/views/core.py:1124 msgid "Chart [{}] was added to dashboard [{}]" msgstr "El gráfico [{}] ha sido añadido al dashboard [{}]" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:228 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:238 msgid "Chart cache timeout" msgstr "Tiempo de espera de caché" @@ -3515,7 +3579,7 @@ msgstr "Última modificación" msgid "Chart last modified by" msgstr "Última modificación por %s" -#: superset-frontend/src/explore/components/SaveModal.tsx:320 +#: superset-frontend/src/explore/components/SaveModal.tsx:355 msgid "Chart name" msgstr "El Gráfico ha cambiado" @@ -3548,7 +3612,7 @@ msgstr "Tipo de dato" msgid "Chart type" msgstr "Tipo de dato" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:315 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 msgid "Chart type requires a dataset" msgstr "" @@ -3564,7 +3628,7 @@ msgstr "Tipo de dato" #: superset-frontend/src/pages/Home/index.tsx:399 #: superset-frontend/src/profile/components/CreatedContent.tsx:104 #: superset-frontend/src/profile/components/Favorites.tsx:102 -#: superset/initialization/__init__.py:257 superset/views/chart/mixin.py:25 +#: superset/initialization/__init__.py:259 superset/views/chart/mixin.py:25 #: superset/views/dashboard/mixin.py:80 msgid "Charts" msgstr "Gráficos" @@ -3597,7 +3661,7 @@ msgstr "" msgid "Check out this chart in dashboard:" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:474 msgid "Check out this chart: " msgstr "" @@ -3630,11 +3694,11 @@ msgstr "Marcar para incluir la caja de selección de origen de tiempo" msgid "Child label position" msgstr "" -#: superset/viz.py:2370 +#: superset/viz.py:2307 msgid "Choice of [Label] must be present in [Group By]" msgstr "La opción de [Etiqueta] debe estar presente en [Group By]" -#: superset/viz.py:2378 +#: superset/viz.py:2315 msgid "Choice of [Point Radius] must be present in [Group By]" msgstr "La opción de [Radio de Puntos] debe estar presente en [Group By]" @@ -3647,7 +3711,7 @@ msgstr "Seleccionar archivo" msgid "Choose a chart or dashboard not both" msgstr "Elija un gráfico o un dashboard, no ambos" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:924 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:979 #, fuzzy msgid "Choose a database..." msgstr "Selecciona una base de datos" @@ -3688,16 +3752,12 @@ msgstr "Selecciona una base de datos" msgid "Choose a target" msgstr "Selecciona una base de datos" -#: superset/connectors/sqla/views.py:327 -msgid "Choose a unique name" -msgstr "" - #: superset-frontend/src/pages/ChartCreation/index.tsx:404 #, fuzzy msgid "Choose chart type" msgstr "Tipo de dato" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:745 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:739 msgid "Choose one of the available databases from the panel on the left." msgstr "" @@ -3779,7 +3839,8 @@ msgid "" "showcase a view into the underlying data or to show aggregated metrics." msgstr "" -#: superset/connectors/sqla/views.py:365 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:454 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:144 msgid "Clause" msgstr "Cláusula" @@ -3791,7 +3852,7 @@ msgstr "Limpiar" msgid "Clear all" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:206 +#: superset-frontend/src/components/Table/index.tsx:210 #, fuzzy msgid "Clear all data" msgstr "Todos los gráficos" @@ -3819,19 +3880,19 @@ msgstr "CLick en el candado para poder realizar cambios." msgid "Click the lock to prevent further changes." msgstr "Click sobre el candado para prevenir futuros cambios." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1955 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2012 msgid "" "Click this link to switch to an alternate form that allows you to input " "the SQLAlchemy URL for this database manually." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1771 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1827 msgid "" "Click this link to switch to an alternate form that exposes only the " "required fields needed to connect this database." msgstr "" -#: superset-frontend/src/components/Table/index.tsx:213 +#: superset-frontend/src/components/Table/index.tsx:217 msgid "Click to cancel sorting" msgstr "" @@ -3841,16 +3902,10 @@ msgstr "Click para editar" #: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 #, fuzzy, python-format -msgid "Click to edit %s in a new tab" -msgstr "Click para editar" - -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:32 -#, fuzzy, python-format msgid "Click to edit %s." msgstr "Click para editar" #: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:33 #, fuzzy msgid "Click to edit chart." msgstr "Click para editar" @@ -3873,27 +3928,27 @@ msgstr "Haga clic para forzar la actualización" msgid "Click to see difference" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:212 +#: superset-frontend/src/components/Table/index.tsx:216 #, fuzzy msgid "Click to sort ascending" msgstr "Selecciona para ordenar de forma ascendente" -#: superset-frontend/src/components/Table/index.tsx:211 +#: superset-frontend/src/components/Table/index.tsx:215 #, fuzzy msgid "Click to sort descending" msgstr "Orden descendente" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:83 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:132 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:52 #: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:209 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:219 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:224 #: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:786 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:408 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:414 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:339 #: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:36 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1109 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1164 msgid "Close" msgstr "Cerrar" @@ -3927,17 +3982,17 @@ msgstr "Contraer todo" msgid "Collapse data panel" msgstr "Contraer todo" -#: superset-frontend/src/components/Table/index.tsx:210 +#: superset-frontend/src/components/Table/index.tsx:214 #, fuzzy msgid "Collapse row" msgstr "Contraer todo" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:598 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:599 #, fuzzy msgid "Collapse tab content" msgstr "Contenido de la celda" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:197 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 #, fuzzy msgid "Collapse table preview" msgstr "Eliminar vista previa de la tabla" @@ -3962,7 +4017,7 @@ msgstr "Métrica de Color" msgid "Color Scheme" msgstr "Esquema de Color" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:129 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 #, fuzzy msgid "Color Steps" msgstr "Esquema de Color" @@ -3986,8 +4041,8 @@ msgid "Color of the target location" msgstr "Propietarios del dataset" #: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:214 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:218 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 #: superset-frontend/src/explore/controlPanels/sections.tsx:60 #: superset-frontend/src/explore/controls.jsx:460 msgid "Color scheme" @@ -4007,8 +4062,8 @@ msgstr "Colores" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 #: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:204 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:250 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:256 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:137 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:140 #: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 @@ -4016,7 +4071,7 @@ msgstr "Colores" #: superset-frontend/src/filters/components/Range/controlPanel.ts:39 #: superset-frontend/src/filters/components/Select/controlPanel.ts:49 #: superset-frontend/src/filters/components/Time/controlPanel.ts:37 -#: superset/connectors/sqla/views.py:155 +#: superset/connectors/sqla/views.py:154 msgid "Column" msgstr "Columna" @@ -4032,13 +4087,18 @@ msgstr "" msgid "Column Configuration" msgstr "Configuración" +#: superset/views/database/forms.py:144 +#, fuzzy +msgid "Column Data Types" +msgstr "Datos cargados en caché" + #: superset-frontend/src/explore/components/DataTableControl/index.tsx:194 #, fuzzy msgid "Column Formatting" msgstr "Información adicional" -#: superset/views/database/forms.py:222 superset/views/database/forms.py:383 -#: superset/views/database/forms.py:474 +#: superset/views/database/forms.py:232 superset/views/database/forms.py:393 +#: superset/views/database/forms.py:484 msgid "Column Label(s)" msgstr "Etiqueta(s) de columna" @@ -4056,6 +4116,11 @@ msgstr "" msgid "Column containing longitude data" msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:69 +#, fuzzy +msgid "Column datatype" +msgstr "Nombre(s) de columna(s) " + #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 msgid "Column header tooltip" msgstr "" @@ -4065,19 +4130,19 @@ msgstr "" msgid "Column is required" msgstr "Nombre es requerido" -#: superset/views/database/forms.py:384 superset/views/database/forms.py:475 +#: superset/views/database/forms.py:394 superset/views/database/forms.py:485 msgid "" "Column label for index column(s). If None is given and Dataframe Index is" " True, Index Names are used." msgstr "" -#: superset/views/database/forms.py:223 +#: superset/views/database/forms.py:233 msgid "" "Column label for index column(s). If None is given and Dataframe Index is" " checked, Index Names are used" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:77 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:90 #, fuzzy msgid "Column name" msgstr "Nombre(s) de columna(s) " @@ -4099,31 +4164,31 @@ msgstr "" msgid "Column select" msgstr "Probar Conexión" -#: superset/views/database/forms.py:211 +#: superset/views/database/forms.py:221 msgid "" "Column to use as the row labels of the dataframe. Leave empty if no index" " column" msgstr "" -#: superset/views/database/forms.py:342 +#: superset/views/database/forms.py:352 msgid "" "Column to use as the row labels of the dataframe. Leave empty if no index" " column." msgstr "" -#: superset/views/database/forms.py:414 +#: superset/views/database/forms.py:424 #, fuzzy msgid "Columnar File" msgstr "Columna" -#: superset/views/database/views.py:565 +#: superset/views/database/views.py:568 #, python-format msgid "" "Columnar file \"%(columnar_filename)s\" uploaded to table " "\"%(table_name)s\" in database \"%(db_name)s\"" msgstr "" -#: superset/views/database/views.py:440 +#: superset/views/database/views.py:443 #, fuzzy msgid "Columnar to Database configuration" msgstr "Configuración de Excel a base de datos" @@ -4140,18 +4205,18 @@ msgstr "Configuración de Excel a base de datos" #: superset-frontend/src/explore/controls.jsx:244 #: superset-frontend/src/explore/fixtures.tsx:97 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 -#: superset/connectors/sqla/views.py:72 +#: superset/connectors/sqla/views.py:71 msgid "Columns" msgstr "Columnas" -#: superset/views/database/forms.py:183 +#: superset/views/database/forms.py:193 #, fuzzy msgid "Columns To Be Parsed as Dates" msgstr "" "Una lista separada por comas de columnas que deben ser parseadas como " "fechas." -#: superset/views/database/forms.py:231 +#: superset/views/database/forms.py:241 #, fuzzy msgid "Columns To Read" msgstr "Mostrar Columna" @@ -4161,7 +4226,7 @@ msgstr "Mostrar Columna" msgid "Columns missing in dataset: %(invalid_columns)s" msgstr "La fuente de datos no tiene las columnas: %(invalid_columns)s" -#: superset/viz.py:577 +#: superset/viz.py:593 #, python-format msgid "Columns missing in datasource: %(invalid_columns)s" msgstr "La fuente de datos no tiene las columnas: %(invalid_columns)s" @@ -4203,11 +4268,6 @@ msgstr "" msgid "Columns to show" msgstr "Elige qué métrica mostrar" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:85 -#, fuzzy -msgid "Combine Metrics" -msgstr "Métroca de orden" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:250 #, fuzzy msgid "Combine metrics" @@ -4266,6 +4326,7 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:35 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:35 @@ -4313,6 +4374,11 @@ msgstr "Calcular la contribución al total" msgid "Condition" msgstr "Probar Conexión" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 +#, fuzzy +msgid "Conditional Formatting" +msgstr "Información adicional" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:385 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:504 #, fuzzy @@ -4370,15 +4436,15 @@ msgstr "" msgid "Confirm overwrite" msgstr "Confirmar guardado" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:180 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:222 msgid "Confirm save" msgstr "Confirmar guardado" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1059 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1097 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1656 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1695 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1857 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1152 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1712 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 #, fuzzy msgid "Connect" msgstr "Probar Conexión" @@ -4391,9 +4457,9 @@ msgstr "" msgid "Connect Google Sheets as tables to this database" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1660 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1700 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1861 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1716 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1918 #, fuzzy msgid "Connect a database" msgstr "Selecciona una base de datos" @@ -4403,24 +4469,24 @@ msgstr "Selecciona una base de datos" msgid "Connect database" msgstr "Selecciona una base de datos" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1768 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 msgid "Connect this database using the dynamic form instead" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1950 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2007 msgid "Connect this database with a SQLAlchemy URI string instead" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:225 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 msgid "Connection" msgstr "Probar Conexión" #: superset/databases/commands/exceptions.py:107 -#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1430 +#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1471 msgid "Connection failed, please check your connection settings" msgstr "La conexión ha fallado, por favor verifique sus ajustes de conexión" -#: superset-frontend/src/views/CRUD/hooks.ts:697 +#: superset-frontend/src/views/CRUD/hooks.ts:701 msgid "Connection looks good!" msgstr "¡La conexión parece correcta!" @@ -4445,7 +4511,7 @@ msgstr "" msgid "Contribution" msgstr "Contribución" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:42 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 #, fuzzy msgid "Contribution Mode" msgstr "Contribución" @@ -4501,8 +4567,8 @@ msgstr "Copiar enlace" msgid "Copy message" msgstr "Mensaje de Aviso" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:683 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1469 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:679 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1461 #: superset-frontend/src/SqlLab/reducers/sqlLab.js:107 #, python-format msgid "Copy of %s" @@ -4513,7 +4579,7 @@ msgid "Copy partition query to clipboard" msgstr "Copiar consulta de partición al portapapeles" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:329 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:468 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:340 #, fuzzy msgid "Copy permalink to clipboard" @@ -4539,7 +4605,7 @@ msgstr "" msgid "Copy the name of the database you are trying to connect to." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:273 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:271 #, fuzzy msgid "Copy to Clipboard" msgstr "Copiar al portapapeles" @@ -4561,7 +4627,12 @@ msgstr "Duración" msgid "Cost estimate" msgstr "Estimación de costo" -#: superset/views/utils.py:498 +#: superset/db_engine_specs/ocient.py:259 +#, fuzzy, python-format +msgid "Could not connect to database: \"%(database)s\"" +msgstr "No se puede conectar a la Base de Datos: \"%(database)s\\ " + +#: superset/views/utils.py:496 msgid "Could not determine datasource type" msgstr "No se pudo determinar el tipo de fuente de datos" @@ -4570,7 +4641,7 @@ msgstr "No se pudo determinar el tipo de fuente de datos" msgid "Could not fetch all saved charts" msgstr "No se pudieron cargar todos los gráficos guardados" -#: superset/views/utils.py:514 +#: superset/views/utils.py:512 msgid "Could not find viz object" msgstr "No se pudo encontrar el objeto de visualización" @@ -4578,7 +4649,7 @@ msgstr "No se pudo encontrar el objeto de visualización" msgid "Could not load database driver" msgstr "No se ha podido cargar el controlador de la base de datos" -#: superset/views/core.py:1413 +#: superset/views/core.py:1454 #, python-format msgid "Could not load database driver: %(driver_name)s" msgstr "No se pudo cargar el controlador de base de datos: %(driver_name)s" @@ -4587,6 +4658,11 @@ msgstr "No se pudo cargar el controlador de base de datos: %(driver_name)s" msgid "Could not load database driver: {}" msgstr "No se ha podido cargar el controlador de la base de datos: {}" +#: superset/db_engine_specs/ocient.py:264 +#, python-format +msgid "Could not resolve hostname: \"%(host)s\"." +msgstr "" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 #, fuzzy msgid "Count" @@ -4631,12 +4707,12 @@ msgid "Country Field Type" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 -#: superset/viz.py:2044 +#: superset/viz.py:1969 msgid "Country Map" msgstr "Mapa de País" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:767 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:761 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:770 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:96 #, fuzzy msgid "Create" @@ -4648,10 +4724,10 @@ msgid "Create Chart" msgstr "Compartir gráfico" #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:331 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:321 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:332 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:356 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:327 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:338 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:362 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 #, fuzzy msgid "Create a dataset" @@ -4699,7 +4775,7 @@ msgstr "Crear un nuevo Gráfico" msgid "Create new filter set" msgstr "Crear un nuevo Gráfico" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 msgid "Create or select schema..." msgstr "" @@ -4722,7 +4798,7 @@ msgstr "Creado el" #: superset-frontend/src/pages/CssTemplateList/index.tsx:273 #: superset-frontend/src/pages/DashboardList/index.tsx:358 #: superset-frontend/src/pages/DashboardList/index.tsx:545 -#: superset-frontend/src/pages/DatabaseList/index.tsx:365 +#: superset-frontend/src/pages/DatabaseList/index.tsx:376 #: superset-frontend/src/pages/Tags/index.tsx:128 #: superset-frontend/src/pages/Tags/index.tsx:183 msgid "Created by" @@ -4753,9 +4829,8 @@ msgstr "Importar el gráfico falló por una razón desconocida" msgid "Creating a data source and creating a new tab" msgstr "Creando un origen de datos y creando una nueva pestaña" -#: superset/connectors/sqla/views.py:366 superset/views/chart/mixin.py:77 -#: superset/views/dashboard/mixin.py:84 superset/views/dashboard/views.py:185 -#: superset/views/database/mixins.py:189 +#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 +#: superset/views/dashboard/views.py:185 superset/views/database/mixins.py:189 msgid "Creator" msgstr "Creador" @@ -4764,15 +4839,27 @@ msgstr "Creador" msgid "Crimson" msgstr "Acción" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:122 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:152 msgid "Cross-filter will be applied to all of the charts that use this dataset." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:134 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:164 #, fuzzy msgid "Cross-filtering is not enabled for this dashboard." msgstr "No hay filtros en este dashboard" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 +#, fuzzy +msgid "Cross-filtering is not enabled in this dashboard" +msgstr "No hay filtros en este dashboard" + +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:414 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 +#, fuzzy +msgid "Cross-filtering scoping" +msgstr "Filtro de padre" + #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 #, fuzzy msgid "Cross-filters" @@ -4801,7 +4888,7 @@ msgstr "Customizar" msgid "Custom Plugins" msgstr "Customizar" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:385 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:391 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 @@ -4812,8 +4899,7 @@ msgstr "SQL Personalizado" msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" msgstr "" -#: superset/connectors/sqla/utils.py:194 superset/errors.py:145 -#: superset/models/helpers.py:129 superset/models/helpers.py:864 +#: superset/errors.py:145 superset/models/helpers.py:138 msgid "Custom SQL fields cannot contain sub-queries." msgstr "" @@ -4839,7 +4925,7 @@ msgstr "Columnas calculadas" msgid "Cyclic dependency detected" msgstr "" -#: superset/connectors/sqla/views.py:256 +#: superset/connectors/sqla/views.py:255 msgid "D3 Format" msgstr "Formato D3" @@ -4849,7 +4935,7 @@ msgstr "Formato D3" msgid "D3 format" msgstr "Formato D3" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:22 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:146 msgid "D3 format syntax: https://github.com/d3/d3-format" msgstr "" @@ -4865,7 +4951,7 @@ msgstr "" msgid "D3 time format for datetime columns" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:53 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 msgid "D3 time format syntax: https://github.com/d3/d3-time-format" msgstr "" @@ -4888,7 +4974,7 @@ msgstr "DIC" msgid "DELETE" msgstr "ELIMINAR" -#: superset-frontend/src/pages/DatabaseList/index.tsx:332 +#: superset-frontend/src/pages/DatabaseList/index.tsx:343 msgid "DML" msgstr "DML" @@ -4917,12 +5003,12 @@ msgstr "" msgid "Dashboard" msgstr "Dashboard" -#: superset-frontend/src/explore/actions/saveModalActions.js:135 +#: superset-frontend/src/explore/actions/saveModalActions.js:129 #, fuzzy, python-format msgid "Dashboard [%s] just got created and chart [%s] was added to it" msgstr "El dashboard [{}] ha sido creado y el gráfico [{}] ha sido añadido a él" -#: superset/views/core.py:1122 +#: superset/views/core.py:1144 msgid "Dashboard [{}] just got created and chart [{}] was added to it" msgstr "El dashboard [{}] ha sido creado y el gráfico [{}] ha sido añadido a él" @@ -4989,7 +5075,7 @@ msgstr "Dashboards" #: superset-frontend/src/pages/Home/index.tsx:385 #: superset-frontend/src/profile/components/CreatedContent.tsx:101 #: superset-frontend/src/profile/components/Favorites.tsx:99 -#: superset/initialization/__init__.py:249 superset/views/chart/mixin.py:78 +#: superset/initialization/__init__.py:251 superset/views/chart/mixin.py:78 #: superset/views/dashboard/mixin.py:24 msgid "Dashboards" msgstr "Dashboards" @@ -5015,7 +5101,7 @@ msgstr "en cache" #: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:708 #: superset-frontend/src/features/home/RightMenu.tsx:169 -#: superset/initialization/__init__.py:244 +#: superset/initialization/__init__.py:246 msgid "Data" msgstr "Datos" @@ -5024,7 +5110,7 @@ msgstr "Datos" msgid "Data Table" msgstr "Esitar Tabla" -#: superset/datasets/commands/exceptions.py:197 +#: superset/datasets/commands/exceptions.py:214 msgid "Data URI is not allowed." msgstr "" @@ -5038,14 +5124,14 @@ msgstr "" msgid "Data Zoom" msgstr "" -#: superset/sqllab/commands/results.py:116 superset/views/core.py:2195 +#: superset/sqllab/commands/results.py:116 superset/views/core.py:2231 msgid "" "Data could not be deserialized from the results backend. The storage " "format might have changed, rendering the old data stake. You need to re-" "run the original query." msgstr "" -#: superset/sqllab/commands/results.py:75 superset/views/core.py:2148 +#: superset/sqllab/commands/results.py:75 superset/views/core.py:2184 #, fuzzy msgid "" "Data could not be retrieved from the results backend. You need to re-run " @@ -5062,7 +5148,7 @@ msgstr "" msgid "Data preview" msgstr "Previsualización de Datos" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:283 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:278 #, fuzzy msgid "Data refreshed" msgstr "Última actualización de metadatos" @@ -5082,51 +5168,51 @@ msgstr "Por favor elige al menos una métrica" msgid "DataFrame must include temporal column" msgstr "El DataFrame debe incluir una columna temporal" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:275 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:274 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -#: superset-frontend/src/pages/DatabaseList/index.tsx:267 -#: superset-frontend/src/pages/DatabaseList/index.tsx:296 -#: superset-frontend/src/pages/DatasetList/index.tsx:349 -#: superset-frontend/src/pages/DatasetList/index.tsx:520 +#: superset-frontend/src/pages/DatabaseList/index.tsx:278 +#: superset-frontend/src/pages/DatabaseList/index.tsx:307 +#: superset-frontend/src/pages/DatasetList/index.tsx:360 +#: superset-frontend/src/pages/DatasetList/index.tsx:531 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:241 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:349 #: superset-frontend/src/pages/SavedQueryList/index.tsx:287 #: superset-frontend/src/pages/SavedQueryList/index.tsx:448 -#: superset/connectors/sqla/views.py:479 superset/connectors/sqla/views.py:480 +#: superset/connectors/sqla/views.py:386 superset/connectors/sqla/views.py:387 #: superset/templates/superset/import_dashboards.html:53 -#: superset/views/database/forms.py:137 superset/views/database/forms.py:305 -#: superset/views/database/forms.py:436 superset/views/database/mixins.py:188 +#: superset/views/database/forms.py:137 superset/views/database/forms.py:315 +#: superset/views/database/forms.py:446 superset/views/database/mixins.py:188 #: superset/views/sql_lab/views.py:83 msgid "Database" msgstr "Base de datos" -#: superset/views/database/views.py:478 +#: superset/views/database/views.py:481 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " "for columnar uploads. Please contact your Superset Admin." msgstr "" -#: superset/views/database/views.py:179 +#: superset/views/database/views.py:180 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " "for csv uploads. Please contact your Superset Admin." msgstr "" -#: superset/views/database/views.py:318 +#: superset/views/database/views.py:321 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " "for excel uploads. Please contact your Superset Admin." msgstr "" -#: superset/initialization/__init__.py:241 +#: superset/initialization/__init__.py:243 #, fuzzy msgid "Database Connections" msgstr "Probar Conexión" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1467 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1522 #, fuzzy msgid "Database Creation Error" msgstr "Base de datos" @@ -5136,9 +5222,9 @@ msgid "Database URL" msgstr "URL de la Base de datos" #: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:827 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:849 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1150 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:882 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:904 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1205 #, fuzzy msgid "Database connected" msgstr "El Gráfico no ha podido crearse" @@ -5165,7 +5251,7 @@ msgstr "" msgid "Database does not exist" msgstr "La base de datos no existe" -#: superset/connectors/sqla/models.py:1793 superset/models/helpers.py:1966 +#: superset/models/helpers.py:2063 #, fuzzy msgid "Database does not support subqueries" msgstr "La base de datos no existe" @@ -5176,7 +5262,7 @@ msgid "" "documentation page for installation instructions: " msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:429 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 msgid "Database error" msgstr "Base de datos" @@ -5190,8 +5276,8 @@ msgid "Database is required for alerts" msgstr "La base de datos es requerida para las alertas" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:113 -#: superset/db_engine_specs/base.py:1845 -#: superset/db_engine_specs/clickhouse.py:209 +#: superset/db_engine_specs/base.py:1880 +#: superset/db_engine_specs/clickhouse.py:212 msgid "Database name" msgstr "Nombre de la Fuente de Datos" @@ -5203,7 +5289,7 @@ msgstr "La base de datos no puede cambiar" msgid "Database not found." msgstr "La base de datos no existe" -#: superset/views/core.py:1179 +#: superset/views/core.py:1201 #, fuzzy, python-format msgid "Database not found: %(id)s" msgstr "La base de datos no existe" @@ -5217,26 +5303,26 @@ msgstr "Los parametros del Gráfico son invalidos" msgid "Database passwords" msgstr "Base de datos" -#: superset/db_engine_specs/base.py:1842 -#: superset/db_engine_specs/clickhouse.py:206 +#: superset/db_engine_specs/base.py:1876 +#: superset/db_engine_specs/clickhouse.py:208 #: superset/db_engine_specs/databricks.py:52 #, fuzzy msgid "Database port" msgstr "Base de datos" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:811 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:853 #, fuzzy msgid "Database settings updated" msgstr "El Gráfico no ha podido guardarse" -#: superset-frontend/src/pages/DatabaseList/index.tsx:258 +#: superset-frontend/src/pages/DatabaseList/index.tsx:269 #: superset-frontend/src/profile/components/Security.tsx:47 #: superset/views/database/mixins.py:33 msgid "Databases" msgstr "Bases de datos" -#: superset/views/database/forms.py:219 superset/views/database/forms.py:380 -#: superset/views/database/forms.py:471 +#: superset/views/database/forms.py:229 superset/views/database/forms.py:390 +#: superset/views/database/forms.py:481 msgid "Dataframe Index" msgstr "Índice de Dataframe" @@ -5248,7 +5334,7 @@ msgstr "Índice de Dataframe" #: superset-frontend/src/pages/ChartCreation/index.tsx:390 #: superset-frontend/src/pages/ChartList/index.tsx:391 #: superset-frontend/src/pages/ChartList/index.tsx:678 -#: superset-frontend/src/pages/DatasetList/index.tsx:606 +#: superset-frontend/src/pages/DatasetList/index.tsx:617 msgid "Dataset" msgstr "Conjunto de Datos" @@ -5257,7 +5343,7 @@ msgstr "Conjunto de Datos" msgid "Dataset %(name)s already exists" msgstr "La fuente de datos %(name)s ya existe" -#: superset-frontend/src/explore/components/SaveModal.tsx:331 +#: superset-frontend/src/explore/components/SaveModal.tsx:366 #, fuzzy msgid "Dataset Name" msgstr "Nombre de la Fuente de Datos" @@ -5272,29 +5358,29 @@ msgstr "Capas de Anotación" msgid "Dataset column not found." msgstr "La base de datos no existe" -#: superset/datasets/commands/exceptions.py:157 +#: superset/datasets/commands/exceptions.py:174 msgid "Dataset could not be created." msgstr "El conjunto de datos no pudo ser creado." -#: superset/datasets/commands/exceptions.py:165 +#: superset/datasets/commands/exceptions.py:182 msgid "Dataset could not be deleted." msgstr "El conjunto de datos no pudo ser eliminado." -#: superset/datasets/commands/exceptions.py:193 +#: superset/datasets/commands/exceptions.py:210 #, fuzzy msgid "Dataset could not be duplicated." msgstr "El conjunto de datos no pudo ser actualizado." -#: superset/datasets/commands/exceptions.py:161 -#: superset/datasets/commands/exceptions.py:173 +#: superset/datasets/commands/exceptions.py:178 +#: superset/datasets/commands/exceptions.py:190 msgid "Dataset could not be updated." msgstr "El conjunto de datos no pudo ser actualizado." -#: superset/datasets/commands/exceptions.py:149 +#: superset/datasets/commands/exceptions.py:166 msgid "Dataset does not exist" msgstr "La fuente no existe" -#: superset-frontend/src/pages/DatasetList/index.tsx:185 +#: superset-frontend/src/pages/DatasetList/index.tsx:196 #, fuzzy msgid "Dataset imported" msgstr "Base de datos" @@ -5319,22 +5405,22 @@ msgstr "La base de datos no existe" msgid "Dataset name" msgstr "Nombre de la Fuente de Datos" -#: superset/datasets/commands/exceptions.py:153 +#: superset/datasets/commands/exceptions.py:170 msgid "Dataset parameters are invalid." msgstr "Los parametros del conjunto de datos son inválidos." -#: superset/dashboards/api.py:430 +#: superset/dashboards/api.py:415 #, python-format msgid "Dataset schema is invalid, caused by: %(error)s" msgstr "" -#: superset/datasets/commands/exceptions.py:169 +#: superset/datasets/commands/exceptions.py:186 msgid "Dataset(s) could not be bulk deleted." msgstr "Los Gráficos no han podido eliminarse" -#: superset-frontend/src/pages/DatasetList/index.tsx:589 +#: superset-frontend/src/pages/DatasetList/index.tsx:600 #: superset-frontend/src/profile/components/Security.tsx:61 -#: superset/initialization/__init__.py:265 +#: superset/initialization/__init__.py:267 msgid "Datasets" msgstr "Conjuntos de datos" @@ -5359,12 +5445,12 @@ msgstr "Fuente de datos" msgid "Datasource & Chart Type" msgstr "Nombre de la Fuente de Datos" -#: superset/commands/exceptions.py:131 +#: superset/commands/exceptions.py:135 #, fuzzy msgid "Datasource does not exist" msgstr "La fuente no existe" -#: superset/commands/exceptions.py:123 +#: superset/commands/exceptions.py:127 msgid "Datasource type is invalid" msgstr "" @@ -5384,8 +5470,7 @@ msgstr "Formato Fecha/Hora" msgid "Date filter" msgstr "Filtro de Fecha" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:71 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:151 #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:135 @@ -5407,11 +5492,11 @@ msgstr "Formato Fecha/Hora" msgid "Date/Time" msgstr "Fecha/Hora" -#: superset/connectors/sqla/views.py:163 +#: superset/connectors/sqla/views.py:162 msgid "Datetime Format" msgstr "Formato FechaHora" -#: superset/connectors/sqla/models.py:1237 superset/models/helpers.py:1427 +#: superset/models/helpers.py:1502 msgid "" "Datetime column not provided as part table configuration and is required " "by this type of chart" @@ -5423,7 +5508,7 @@ msgstr "" msgid "Datetime format" msgstr "Formato Fecha/Hora" -#: superset/db_engine_specs/base.py:106 +#: superset/db_engine_specs/base.py:107 #, fuzzy msgid "Day" msgstr "día" @@ -5437,7 +5522,7 @@ msgstr "" msgid "Days %s" msgstr "día" -#: superset/connectors/sqla/models.py:1936 superset/models/helpers.py:988 +#: superset/connectors/sqla/models.py:1222 superset/models/helpers.py:1024 msgid "Db engine did not return all queried columns" msgstr "" @@ -5450,47 +5535,56 @@ msgstr "Activo" msgid "December" msgstr "Diciembre" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:70 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:89 msgid "Decides which column to sort the base axis by." msgstr "" -#: superset/views/database/forms.py:194 superset/views/database/forms.py:373 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:160 +msgid "Decides which measure to sort the base axis by." +msgstr "" + +#: superset/views/database/forms.py:204 superset/views/database/forms.py:383 msgid "Decimal Character" msgstr "Caracter Decimal" -#: superset/viz.py:2743 +#: superset/viz.py:2700 msgid "Deck.gl - 3D Grid" msgstr "" -#: superset/viz.py:2859 +#: superset/viz.py:2825 msgid "Deck.gl - 3D HEX" msgstr "" -#: superset/viz.py:2899 +#: superset/viz.py:2890 msgid "Deck.gl - Arc" msgstr "" -#: superset/viz.py:2880 +#: superset/viz.py:2869 msgid "Deck.gl - GeoJSON" msgstr "" -#: superset/viz.py:2468 +#: superset/viz.py:2848 +#, fuzzy +msgid "Deck.gl - Heatmap" +msgstr "Todos los gráficos" + +#: superset/viz.py:2406 msgid "Deck.gl - Multiple Layers" msgstr "Deck.gl - Capas Múltiples" -#: superset/viz.py:2775 +#: superset/viz.py:2735 msgid "Deck.gl - Paths" msgstr "" -#: superset/viz.py:2826 +#: superset/viz.py:2789 msgid "Deck.gl - Polygon" msgstr "" -#: superset/viz.py:2662 +#: superset/viz.py:2612 msgid "Deck.gl - Scatter plot" msgstr "" -#: superset/viz.py:2714 +#: superset/viz.py:2668 msgid "Deck.gl - Screen Grid" msgstr "" @@ -5498,7 +5592,7 @@ msgstr "" msgid "Default" msgstr "Por defecto" -#: superset/connectors/sqla/views.py:484 +#: superset/connectors/sqla/views.py:391 msgid "Default Endpoint" msgstr "Endpoint predeterminado" @@ -5636,11 +5730,13 @@ msgstr "" #: superset-frontend/src/pages/CssTemplateList/index.tsx:338 #: superset-frontend/src/pages/DashboardList/index.tsx:427 #: superset-frontend/src/pages/DashboardList/index.tsx:712 -#: superset-frontend/src/pages/DatasetList/index.tsx:418 -#: superset-frontend/src/pages/DatasetList/index.tsx:751 +#: superset-frontend/src/pages/DatasetList/index.tsx:429 +#: superset-frontend/src/pages/DatasetList/index.tsx:773 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:182 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:313 #: superset-frontend/src/pages/SavedQueryList/index.tsx:542 #: superset-frontend/src/pages/Tags/index.tsx:153 -#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:663 +#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:664 msgid "Delete" msgstr "Eliminar" @@ -5653,11 +5749,11 @@ msgstr "¿Eliminar %s?" msgid "Delete Annotation?" msgstr "¿Eliminar anotación?" -#: superset-frontend/src/pages/DatabaseList/index.tsx:529 +#: superset-frontend/src/pages/DatabaseList/index.tsx:551 msgid "Delete Database?" msgstr "¿Eliminar base de datos?" -#: superset-frontend/src/pages/DatasetList/index.tsx:723 +#: superset-frontend/src/pages/DatasetList/index.tsx:745 msgid "Delete Dataset?" msgstr "¿Eliminar conjunto de datos?" @@ -5679,7 +5775,7 @@ msgstr "Plantillas CSS" msgid "Delete Template?" msgstr "Plantillas CSS" -#: superset/views/base.py:663 +#: superset/views/base.py:664 msgid "Delete all Really?" msgstr "¿Realmente quieres borrar todo?" @@ -5691,7 +5787,7 @@ msgstr "Eliminar anotación" msgid "Delete dashboard tab?" msgstr "¿Quieres eliminar la pestaña del dashboard?" -#: superset-frontend/src/pages/DatabaseList/index.tsx:405 +#: superset-frontend/src/pages/DatabaseList/index.tsx:416 msgid "Delete database" msgstr "Eliminar base de datos" @@ -5714,6 +5810,11 @@ msgstr "Eliminar plantilla" msgid "Delete this container and save to remove this message." msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:108 +#, fuzzy +msgid "Deleted" +msgstr "eliminar" + #: superset/annotation_layers/annotations/api.py:504 #, python-format msgid "Deleted %(num)d annotation" @@ -5728,7 +5829,7 @@ msgid_plural "Deleted %(num)d annotation layers" msgstr[0] "" msgstr[1] "" -#: superset/charts/api.py:524 +#: superset/charts/api.py:521 #, python-format msgid "Deleted %(num)d chart" msgid_plural "Deleted %(num)d charts" @@ -5742,14 +5843,14 @@ msgid_plural "Deleted %(num)d css templates" msgstr[0] "" msgstr[1] "" -#: superset/dashboards/api.py:760 +#: superset/dashboards/api.py:745 #, python-format msgid "Deleted %(num)d dashboard" msgid_plural "Deleted %(num)d dashboards" msgstr[0] "" msgstr[1] "" -#: superset/datasets/api.py:783 +#: superset/datasets/api.py:789 #, python-format msgid "Deleted %(num)d dataset" msgid_plural "Deleted %(num)d datasets" @@ -5763,6 +5864,13 @@ msgid_plural "Deleted %(num)d report schedules" msgstr[0] "" msgstr[1] "" +#: superset/row_level_security/api.py:349 +#, fuzzy, python-format +msgid "Deleted %(num)d rules" +msgid_plural "Deleted %(num)d rules" +msgstr[0] "" +msgstr[1] "" + #: superset/queries/saved_queries/api.py:222 #, python-format msgid "Deleted %(num)d saved query" @@ -5770,13 +5878,18 @@ msgid_plural "Deleted %(num)d saved queries" msgstr[0] "" msgstr[1] "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:94 +#, fuzzy, python-format +msgid "Deleted %s" +msgstr "Eliminado: %s" + #: superset-frontend/src/features/home/SavedQueries.tsx:172 #: superset-frontend/src/pages/AlertReportList/index.tsx:183 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 #: superset-frontend/src/pages/AnnotationList/index.tsx:117 #: superset-frontend/src/pages/CssTemplateList/index.tsx:93 -#: superset-frontend/src/pages/DatabaseList/index.tsx:158 -#: superset-frontend/src/pages/DatasetList/index.tsx:653 +#: superset-frontend/src/pages/DatabaseList/index.tsx:169 +#: superset-frontend/src/pages/DatasetList/index.tsx:664 #: superset-frontend/src/pages/SavedQueryList/index.tsx:242 #: superset-frontend/src/reports/actions/reports.js:158 #: superset-frontend/src/views/CRUD/utils.tsx:272 @@ -5795,7 +5908,7 @@ msgstr "" msgid "Delimited long & lat single column" msgstr "una sola columna con longitud y latitud delimitadas" -#: superset/views/database/forms.py:150 +#: superset/views/database/forms.py:160 msgid "Delimiter" msgstr "Delimitador" @@ -5825,33 +5938,35 @@ msgstr "Orden descendente" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:40 +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 #, fuzzy msgid "Deprecated" msgstr "Creado" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:83 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:114 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:96 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:127 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:55 #: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:157 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:156 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:265 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1206 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1210 -#: superset-frontend/src/components/ReportModal/index.tsx:294 +#: superset-frontend/src/components/ReportModal/index.tsx:293 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1158 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:465 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 #: superset-frontend/src/pages/AnnotationList/index.tsx:161 -#: superset/connectors/sqla/views.py:157 superset/connectors/sqla/views.py:251 -#: superset/connectors/sqla/views.py:362 superset/connectors/sqla/views.py:491 -#: superset/views/chart/mixin.py:80 superset/views/sql_lab/views.py:84 +#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:398 superset/views/chart/mixin.py:80 +#: superset/views/sql_lab/views.py:84 msgid "Description" msgstr "Descripción" @@ -5865,7 +5980,7 @@ msgstr "Descripción (se puede ver en la lista)" msgid "Description Columns" msgstr "descripción" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:50 msgid "Description text that shows up below your Big Number" msgstr "" @@ -5935,7 +6050,7 @@ msgstr "" msgid "Dimensions" msgstr "Es dimensión" -#: superset/viz.py:2005 +#: superset/viz.py:1928 msgid "Directed Force Layout" msgstr "Disposición Dirigida Forzado" @@ -5946,11 +6061,11 @@ msgstr "Disposición Dirigida Forzado" msgid "Directional" msgstr "descripción" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:202 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 msgid "Disable SQL Lab data preview queries" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:205 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 msgid "" "Disable data preview when fetching table metadata in SQL Lab. Useful to " "avoid browser performance issues when using databases with very wide " @@ -5992,7 +6107,6 @@ msgstr "" msgid "Display configuration" msgstr "Configuración de visualización" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:87 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:252 msgid "" "Display metrics side by side within each column, as opposed to each " @@ -6003,15 +6117,11 @@ msgstr "" msgid "Display row level total" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:39 #, fuzzy msgid "Display settings" msgstr "Configuracion" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:78 -msgid "Display total row/column" -msgstr "" - #: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:35 msgid "" "Displays connections between entities in a graph structure. Useful for " @@ -6033,7 +6143,7 @@ msgstr "Estimar costo" msgid "Distribution" msgstr "Contribución" -#: superset/viz.py:1801 +#: superset/viz.py:1717 msgid "Distribution - Bar Chart" msgstr "Distribución - Gráfico de Barra" @@ -6052,7 +6162,7 @@ msgstr "" msgid "Documentation" msgstr "anotación" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:40 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 msgid "Domain" msgstr "" @@ -6067,19 +6177,19 @@ msgstr "mes" msgid "Dotted" msgstr "Editado" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:480 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:482 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:292 #, fuzzy msgid "Download" msgstr "Descargar como imagen" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:317 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:504 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:512 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:329 msgid "Download as image" msgstr "Descargar como imagen" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:264 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:262 msgid "Download to CSV" msgstr "" @@ -6131,20 +6241,20 @@ msgstr "" msgid "Draw split lines for minor y-axis ticks" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:181 -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:191 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 msgid "Drill by" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:172 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 msgid "Drill by is not available for this data point" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:170 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 msgid "Drill by is not yet supported for this chart type" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:154 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:420 #, fuzzy, python-format msgid "Drill by: %s" msgstr "Ordenar por" @@ -6173,67 +6283,40 @@ msgstr "" msgid "Drill to detail: %s" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:206 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:184 #, fuzzy msgid "Drop a column here or click" msgid_plural "Drop columns here or click" msgstr[0] "" msgstr[1] "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:335 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:330 #, fuzzy msgid "Drop a column/metric here or click" msgid_plural "Drop columns/metrics here or click" msgstr[0] "" msgstr[1] "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:248 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 msgid "Drop a temporal column here or click" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:216 -#, fuzzy -msgid "Drop column here" -msgid_plural "Drop columns here" -msgstr[0] "" -msgstr[1] "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:340 -#, fuzzy -msgid "Drop column or metric here" -msgid_plural "Drop columns or metrics here" -msgstr[0] "" -msgstr[1] "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndSelectLabel.tsx:83 -msgid "Drop columns here" -msgstr "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:402 -#, fuzzy -msgid "Drop columns or metrics here" -msgstr "%s columna(s) y métrca(s)" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:401 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:405 msgid "Drop columns/metrics here or click" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 -msgid "Drop temporal column here" -msgstr "" - #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:32 #, fuzzy msgid "Dual Line Chart" msgstr "Gráfico de Puntos" #: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 -#: superset-frontend/src/pages/DatasetList/index.tsx:472 +#: superset-frontend/src/pages/DatasetList/index.tsx:483 #, fuzzy msgid "Duplicate" msgstr "Duplicar pestaña" -#: superset/views/datasource/views.py:122 +#: superset/views/datasource/views.py:124 #, python-format msgid "Duplicate column name(s): %(columns)s" msgstr "" @@ -6259,7 +6342,7 @@ msgstr "Duplicar pestaña" msgid "Duration" msgstr "Duración" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:239 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:249 msgid "" "Duration (in seconds) of the caching timeout for charts of this database." " A timeout of 0 indicates that the cache never expires, and -1 bypasses " @@ -6286,26 +6369,26 @@ msgid "" "undefined." msgstr "" -#: superset/connectors/sqla/views.py:462 +#: superset/connectors/sqla/views.py:369 msgid "" "Duration (in seconds) of the caching timeout for this table. A timeout of" " 0 indicates that the cache never expires. Note this defaults to the " "database timeout if undefined." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:261 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:271 msgid "" "Duration (in seconds) of the metadata caching timeout for schemas of this" " database. If left unset, the cache never expires." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:282 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:292 msgid "" "Duration (in seconds) of the metadata caching timeout for tables of this " "database. If left unset, the cache never expires. " msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:50 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" msgstr "" @@ -6313,7 +6396,7 @@ msgstr "" msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:49 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 #: superset-frontend/src/explore/controls.jsx:89 msgid "Duration in ms (66000 => 1m 6s)" msgstr "" @@ -6353,7 +6436,7 @@ msgstr "" msgid "ECharts" msgstr "gráfico" -#: superset/reports/notifications/email.py:130 +#: superset/reports/notifications/email.py:133 #, fuzzy msgid "EMAIL_REPORTS_CTA" msgstr "Alertas e informes" @@ -6364,12 +6447,12 @@ msgstr "Alertas e informes" msgid "END (EXCLUSIVE)" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:171 +#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 #, fuzzy msgid "ERROR" msgstr "%s Error" -#: superset-frontend/src/views/CRUD/hooks.ts:700 +#: superset-frontend/src/views/CRUD/hooks.ts:704 #, python-format msgid "ERROR: %s" msgstr "" @@ -6401,8 +6484,9 @@ msgstr "Grosor de línea" #: superset-frontend/src/pages/AlertReportList/index.tsx:385 #: superset-frontend/src/pages/ChartList/index.tsx:553 #: superset-frontend/src/pages/DashboardList/index.tsx:461 -#: superset-frontend/src/pages/DatabaseList/index.tsx:431 -#: superset-frontend/src/pages/DatasetList/index.tsx:452 +#: superset-frontend/src/pages/DatabaseList/index.tsx:442 +#: superset-frontend/src/pages/DatasetList/index.tsx:463 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:200 msgid "Edit" msgstr "Editar" @@ -6432,7 +6516,7 @@ msgstr "Editar Gráfico" msgid "Edit Chart Properties" msgstr "Editar propiedades de gráfico" -#: superset/connectors/sqla/views.py:75 +#: superset/connectors/sqla/views.py:74 msgid "Edit Column" msgstr "Editar Columna" @@ -6444,7 +6528,7 @@ msgstr "Editar Dashboard" msgid "Edit Database" msgstr "Editar Base de Datos" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:199 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:241 msgid "Edit Dataset " msgstr "Editar Base de Datos" @@ -6452,7 +6536,7 @@ msgstr "Editar Base de Datos" msgid "Edit Log" msgstr "Editar Registro" -#: superset/connectors/sqla/views.py:210 +#: superset/connectors/sqla/views.py:209 msgid "Edit Metric" msgstr "Editar Métrica" @@ -6465,15 +6549,16 @@ msgstr "Editar Columna" msgid "Edit Report" msgstr "informe" -#: superset/connectors/sqla/views.py:293 -msgid "Edit Row level security filter" -msgstr "Editar filtro de seguridad de nivel de fila" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +#, fuzzy +msgid "Edit Rule" +msgstr "Nombre de la consulta" #: superset/views/sql_lab/views.py:55 msgid "Edit Saved Query" msgstr "Editar Consulta Guardada" -#: superset/connectors/sqla/views.py:387 +#: superset/connectors/sqla/views.py:294 msgid "Edit Table" msgstr "Esitar Tabla" @@ -6490,9 +6575,9 @@ msgstr "Capas de Anotación" msgid "Edit annotation layer properties" msgstr "Editar propiedades de la capa de anotación" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:74 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:122 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:44 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:212 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:217 #: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:405 #, fuzzy msgid "Edit chart" @@ -6508,7 +6593,7 @@ msgstr "Editar propiedades de gráfico" msgid "Edit dashboard" msgstr "Editar Dashboard" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1700 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 msgid "Edit database" msgstr "Editar Base de Datos" @@ -6518,7 +6603,7 @@ msgstr "Editar Base de Datos" #: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:243 #: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:264 -#: superset-frontend/src/components/ReportModal/index.tsx:212 +#: superset-frontend/src/components/ReportModal/index.tsx:211 msgid "Edit email report" msgstr "" @@ -6544,7 +6629,7 @@ msgstr "Cargar una plantilla" msgid "Edit template parameters" msgstr "Editar parámetros de la plantilla" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:717 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:718 #: superset-frontend/src/dashboard/components/DashboardGrid.jsx:242 #, fuzzy msgid "Edit the dashboard" @@ -6571,8 +6656,9 @@ msgstr "Editando 1 filtro:" msgid "Either the database is spelled incorrectly or does not exist." msgstr "" -#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:654 -#: superset/db_engine_specs/redshift.py:67 +#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:681 +#: superset/db_engine_specs/redshift.py:71 +#: superset/db_engine_specs/starrocks.py:122 #, python-format msgid "Either the username \"%(username)s\" or the password is incorrect." msgstr "" @@ -6644,12 +6730,12 @@ msgstr "Probar Conexión" msgid "Empty column" msgstr "Columna" -#: superset/charts/data/api.py:363 +#: superset/charts/data/api.py:366 #, fuzzy msgid "Empty query result" msgstr "¿Consulta vacía?" -#: superset/connectors/sqla/models.py:1243 superset/models/helpers.py:1433 +#: superset/models/helpers.py:1508 msgid "Empty query?" msgstr "¿Consulta vacía?" @@ -6662,11 +6748,11 @@ msgstr "" msgid "Enable 'Allow file uploads to database' in any database's settings" msgstr "" -#: superset/connectors/sqla/views.py:482 +#: superset/connectors/sqla/views.py:389 msgid "Enable Filter Select" msgstr "Habilitar selección de filtro" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:139 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 msgid "Enable cross-filtering" msgstr "" @@ -6701,7 +6787,7 @@ msgstr "" msgid "Enable node dragging" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:170 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 msgid "Enable query cost estimation" msgstr "" @@ -6710,7 +6796,7 @@ msgstr "" msgid "Enable server side pagination of results (experimental feature)" msgstr "" -#: superset/viz.py:2567 +#: superset/viz.py:2514 msgid "" "Encountered invalid NULL spatial entry," " please consider filtering those " @@ -6764,19 +6850,19 @@ msgstr "La fecha de inicio no puede ser superior a la de fin" msgid "Engine \"%(engine)s\" cannot be configured through parameters." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:476 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:512 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:516 #, fuzzy msgid "Engine Parameters" msgstr "Parametros de plantilla" -#: superset/databases/schemas.py:298 +#: superset/databases/schemas.py:302 msgid "" "Engine spec \"InvalidEngine\" does not support being configured via " "individual parameters." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:366 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:376 msgid "Enter CA_BUNDLE" msgstr "" @@ -6785,7 +6871,7 @@ msgstr "" msgid "Enter Primary Credentials" msgstr "Subir Credenciales" -#: superset/views/database/forms.py:151 +#: superset/views/database/forms.py:161 #, fuzzy msgid "Enter a delimiter for this data" msgstr "Ingresa un nuevo título para la pestaña" @@ -6799,15 +6885,15 @@ msgstr "Ingresa un nuevo título para la pestaña" msgid "Enter a new title for the tab" msgstr "Ingresa un nuevo título para la pestaña" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:234 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:255 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:276 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:244 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:286 #, fuzzy msgid "Enter duration in seconds" msgstr "Tiempo en segundos" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:265 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:367 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:369 #, fuzzy msgid "Enter fullscreen" msgstr "Alternar pantalla completa" @@ -6836,7 +6922,7 @@ msgstr "" msgid "Equal to (=)" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:140 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:182 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:139 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:298 #: superset-frontend/src/explore/components/EmbedCodeContent.jsx:57 @@ -6846,22 +6932,22 @@ msgstr "" msgid "Error" msgstr "%s Error" -#: superset/connectors/sqla/models.py:1650 superset/models/helpers.py:1843 +#: superset/models/helpers.py:1919 #, python-format msgid "Error in jinja expression in HAVING clause: %(msg)s" msgstr "Error en la expresión jinja en la cláusula HAVING: %(msg)s" -#: superset/connectors/sqla/models.py:1145 +#: superset/connectors/sqla/models.py:1105 superset/models/helpers.py:835 #, python-format msgid "Error in jinja expression in RLS filters: %(msg)s" msgstr "Error en la expresión jinja en los filtros RLS: %(msg)s" -#: superset/connectors/sqla/models.py:1633 superset/models/helpers.py:1831 +#: superset/models/helpers.py:1901 #, python-format msgid "Error in jinja expression in WHERE clause: %(msg)s" msgstr "Error en la expresión jinja en la cláusula WHERE: %(msg)s" -#: superset/connectors/sqla/models.py:826 +#: superset/connectors/sqla/models.py:789 #, python-format msgid "Error in jinja expression in fetch values predicate: %(msg)s" msgstr "Error en la expresión jinja en el predicado de obtener valores: %(msg)s" @@ -6886,7 +6972,7 @@ msgstr "Error obteniendo datos" msgid "Error while fetching data: %s" msgstr "Error obteniendo datos" -#: superset/connectors/sqla/models.py:953 superset/models/helpers.py:1029 +#: superset/connectors/sqla/models.py:914 superset/models/helpers.py:1072 #, fuzzy, python-format msgid "Error while rendering virtual dataset query: %(msg)s" msgstr "Error al guardar el conjunto de datos: %s" @@ -6896,12 +6982,12 @@ msgstr "Error al guardar el conjunto de datos: %s" msgid "Error: %(error)s" msgstr "" -#: superset/views/core.py:820 superset/views/core.py:1918 +#: superset/views/core.py:842 superset/views/core.py:1955 #, python-format msgid "Error: %(msg)s" msgstr "" -#: superset/views/core.py:817 +#: superset/views/core.py:839 #, fuzzy msgid "Error: permalink state not found" msgstr "No se encontró el estado del informe programado" @@ -6914,7 +7000,7 @@ msgstr "Estimar costo" msgid "Estimate selected query cost" msgstr "Estimar el costo de la consulta seleccionada" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:621 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:615 msgid "Estimate the cost before running a query" msgstr "Estimar el costo antes de ejecutar una consulta" @@ -6938,7 +7024,7 @@ msgstr "Nombre de Hoja" msgid "Event definition" msgstr "" -#: superset/viz.py:2933 +#: superset/viz.py:2927 msgid "Event flow" msgstr "Flujo de Eventos" @@ -6988,18 +7074,18 @@ msgstr "Ver ejemplos" msgid "Examples" msgstr "Ver ejemplos" -#: superset/views/database/forms.py:278 +#: superset/views/database/forms.py:288 msgid "Excel File" msgstr "Archivo de Excel" -#: superset/views/database/views.py:424 +#: superset/views/database/views.py:427 #, python-format msgid "" "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" " database \"%(db_name)s\"" msgstr "" -#: superset/views/database/views.py:303 +#: superset/views/database/views.py:306 msgid "Excel to Database configuration" msgstr "Configuración de Excel a base de datos" @@ -7008,6 +7094,10 @@ msgstr "Configuración de Excel a base de datos" msgid "Exclude selected values" msgstr "Limitar valores del selector" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:405 +msgid "Excluded roles" +msgstr "" + #: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 #, fuzzy msgid "Executed SQL" @@ -7026,18 +7116,18 @@ msgstr "Registro de ejecución" msgid "Execution log" msgstr "Registro de ejecución" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:411 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:419 #, fuzzy msgid "Existing dataset" msgstr "Cambiar fuente" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:264 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:366 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:368 #, fuzzy msgid "Exit fullscreen" msgstr "Alternar pantalla completa" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 #, fuzzy msgid "Expand" msgstr "y" @@ -7050,12 +7140,12 @@ msgstr "Expandir todo" msgid "Expand data panel" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:209 +#: superset-frontend/src/components/Table/index.tsx:213 #, fuzzy msgid "Expand row" msgstr "Fila de Encabezado" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:197 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 #, fuzzy msgid "Expand table preview" msgstr "Eliminar vista previa de la tabla" @@ -7073,6 +7163,7 @@ msgid "" msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:38 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:37 @@ -7087,11 +7178,11 @@ msgid "Experimental" msgstr "" #: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 -#: superset/views/core.py:987 +#: superset/views/core.py:1009 msgid "Explore" msgstr "Explorar" -#: superset/views/core.py:985 +#: superset/views/core.py:1007 #, python-format msgid "Explore - %(table)s" msgstr "Explorar - %(table)s" @@ -7107,9 +7198,9 @@ msgstr "Explorar el conjunto de resultados en la vista de exploración de datos" #: superset-frontend/src/pages/ChartList/index.tsx:854 #: superset-frontend/src/pages/DashboardList/index.tsx:445 #: superset-frontend/src/pages/DashboardList/index.tsx:720 -#: superset-frontend/src/pages/DatabaseList/index.tsx:415 -#: superset-frontend/src/pages/DatasetList/index.tsx:434 -#: superset-frontend/src/pages/DatasetList/index.tsx:759 +#: superset-frontend/src/pages/DatabaseList/index.tsx:426 +#: superset-frontend/src/pages/DatasetList/index.tsx:445 +#: superset-frontend/src/pages/DatasetList/index.tsx:781 #: superset-frontend/src/pages/SavedQueryList/index.tsx:550 #: superset/views/dashboard/views.py:65 msgid "Export" @@ -7124,7 +7215,7 @@ msgstr "¿Exportar Dashboards?" msgid "Export query" msgstr "Ver consulta" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:485 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:487 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:316 #, fuzzy msgid "Export to .CSV" @@ -7135,20 +7226,21 @@ msgstr "Exportar a YAML" msgid "Export to .JSON" msgstr "Exportar a YAML" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:335 #, fuzzy msgid "Export to Excel" msgstr "Exportar a YAML" -#: superset/views/base.py:606 +#: superset/views/base.py:607 msgid "Export to YAML" msgstr "Exportar a YAML" -#: superset/views/base.py:606 +#: superset/views/base.py:607 msgid "Export to YAML?" msgstr "¿Exportar a YAML?" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:496 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:498 msgid "Export to full .CSV" msgstr "" @@ -7160,12 +7252,12 @@ msgstr "" msgid "Export to pivoted .CSV" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:88 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 msgid "Expose database in SQL Lab" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:354 -#: superset-frontend/src/pages/DatabaseList/index.tsx:460 +#: superset-frontend/src/pages/DatabaseList/index.tsx:365 +#: superset-frontend/src/pages/DatabaseList/index.tsx:471 #: superset/views/database/mixins.py:183 msgid "Expose in SQL Lab" msgstr "Mostrar en el laboratorio SQL" @@ -7174,12 +7266,12 @@ msgstr "Mostrar en el laboratorio SQL" msgid "Expose this DB in SQL Lab" msgstr "Mostrar esta base de datos en el laboratorio SQL" -#: superset/connectors/sqla/views.py:161 +#: superset/connectors/sqla/views.py:160 msgid "Expression" msgstr "Expresión" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:908 -#: superset/connectors/sqla/views.py:257 superset/connectors/sqla/views.py:494 +#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:401 #: superset/views/database/mixins.py:193 msgid "Extra" msgstr "Extra" @@ -7249,8 +7341,8 @@ msgstr "Octubre" msgid "Factor to multiply the metric by" msgstr "" -#: superset/views/database/forms.py:167 superset/views/database/forms.py:324 -#: superset/views/database/forms.py:455 +#: superset/views/database/forms.py:177 superset/views/database/forms.py:334 +#: superset/views/database/forms.py:465 msgid "Fail" msgstr "Falla" @@ -7261,16 +7353,16 @@ msgid "Failed" msgstr "Falló" #: superset-frontend/src/SqlLab/actions/sqlLab.js:210 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:346 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:350 msgid "Failed at retrieving results" msgstr "Falla al recuperar los resultados" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:500 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:496 #, python-format msgid "Failed at stopping query. %s" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:343 +#: superset-frontend/src/components/ReportModal/index.tsx:342 msgid "Failed to create report" msgstr "" @@ -7279,24 +7371,38 @@ msgstr "" msgid "Failed to execute %(query)s" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:97 +msgid "Failed to generate chart edit URL" +msgstr "" + #: superset-frontend/src/pages/Chart/index.tsx:57 msgid "Failed to load chart data" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:402 #: superset-frontend/src/pages/Chart/index.tsx:69 msgid "Failed to load chart data." msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 +msgid "Failed to load dimensions for drill by" +msgstr "" + #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 #, fuzzy msgid "Failed to retrieve advanced type" msgstr "Falla al recuperar los resultados" +#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +#, fuzzy +msgid "Failed to save cross-filter scoping" +msgstr "Filtro de padre" + #: superset/errors.py:143 superset/sqllab/sql_json_executer.py:189 msgid "Failed to start remote query on a worker." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:342 +#: superset-frontend/src/components/ReportModal/index.tsx:341 msgid "Failed to update report" msgstr "" @@ -7320,15 +7426,15 @@ msgstr "Favoritos" msgid "February" msgstr "Febrero" -#: superset/connectors/sqla/views.py:488 +#: superset/connectors/sqla/views.py:395 msgid "Fetch Values Predicate" msgstr "Predicado Obtención de Valores" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:538 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:531 msgid "Fetch data preview" msgstr "Obtener previsualización de datos" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:352 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:354 #, python-format msgid "Fetched %s" msgstr "Obtenido %s" @@ -7399,13 +7505,19 @@ msgid "Filter Settings" msgstr "Configurar ámbito de filtros" #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:825 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:362 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:373 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:134 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:255 #, fuzzy msgid "Filter Type" msgstr "Filtrar por usuario" #: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:28 -msgid "Filter box" -msgstr "Caja de filtro" +#, fuzzy +msgid "Filter box (deprecated)" +msgstr "Ningún filtro seleccionado" #: superset-frontend/src/dashboard/components/SliceAdder.jsx:351 #, fuzzy @@ -7424,7 +7536,7 @@ msgstr "Configuración de filtros en caja de filtros" msgid "Filter has default value" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:197 +#: superset-frontend/src/components/Table/index.tsx:201 #, fuzzy msgid "Filter menu" msgstr "Valor del Filtro" @@ -7441,7 +7553,7 @@ msgstr "Valor del Filtro" msgid "Filter only displays values relevant to selections made in other filters." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:289 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:283 msgid "Filter results" msgstr "ver resultados" @@ -7481,7 +7593,7 @@ msgstr "Valor del filtro (sensible a mayúsculas/minúsculas)" msgid "Filter value is required" msgstr "Fuentes de datos" -#: superset/connectors/sqla/models.py:1549 superset/models/helpers.py:1754 +#: superset/models/helpers.py:1815 msgid "Filter value list cannot be empty" msgstr "" @@ -7489,7 +7601,7 @@ msgstr "" msgid "Filter your charts" msgstr "Filtrar tus Gráficos" -#: superset/connectors/sqla/views.py:159 +#: superset/connectors/sqla/views.py:158 msgid "Filterable" msgstr "Filtrable" @@ -7497,7 +7609,7 @@ msgstr "Filtrable" #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 #: superset-frontend/src/explore/controls.jsx:446 #: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:35 -#: superset/viz.py:2142 +#: superset/viz.py:2071 msgid "Filters" msgstr "Filtros" @@ -7523,7 +7635,7 @@ msgstr "Configuración de filtros" msgid "Filters out of scope (%d)" msgstr "" -#: superset/connectors/sqla/views.py:342 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:435 msgid "" "Filters with the same group key will be ORed together within the group, " "while different filter groups will be ANDed together. Undefined group " @@ -7535,9 +7647,9 @@ msgid "" " 'Europe')." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1077 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1125 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1857 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1132 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1180 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 msgid "Finish" msgstr "" @@ -7597,7 +7709,7 @@ msgstr "" msgid "Font size for the smallest value in the list" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:173 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 #, fuzzy msgid "" "For Bigquery, Presto and Postgres, shows a button to compute cost before " @@ -7614,7 +7726,7 @@ msgid "" "function, refer to the" msgstr "" -#: superset/connectors/sqla/views.py:336 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:408 msgid "" "For regular filters, these are the roles this filter will be applied to. " "For base filters, these are the roles that the filter DOES NOT apply to, " @@ -7626,27 +7738,27 @@ msgstr "" msgid "Force" msgstr "Fuente" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:141 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 msgid "" "Force all tables and views to be created in this schema when clicking " "CTAS or CVAS in SQL Lab." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:84 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 #, fuzzy msgid "Force date format" msgstr "Formato Fecha/Hora" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:381 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 msgid "Force refresh" msgstr "Forzar actualización" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:292 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:291 msgid "Force refresh schema list" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:317 +#: superset-frontend/src/components/TableSelector/index.tsx:307 msgid "Force refresh table list" msgstr "" @@ -7664,11 +7776,11 @@ msgstr "" msgid "Forest Green" msgstr "Frecuencia de actualización" -#: superset/explore/commands/get.py:87 superset/views/core.py:834 +#: superset/explore/commands/get.py:87 superset/views/core.py:856 msgid "Form data not found in cache, reverting to chart metadata." msgstr "" -#: superset/explore/commands/get.py:95 superset/views/core.py:840 +#: superset/explore/commands/get.py:95 superset/views/core.py:862 msgid "Form data not found in cache, reverting to dataset metadata." msgstr "" @@ -7679,7 +7791,7 @@ msgstr "" msgid "Formattable" msgstr "Claves de la tabla" -#: superset-frontend/src/components/ReportModal/index.tsx:255 +#: superset-frontend/src/components/ReportModal/index.tsx:254 msgid "Formatted CSV attached in email" msgstr "" @@ -7737,7 +7849,7 @@ msgstr "" msgid "Friday" msgstr "Viernes" -#: superset/utils/date_parser.py:267 superset/viz.py:392 +#: superset/utils/date_parser.py:267 superset/viz.py:403 msgid "From date cannot be larger than to date" msgstr "La fecha de inicio no puede ser posterior a la fecha final" @@ -7814,7 +7926,7 @@ msgstr "" msgid "Get the specify date for the holiday" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:713 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:714 msgid "Go to the edit mode to configure the dashboard and add charts" msgstr "" @@ -7873,20 +7985,23 @@ msgstr "Agrupar por" msgid "Group By filter plugin" msgstr "" -#: superset/viz.py:927 -msgid "Group By' and 'Columns' can't overlap" -msgstr "'Group By' y 'Columns' no pueden solaparse" - #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:84 msgid "Group By, Metrics or Percentage Metrics must have a value" msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:433 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:139 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:267 +#, fuzzy +msgid "Group Key" +msgstr "Agrupar por" + #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 msgid "Group by" msgstr "Agrupar por" -#: superset/connectors/sqla/views.py:158 +#: superset/connectors/sqla/views.py:157 msgid "Groupable" msgstr "Agrupable" @@ -7915,12 +8030,12 @@ msgstr "fue creada" msgid "Header" msgstr "Encabezado" -#: superset/views/database/forms.py:244 superset/views/database/forms.py:331 +#: superset/views/database/forms.py:254 superset/views/database/forms.py:341 msgid "Header Row" msgstr "Fila de Encabezado" #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 -#: superset/viz.py:2249 +#: superset/viz.py:2183 msgid "Heatmap" msgstr "Mapa de Calor" @@ -7945,7 +8060,7 @@ msgstr "" msgid "Hide Line" msgstr "Ocultar capa" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:394 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:396 #, fuzzy msgid "Hide chart description" msgstr "Alterna la descripción del Dashboard" @@ -7975,12 +8090,12 @@ msgid "Hierarchy" msgstr "Buscar" #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 -#: superset/viz.py:1743 +#: superset/viz.py:1656 msgid "Histogram" msgstr "Histograma" #: superset-frontend/src/pages/Home/index.tsx:333 -#: superset/initialization/__init__.py:233 +#: superset/initialization/__init__.py:235 msgid "Home" msgstr "Inicio" @@ -7989,7 +8104,7 @@ msgstr "Inicio" msgid "Horizon Chart" msgstr "Gráficos de Horizonte" -#: superset/viz.py:2310 +#: superset/viz.py:2246 msgid "Horizon Charts" msgstr "Gráficos de Horizonte" @@ -7998,7 +8113,7 @@ msgstr "Gráficos de Horizonte" msgid "Horizontal" msgstr "Gráficos de Horizonte" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:166 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 msgid "Horizontal (Top)" msgstr "" @@ -8010,12 +8125,12 @@ msgstr "" msgid "Host" msgstr "" -#: superset/db_engine_specs/base.py:1839 -#: superset/db_engine_specs/clickhouse.py:203 +#: superset/db_engine_specs/base.py:1872 +#: superset/db_engine_specs/clickhouse.py:204 msgid "Hostname or IP address" msgstr "" -#: superset/db_engine_specs/base.py:104 +#: superset/db_engine_specs/base.py:105 #, fuzzy msgid "Hour" msgstr "hora" @@ -8079,7 +8194,7 @@ msgstr "id:" msgid "Id of root node of the tree." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:391 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:401 #, fuzzy msgid "" "If Presto or Trino, all the queries in SQL Lab are going to be executed " @@ -8103,7 +8218,7 @@ msgid "" "hive.server2.proxy.user property." msgstr "" -#: superset/views/database/forms.py:164 +#: superset/views/database/forms.py:174 #, fuzzy msgid "If Table Already Exists" msgstr "La fuente de datos %(name)s ya existe" @@ -8112,7 +8227,7 @@ msgstr "La fuente de datos %(name)s ya existe" msgid "If a metric is specified, sorting will be done based on the metric value" msgstr "" -#: superset/views/database/forms.py:238 +#: superset/views/database/forms.py:248 msgid "" "If duplicate columns are not overridden, they will be presented as \"X.1," " X.2 ...X.x\"" @@ -8124,7 +8239,7 @@ msgstr "" "Si se selecciona, por favor, establezca los esquemas permitidos en " "Adicional" -#: superset/views/database/forms.py:318 superset/views/database/forms.py:449 +#: superset/views/database/forms.py:328 superset/views/database/forms.py:459 msgid "" "If table exists do one of the following: Fail (do nothing), Replace (drop" " and recreate table) or Append (insert data)." @@ -8145,7 +8260,7 @@ msgstr "" msgid "Ignore time" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:252 +#: superset-frontend/src/components/ReportModal/index.tsx:251 msgid "Image (PNG) embedded in email" msgstr "" @@ -8153,7 +8268,7 @@ msgstr "" msgid "Image download failed, please refresh and try again." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:386 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:396 #, fuzzy msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" msgstr "Suplantar Usuario Conectado (Presto, Trino, Drill & Hive)" @@ -8175,11 +8290,11 @@ msgstr "Importar %s" msgid "Import Dashboard(s)" msgstr "Importar Dashboard(s)" -#: superset/initialization/__init__.py:337 +#: superset/initialization/__init__.py:331 msgid "Import Dashboards" msgstr "Importar Dashboards" -#: superset/connectors/sqla/views.py:386 +#: superset/connectors/sqla/views.py:293 msgid "Import a table definition" msgstr "Importar definición de tabla" @@ -8205,16 +8320,16 @@ msgstr "Importar dashboards" msgid "Import database failed for an unknown reason" msgstr "Importar la base de datos falló por una razón desconocida" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1912 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1969 #, fuzzy msgid "Import database from file" msgstr "Editar Base de Datos" -#: superset/datasets/commands/exceptions.py:185 +#: superset/datasets/commands/exceptions.py:202 msgid "Import dataset failed for an unknown reason" msgstr "Importar el conjunto de datos falló por una razón desconocida" -#: superset-frontend/src/pages/DatasetList/index.tsx:620 +#: superset-frontend/src/pages/DatasetList/index.tsx:631 #, fuzzy msgid "Import datasets" msgstr "Editar Base de Datos" @@ -8244,7 +8359,7 @@ msgstr "en" msgid "Include Series" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:295 +#: superset-frontend/src/components/ReportModal/index.tsx:294 msgid "Include a description that will be sent with your report" msgstr "" @@ -8263,7 +8378,7 @@ msgstr "Hora Final" msgid "Index" msgstr "Desconectado" -#: superset/views/database/forms.py:210 superset/views/database/forms.py:341 +#: superset/views/database/forms.py:220 superset/views/database/forms.py:351 msgid "Index Column" msgstr "Columna de Índice" @@ -8303,12 +8418,25 @@ msgstr "Filtrado Instantáneo" msgid "Intensity" msgstr "Entidad" -#: superset/views/database/forms.py:190 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:85 +#, fuzzy +msgid "Intensity Radius" +msgstr "Entidad" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:86 +msgid "Intensity Radius is the radius at which the weight is distributed" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:69 +msgid "Intensity is the value multiplied by the weight to obtain the final weight" +msgstr "" + +#: superset/views/database/forms.py:200 #, fuzzy msgid "Interpret Datetime Format Automatically" msgstr "Usar Pandas para interpretar el formato de fecha y hora automáticamente." -#: superset/views/database/forms.py:191 +#: superset/views/database/forms.py:201 #, fuzzy msgid "Interpret the datetime format automatically" msgstr "Usar Pandas para interpretar el formato de fecha y hora automáticamente." @@ -8344,6 +8472,17 @@ msgstr "Filtrar por estado" msgid "Intervals" msgstr "Intérvalo de actualización" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:68 +#, fuzzy +msgid "Intesity" +msgstr "Entidad" + +#: superset/db_engine_specs/ocient.py:274 +msgid "" +"Invalid Connection String: Expecting String of the form " +"'ocient://user:pass@host:port/database'." +msgstr "" + #: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 msgid "Invalid JSON" msgstr "JSON inválido" @@ -8357,7 +8496,7 @@ msgstr "rolling_type inválido: %(type)s" msgid "Invalid certificate" msgstr "Certificado Inválido" -#: superset/views/core.py:1422 +#: superset/views/core.py:1463 msgid "" "Invalid connection string, a valid string usually follows:\n" "'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" @@ -8386,15 +8525,15 @@ msgstr "Expresión cron inválida" msgid "Invalid cumulative operator: %(operator)s" msgstr "Operador acumulativo inválido: %(operator)s" -#: superset/connectors/sqla/views.py:181 superset/datasets/schemas.py:44 +#: superset/connectors/sqla/views.py:180 superset/datasets/schemas.py:44 msgid "Invalid date/timestamp format" msgstr "Formato de fecha/hora inválido" -#: superset/viz.py:2160 +#: superset/viz.py:2091 msgid "Invalid filter configuration, please select a column" msgstr "Configuración de filtro invalido, por favor selecciona una columna" -#: superset/connectors/sqla/models.py:1623 superset/models/helpers.py:1820 +#: superset/models/helpers.py:1891 #, python-format msgid "Invalid filter operation type: %(op)s" msgstr "Tipo de operación de filtrado inválida: %(op)s" @@ -8419,7 +8558,7 @@ msgstr "Configuración de latitud/longitud inválida." msgid "Invalid longitude/latitude" msgstr "Longitud/latitud inválidas" -#: superset/utils/core.py:1364 +#: superset/utils/core.py:1373 #, fuzzy, python-format msgid "Invalid metric object: %(metric)s" msgstr "Certificado Inválido" @@ -8438,7 +8577,12 @@ msgstr "Opciones inválidas para %(rolling_type)s: %(options)s" msgid "Invalid permalink key" msgstr "" -#: superset/common/query_actions.py:228 +#: superset/db_engine_specs/ocient.py:292 +#, python-format +msgid "Invalid reference to column: \"%(column)s\"" +msgstr "" + +#: superset/common/query_actions.py:227 #, fuzzy, python-format msgid "Invalid result type: %(result_type)s" msgstr "rolling_type inválido: %(type)s" @@ -8448,7 +8592,7 @@ msgstr "rolling_type inválido: %(type)s" msgid "Invalid rolling_type: %(type)s" msgstr "rolling_type inválido: %(type)s" -#: superset/viz.py:2530 +#: superset/viz.py:2474 #, python-format msgid "Invalid spatial point encountered: %s" msgstr "Punto espacial inválido encontrado: %s" @@ -8459,7 +8603,7 @@ msgstr "Punto espacial inválido encontrado: %s" msgid "Invalid state." msgstr "Certificado Inválido" -#: superset/reports/commands/create.py:144 +#: superset/reports/commands/create.py:142 #, python-format msgid "Invalid tab ids: %s(tab_ids)" msgstr "" @@ -8468,7 +8612,7 @@ msgstr "" msgid "Inverse selection" msgstr "Selección inversa" -#: superset-frontend/src/components/Table/index.tsx:205 +#: superset-frontend/src/components/Table/index.tsx:209 #, fuzzy msgid "Invert current page" msgstr "El Gráfico ha cambiado" @@ -8489,7 +8633,7 @@ msgstr "Es dimensión" msgid "Is false" msgstr "Esitar Tabla" -#: superset/views/base_api.py:143 +#: superset/views/base_api.py:149 msgid "Is favorite" msgstr "Favoritos" @@ -8508,13 +8652,13 @@ msgstr "No nulo" msgid "Is null" msgstr "No nulo" -#: superset/views/base_api.py:171 +#: superset/views/base_api.py:177 msgid "Is tagged" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:362 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 -#: superset/connectors/sqla/views.py:162 +#: superset/connectors/sqla/views.py:161 msgid "Is temporal" msgstr "Es temporal" @@ -8559,7 +8703,7 @@ msgstr "Metadatos JSON" msgid "JSON metadata is invalid!" msgstr "no es json válido" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 #, fuzzy msgid "" "JSON string containing additional connection configuration. This is used " @@ -8600,27 +8744,27 @@ msgstr "" msgid "Jinja templating" msgstr "Cargar una plantilla" -#: superset/views/database/forms.py:233 +#: superset/views/database/forms.py:243 #, fuzzy msgid "Json list of the column names that should be read" msgstr "" "Una lista separada por comas de columnas que deben ser parseadas como " "fechas." -#: superset/views/database/forms.py:464 +#: superset/views/database/forms.py:474 msgid "" "Json list of the column names that should be read. If not None, only " "these columns will be read from the file." msgstr "" -#: superset/views/database/forms.py:203 +#: superset/views/database/forms.py:213 msgid "" "Json list of the values that should be treated as null. Examples: [\"\"] " "for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " "Hive database supports only a single value" msgstr "" -#: superset/views/database/forms.py:394 +#: superset/views/database/forms.py:404 msgid "" "Json list of the values that should be treated as null. Examples: [\"\"]," " [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " @@ -8669,8 +8813,8 @@ msgstr "Filtros" msgid "LIMIT" msgstr "Límite filas" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:80 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:109 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:93 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:122 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:251 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:255 @@ -8753,7 +8897,7 @@ msgstr "Compartir" msgid "Last" msgstr "en" -#: superset/connectors/sqla/views.py:481 superset/views/database/mixins.py:190 +#: superset/connectors/sqla/views.py:388 superset/views/database/mixins.py:190 msgid "Last Changed" msgstr "Último cambio" @@ -8780,7 +8924,7 @@ msgstr "" #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:177 #: superset-frontend/src/pages/ChartList/index.tsx:445 #: superset-frontend/src/pages/CssTemplateList/index.tsx:158 -#: superset-frontend/src/pages/DatabaseList/index.tsx:380 +#: superset-frontend/src/pages/DatabaseList/index.tsx:391 msgid "Last modified" msgstr "Última modificación" @@ -8839,7 +8983,7 @@ msgstr "Última modificación" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:28 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:90 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:371 #, fuzzy msgid "Left" @@ -8875,7 +9019,7 @@ msgstr "" msgid "Left to Right" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:144 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 #, fuzzy msgid "Left value" msgstr "Valores Nulos" @@ -8889,7 +9033,6 @@ msgstr "Valores Nulos" #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:33 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 #: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 #: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 @@ -8905,15 +9048,16 @@ msgstr "Valores Nulos" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:35 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 #: superset-frontend/src/visualizations/TimeTable/index.ts:35 msgid "Legacy" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:154 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:289 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:115 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:99 #, fuzzy msgid "Legend" msgstr "Modificado" @@ -8923,7 +9067,7 @@ msgstr "Modificado" msgid "Legend Format" msgstr "Formato de correo electrónico" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:95 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:92 #, fuzzy msgid "Legend Orientation" msgstr "Eliminar anotación" @@ -8933,7 +9077,7 @@ msgstr "Eliminar anotación" msgid "Legend Position" msgstr "última partición:" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:72 msgid "Legend type" msgstr "" @@ -9086,7 +9230,7 @@ msgid "Lines encoding" msgstr "Orden Descendente" #: superset-frontend/src/pages/SavedQueryList/index.tsx:226 -#: superset-frontend/src/views/CRUD/hooks.ts:673 +#: superset-frontend/src/views/CRUD/hooks.ts:677 msgid "Link Copied!" msgstr "Enlace Copiado!" @@ -9115,7 +9259,7 @@ msgstr "" msgid "List of values to mark with triangles" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:187 +#: superset-frontend/src/components/TableSelector/index.tsx:184 #, fuzzy msgid "List updated" msgstr "Última actualización %s" @@ -9146,8 +9290,8 @@ msgid "Loading" msgstr "Subir" #: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:495 -#: superset-frontend/src/components/Select/Select.tsx:470 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:496 +#: superset-frontend/src/components/Select/Select.tsx:477 #: superset-frontend/src/components/Select/utils.tsx:152 #: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 #: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 @@ -9176,13 +9320,13 @@ msgstr "" msgid "Logarithmic scale on primary y-axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:432 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:449 msgid "Logarithmic scale on secondary y-axis" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:396 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:420 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:429 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:437 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:446 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:222 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:225 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:210 @@ -9254,17 +9398,17 @@ msgstr "MAY" msgid "MON" msgstr "LUN" -#: superset/connectors/sqla/views.py:490 +#: superset/connectors/sqla/views.py:397 msgid "Main Datetime Column" msgstr "Columna principal de fecha y hora" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:283 +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:292 msgid "" "Make sure that the controls are configured properly and the datasource " "contains data for the selected time range" msgstr "" -#: superset/views/core.py:1717 +#: superset/views/core.py:1752 msgid "" "Malformed request. slice_id or table_name and db_name arguments are " "expected" @@ -9272,11 +9416,11 @@ msgstr "" "Solicitud mal formada. Se esperan argumentos de slice_id o table_name y " "db_name" -#: superset/initialization/__init__.py:277 -#: superset/initialization/__init__.py:289 -#: superset/initialization/__init__.py:341 -#: superset/initialization/__init__.py:412 -#: superset/initialization/__init__.py:425 +#: superset/initialization/__init__.py:279 +#: superset/initialization/__init__.py:291 +#: superset/initialization/__init__.py:335 +#: superset/initialization/__init__.py:406 +#: superset/initialization/__init__.py:419 msgid "Manage" msgstr "Administrar" @@ -9296,7 +9440,7 @@ msgstr "Nombre de tu fuente de datos" msgid "Mandatory" msgstr "Oblugatorio" -#: superset/views/database/forms.py:350 +#: superset/views/database/forms.py:360 msgid "Mangle Duplicate Columns" msgstr "Manglar Columnas Duplicadas" @@ -9316,6 +9460,8 @@ msgstr "Usar escala logarítimica para el Eje Y" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:67 @@ -9340,7 +9486,7 @@ msgstr "Tipo de Markup" msgid "MapBox" msgstr "" -#: superset/viz.py:2322 +#: superset/viz.py:2258 msgid "Mapbox" msgstr "" @@ -9348,12 +9494,12 @@ msgstr "" msgid "March" msgstr "Marzo" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:50 #, fuzzy msgid "Margin" msgstr "Origen" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:348 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:354 msgid "Mark a column as temporal in \"Edit datasource\" modal" msgstr "" @@ -9434,7 +9580,7 @@ msgid "" "this insures that the circle respects this maximum radius." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:232 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 #, fuzzy msgid "Maximum value" msgstr "Valores Nulos" @@ -9487,7 +9633,7 @@ msgstr "" msgid "Menu actions trigger" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:237 +#: superset-frontend/src/components/ReportModal/index.tsx:236 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 msgid "Message content" msgstr "Contenido del mensaje" @@ -9497,8 +9643,8 @@ msgstr "Contenido del mensaje" msgid "Metadata" msgstr "Metadatos JSON" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:450 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:454 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:486 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:490 #, fuzzy msgid "Metadata Parameters" msgstr "Parametros de plantilla" @@ -9524,13 +9670,12 @@ msgstr "Método" #: superset-frontend/src/explore/controls.jsx:167 #: superset-frontend/src/explore/controls.jsx:168 #: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 -#: superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:249 msgid "Metric" msgstr "Métrica" -#: superset/connectors/sqla/models.py:1264 -#: superset/connectors/sqla/models.py:1847 superset/models/helpers.py:1192 -#: superset/models/helpers.py:1448 +#: superset/connectors/sqla/models.py:1133 superset/models/helpers.py:1236 +#: superset/models/helpers.py:1529 #, python-format msgid "Metric '%(metric)s' does not exist" msgstr "La métrica '%(metric)s' no existe" @@ -9567,7 +9712,7 @@ msgstr "" msgid "Metric for node values" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:106 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:119 #, fuzzy msgid "Metric name" msgstr "Nombre de la consulta" @@ -9594,6 +9739,7 @@ msgstr "Elige qué métrica mostrar" msgid "Metric to sort the results by" msgstr "Métrica con la cual ordenar los resultados." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:139 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:78 msgid "Metric used as a weight for the grid's coloring" msgstr "" @@ -9632,7 +9778,7 @@ msgstr "" #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 #: superset-frontend/src/explore/controls.jsx:152 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 -#: superset/connectors/sqla/views.py:207 +#: superset/connectors/sqla/views.py:206 msgid "Metrics" msgstr "Métricas" @@ -9717,11 +9863,11 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:85 #: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:152 msgid "Minimum threshold in percentage points for showing labels." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:231 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:69 #, fuzzy msgid "Minimum value" msgstr "Valores Nulos" @@ -9744,7 +9890,7 @@ msgstr "" msgid "Minor Split Line" msgstr "" -#: superset/db_engine_specs/base.py:99 +#: superset/db_engine_specs/base.py:100 #, fuzzy msgid "Minute" msgstr "minuto" @@ -9778,12 +9924,13 @@ msgstr "" #: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:278 #: superset-frontend/src/pages/AlertReportList/index.tsx:335 #: superset-frontend/src/pages/DashboardList/index.tsx:347 -#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:375 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:152 #: superset-frontend/src/pages/SavedQueryList/index.tsx:369 #: superset-frontend/src/pages/Tags/index.tsx:118 -#: superset/connectors/sqla/views.py:367 superset/connectors/sqla/views.py:495 -#: superset/views/dashboard/mixin.py:85 superset/views/dashboard/views.py:186 -#: superset/views/database/mixins.py:199 superset/views/sql_lab/views.py:85 +#: superset/connectors/sqla/views.py:402 superset/views/dashboard/mixin.py:85 +#: superset/views/dashboard/views.py:186 superset/views/database/mixins.py:199 +#: superset/views/sql_lab/views.py:85 msgid "Modified" msgstr "Modificado" @@ -9798,7 +9945,7 @@ msgstr "Última modificación en %s" #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 #: superset-frontend/src/pages/ChartList/index.tsx:431 #: superset-frontend/src/pages/DashboardList/index.tsx:326 -#: superset-frontend/src/pages/DatasetList/index.tsx:374 +#: superset-frontend/src/pages/DatasetList/index.tsx:385 msgid "Modified by" msgstr "Modificado por" @@ -9811,7 +9958,7 @@ msgstr "Columnas modificadas: %s" msgid "Monday" msgstr "Lunes" -#: superset/db_engine_specs/base.py:108 +#: superset/db_engine_specs/base.py:109 #, fuzzy msgid "Month" msgstr "mes" @@ -9880,7 +10027,7 @@ msgstr "" msgid "Multiple Line Charts" msgstr "Serie temportal - Gráfico de múltiples líneas" -#: superset/views/database/views.py:465 +#: superset/views/database/views.py:468 msgid "" "Multiple file extensions are not allowed for columnar uploads. Please " "make sure all files are of the same extension." @@ -9915,11 +10062,11 @@ msgstr "Debe ser único" msgid "Must choose either a chart or a dashboard" msgstr "Elija un gráfico o un dashboard, no ambos" -#: superset/viz.py:2346 +#: superset/viz.py:2283 msgid "Must have a [Group By] column to have 'count' as the [Label]" msgstr "Debe tener una columna [Group By] para tener 'count' como [Etiqueta]" -#: superset/viz.py:1752 +#: superset/viz.py:1666 msgid "Must have at least one numeric column specified" msgstr "Debe especificarse al menos una columna numérica" @@ -9927,7 +10074,7 @@ msgstr "Debe especificarse al menos una columna numérica" msgid "Must provide credentials for the SSH Tunnel" msgstr "" -#: superset/connectors/sqla/models.py:1582 superset/models/helpers.py:1780 +#: superset/models/helpers.py:1848 msgid "Must specify a value for filters with comparison operators" msgstr "" @@ -9969,19 +10116,21 @@ msgid "NUMERIC" msgstr "Métrica" #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:149 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:782 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:212 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:148 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:789 #: superset-frontend/src/pages/AlertReportList/index.tsx:272 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 #: superset-frontend/src/pages/CssTemplateList/index.tsx:131 -#: superset-frontend/src/pages/DatasetList/index.tsx:334 +#: superset-frontend/src/pages/DatasetList/index.tsx:345 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:130 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:248 #: superset-frontend/src/pages/SavedQueryList/index.tsx:283 #: superset-frontend/src/pages/Tags/index.tsx:109 -#: superset/connectors/sqla/views.py:361 superset/views/chart/mixin.py:85 +#: superset/views/chart/mixin.py:85 msgid "Name" msgstr "Nombre" @@ -9994,12 +10143,12 @@ msgstr "Nombre es requerido" msgid "Name must be unique" msgstr "El nombre debe ser único" -#: superset/views/database/forms.py:406 +#: superset/views/database/forms.py:416 #, fuzzy msgid "Name of table to be created from columnar data." msgstr "Nombre de la tabla que se creará a partir de datos de excel." -#: superset/views/database/forms.py:270 +#: superset/views/database/forms.py:280 msgid "Name of table to be created from excel data." msgstr "Nombre de la tabla que se creará a partir de datos de excel." @@ -10021,7 +10170,7 @@ msgstr "Columna de Tiempo" msgid "Name of the source nodes" msgstr "" -#: superset/connectors/sqla/views.py:428 +#: superset/connectors/sqla/views.py:335 msgid "Name of the table that exists in the source database" msgstr "Nombre de la tabla que existe en la fuente de datos." @@ -10082,17 +10231,17 @@ msgstr "Configurar ámbito de filtros" msgid "New header" msgstr "Encabezado" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:329 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:331 msgid "New tab" msgstr "Nueva pestaña" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:268 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:310 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:278 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:320 msgid "New tab (Ctrl + q)" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:269 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:311 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:279 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:321 msgid "New tab (Ctrl + t)" msgstr "" @@ -10115,9 +10264,9 @@ msgstr "Serie Temporal - Gráfico de Nightingale Rose" #: superset-frontend/src/pages/ChartList/index.tsx:708 #: superset-frontend/src/pages/DashboardList/index.tsx:507 #: superset-frontend/src/pages/DashboardList/index.tsx:589 -#: superset-frontend/src/pages/DatabaseList/index.tsx:468 -#: superset-frontend/src/pages/DatabaseList/index.tsx:488 -#: superset-frontend/src/pages/DatasetList/index.tsx:573 +#: superset-frontend/src/pages/DatabaseList/index.tsx:479 +#: superset-frontend/src/pages/DatabaseList/index.tsx:499 +#: superset-frontend/src/pages/DatasetList/index.tsx:584 msgid "No" msgstr "No" @@ -10141,6 +10290,11 @@ msgstr "No hay datos" msgid "No Results" msgstr "Ver resultados" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:235 +#, fuzzy +msgid "No Rules yet" +msgstr "Recientes" + #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:116 #, fuzzy msgid "No annotation layers" @@ -10179,7 +10333,7 @@ msgstr "No hay gráficos" msgid "No columns" msgstr "Columna" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:242 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 #, fuzzy msgid "No columns found" msgstr "Filtros Incompatibles (%d)" @@ -10194,7 +10348,7 @@ msgstr "Filtros Incompatibles (%d)" msgid "No compatible datasets found" msgstr "Filtros Incompatibles (%d)" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 #, fuzzy msgid "No compatible schema found" msgstr "Filtros Incompatibles (%d)" @@ -10208,14 +10362,14 @@ msgstr "No hay dashboards" msgid "No dashboards yet" msgstr "No hay dashboards" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:133 -#: superset-frontend/src/components/Table/index.tsx:203 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 +#: superset-frontend/src/components/Table/index.tsx:207 #: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:225 #: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 msgid "No data" msgstr "No hay datos" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 msgid "No data after filtering or data is NULL for the latest time record" msgstr "" @@ -10237,10 +10391,6 @@ msgstr "" msgid "No description available." msgstr "descripción" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:174 -msgid "No dimensions available for drill by" -msgstr "" - #: superset-frontend/src/profile/components/Favorites.tsx:61 msgid "No favorite charts yet, go click on stars!" msgstr "No hay gráficos favoritos aun, clica en la estrella!" @@ -10260,7 +10410,7 @@ msgstr "Añadir filtro" msgid "No filter is selected." msgstr "Ningún filtro seleccionado" -#: superset-frontend/src/components/Table/index.tsx:200 +#: superset-frontend/src/components/Table/index.tsx:204 #, fuzzy msgid "No filters" msgstr "Añadir filtro" @@ -10305,7 +10455,7 @@ msgid "No results" msgstr "Ver resultados" #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:425 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:428 msgid "No results found" msgstr "No se han encontrado resultados" @@ -10313,7 +10463,7 @@ msgstr "No se han encontrado resultados" msgid "No results match your filter criteria" msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:280 +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:289 #: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 msgid "No results were returned for this query" msgstr "" @@ -10333,8 +10483,8 @@ msgstr "" msgid "No samples were returned for this dataset" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:293 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:311 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:299 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:317 #, fuzzy msgid "No saved expressions found" msgstr "Expresión SQL" @@ -10367,9 +10517,9 @@ msgstr "" msgid "No table columns" msgstr "Columna de Tiempo" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:292 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:310 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:345 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:298 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:316 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:351 #, fuzzy msgid "No temporal columns found" msgstr "Filtros Incompatibles (%d)" @@ -10402,7 +10552,7 @@ msgid "Node size" msgstr "Tamaño burbuja" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:45 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:187 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:270 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:286 @@ -10412,12 +10562,12 @@ msgstr "Tamaño burbuja" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:402 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:182 #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:124 #: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 #: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:196 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:576 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:48 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:51 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:138 #: superset-frontend/src/explore/controlPanels/sections.tsx:134 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:127 @@ -10505,7 +10655,7 @@ msgstr "Noviembre" msgid "Now" msgstr "Hilera" -#: superset/views/database/forms.py:201 +#: superset/views/database/forms.py:211 #, fuzzy msgid "Null Values" msgstr "Valores Nulos" @@ -10520,11 +10670,11 @@ msgstr "anotación" msgid "Null or Empty" msgstr "Nulo o Vacío" -#: superset/views/database/forms.py:392 +#: superset/views/database/forms.py:402 msgid "Null values" msgstr "Valores Nulos" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:191 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 #, fuzzy msgid "Number Format" msgstr "Formato D3" @@ -10540,11 +10690,10 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:60 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:65 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:144 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:117 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:67 #: superset-frontend/plugins/legacy-plugin-chart-treemap/src/controlPanel.ts:67 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:97 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:137 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:276 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:137 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:113 @@ -10587,21 +10736,21 @@ msgstr "" msgid "Number of periods to ratio against" msgstr "" -#: superset/views/database/forms.py:255 +#: superset/views/database/forms.py:265 #, fuzzy msgid "Number of rows of file to read" msgstr "Número de filas del archivo a leer." -#: superset/views/database/forms.py:361 +#: superset/views/database/forms.py:371 msgid "Number of rows of file to read." msgstr "Número de filas del archivo a leer." -#: superset/views/database/forms.py:261 +#: superset/views/database/forms.py:271 #, fuzzy msgid "Number of rows to skip at start of file" msgstr "Número de filas a omitir al inicio del archivo." -#: superset/views/database/forms.py:355 +#: superset/views/database/forms.py:365 msgid "Number of rows to skip at start of file." msgstr "Número de filas a omitir al inicio del archivo." @@ -10626,15 +10775,15 @@ msgstr "Periodo de tiempo" msgid "OCT" msgstr "OCT" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:184 -#: superset-frontend/src/components/Modal/Modal.tsx:231 -#: superset-frontend/src/components/Table/index.tsx:198 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 +#: superset-frontend/src/components/Modal/Modal.tsx:238 +#: superset-frontend/src/components/Table/index.tsx:202 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:865 msgid "OK" msgstr "OK" #: superset-frontend/src/components/ImportModal/index.tsx:267 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1379 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1434 msgid "OVERWRITE" msgstr "SOBRESCRIBIR" @@ -10647,7 +10796,7 @@ msgstr "Octubre" msgid "Offline" msgstr "Desconectado" -#: superset/connectors/sqla/views.py:485 +#: superset/connectors/sqla/views.py:392 msgid "Offset" msgstr "Desplazamiento" @@ -10689,27 +10838,27 @@ msgstr "Uno o varios controles para pivotar como columnas" msgid "One or many metrics to display" msgstr "Una o varias métricas para mostrar" -#: superset/datasets/commands/exceptions.py:90 +#: superset/datasets/commands/exceptions.py:107 msgid "One or more columns already exist" msgstr "Una o más columnas ya existen" -#: superset/datasets/commands/exceptions.py:80 +#: superset/datasets/commands/exceptions.py:97 msgid "One or more columns are duplicated" msgstr "Una o más columnas están duplicadas" -#: superset/datasets/commands/exceptions.py:70 +#: superset/datasets/commands/exceptions.py:87 msgid "One or more columns do not exist" msgstr "Una o más columnas no existen" -#: superset/datasets/commands/exceptions.py:119 +#: superset/datasets/commands/exceptions.py:136 msgid "One or more metrics already exist" msgstr "Una o más métricas ya existen" -#: superset/datasets/commands/exceptions.py:109 +#: superset/datasets/commands/exceptions.py:126 msgid "One or more metrics are duplicated" msgstr "Una o más métricas están duplicadas" -#: superset/datasets/commands/exceptions.py:99 +#: superset/datasets/commands/exceptions.py:116 msgid "One or more metrics do not exist" msgstr "Una o más métricas no existen" @@ -10728,7 +10877,7 @@ msgstr "Issue 1006 - Faltan uno o más parámetros especificados en la consulta. msgid "One or more parameters specified in the query are missing." msgstr "Issue 1006 - Faltan uno o más parámetros especificados en la consulta." -#: superset/views/core.py:1992 +#: superset/views/core.py:2029 msgid "" "One or more required fields are missing in the request. Please try again," " and if the problem persists contact your administrator." @@ -10738,24 +10887,24 @@ msgstr "" msgid "One ore more annotation layers failed loading." msgstr "Una o más capas de anotación fallaron al cargar." -#: superset/sql_lab.py:230 +#: superset/sql_lab.py:228 #, fuzzy msgid "Only SELECT statements are allowed against this database." msgstr "Solo las consultas `SELECT` están permitidas en esta base de datos" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:133 msgid "Only Total" msgstr "" -#: superset/connectors/sqla/utils.py:123 +#: superset/connectors/sqla/utils.py:122 msgid "Only `SELECT` statements are allowed" msgstr "Solo las consultas `SELECT` estan permitidas en esta base de datos" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:29 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 msgid "Only applies when \"Label Type\" is not set to a percentage." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:26 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 msgid "Only applies when \"Label Type\" is set to show values." msgstr "" @@ -10763,18 +10912,18 @@ msgstr "" msgid "Only selected panels will be affected by this filter" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:139 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 msgid "" "Only show the total value on the stacked chart, and not show on the " "selected category" msgstr "" -#: superset/connectors/sqla/utils.py:132 +#: superset/connectors/sqla/utils.py:131 msgid "Only single queries supported" msgstr "Solo consultas sencillas están soportadas" -#: superset/views/database/forms.py:119 superset/views/database/forms.py:288 -#: superset/views/database/forms.py:426 +#: superset/views/database/forms.py:119 superset/views/database/forms.py:298 +#: superset/views/database/forms.py:436 #, python-format msgid "Only the following file extensions are allowed: %(allowed_extensions)s" msgstr "" @@ -10825,7 +10974,7 @@ msgstr "Ejecutar en Laboratiorio SQL" msgid "Open query in SQL Lab" msgstr "Ejecutar en Laboratiorio SQL" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:298 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 #: superset/views/database/mixins.py:104 msgid "" "Operate the database in asynchronous mode, meaning that the queries are " @@ -10834,8 +10983,8 @@ msgid "" " Refer to the installation docs for more information." msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:126 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:130 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 #, fuzzy msgid "Operator" msgstr "%s operador(es)" @@ -10845,7 +10994,7 @@ msgstr "%s operador(es)" msgid "Operator undefined for aggregator: %(name)s" msgstr "Operador no definido para el agregado: %(name)s" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:381 msgid "" "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" " certain database engines." @@ -10871,13 +11020,8 @@ msgstr "" msgid "Optional warning about use of this metric" msgstr "" -#: superset/connectors/sqla/views.py:328 -msgid "Optionally add a detailed description" -msgstr "" - #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:39 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:68 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:108 #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:74 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:45 #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:70 @@ -10891,7 +11035,7 @@ msgstr "" msgid "Options" msgstr "%s opción(es)" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:918 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:973 msgid "Or choose from a list of other databases we support:" msgstr "" @@ -10910,7 +11054,7 @@ msgstr "" msgid "Ordering" msgstr "Orden descendente" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:83 #, fuzzy msgid "Orientation" msgstr "Eliminar anotación" @@ -10920,7 +11064,7 @@ msgstr "Eliminar anotación" msgid "Orientation of bar chart" msgstr "Distribución - Gráfico de Barra" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:158 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 msgid "Orientation of filter bar" msgstr "" @@ -10937,7 +11081,7 @@ msgstr "Origen" msgid "Original table column order" msgstr "Orden original de columna de tabla" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 #: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 #: superset-frontend/src/explore/controls.jsx:79 @@ -10949,10 +11093,10 @@ msgid "Orthogonal" msgstr "" #: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:126 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:938 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:479 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:993 #: superset-frontend/src/features/home/EmptyState.tsx:112 -#: superset/views/database/forms.py:155 superset/views/database/forms.py:161 +#: superset/views/database/forms.py:165 superset/views/database/forms.py:171 #, fuzzy msgid "Other" msgstr "mes" @@ -11018,15 +11162,15 @@ msgstr "Editar rango de tiempo" #: superset-frontend/src/components/ImportModal/index.tsx:426 #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:493 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:459 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:463 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:464 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:148 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 msgid "Overwrite" msgstr "Sobrescribir" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:249 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:192 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:247 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 msgid "Overwrite & Explore" msgstr "Sobreescribir y Explorar" @@ -11035,12 +11179,12 @@ msgstr "Sobreescribir y Explorar" msgid "Overwrite Dashboard [%s]" msgstr "Sobrescribir el Dashboard [%s]" -#: superset/views/database/forms.py:237 +#: superset/views/database/forms.py:247 #, fuzzy msgid "Overwrite Duplicate Columns" msgstr "Manglar Columnas Duplicadas" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:404 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:412 #, fuzzy msgid "Overwrite existing" msgstr "Continuar editando" @@ -11056,11 +11200,11 @@ msgstr "" #: superset-frontend/src/pages/AlertReportList/index.tsx:452 #: superset-frontend/src/pages/ChartList/index.tsx:608 #: superset-frontend/src/pages/DashboardList/index.tsx:523 -#: superset-frontend/src/pages/DatasetList/index.tsx:500 +#: superset-frontend/src/pages/DatasetList/index.tsx:511 msgid "Owner" msgstr "Propietario" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:235 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:93 #: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:408 @@ -11075,14 +11219,14 @@ msgstr "Propietario" #: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 #: superset-frontend/src/pages/AlertReportList/index.tsx:324 #: superset-frontend/src/pages/DashboardList/index.tsx:369 -#: superset-frontend/src/pages/DatasetList/index.tsx:389 -#: superset/connectors/sqla/views.py:489 superset/views/chart/mixin.py:82 +#: superset-frontend/src/pages/DatasetList/index.tsx:400 +#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:82 #: superset/views/dashboard/mixin.py:81 msgid "Owners" msgstr "Propietarios" -#: superset/commands/exceptions.py:108 -#: superset/datasets/commands/exceptions.py:144 +#: superset/commands/exceptions.py:112 +#: superset/datasets/commands/exceptions.py:161 msgid "Owners are invalid" msgstr "Los propietarios son invalidos" @@ -11126,7 +11270,7 @@ msgid "Pandas resample rule" msgstr "Regla de Remuestra Pandas" #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 -#: superset/viz.py:2219 +#: superset/viz.py:2152 msgid "Parallel Coordinates" msgstr "Coordenadas Paralelas" @@ -11152,7 +11296,7 @@ msgstr "" msgid "Parent" msgstr "" -#: superset/views/database/forms.py:366 +#: superset/views/database/forms.py:376 msgid "Parse Dates" msgstr "Parsear Fechas" @@ -11171,7 +11315,7 @@ msgstr "" msgid "Partition Chart" msgstr "Partición de diagrama" -#: superset/viz.py:3071 +#: superset/viz.py:3069 msgid "Partition Diagram" msgstr "Partición de diagrama" @@ -11192,7 +11336,7 @@ msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:154 #: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 -#: superset/db_engine_specs/base.py:1838 +#: superset/db_engine_specs/base.py:1870 #: superset/db_engine_specs/clickhouse.py:202 #, fuzzy msgid "Password" @@ -11249,7 +11393,7 @@ msgstr "Métroca de orden" #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:81 #: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:148 msgid "Percentage threshold" msgstr "" @@ -11268,7 +11412,7 @@ msgstr "" msgid "Percentages" msgstr "Recientes" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:219 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:229 msgid "Performance" msgstr "" @@ -11304,8 +11448,8 @@ msgid "Person or group that has certified this metric" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1114 -#: superset-frontend/src/pages/DatasetList/index.tsx:342 -#: superset-frontend/src/pages/DatasetList/index.tsx:560 +#: superset-frontend/src/pages/DatasetList/index.tsx:353 +#: superset-frontend/src/pages/DatasetList/index.tsx:571 msgid "Physical" msgstr "Tabla física" @@ -11313,7 +11457,7 @@ msgstr "Tabla física" msgid "Physical (table or view)" msgstr "Tabla física" -#: superset-frontend/src/pages/DatasetList/index.tsx:273 +#: superset-frontend/src/pages/DatasetList/index.tsx:284 msgid "Physical dataset" msgstr "Conjunto de datos físico" @@ -11322,27 +11466,27 @@ msgstr "Conjunto de datos físico" msgid "Pick a dimension from which categorical colors are defined" msgstr "" -#: superset/viz.py:769 +#: superset/viz.py:795 msgid "Pick a granularity in the Time section or uncheck 'Include Time'" msgstr "Elige una granularidad en la sección de tiempo o desmarca 'Incluir tiempo'" -#: superset/viz.py:1605 +#: superset/viz.py:1514 msgid "Pick a metric for left axis!" msgstr "Elige una métrica para el eje izquierdo!" -#: superset/viz.py:1607 +#: superset/viz.py:1516 msgid "Pick a metric for right axis!" msgstr "Elige una métrica para el eje derecho!" -#: superset/viz.py:1195 +#: superset/viz.py:1090 msgid "Pick a metric for x, y and size" msgstr "Elige una métrica para 'x', 'y' y 'tamaño'" -#: superset/viz.py:1234 +#: superset/viz.py:1131 msgid "Pick a metric to display" msgstr "Elige qué métrica mostrar" -#: superset/viz.py:1260 superset/viz.py:1294 +#: superset/viz.py:1159 superset/viz.py:1195 msgid "Pick a metric!" msgstr "Elige una métrica!" @@ -11358,7 +11502,7 @@ msgstr "" msgid "Pick a set of deck.gl charts to layer on top of one another" msgstr "" -#: superset/viz.py:1390 superset/viz.py:1653 +#: superset/viz.py:1294 superset/viz.py:1564 msgid "Pick a time granularity for your time series" msgstr "Elige una granularidad de tiempo para tus series temporales." @@ -11366,15 +11510,15 @@ msgstr "Elige una granularidad de tiempo para tus series temporales." msgid "Pick a title for you annotation." msgstr "" -#: superset/viz.py:1815 +#: superset/viz.py:1732 msgid "Pick at least one field for [Series]" msgstr "Elige al menos un campo para [Series]" -#: superset/viz.py:857 superset/viz.py:1813 +#: superset/viz.py:887 superset/viz.py:1730 msgid "Pick at least one metric" msgstr "Elige al menos una métrica" -#: superset/viz.py:1943 +#: superset/viz.py:1863 msgid "Pick exactly 2 columns as [Source / Target]" msgstr "Elige exactamente 2 columnas como [Origen / Destino]" @@ -11404,20 +11548,10 @@ msgstr "Ver ejemplos" msgid "Pin" msgstr "en" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:45 -#, fuzzy -msgid "Pivot Options" -msgstr "%s opción(es)" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 -#: superset/viz.py:894 msgid "Pivot Table" msgstr "Tabla Dinámica" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:32 -msgid "Pivot Table (legacy)" -msgstr "" - #: superset/utils/pandas_postprocessing/pivot.py:70 msgid "Pivot operation must include at least one aggregate" msgstr "La operación de pivote debe incluir al menos un agregado" @@ -11439,7 +11573,7 @@ msgstr "" msgid "Pixels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 msgid "Plain" msgstr "" @@ -11451,7 +11585,7 @@ msgstr "" msgid "Please apply filter changes" msgstr "" -#: superset/sqllab/query_render.py:120 +#: superset/sqllab/query_render.py:118 msgid "" "Please check your query and confirm that all template parameters are " "surround by double braces, for example, \"{{ ds }}\". Then, try running " @@ -11459,8 +11593,8 @@ msgid "" msgstr "" #: superset/db_engine_specs/athena.py:56 -#: superset/db_engine_specs/bigquery.py:210 -#: superset/db_engine_specs/postgres.py:161 +#: superset/db_engine_specs/bigquery.py:211 +#: superset/db_engine_specs/postgres.py:160 #: superset/db_engine_specs/snowflake.py:117 #, python-format msgid "" @@ -11468,7 +11602,7 @@ msgid "" "\"%(syntax_error)s\". Then, try running your query again." msgstr "" -#: superset/db_engine_specs/gsheets.py:80 superset/db_engine_specs/mysql.py:170 +#: superset/db_engine_specs/gsheets.py:82 superset/db_engine_specs/mysql.py:170 #, python-format msgid "" "Please check your query for syntax errors near \"%(server_error)s\". " @@ -11482,21 +11616,12 @@ msgid "" "your query again." msgstr "" -#: superset/viz.py:911 -#, fuzzy -msgid "Please choose at least one 'Group by' field" -msgstr "Por favor elige al menos un campo en 'Group by'" - -#: superset/viz.py:3229 +#: superset/viz.py:3234 #, fuzzy msgid "Please choose at least one groupby" msgstr "Por favor elige al menos un campo en 'Group by'" -#: superset/viz.py:923 -msgid "Please choose at least one metric" -msgstr "Por favor elige al menos una métrica" - -#: superset/viz.py:1610 +#: superset/viz.py:1519 msgid "Please choose different metrics on left and right axis" msgstr "Por favor, elige diferentes métricas en el eje izquierdo y derecho" @@ -11512,18 +11637,20 @@ msgstr "Por favor, elige diferentes métricas en el eje izquierdo y derecho" #: superset-frontend/src/pages/DashboardList/index.tsx:415 #: superset-frontend/src/pages/DashboardList/index.tsx:701 #: superset-frontend/src/pages/DashboardList/index.tsx:756 -#: superset-frontend/src/pages/DatasetList/index.tsx:740 +#: superset-frontend/src/pages/DatasetList/index.tsx:762 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:170 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:304 #: superset-frontend/src/pages/SavedQueryList/index.tsx:533 #: superset-frontend/src/pages/Tags/index.tsx:141 #: superset-frontend/src/pages/Tags/index.tsx:281 msgid "Please confirm" msgstr "Confirme" -#: superset-frontend/src/dashboard/actions/dashboardState.js:442 +#: superset-frontend/src/dashboard/actions/dashboardState.js:447 msgid "Please confirm the overwrite values." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:624 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:641 msgid "Please enter a SQLAlchemy URI to test" msgstr "Por favor, introduce un URI SQLAlchemy para probar" @@ -11532,11 +11659,11 @@ msgstr "Por favor, introduce un URI SQLAlchemy para probar" msgid "Please filter set name" msgstr "Por favor introduce un nombre para el gráfico" -#: superset/db_engine_specs/postgres.py:125 +#: superset/db_engine_specs/postgres.py:124 msgid "Please re-enter the password." msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:435 +#: superset-frontend/src/views/CRUD/hooks.ts:439 msgid "Please re-export your file and try importing again" msgstr "" @@ -11564,7 +11691,7 @@ msgstr "" msgid "Please select both a Dataset and a Chart type to proceed" msgstr "" -#: superset/viz.py:1193 +#: superset/viz.py:1088 msgid "Please use 3 different metric labels" msgstr "Por favor especifica 3 etiquetas de métrica distintas" @@ -11579,7 +11706,7 @@ msgid "" "multiple metrics across all of the samples or rows in the data." msgstr "" -#: superset/initialization/__init__.py:275 +#: superset/initialization/__init__.py:277 msgid "Plugins" msgstr "" @@ -11678,13 +11805,17 @@ msgid "Port" msgstr "informe" #: superset/db_engine_specs/mssql.py:98 -#: superset/db_engine_specs/postgres.py:135 -#: superset/db_engine_specs/presto.py:672 -#: superset/db_engine_specs/redshift.py:77 +#: superset/db_engine_specs/postgres.py:134 +#: superset/db_engine_specs/presto.py:699 +#: superset/db_engine_specs/redshift.py:81 #, python-format msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." msgstr "" +#: superset/db_engine_specs/ocient.py:269 +msgid "Port out of range 0-65535" +msgstr "" + #: superset/views/dashboard/mixin.py:86 msgid "Position JSON" msgstr "Posición JSON" @@ -11723,7 +11854,7 @@ msgstr "" msgid "Pre-filter is required" msgstr "El tipo es obligatorio" -#: superset/connectors/sqla/views.py:440 +#: superset/connectors/sqla/views.py:347 msgid "" "Predicate applied when fetching distinct value to populate the filter " "control component. Supports jinja template syntax. Applies only when " @@ -11771,7 +11902,7 @@ msgstr "Previsualizar: `%s`" msgid "Previous" msgstr "Anterior" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:346 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:348 #, fuzzy msgid "Previous Line" msgstr "Anterior" @@ -11796,6 +11927,10 @@ msgstr "Viernes" msgid "Primary or secondary y-axis" msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 +msgid "Primary y-axis Bounds" +msgstr "" + #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:387 msgid "Primary y-axis format" msgstr "" @@ -11813,7 +11948,7 @@ msgstr "" msgid "Private Key Password" msgstr "Contraseña de Broker" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:269 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 #, fuzzy msgid "Proceed" msgstr "Creado" @@ -11894,11 +12029,11 @@ msgstr "Pon tu código aquí" msgid "Python datetime string pattern" msgstr "Patrón datetime de Python" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1530 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1585 msgid "QUERY DATA IN SQL LAB" msgstr "" -#: superset/db_engine_specs/base.py:109 +#: superset/db_engine_specs/base.py:110 #, fuzzy msgid "Quarter" msgstr "consulta" @@ -11913,9 +12048,9 @@ msgstr "Propietario del Gráfico: %s" msgid "Queries" msgstr "Series" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:51 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:43 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:53 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:30 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:33 #: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:90 @@ -11926,7 +12061,6 @@ msgstr "Series" #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:36 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:32 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:34 #: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:30 @@ -11937,6 +12071,7 @@ msgstr "Series" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:44 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:55 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:43 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:41 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:60 @@ -11950,7 +12085,7 @@ msgstr "Series" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:361 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:34 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:35 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:44 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:43 @@ -11966,7 +12101,7 @@ msgstr "Series" #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:152 #: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:30 #: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:26 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1479 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1471 #: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 #: superset-frontend/src/explore/controlPanels/sections.tsx:94 #: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:34 @@ -11978,7 +12113,7 @@ msgstr "Series" msgid "Query" msgstr "Consulta" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:361 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:363 #, python-format msgid "Query %s: %s" msgstr "" @@ -11995,11 +12130,11 @@ msgstr "consulta" msgid "Query B" msgstr "consulta" -#: superset/initialization/__init__.py:366 +#: superset/initialization/__init__.py:360 msgid "Query History" msgstr "Historial de la consulta" -#: superset/commands/exceptions.py:138 +#: superset/commands/exceptions.py:142 #, fuzzy msgid "Query does not exist" msgstr "La base de datos no existe" @@ -12015,7 +12150,7 @@ msgstr "Historial de la Consulta" msgid "Query imported" msgstr "Nombre de la consulta" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:465 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 msgid "Query in a new tab" msgstr "Consulta en nueva pestaña" @@ -12041,12 +12176,12 @@ msgstr "Nombre de la consulta" msgid "Query preview" msgstr "Previsualización de Datos" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:415 #, fuzzy msgid "Query was stopped" msgstr "La consulta ha sido detenida." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:498 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:494 msgid "Query was stopped." msgstr "La consulta ha sido detenida." @@ -12060,6 +12195,16 @@ msgstr "TIPO DE RANGO" msgid "RGB Color" msgstr "Color fijo" +#: superset/row_level_security/commands/exceptions.py:29 +#, fuzzy +msgid "RLS Rule could not be deleted." +msgstr "Los Gráficos no han podido eliminarse" + +#: superset/row_level_security/commands/exceptions.py:25 +#, fuzzy +msgid "RLS Rule not found." +msgstr "No se encuentra el informe programado." + #: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:159 msgid "Radar" msgstr "" @@ -12207,7 +12352,7 @@ msgstr "Número de Registros" msgid "Rectangle" msgstr "" -#: superset/connectors/sqla/views.py:446 +#: superset/connectors/sqla/views.py:353 msgid "Redirects to this endpoint when clicking on the table from the table list" msgstr "Redirige a este punto al hacer clic en la tabla de la lista de tablas" @@ -12236,7 +12381,7 @@ msgstr "Referirse a " msgid "Referenced columns not available in DataFrame." msgstr "Columnas referenciadas no disponibles en DataFrame." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:549 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:542 msgid "Refetch results" msgstr "ver resultados" @@ -12290,10 +12435,15 @@ msgstr "Columna de Tiempo" msgid "Regex" msgstr "Compartir" -#: superset/connectors/sqla/views.py:329 +#: superset-frontend/src/features/rls/constants.ts:24 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:262 +msgid "Regular" +msgstr "" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:364 msgid "" "Regular filters add where clauses to queries if a user belongs to a role " -"referenced in the filter. Base filters apply filters to all queries " +"referenced in the filter, base filters apply filters to all queries " "except the roles defined in the filter, and can be used to define what " "users can see if no RLS filters within a filter group apply to them." msgstr "" @@ -12342,7 +12492,7 @@ msgstr "" msgid "Remove" msgstr "Eliminar" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:164 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:194 #, fuzzy msgid "Remove cross-filter" msgstr "Filtro de padre" @@ -12377,8 +12527,8 @@ msgstr "Renombrar pestaña" msgid "Rendering" msgstr "Orden Descendente" -#: superset/views/database/forms.py:168 superset/views/database/forms.py:325 -#: superset/views/database/forms.py:456 +#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 +#: superset/views/database/forms.py:466 msgid "Replace" msgstr "Remplazar" @@ -12392,13 +12542,12 @@ msgstr "Remplazar" #: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:593 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:163 #, fuzzy msgid "Report" msgstr "informe" -#: superset-frontend/src/components/ReportModal/index.tsx:282 +#: superset-frontend/src/components/ReportModal/index.tsx:281 #, fuzzy msgid "Report Name" msgstr "Nombre de informe" @@ -12531,7 +12680,7 @@ msgid "Request Permissions" msgstr "Solicitar Permisos" #: superset/charts/data/api.py:153 superset/charts/data/api.py:243 -#: superset/charts/data/api.py:309 +#: superset/charts/data/api.py:312 #, python-format msgid "Request is incorrect: %(error)s" msgstr "Petición incorrecta: %(error)s" @@ -12540,7 +12689,7 @@ msgstr "Petición incorrecta: %(error)s" msgid "Request is not JSON" msgstr "La petición no es JSON" -#: superset/views/datasource/views.py:75 +#: superset/views/datasource/views.py:77 msgid "Request missing data field." msgstr "" @@ -12549,14 +12698,14 @@ msgstr "" msgid "Request timed out" msgstr "La petición no es JSON" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:94 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:98 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:105 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:252 msgid "Required" msgstr "Requerido" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:342 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 msgid "Required control values have been removed" msgstr "" @@ -12580,12 +12729,12 @@ msgstr "Método de Remuestra Pandas" msgid "Resample operation requires DatetimeIndex" msgstr "La operación de pivote requiere al menos un índice" -#: superset-frontend/src/components/Table/index.tsx:199 +#: superset-frontend/src/components/Table/index.tsx:203 #, fuzzy msgid "Reset" msgstr "Recientes" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:293 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:280 msgid "Reset state" msgstr "Restablecer estado" @@ -12610,14 +12759,15 @@ msgstr "Filtro de Fecha" msgid "Results" msgstr "Resultados" +#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 #: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:212 #: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 #, fuzzy, python-format msgid "Results %s" msgstr "Resultados" -#: superset/sql_lab.py:410 superset/sqllab/commands/results.py:59 -#: superset/views/core.py:2133 +#: superset/sql_lab.py:402 superset/sqllab/commands/results.py:59 +#: superset/views/core.py:2169 msgid "Results backend is not configured." msgstr "" @@ -12644,12 +12794,12 @@ msgstr "latitud/longitud reversos" msgid "Rich Tooltip" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:178 msgid "Rich tooltip" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:372 #, fuzzy msgid "Right" @@ -12678,7 +12828,7 @@ msgstr "Métrica Eje Derecho" msgid "Right to Left" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:157 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 msgid "Right value" msgstr "" @@ -12691,7 +12841,7 @@ msgstr "" msgid "Role" msgstr "Perfil" -#: superset/views/core.py:407 +#: superset/views/core.py:408 #, python-format msgid "Role %(r)s was extended to provide the access to the datasource %(ds)s" msgstr "" @@ -12702,8 +12852,10 @@ msgstr "" #: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:389 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:551 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:406 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:415 #: superset-frontend/src/profile/components/Security.tsx:35 -#: superset/connectors/sqla/views.py:364 superset/views/dashboard/mixin.py:82 +#: superset/views/dashboard/mixin.py:82 msgid "Roles" msgstr "Roles" @@ -12751,7 +12903,7 @@ msgstr "Probar Conexión" msgid "Rolling window" msgstr "Ventana de desplazamiento" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 #: superset/views/database/mixins.py:195 msgid "Root certificate" msgstr "Certificado raíz" @@ -12782,32 +12934,30 @@ msgstr "" msgid "Round cap" msgstr "Mapa de País" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 #: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 msgid "Row" msgstr "Hilera" -#: superset/initialization/__init__.py:295 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:70 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:302 +#: superset/initialization/__init__.py:436 #, fuzzy msgid "Row Level Security" msgstr "Seguridad a nivel de registros" -#: superset/views/database/forms.py:245 +#: superset/views/database/forms.py:255 msgid "" "Row containing the headers to use as column names (0 is first line of " "data). Leave empty if there is no header row" msgstr "" -#: superset/views/database/forms.py:332 +#: superset/views/database/forms.py:342 msgid "" "Row containing the headers to use as column names (0 is first line of " "data). Leave empty if there is no header row." msgstr "" -#: superset/connectors/sqla/views.py:290 -msgid "Row level security filter" -msgstr "Filtro de seguridad de nivel de fila" - #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:247 #: superset-frontend/src/explore/controls.jsx:340 msgid "Row limit" @@ -12830,7 +12980,7 @@ msgstr "" msgid "Rows subtotal position" msgstr "" -#: superset/views/database/forms.py:254 superset/views/database/forms.py:360 +#: superset/views/database/forms.py:264 superset/views/database/forms.py:370 msgid "Rows to Read" msgstr "Filas a Leer" @@ -12840,10 +12990,20 @@ msgstr "Filas a Leer" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:504 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:233 #: superset-frontend/src/explore/controlPanels/sections.tsx:230 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:286 msgid "Rule" msgstr "Regla" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:54 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:355 +#, fuzzy +msgid "Rule Name" +msgstr "Nombre de la consulta" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:253 +msgid "Rule added" +msgstr "" + +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:53 msgid "Run" msgstr "Ejecutar" @@ -12862,12 +13022,12 @@ msgstr "Ejecutar una consulta para mostrar los resultados aquí" msgid "Run in SQL Lab" msgstr "Ejecutar en Laboratiorio SQL" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:309 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:319 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:311 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:321 msgid "Run query" msgstr "Ejecutar consulta" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:131 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:132 msgid "Run query (Ctrl + Return)" msgstr "Ejecutar consulta (Ctrl + Enter)" @@ -12875,7 +13035,7 @@ msgstr "Ejecutar consulta (Ctrl + Enter)" msgid "Run query in a new tab" msgstr "Ejecutar consulta en otra pestaña" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:52 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:51 msgid "Run selection" msgstr "Probar Conexión" @@ -12884,7 +13044,7 @@ msgstr "Probar Conexión" msgid "Running" msgstr "Ejecutando" -#: superset/sql_lab.py:488 +#: superset/sql_lab.py:480 #, python-format msgid "Running statement %(statement_num)s out of %(statement_count)s" msgstr "" @@ -12906,8 +13066,8 @@ msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 #: superset-frontend/src/features/home/commonMenuData.ts:22 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:312 -#: superset/initialization/__init__.py:354 -#: superset/initialization/__init__.py:362 +#: superset/initialization/__init__.py:348 +#: superset/initialization/__init__.py:356 msgid "SQL" msgstr "SQL" @@ -12915,17 +13075,17 @@ msgstr "SQL" msgid "SQL Copied!" msgstr "Copiado!" -#: superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:253 msgid "SQL Expression" msgstr "Expresión SQL" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:73 -#: superset/initialization/__init__.py:349 -#: superset/initialization/__init__.py:371 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 +#: superset/initialization/__init__.py:343 +#: superset/initialization/__init__.py:365 msgid "SQL Lab" msgstr "Laboratorio SQL" -#: superset/connectors/sqla/views.py:492 +#: superset/connectors/sqla/views.py:399 msgid "SQL Lab View" msgstr "Vista de Laboratorio SQL" @@ -13048,7 +13208,7 @@ msgstr "" msgid "Samples" msgstr "Ver ejemplos" -#: superset/datasets/commands/exceptions.py:177 +#: superset/datasets/commands/exceptions.py:194 #, fuzzy msgid "Samples for dataset could not be retrieved." msgstr "El conjunto de datos no pudo ser creado." @@ -13058,7 +13218,7 @@ msgstr "El conjunto de datos no pudo ser creado." msgid "Samples for datasource could not be retrieved." msgstr "El conjunto de datos no pudo ser creado." -#: superset/viz.py:1935 +#: superset/viz.py:1854 msgid "Sankey" msgstr "" @@ -13087,25 +13247,26 @@ msgstr "Sábado" #: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 #: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:199 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:214 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:246 -#: superset-frontend/src/components/ReportModal/index.tsx:229 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:288 +#: superset-frontend/src/components/ReportModal/index.tsx:228 #: superset-frontend/src/dashboard/components/Header/index.jsx:607 #: superset-frontend/src/dashboard/components/Header/index.jsx:609 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 #: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 #: superset-frontend/src/dashboard/components/SaveModal.tsx:211 #: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:794 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:156 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:492 #: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:268 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:458 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:462 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 -#: superset-frontend/src/explore/components/SaveModal.tsx:415 +#: superset-frontend/src/explore/components/SaveModal.tsx:449 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:418 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:424 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:147 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 @@ -13115,30 +13276,31 @@ msgstr "Sábado" #: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 #: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1695 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 #: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 msgid "Save" msgstr "Guardar" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:246 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:190 msgid "Save & Explore" msgstr "Guardar y Explorar" -#: superset-frontend/src/explore/components/SaveModal.tsx:396 +#: superset-frontend/src/explore/components/SaveModal.tsx:430 msgid "Save & go to dashboard" msgstr "Guardar e ir al Dashboard" -#: superset-frontend/src/explore/components/SaveModal.tsx:395 +#: superset-frontend/src/explore/components/SaveModal.tsx:429 #, fuzzy msgid "Save & go to new dashboard" msgstr "Guardar e ir al Dashboard" -#: superset-frontend/src/explore/components/SaveModal.tsx:308 +#: superset-frontend/src/explore/components/SaveModal.tsx:343 msgid "Save (Overwrite)" msgstr "Guardar (Sobrescribir)" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:199 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:306 msgid "Save as" msgstr "Guardar como" @@ -13153,16 +13315,16 @@ msgstr "Selecciona una base de datos" msgid "Save as dataset" msgstr "Selecciona una base de datos" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:394 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:214 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:402 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 msgid "Save as new" msgstr "Guardar como una consulta nueva" -#: superset-frontend/src/explore/components/SaveModal.tsx:412 +#: superset-frontend/src/explore/components/SaveModal.tsx:446 msgid "Save as new chart" msgstr "Guardar como gráfico nuevo" -#: superset-frontend/src/explore/components/SaveModal.tsx:316 +#: superset-frontend/src/explore/components/SaveModal.tsx:351 #, fuzzy msgid "Save as..." msgstr "Guardar como..." @@ -13176,7 +13338,7 @@ msgstr "Guardar como:" msgid "Save changes" msgstr "Descartar cambios" -#: superset-frontend/src/explore/components/SaveModal.tsx:432 +#: superset-frontend/src/explore/components/SaveModal.tsx:466 msgid "Save chart" msgstr "Guardar gráfico" @@ -13184,7 +13346,7 @@ msgstr "Guardar gráfico" msgid "Save dashboard" msgstr "Guardar Dashboard" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:106 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:105 #, fuzzy msgid "Save dataset" msgstr "Cambiar fuente" @@ -13193,11 +13355,11 @@ msgstr "Cambiar fuente" msgid "Save for this session" msgstr "Guardar para esta sesión" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:350 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:356 msgid "Save or Overwrite Dataset" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:202 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:201 msgid "Save query" msgstr "Guardar Consulta" @@ -13206,28 +13368,28 @@ msgstr "Guardar Consulta" msgid "Save the query to enable this feature" msgstr "Por favor, guarda la consulta para habilitar el compartir" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:250 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:465 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:149 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 msgid "Save this query as a virtual dataset to continue exploring" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:414 +#: superset-frontend/src/explore/components/SaveModal.tsx:448 #, fuzzy msgid "Save to new dashboard" msgstr "Guardar e ir al Dashboard" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:265 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:271 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 msgid "Saved" msgstr "Guardar" -#: superset/initialization/__init__.py:358 +#: superset/initialization/__init__.py:352 msgid "Saved Queries" msgstr "Consultas Guardadas" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:249 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:255 #, fuzzy msgid "Saved expressions" msgstr "Expresión SQL" @@ -13292,12 +13454,12 @@ msgstr "" "orden. Muestra una relación estadística entre dos variables-" #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 -#: superset-frontend/src/components/ReportModal/index.tsx:306 +#: superset-frontend/src/components/ReportModal/index.tsx:305 #: superset-frontend/src/pages/AlertReportList/index.tsx:276 msgid "Schedule" msgstr "Programar" -#: superset-frontend/src/components/ReportModal/index.tsx:212 +#: superset-frontend/src/components/ReportModal/index.tsx:211 #, fuzzy msgid "Schedule a new email report" msgstr "Programar informes por correo electrónico para gráficos" @@ -13315,7 +13477,7 @@ msgstr "Guardar Consulta" msgid "Schedule settings" msgstr "Configuracion" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:518 msgid "Schedule the query periodically" msgstr "Programar la consulta periódicamente" @@ -13335,35 +13497,35 @@ msgstr "Programado en" msgid "Scheduled task executor not found" msgstr "No se encontró el estado del informe programado" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:299 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:221 -#: superset-frontend/src/pages/DatasetList/index.tsx:354 -#: superset-frontend/src/pages/DatasetList/index.tsx:536 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:298 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 +#: superset-frontend/src/pages/DatasetList/index.tsx:365 +#: superset-frontend/src/pages/DatasetList/index.tsx:547 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:250 #: superset-frontend/src/pages/SavedQueryList/index.tsx:297 #: superset-frontend/src/pages/SavedQueryList/index.tsx:469 -#: superset/connectors/sqla/views.py:483 superset/views/database/forms.py:144 -#: superset/views/database/forms.py:311 superset/views/database/forms.py:442 +#: superset/connectors/sqla/views.py:390 superset/views/database/forms.py:154 +#: superset/views/database/forms.py:321 superset/views/database/forms.py:452 msgid "Schema" msgstr "Esquema" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:247 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:257 #, fuzzy msgid "Schema cache timeout" msgstr "Tiempo de espera de caché" -#: superset/views/core.py:1164 +#: superset/views/core.py:1186 #, fuzzy msgid "Schema undefined" msgstr "Indefinido" -#: superset/connectors/sqla/views.py:429 +#: superset/connectors/sqla/views.py:336 msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" msgstr "" "Esquema, tal como se utiliza solo en algunas bases de datos como " "Postgres, Redshift y DB2" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:419 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:429 #, fuzzy msgid "Schemas allowed for File upload" msgstr "" @@ -13378,7 +13540,7 @@ msgstr "" msgid "Scoping" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 msgid "Scroll" msgstr "" @@ -13394,15 +13556,15 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:724 #: superset-frontend/src/pages/CssTemplateList/index.tsx:293 #: superset-frontend/src/pages/DashboardList/index.tsx:516 -#: superset-frontend/src/pages/DatabaseList/index.tsx:492 -#: superset-frontend/src/pages/DatasetList/index.tsx:577 +#: superset-frontend/src/pages/DatabaseList/index.tsx:503 +#: superset-frontend/src/pages/DatasetList/index.tsx:588 #: superset-frontend/src/pages/SavedQueryList/index.tsx:494 #: superset-frontend/src/pages/Tags/index.tsx:204 #: superset/templates/appbuilder/general/widgets/search.html:40 msgid "Search" msgstr "Buscar" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:294 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 msgid "Search / Filter" msgstr "Buscar / Filtrar" @@ -13428,12 +13590,12 @@ msgstr "Buscar" msgid "Search by query text" msgstr "Buscar por texto" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:207 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 #, fuzzy msgid "Search columns" msgstr "%s columnas(s)" -#: superset-frontend/src/components/Table/index.tsx:202 +#: superset-frontend/src/components/Table/index.tsx:206 #, fuzzy msgid "Search in filters" msgstr "Buscar / Filtrar" @@ -13447,7 +13609,7 @@ msgstr "Roles de Usuario" msgid "Search..." msgstr "Buscar..." -#: superset/db_engine_specs/base.py:96 +#: superset/db_engine_specs/base.py:97 #, fuzzy msgid "Second" msgstr "30 segundos" @@ -13464,10 +13626,14 @@ msgid "Secondary Metric" msgstr "Métroca de orden" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:408 +msgid "Secondary y-axis Bounds" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:425 msgid "Secondary y-axis format" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:417 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:434 msgid "Secondary y-axis title" msgstr "" @@ -13480,15 +13646,15 @@ msgstr "30 segundos" msgid "Secure Extra" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:336 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:341 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:346 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 msgid "Secure extra" msgstr "Seguridad" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:329 -#: superset/initialization/__init__.py:297 -#: superset/initialization/__init__.py:395 -#: superset/initialization/__init__.py:433 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:339 +#: superset/initialization/__init__.py:389 +#: superset/initialization/__init__.py:427 +#: superset/initialization/__init__.py:438 msgid "Security" msgstr "Seguridad" @@ -13511,16 +13677,16 @@ msgstr "Ver menos" msgid "See more" msgstr "Ver más" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:412 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:405 #, fuzzy msgid "See query details" msgstr "Consultas Guardadas" -#: superset-frontend/src/components/TableSelector/index.tsx:288 +#: superset-frontend/src/components/TableSelector/index.tsx:277 msgid "See table schema" msgstr "Ver esquema de tabla" -#: superset-frontend/src/explore/components/SaveModal.tsx:363 +#: superset-frontend/src/explore/components/SaveModal.tsx:398 #: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 #, fuzzy msgid "Select" @@ -13528,9 +13694,9 @@ msgstr "Selección múltiple" #: superset-frontend/src/components/AsyncSelect/index.jsx:41 #: superset-frontend/src/components/Select/AsyncSelect.tsx:123 -#: superset-frontend/src/components/Select/Select.tsx:103 +#: superset-frontend/src/components/Select/Select.tsx:104 #: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 -#: superset-frontend/src/explore/components/controls/SelectControl.jsx:230 +#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 msgid "Select ..." msgstr "Selecciona ..." @@ -13544,12 +13710,12 @@ msgstr "Agregar método de entrega" msgid "Select Viz Type" msgstr "Selecciona un tipo de visualización" -#: superset/views/database/forms.py:415 +#: superset/views/database/forms.py:425 #, fuzzy msgid "Select a Columnar file to be uploaded to a database." msgstr "Selecciona un archivo de Excel para ser cargado a una base de datos." -#: superset/views/database/forms.py:279 +#: superset/views/database/forms.py:289 msgid "Select a Excel file to be uploaded to a database." msgstr "Selecciona un archivo de Excel para ser cargado a una base de datos." @@ -13558,7 +13724,7 @@ msgstr "Selecciona un archivo de Excel para ser cargado a una base de datos." msgid "Select a column" msgstr "¿Realmente quieres borrar todo?" -#: superset-frontend/src/explore/components/SaveModal.tsx:357 +#: superset-frontend/src/explore/components/SaveModal.tsx:392 #, fuzzy msgid "Select a dashboard" msgstr "Dashboard Superset" @@ -13582,7 +13748,7 @@ msgstr "Se ha detenido una conexión insegura a la base de datos" msgid "Select a database to upload the file to" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:744 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:738 #, fuzzy msgid "Select a database to write a query" msgstr "Selecciona tabla o introduce su nombre" @@ -13597,7 +13763,7 @@ msgstr "Es dimensión" msgid "Select a file to be uploaded to the database" msgstr "Selecciona un archivo CSV para ser cargado a una base de datos." -#: superset/views/database/forms.py:145 +#: superset/views/database/forms.py:155 #, fuzzy msgid "Select a schema if the database supports this" msgstr "Especifica un esquema (si el sistema de base de datos lo soporta)." @@ -13611,12 +13777,12 @@ msgstr "Selecciona un tipo de visualización" msgid "Select aggregate options" msgstr "%s aggregación(es)" -#: superset-frontend/src/components/Table/index.tsx:207 +#: superset-frontend/src/components/Table/index.tsx:211 #, fuzzy msgid "Select all data" msgstr "¿Realmente quieres borrar todo?" -#: superset-frontend/src/components/Table/index.tsx:201 +#: superset-frontend/src/components/Table/index.tsx:205 #, fuzzy msgid "Select all items" msgstr "¿Realmente quieres borrar todo?" @@ -13625,6 +13791,11 @@ msgstr "¿Realmente quieres borrar todo?" msgid "Select any columns for metadata inspection" msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +#, fuzzy +msgid "Select chart" +msgstr "Todos los gráficos" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:45 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:103 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:138 @@ -13637,14 +13808,14 @@ msgstr "Todos los gráficos" msgid "Select color scheme" msgstr "Esquema de Color Lineal" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:208 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 #, fuzzy msgid "Select column" msgstr "Columna de Tiempo" -#: superset-frontend/src/components/Table/index.tsx:204 +#: superset-frontend/src/components/Table/index.tsx:208 #, fuzzy msgid "Select current page" msgstr "Buscar / Filtrar" @@ -13654,8 +13825,8 @@ msgstr "Buscar / Filtrar" msgid "Select database & schema" msgstr "Ver esquema de tabla" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:272 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:280 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:271 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:279 #, fuzzy msgid "Select database or type to search databases" msgstr "Selecciona tabla o introduce su nombre" @@ -13665,7 +13836,7 @@ msgstr "Selecciona tabla o introduce su nombre" msgid "Select database table" msgstr "Eliminar base de datos" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1791 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1847 msgid "" "Select databases require additional fields to be completed in the " "Advanced tab to successfully connect the database. Learn what " @@ -13707,7 +13878,7 @@ msgstr "%s operador(es)" msgid "Select or type a value" msgstr "Limitar valores del selector" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:410 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:418 #, fuzzy msgid "Select or type dataset name" msgstr "Selecciona tabla o introduce su nombre" @@ -13722,8 +13893,8 @@ msgstr "Probar Conexión" msgid "Select saved metrics" msgstr "%s métrica(s) guardada(s)" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:297 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:304 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:296 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 #, fuzzy msgid "Select schema or type to search schemas" msgstr "Selecciona tabla o introduce su nombre" @@ -13733,7 +13904,7 @@ msgstr "Selecciona tabla o introduce su nombre" msgid "Select scheme" msgstr "Selecciona un esquema (%s)" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:304 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:307 msgid "Select start and end date" msgstr "Seleciona fecha de inicio y de fin" @@ -13741,8 +13912,8 @@ msgstr "Seleciona fecha de inicio y de fin" msgid "Select subject" msgstr "" +#: superset-frontend/src/components/TableSelector/index.tsx:284 #: superset-frontend/src/components/TableSelector/index.tsx:295 -#: superset-frontend/src/components/TableSelector/index.tsx:306 #, fuzzy msgid "Select table or type to search tables" msgstr "Selecciona tabla o introduce su nombre" @@ -13752,6 +13923,23 @@ msgstr "Selecciona tabla o introduce su nombre" msgid "Select the Annotation Layer you would like to use." msgstr "Capas de Anotación" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +msgid "" +"Select the charts to which you want to apply cross-filters in this " +"dashboard. Deselecting a chart will exclude it from being filtered when " +"applying cross-filters from any chart on the dashboard. You can select " +"\"All charts\" to apply cross-filters to all charts that use the same " +"dataset or contain the same column name in the dashboard." +msgstr "" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +msgid "" +"Select the charts to which you want to apply cross-filters when " +"interacting with this chart. You can select \"All charts\" to apply " +"filters to all charts that use the same dataset or contain the same " +"column name in the dashboard." +msgstr "" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:392 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:37 #, fuzzy @@ -13798,7 +13986,7 @@ msgstr "Septiembre" msgid "Sequential" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 msgid "Series" msgstr "Series" @@ -13817,7 +14005,7 @@ msgstr "Límite de Serie" msgid "Series Limit Sort Descending" msgstr "Orden descendente" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:255 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:246 #, fuzzy msgid "Series Order" msgstr "Series" @@ -13893,13 +14081,13 @@ msgid "Settings for time series" msgstr "" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:325 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:464 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:467 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 #: superset-frontend/src/features/home/SavedQueries.tsx:211 msgid "Share" msgstr "Compartir" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:469 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:472 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:343 #, fuzzy msgid "Share chart by email" @@ -13910,7 +14098,7 @@ msgstr "Compartir gráfico" msgid "Share permalink by email" msgstr "Compartir gráfico" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1429 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1421 msgid "Shared query" msgstr "Guardar Consulta" @@ -13919,7 +14107,7 @@ msgstr "Guardar Consulta" msgid "Shared query fields" msgstr "Consultas Guardadas" -#: superset/views/database/forms.py:298 +#: superset/views/database/forms.py:308 msgid "Sheet Name" msgstr "Nombre de Hoja" @@ -13970,7 +14158,7 @@ msgstr "Mostrar Plantilla CSS" msgid "Show Chart" msgstr "Mostrar Gráfico" -#: superset/connectors/sqla/views.py:73 +#: superset/connectors/sqla/views.py:72 msgid "Show Column" msgstr "Mostrar Columna" @@ -14005,11 +14193,11 @@ msgstr "Mostrar Registro" msgid "Show Markers" msgstr "" -#: superset/connectors/sqla/views.py:208 +#: superset/connectors/sqla/views.py:207 msgid "Show Metric" msgstr "Mostrar Métrica" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:178 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 #, fuzzy msgid "Show Metric Names" msgstr "Mostrar Métrica" @@ -14019,15 +14207,11 @@ msgstr "Mostrar Métrica" msgid "Show Range Filter" msgstr "Filtro de Fecha" -#: superset/connectors/sqla/views.py:291 -msgid "Show Row level security filter" -msgstr "Mostrar filtro de seguridad de nivel de fila" - #: superset/views/sql_lab/views.py:53 msgid "Show Saved Query" msgstr "Mostrar Consulta Guardada" -#: superset/connectors/sqla/views.py:385 +#: superset/connectors/sqla/views.py:292 msgid "Show Table" msgstr "Mostrar Tabla" @@ -14049,12 +14233,12 @@ msgstr "" msgid "Show Upper Labels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:110 #, fuzzy msgid "Show Value" msgstr "Mostrar Tabla" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:164 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:315 #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:184 #, fuzzy @@ -14089,7 +14273,7 @@ msgstr "" msgid "Show cell bars" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:395 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 #, fuzzy msgid "Show chart description" msgstr "Alterna la descripción del Dashboard" @@ -14128,7 +14312,7 @@ msgstr "Mostrar Tabla" msgid "Show labels when the node has children." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:39 msgid "Show legend" msgstr "" @@ -14167,7 +14351,7 @@ msgstr "Propiedades del Dashboard" msgid "Show rows total" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 msgid "Show series values on the chart" msgstr "" @@ -14196,7 +14380,6 @@ msgid "" " apply to the result." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:76 #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:365 msgid "Show totals" @@ -14241,7 +14424,7 @@ msgstr "" msgid "Showing %s of %s" msgstr "Mostrando %s de %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:184 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 msgid "Shows a list of all series available at that point in time" msgstr "" @@ -14261,7 +14444,7 @@ msgstr "" msgid "Significance Level" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:341 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 @@ -14314,24 +14497,24 @@ msgstr "" msgid "Sizes of vehicles" msgstr "" -#: superset/views/database/forms.py:177 +#: superset/views/database/forms.py:187 msgid "Skip Blank Lines" msgstr "Saltar líneas vacías" -#: superset/views/database/forms.py:174 +#: superset/views/database/forms.py:184 msgid "Skip Initial Space" msgstr "Omitir Espacio Inicial" -#: superset/views/database/forms.py:260 superset/views/database/forms.py:354 +#: superset/views/database/forms.py:270 superset/views/database/forms.py:364 msgid "Skip Rows" msgstr "Omitir Filas" -#: superset/views/database/forms.py:178 +#: superset/views/database/forms.py:188 #, fuzzy msgid "Skip blank lines rather than interpreting them as Not A Number values" msgstr "Saltar líneas vacías en lugar de interpretarlas como valores NaN." -#: superset/views/database/forms.py:174 +#: superset/views/database/forms.py:184 #, fuzzy msgid "Skip spaces after delimiter" msgstr "Omitir espacios después del delimitador." @@ -14368,7 +14551,7 @@ msgstr "" msgid "Solid" msgstr "" -#: superset/commands/exceptions.py:115 +#: superset/commands/exceptions.py:119 #, fuzzy msgid "Some roles do not exist" msgstr "El dashboard no existe" @@ -14377,7 +14560,7 @@ msgstr "El dashboard no existe" msgid "Something went wrong." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:864 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:919 #, python-format msgid "Sorry there was an error fetching database information: %s" msgstr "" @@ -14398,7 +14581,7 @@ msgstr "Lo siento, ha ocurrido un error" msgid "Sorry, an error occurred" msgstr "Lo siento, ha ocurrido un error" -#: superset-frontend/src/dashboard/actions/dashboardState.js:357 +#: superset-frontend/src/dashboard/actions/dashboardState.js:359 #, fuzzy msgid "Sorry, an unknown error occurred" msgstr "Lo siento, ha ocurrido un error" @@ -14431,7 +14614,7 @@ msgstr "" "Lo sentimos, hubo un error al obtener la información de la base de datos:" " %s" -#: superset-frontend/src/dashboard/actions/dashboardState.js:360 +#: superset-frontend/src/dashboard/actions/dashboardState.js:362 #, fuzzy, python-format msgid "Sorry, there was an error saving this dashboard: %s" msgstr "" @@ -14440,7 +14623,7 @@ msgstr "" #: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 #: superset-frontend/src/pages/SavedQueryList/index.tsx:229 -#: superset-frontend/src/views/CRUD/hooks.ts:676 +#: superset-frontend/src/views/CRUD/hooks.ts:680 msgid "Sorry, your browser does not support copying." msgstr "Lo sentimos, tu navegador no admite la copia. Utiliza Ctrl/Cmd + C!" @@ -14450,7 +14633,7 @@ msgstr "Lo sentimos, tu navegador no admite la copia. Utiliza Ctrl/Cmd + C!" #: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 #: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 -#: superset-frontend/src/components/Table/index.tsx:208 +#: superset-frontend/src/components/Table/index.tsx:212 #, fuzzy msgid "Sort" msgstr "informe" @@ -14472,12 +14655,12 @@ msgstr "Orden descendente" msgid "Sort Metric" msgstr "Métroca de orden" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:247 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:238 #, fuzzy msgid "Sort Series Ascending" msgstr "Orden Descendente" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:227 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:224 #, fuzzy msgid "Sort Series By" msgstr "Ordenar por" @@ -14557,7 +14740,7 @@ msgstr "Métroca de orden" msgid "Sort rows by" msgstr "Ordenar por" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:250 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:241 msgid "Sort series in ascending order" msgstr "" @@ -14591,6 +14774,7 @@ msgstr "Nombre de la Fuente de Datos" msgid "Sparkline" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:978 msgid "Spatial" msgstr "Espacial" @@ -14599,23 +14783,23 @@ msgstr "Espacial" msgid "Specific Date/Time" msgstr "" -#: superset/views/database/forms.py:312 superset/views/database/forms.py:443 +#: superset/views/database/forms.py:322 superset/views/database/forms.py:453 msgid "Specify a schema (if database flavor supports this)." msgstr "Especifica un esquema (si el sistema de base de datos lo soporta)." -#: superset/views/database/forms.py:351 +#: superset/views/database/forms.py:361 msgid "Specify duplicate columns as \"X.0, X.1\"." msgstr "Especifica columnas duplicadas como \"X.0, X.1\"." -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:711 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:705 msgid "Specify name to CREATE TABLE AS schema in: public" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:710 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:704 msgid "Specify name to CREATE VIEW AS schema in: public" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:515 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:551 msgid "" "Specify the database version. This should be used with Presto in order to" " enable query cost estimation." @@ -14641,7 +14825,7 @@ msgstr "Parámetros" msgid "Square miles" msgstr "Series" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 #, fuzzy msgid "Stack" msgstr "Backend" @@ -14656,7 +14840,7 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:161 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:115 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:128 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:125 msgid "Stack series on top of each other" msgstr "" @@ -14677,7 +14861,7 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:124 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:121 #: superset-frontend/src/explore/fixtures.tsx:58 msgid "Stacked Style" msgstr "" @@ -14752,7 +14936,7 @@ msgstr "Estado" msgid "State" msgstr "Estado" -#: superset/sql_lab.py:511 +#: superset/sql_lab.py:503 #, python-format msgid "Statement %(statement_num)s out of %(statement_count)s" msgstr "" @@ -14810,21 +14994,21 @@ msgstr "" " de datos. Una tabla de paso es útil cuando se quieren mostrar los " "cambios ocurridos en intervalos regulares." -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:47 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:46 #: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 msgid "Stop" msgstr "Detener" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:337 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:339 msgid "Stop query" msgstr "Detener consulta" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:116 #, fuzzy msgid "Stop running (Ctrl + e)" msgstr "Detener (Ctrl + x)" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:114 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 msgid "Stop running (Ctrl + x)" msgstr "Detener (Ctrl + x)" @@ -14832,7 +15016,7 @@ msgstr "Detener (Ctrl + x)" msgid "Stopped an unsafe database connection" msgstr "Se ha detenido una conexión insegura a la base de datos" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 #, fuzzy msgid "Stream" msgstr "Histograma" @@ -14852,7 +15036,7 @@ msgstr "" msgid "Stretched style" msgstr "Obtenido %s" -#: superset/views/database/forms.py:299 +#: superset/views/database/forms.py:309 msgid "Strings used for sheet names (default is the first sheet)." msgstr "Cadenas usadas para nombres de hojas (por defecto es la primera hoja)." @@ -14884,11 +15068,11 @@ msgstr "Estilo" msgid "Style the ends of the progress bar with a round cap" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:56 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 msgid "Subdomain" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 #, fuzzy msgid "Subheader" msgstr "Encabezado" @@ -14901,8 +15085,8 @@ msgstr "" msgid "Submit" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:472 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:678 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 #: superset/charts/post_processing.py:161 #: superset/charts/post_processing.py:178 msgid "Subtotal" @@ -14914,7 +15098,7 @@ msgstr "" msgid "Success" msgstr "Éxito" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:193 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 #, fuzzy msgid "Successfully changed dataset!" msgstr "Cambiar fuente" @@ -14949,7 +15133,7 @@ msgstr "" msgid "Sum values" msgstr "Valores Nulos" -#: superset/viz.py:1888 +#: superset/viz.py:1805 msgid "Sunburst" msgstr "" @@ -14977,7 +15161,7 @@ msgid "Superset Embedded SDK documentation." msgstr "" #: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:470 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:473 msgid "Superset chart" msgstr "Gráfico Superset" @@ -14995,7 +15179,7 @@ msgstr "La alerta encontró un error al ejecutar una consulta." msgid "Superset encountered an unexpected error." msgstr "Error inesperado del informe programado" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:920 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 #, fuzzy msgid "Supported databases" msgstr "Eliminar base de datos" @@ -15004,11 +15188,7 @@ msgstr "Eliminar base de datos" msgid "Survey Responses" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:101 -msgid "Swap Groups and Columns" -msgstr "" - -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:254 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:311 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:435 #, fuzzy @@ -15059,6 +15239,11 @@ msgstr "Sincronizar las columnas desde la fuente" msgid "Syntax" msgstr "" +#: superset/db_engine_specs/ocient.py:282 +#, python-format +msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +msgstr "" + #: superset-frontend/src/pages/QueryHistoryList/index.tsx:268 #: superset-frontend/src/pages/SavedQueryList/index.tsx:315 msgid "TABLES" @@ -15092,36 +15277,36 @@ msgstr "Nombre de la pestaña" msgid "Tab title" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:26 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 -#: superset-frontend/src/components/TableSelector/index.tsx:290 +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 +#: superset-frontend/src/components/TableSelector/index.tsx:279 #: superset-frontend/src/visualizations/TimeTable/index.ts:26 -#: superset/connectors/sqla/views.py:160 superset/connectors/sqla/views.py:255 -#: superset/connectors/sqla/views.py:477 superset/views/chart/mixin.py:86 +#: superset/connectors/sqla/views.py:159 superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:384 superset/views/chart/mixin.py:86 msgid "Table" msgstr "Tabla" -#: superset/views/core.py:1740 +#: superset/views/core.py:1775 #, python-format msgid "Table %(table)s wasn't found in the database %(db)s" msgstr "La tabla %(table)s no fue encontrada en la base de datos %(db)s" -#: superset/views/database/forms.py:317 superset/views/database/forms.py:448 +#: superset/views/database/forms.py:327 superset/views/database/forms.py:458 msgid "Table Exists" msgstr "Tabla Existe" -#: superset/connectors/sqla/views.py:487 superset/views/database/forms.py:128 -#: superset/views/database/forms.py:269 superset/views/database/forms.py:405 +#: superset/connectors/sqla/views.py:394 superset/views/database/forms.py:128 +#: superset/views/database/forms.py:279 superset/views/database/forms.py:415 msgid "Table Name" msgstr "Nombre Tabla" -#: superset/viz.py:698 +#: superset/viz.py:722 msgid "Table View" msgstr "Vista de Tabla" -#: superset/datasets/commands/exceptions.py:130 +#: superset/datasets/commands/exceptions.py:147 #, python-format msgid "" "Table [%(table_name)s] could not be found, please double check your " @@ -15134,7 +15319,7 @@ msgid "" "connection, schema, and table name, error: {}" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:268 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:278 #, fuzzy msgid "Table cache timeout" msgstr "Tiempo de espera de caché" @@ -15149,8 +15334,8 @@ msgstr "Columna de Tiempo" msgid "Table loading" msgstr "Orden Descendente" -#: superset/views/database/forms.py:132 superset/views/database/forms.py:273 -#: superset/views/database/forms.py:409 +#: superset/views/database/forms.py:132 superset/views/database/forms.py:283 +#: superset/views/database/forms.py:419 msgid "Table name cannot contain a schema" msgstr "" @@ -15158,15 +15343,22 @@ msgstr "" msgid "Table name undefined" msgstr "Nombre de tabla indefinido" +#: superset/db_engine_specs/ocient.py:287 +#, fuzzy, python-format +msgid "Table or View \"%(table)s\" does not exist." +msgstr "La métrica '%(metric)s' no existe" + #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 msgid "" "Table that visualizes paired t-tests, which are used to understand " "statistical differences between groups." msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:384 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:393 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:287 #: superset-frontend/src/pages/SavedQueryList/index.tsx:334 -#: superset/connectors/sqla/views.py:363 superset/connectors/sqla/views.py:384 +#: superset/connectors/sqla/views.py:291 msgid "Tables" msgstr "Tablas" @@ -15217,7 +15409,7 @@ msgstr "El conjunto de datos no pudo ser eliminado." #: superset-frontend/src/pages/SavedQueryList/index.tsx:382 #: superset-frontend/src/pages/SavedQueryList/index.tsx:487 #: superset-frontend/src/pages/Tags/index.tsx:279 -#: superset/initialization/__init__.py:384 +#: superset/initialization/__init__.py:378 #, fuzzy msgid "Tags" msgstr "Estado" @@ -15248,7 +15440,7 @@ msgstr "" msgid "Target category" msgstr "Iniciar en" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:173 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 #, fuzzy msgid "Target value" msgstr "Iniciar en" @@ -15259,7 +15451,7 @@ msgstr "Nombre Plantilla" #: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:962 -#: superset/connectors/sqla/views.py:493 +#: superset/connectors/sqla/views.py:400 msgid "Template parameters" msgstr "Parametros de plantilla" @@ -15269,7 +15461,7 @@ msgid "" "coming from the controls." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:317 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:327 msgid "" "Terminate running queries when browser window closed or navigated to " "another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " @@ -15294,7 +15486,7 @@ msgstr "Siguiente" msgid "Text align" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:248 +#: superset-frontend/src/components/ReportModal/index.tsx:247 msgid "Text embedded in email" msgstr "" @@ -15341,7 +15533,7 @@ msgid "" " the filters list?" msgstr "" -#: superset/views/core.py:372 +#: superset/views/core.py:373 msgid "The access requests seem to have been deleted" msgstr "Las solicitudes de acceso parecen haber sido eliminadas" @@ -15361,12 +15553,12 @@ msgid "" "associated with more than one category, only the first will be used." msgstr "" -#: superset/common/query_context_processor.py:586 +#: superset/common/query_context_processor.py:585 #, fuzzy msgid "The chart datasource does not exist" msgstr "La base de datos no existe" -#: superset/common/query_context_processor.py:584 +#: superset/common/query_context_processor.py:583 #, fuzzy msgid "The chart does not exist" msgstr "La base de datos no existe" @@ -15421,7 +15613,7 @@ msgstr "El dashboard ha sido guardado" msgid "The data source seems to have been deleted" msgstr "La fuente de datos parece haber sido eliminada" -#: superset/connectors/sqla/views.py:115 +#: superset/connectors/sqla/views.py:114 msgid "" "The data type that was inferred by the database. It may be necessary to " "input a type manually for expression-defined columns in some cases. In " @@ -15432,7 +15624,7 @@ msgstr "" "expresión. En la mayoría de los casos, los usuarios no deberían necesitar" " alterar esto." -#: superset-frontend/src/pages/DatabaseList/index.tsx:515 +#: superset-frontend/src/pages/DatabaseList/index.tsx:529 #, fuzzy, python-format msgid "" "The database %s is linked to %s charts that appear on %s dashboards and " @@ -15478,12 +15670,12 @@ msgstr "Issue 1002 - La base de datos devolvió un error inesperado." msgid "The database was deleted." msgstr "La base de datos no han podido ser eliminada." -#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2002 +#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2039 #, fuzzy msgid "The database was not found." msgstr "La base de datos no existe" -#: superset-frontend/src/pages/DatasetList/index.tsx:710 +#: superset-frontend/src/pages/DatasetList/index.tsx:724 #, python-format msgid "" "The dataset %s is linked to %s charts that appear on %s dashboards. Are " @@ -15495,11 +15687,11 @@ msgstr "" "datos romperá esos objetos." #: superset-frontend/src/components/Chart/Chart.jsx:88 -#: superset/views/utils.py:274 +#: superset/views/utils.py:272 msgid "The dataset associated with this chart no longer exists" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:168 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:210 msgid "" "The dataset configuration exposed here\n" " affects all the charts using this dataset.\n" @@ -15508,7 +15700,7 @@ msgid "" " in undesirable ways." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:129 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:164 #: superset-frontend/src/pages/ChartCreation/index.tsx:261 msgid "The dataset has been saved" msgstr "" @@ -15518,7 +15710,7 @@ msgstr "" msgid "The dataset linked to this chart may have been deleted." msgstr "La fuente de datos parece haber sido eliminada" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1496 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1488 msgid "The datasource couldn't be loaded" msgstr "No se pudo cargar la fuente de datos" @@ -15533,7 +15725,7 @@ msgid "" " Supports markdown." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:104 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 msgid "The distance between cells, in pixels" msgstr "" @@ -15548,7 +15740,7 @@ msgstr "" msgid "The encoding format of the lines" msgstr "Métrica con la cual ordenar los resultados." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:495 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:531 #, fuzzy msgid "" "The engine_params object gets unpacked into the sqlalchemy.create_engine " @@ -15565,6 +15757,7 @@ msgid "" "%(columns)s. " msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:111 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:67 msgid "The function to use when aggregating points into groups" msgstr "" @@ -15575,9 +15768,9 @@ msgid "The host \"%(hostname)s\" might be down and can't be reached." msgstr "" #: superset/db_engine_specs/mssql.py:103 -#: superset/db_engine_specs/postgres.py:140 -#: superset/db_engine_specs/presto.py:664 -#: superset/db_engine_specs/redshift.py:82 +#: superset/db_engine_specs/postgres.py:139 +#: superset/db_engine_specs/presto.py:691 +#: superset/db_engine_specs/redshift.py:86 #, python-format msgid "" "The host \"%(hostname)s\" might be down, and can't be reached on port " @@ -15589,9 +15782,9 @@ msgid "The host might be down, and can't be reached on the provided port." msgstr "" #: superset/db_engine_specs/mssql.py:93 -#: superset/db_engine_specs/postgres.py:130 -#: superset/db_engine_specs/presto.py:659 -#: superset/db_engine_specs/redshift.py:72 +#: superset/db_engine_specs/postgres.py:129 +#: superset/db_engine_specs/presto.py:686 +#: superset/db_engine_specs/redshift.py:76 #, python-format msgid "The hostname \"%(hostname)s\" cannot be resolved." msgstr "" @@ -15605,7 +15798,7 @@ msgstr "" msgid "The id of the active chart" msgstr "El id del gráfico activo" -#: superset/connectors/sqla/views.py:418 +#: superset/connectors/sqla/views.py:325 msgid "" "The list of charts associated with this table. By altering this " "datasource, you may change how these associated charts behave. Also note " @@ -15642,7 +15835,7 @@ msgid "" "%{key}s is invalid." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:469 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:505 msgid "" "The metadata_params object gets unpacked into the sqlalchemy.MetaData " "call." @@ -15667,7 +15860,7 @@ msgstr "" "puntos de datos mostrados sean el total de 7 períodos. Esto ocultará el " "\"incremento\" que tendrá lugar durante los primeros 7 períodos." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:130 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 msgid "The number color \"steps\"" msgstr "" @@ -15677,7 +15870,7 @@ msgid "" " can be used to move UTC time to local time." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:308 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:301 #, python-format msgid "" "The number of results displayed is limited to %(rows)d by the " @@ -15685,7 +15878,7 @@ msgid "" "download to csv to see more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:314 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:307 #, python-format msgid "" "The number of results displayed is limited to %(rows)d. Please add " @@ -15693,22 +15886,22 @@ msgid "" "more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:365 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:358 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the dropdown." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:334 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:326 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:319 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the query" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:339 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:332 #, python-format msgid "" "The number of rows displayed is limited to %(rows)d by the query and " @@ -15725,14 +15918,14 @@ msgstr "El número de segundos antes de caducar el caché." msgid "The object does not exist in the given database." msgstr "Nombre de la tabla que existe en la fuente de datos." -#: superset/sqllab/query_render.py:96 +#: superset/sqllab/query_render.py:94 #, python-format msgid "The parameter %(parameters)s in your query is undefined." msgid_plural "The following parameters in your query are undefined: %(parameters)s." msgstr[0] "" msgstr[1] "" -#: superset/db_engine_specs/postgres.py:120 +#: superset/db_engine_specs/postgres.py:119 #, python-format msgid "The password provided for username \"%(username)s\" is incorrect." msgstr "" @@ -15788,7 +15981,7 @@ msgstr "" " base de datos no están presentes en los archivos de exportación, y que " "deben añadirse manualmente después de la importación si se necesitan." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1284 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1339 msgid "" "The passwords for the databases below are needed in order to import them." " Please note that the \"Secure Extra\" and \"Certificate\" sections of " @@ -15808,7 +16001,7 @@ msgid "" "\"freq\" expressions." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 msgid "The pixel radius" msgstr "" @@ -15835,7 +16028,7 @@ msgstr "Los parametros del Gráfico son invalidos" msgid "The primary metric is used to define the arc segment sizes" msgstr "Métrica utilizada para definir la serie superior." -#: superset/views/core.py:2212 +#: superset/views/core.py:2248 msgid "The provided `rows` argument is not a valid integer." msgstr "" @@ -15844,13 +16037,13 @@ msgid "The query associated with the results was deleted." msgstr "" #: superset/sqllab/commands/export.py:63 superset/sqllab/commands/results.py:91 -#: superset/views/core.py:2162 +#: superset/views/core.py:2198 msgid "" "The query associated with these results could not be found. You need to " "re-run the original query." msgstr "" -#: superset/sqllab/query_render.py:117 +#: superset/sqllab/query_render.py:115 msgid "The query contains one or more malformed template parameters." msgstr "" @@ -15869,11 +16062,11 @@ msgstr "" msgid "The query has a syntax error." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:519 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:512 msgid "The query returned no data" msgstr "La consulta no arrojó resultados" -#: superset/sql_lab.py:301 +#: superset/sql_lab.py:297 #, python-format msgid "" "The query was killed after %(sqllab_timeout)s seconds. It might be too " @@ -15915,14 +16108,14 @@ msgstr "" msgid "The rich tooltip shows a list of all series for that point in time" msgstr "" -#: superset/db_engine_specs/bigquery.py:202 +#: superset/db_engine_specs/bigquery.py:203 #, python-format msgid "" "The schema \"%(schema)s\" does not exist. A valid schema must be used to " "run this query." msgstr "" -#: superset/db_engine_specs/presto.py:646 +#: superset/db_engine_specs/presto.py:673 #, python-format msgid "" "The schema \"%(schema_name)s\" does not exist. A valid schema must be " @@ -15934,11 +16127,12 @@ msgstr "" msgid "The schema was deleted or renamed in the database." msgstr "Issue 1004 - La columna fue eliminada o renombrada en la base de datos." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:92 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 msgid "The size of the square cell, in pixels" msgstr "" -#: superset/views/datasource/views.py:88 +#: superset/datasets/commands/exceptions.py:72 +#: superset/views/datasource/views.py:90 msgid "" "The submitted URL is not considered safe, only use URLs with the same " "domain as Superset." @@ -15952,21 +16146,21 @@ msgstr "" msgid "The submitted payload has the incorrect schema." msgstr "" -#: superset/db_engine_specs/bigquery.py:189 +#: superset/db_engine_specs/bigquery.py:190 #, python-format msgid "" "The table \"%(table)s\" does not exist. A valid table must be used to run" " this query." msgstr "" -#: superset/db_engine_specs/presto.py:638 +#: superset/db_engine_specs/presto.py:665 #, python-format msgid "" "The table \"%(table_name)s\" does not exist. A valid table must be used " "to run this query." msgstr "" -#: superset/connectors/sqla/views.py:515 +#: superset/connectors/sqla/views.py:422 msgid "" "The table was created. As part of this two-phase configuration process, " "you should now click the edit button by the new table to configure it." @@ -16029,13 +16223,13 @@ msgid "" " the start and/or end time." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 msgid "" "The time unit for each block. Should be a smaller unit than " "domain_granularity. Should be larger or equal to Time Grain" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 msgid "The time unit used for the grouping of blocks" msgstr "" @@ -16053,7 +16247,12 @@ msgstr "" msgid "The user seems to have been deleted" msgstr "El usuario parece haber sido eliminado" -#: superset/db_engine_specs/postgres.py:115 +#: superset/db_engine_specs/ocient.py:251 +msgid "The user/password combination is not valid (Incorrect password for user)." +msgstr "" + +#: superset/db_engine_specs/ocient.py:246 +#: superset/db_engine_specs/postgres.py:114 #, fuzzy, python-format msgid "The username \"%(username)s\" does not exist." msgstr "La métrica '%(metric)s' no existe" @@ -16081,16 +16280,16 @@ msgstr "El id del gráfico activo" msgid "There are associated alerts or reports" msgstr "Hay alertas o informes asociados" -#: superset/charts/commands/bulk_delete.py:62 -#: superset/charts/commands/delete.py:71 -#: superset/dashboards/commands/bulk_delete.py:63 -#: superset/dashboards/commands/delete.py:64 -#: superset/databases/commands/delete.py:63 +#: superset/charts/commands/bulk_delete.py:61 +#: superset/charts/commands/delete.py:70 +#: superset/dashboards/commands/bulk_delete.py:62 +#: superset/dashboards/commands/delete.py:63 +#: superset/databases/commands/delete.py:62 #, python-format msgid "There are associated alerts or reports: %s," msgstr "Hay alertas o informes asociados: %s," -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:710 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:711 #, fuzzy msgid "There are no charts added to this dashboard" msgstr "No hay filtros en este dashboard" @@ -16152,7 +16351,7 @@ msgstr "" msgid "There was an error fetching tables" msgstr "Hubo un error con tu solicitud" -#: superset-frontend/src/views/CRUD/hooks.ts:589 +#: superset-frontend/src/views/CRUD/hooks.ts:593 #, fuzzy, python-format msgid "There was an error fetching the favorite status: %s" msgstr "Hubo un problema al eliminar las plantillas seleccionadas: %s" @@ -16161,22 +16360,27 @@ msgstr "Hubo un problema al eliminar las plantillas seleccionadas: %s" msgid "There was an error fetching your recent activity:" msgstr "Hubo un error al obtener tu actividad reciente:" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:450 +#, fuzzy +msgid "There was an error loading the chart data" +msgstr "Hubo un error con tu solicitud" + #: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 #, fuzzy msgid "There was an error loading the dataset metadata" msgstr "Hubo un error con tu solicitud" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:241 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:240 #, fuzzy msgid "There was an error loading the schemas" msgstr "Hubo un error con tu solicitud" -#: superset-frontend/src/components/TableSelector/index.tsx:194 +#: superset-frontend/src/components/TableSelector/index.tsx:191 #, fuzzy msgid "There was an error loading the tables" msgstr "Hubo un error con tu solicitud" -#: superset-frontend/src/views/CRUD/hooks.ts:612 +#: superset-frontend/src/views/CRUD/hooks.ts:616 #, fuzzy, python-format msgid "There was an error saving the favorite status: %s" msgstr "Hubo un problema al eliminar las plantillas seleccionadas: %s" @@ -16190,14 +16394,20 @@ msgstr "Hubo un error con tu solicitud" #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 #: superset-frontend/src/pages/AnnotationList/index.tsx:121 #: superset-frontend/src/pages/CssTemplateList/index.tsx:97 -#: superset-frontend/src/pages/DatabaseList/index.tsx:167 -#: superset-frontend/src/pages/DatasetList/index.tsx:657 +#: superset-frontend/src/pages/DatabaseList/index.tsx:178 +#: superset-frontend/src/pages/DatasetList/index.tsx:668 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:97 #: superset-frontend/src/pages/SavedQueryList/index.tsx:245 #: superset-frontend/src/views/CRUD/utils.tsx:315 #, python-format msgid "There was an issue deleting %s: %s" msgstr "Hubo un problema al eliminar %s: %s" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:111 +#, fuzzy, python-format +msgid "There was an issue deleting rules: %s" +msgstr "Hubo un problema al eliminar %s: %s" + #: superset-frontend/src/pages/AlertReportList/index.tsx:201 #, python-format msgid "There was an issue deleting the selected %s: %s" @@ -16217,7 +16427,7 @@ msgstr "Hubo un problema al eliminar los gráficos seleccionados: %s" msgid "There was an issue deleting the selected dashboards: " msgstr "Hubo un problema al eliminar los dashboards seleccionados: " -#: superset-frontend/src/pages/DatasetList/index.tsx:675 +#: superset-frontend/src/pages/DatasetList/index.tsx:686 #, python-format msgid "There was an issue deleting the selected datasets: %s" msgstr "Hubo un problema al eliminar los conjuntos de datos seleccionados: %s" @@ -16242,17 +16452,17 @@ msgstr "Hubo un problema al eliminar las plantillas seleccionadas: %s" msgid "There was an issue deleting: %s" msgstr "Hubo un problema al eliminar: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:683 +#: superset-frontend/src/pages/DatasetList/index.tsx:694 #, fuzzy msgid "There was an issue duplicating the dataset." msgstr "Hubo un problema al eliminar los conjuntos de datos seleccionados: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:699 +#: superset-frontend/src/pages/DatasetList/index.tsx:710 #, fuzzy, python-format msgid "There was an issue duplicating the selected datasets: %s" msgstr "Hubo un problema al eliminar los conjuntos de datos seleccionados: %s" -#: superset-frontend/src/dashboard/actions/dashboardState.js:129 +#: superset-frontend/src/dashboard/actions/dashboardState.js:127 msgid "There was an issue favoriting this dashboard." msgstr "" @@ -16261,7 +16471,7 @@ msgstr "" msgid "There was an issue fetching reports attached to this dashboard." msgstr "Hubo un problema al eliminar los dashboards seleccionados: " -#: superset-frontend/src/dashboard/actions/dashboardState.js:104 +#: superset-frontend/src/dashboard/actions/dashboardState.js:103 msgid "There was an issue fetching the favorite status of this dashboard." msgstr "" @@ -16295,7 +16505,7 @@ msgstr "Ocurrió un problema al previsualizar la consulta seleccionada %s" msgid "There was an issue previewing the selected query. %s" msgstr "Hubo un problema al previsualizar la consulta seleccionada. %s" -#: superset/viz.py:1992 +#: superset/viz.py:1915 msgid "" "There's a loop in your Sankey, please provide a tree. Here's a faulty " "link: {}" @@ -16303,7 +16513,7 @@ msgstr "" "Hay un bucle en tu Sankey, por favor proporciona un árbol. Aquí hay un " "enlace defectuoso: {}" -#: superset/connectors/sqla/views.py:335 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:386 msgid "These are the tables this filter will be applied to." msgstr "Estas son las tablas a las que se aplicará este filtro." @@ -16360,10 +16570,10 @@ msgid "" "mydatabase.com)." msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:244 +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:245 msgid "" -"This chart emits/applies cross-filters to other charts that use the same " -"dataset" +"This chart applies cross-filters to charts whose datasets contain columns" +" with the same name." msgstr "" #: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 @@ -16378,7 +16588,7 @@ msgstr "" msgid "This chart might be incompatible with the filter (datasets don't match)" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:322 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 msgid "" "This chart type is not supported when using an unsaved query as a chart " "source. " @@ -16390,7 +16600,7 @@ msgid "" " Check the JSON metadata in the Advanced settings" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:121 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:113 msgid "This column might be incompatible with current dataset" msgstr "" @@ -16441,12 +16651,12 @@ msgstr "" "Este dashboard no es público, no serávisible en la lista de dashboards, " "Haz click aqui para publicarlo." -#: superset-frontend/src/dashboard/actions/dashboardState.js:154 +#: superset-frontend/src/dashboard/actions/dashboardState.js:152 #, fuzzy msgid "This dashboard is now hidden" msgstr "Cambiar este Dashboard está prohibido" -#: superset-frontend/src/dashboard/actions/dashboardState.js:153 +#: superset-frontend/src/dashboard/actions/dashboardState.js:151 #, fuzzy msgid "This dashboard is now published" msgstr "Cambiar este Dashboard está prohibido" @@ -16461,18 +16671,18 @@ msgid "" " id to the SDK:" msgstr "" -#: superset/views/core.py:1319 +#: superset/views/core.py:1353 msgid "" "This dashboard was changed recently. Please reload dashboard to get " "latest version." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:311 -#: superset-frontend/src/dashboard/actions/dashboardState.js:350 +#: superset-frontend/src/dashboard/actions/dashboardState.js:313 +#: superset-frontend/src/dashboard/actions/dashboardState.js:352 msgid "This dashboard was saved successfully." msgstr "Este Dashboard se guardó con éxito." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1119 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1174 msgid "This database is managed externally, and can't be edited in Superset" msgstr "" @@ -16482,7 +16692,7 @@ msgid "" "table." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:240 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:282 msgid "This dataset is managed externally, and can't be edited in Superset" msgstr "" @@ -16500,7 +16710,7 @@ msgstr "Esto define el elemento a trazar en el gráfico." msgid "This defines the level of the hierarchy" msgstr "Esto define el elemento a trazar en el gráfico." -#: superset/connectors/sqla/views.py:436 +#: superset/connectors/sqla/views.py:343 msgid "" "This fields acts a Superset view, meaning that Superset will run a query " "against this string as a subquery." @@ -16525,7 +16735,7 @@ msgstr "" msgid "This functionality is disabled in your environment for security reasons." msgstr "" -#: superset/connectors/sqla/views.py:352 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:456 msgid "" "This is the condition that will be added to the WHERE clause. For " "example, to only return rows for a particular client, you might define a " @@ -16558,7 +16768,7 @@ msgstr "" msgid "This may be triggered by:" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:258 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:256 msgid "This metric might be incompatible with current dataset" msgstr "" @@ -16601,15 +16811,15 @@ msgid "" "associate one dataset with a table.\n" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:85 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 msgid "This value should be greater than the left target value" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:80 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 msgid "This value should be smaller than the right target value" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:141 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:171 #, fuzzy msgid "This visualization type does not support cross-filtering." msgstr "Esta visualización no está soportada." @@ -16647,6 +16857,7 @@ msgstr "Jueves" #: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:38 #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 @@ -16678,7 +16889,7 @@ msgstr "Columna de Tiempo" msgid "Time Comparison" msgstr "Columna de Tiempo" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:141 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 #, fuzzy msgid "Time Format" msgstr "Formato Fecha/Hora" @@ -16715,39 +16926,39 @@ msgstr "Granularidad Temporal" msgid "Time Series" msgstr "Columna de Tiempo" -#: superset/viz.py:1670 +#: superset/viz.py:1581 msgid "Time Series - Bar Chart" msgstr "Serie Temporal - Gráfico de Barras" -#: superset/viz.py:1596 +#: superset/viz.py:1504 msgid "Time Series - Dual Axis Line Chart" msgstr "Serie Temporal - Gráfico de líneas de doble eje" -#: superset/viz.py:1308 +#: superset/viz.py:1209 msgid "Time Series - Line Chart" msgstr "Serie Temporal - Gráfico de Líneas" -#: superset/viz.py:1518 +#: superset/viz.py:1424 msgid "Time Series - Multiple Line Charts" msgstr "Serie temportal - Gráfico de múltiples líneas" -#: superset/viz.py:3036 +#: superset/viz.py:3033 msgid "Time Series - Nightingale Rose Chart" msgstr "Serie Temporal - Gráfico de Nightingale Rose" -#: superset/viz.py:2965 +#: superset/viz.py:2961 msgid "Time Series - Paired t-test" msgstr "Serie Temporal - Prueba-T Emparejada" -#: superset/viz.py:1725 +#: superset/viz.py:1638 msgid "Time Series - Percent Change" msgstr "Serie Temporal - Cambio Porcentual" -#: superset/viz.py:1679 +#: superset/viz.py:1590 msgid "Time Series - Period Pivot" msgstr "Serie Temporal - Pivote de periodo" -#: superset/viz.py:1733 +#: superset/viz.py:1646 msgid "Time Series - Stacked" msgstr "Serie Temporal - Apiladas" @@ -16764,7 +16975,7 @@ msgstr "Columna de Tiempo" msgid "Time Shift" msgstr "Desplazamiento de tiempo" -#: superset/viz.py:849 +#: superset/viz.py:878 msgid "Time Table View" msgstr "Vista de Tabla Temporal" @@ -16775,7 +16986,7 @@ msgstr "Vista de Tabla Temporal" msgid "Time column" msgstr "Columna de Tiempo" -#: superset/connectors/sqla/models.py:1392 superset/models/helpers.py:1575 +#: superset/models/helpers.py:1659 #, python-format msgid "Time column \"%(col)s\" does not exist in dataset" msgstr "" @@ -16863,6 +17074,7 @@ msgid "Time ratio" msgstr "Granularidad Temporal" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 #: superset-frontend/src/explore/controlPanels/sections.tsx:66 msgid "Time related form attributes" msgstr "Atributos de formulario relacionados con el tiempo" @@ -17010,12 +17222,12 @@ msgstr "Error de timeout" msgid "Timestamp format" msgstr "Formato de fecha/hora inválido" -#: superset-frontend/src/components/ReportModal/index.tsx:326 +#: superset-frontend/src/components/ReportModal/index.tsx:325 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 msgid "Timezone" msgstr "" -#: superset/connectors/sqla/views.py:427 +#: superset/connectors/sqla/views.py:334 msgid "Timezone offset (in hours) for this datasource" msgstr "Desplazamiento de zona horaria (en horas) para esta fuente de datos" @@ -17061,34 +17273,30 @@ msgstr "Para filtrar por una métrica, usa la pestaña SQL Personalizado" msgid "To get a readable URL for your dashboard" msgstr "Para obtener una URL legible para tu panel de control" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:288 -#, fuzzy -msgid "Too many columns to filter" -msgstr "Uno o varios controles para pivotar como columnas" - #: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:27 #, fuzzy msgid "Tools" msgstr "Roles" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:216 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:213 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 msgid "Tooltip" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:201 #, fuzzy msgid "Tooltip sort by metric" msgstr "Filtrar por estado" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:191 #, fuzzy msgid "Tooltip time format" msgstr "Formato Fecha/Hora" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 #, fuzzy msgid "Top" @@ -17113,14 +17321,14 @@ msgstr "" msgid "Total (%(aggfunc)s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:497 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:562 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:784 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 #, python-format msgid "Total (%(aggregatorName)s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:230 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:68 #, fuzzy msgid "Total value" msgstr "Valores Nulos" @@ -17135,7 +17343,7 @@ msgstr "Totales" msgid "Totals" msgstr "Totales" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:411 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:404 msgid "Track job" msgstr "Seguir trabajo" @@ -17155,10 +17363,6 @@ msgstr "Transformable" msgid "Transparent" msgstr "Transparente" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:99 -msgid "Transpose Pivot" -msgstr "" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:238 msgid "Transpose pivot" msgstr "Transponer pivot" @@ -17178,7 +17382,7 @@ msgid "Tree orientation" msgstr "Eliminar anotación" #: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:60 -#: superset/viz.py:1035 +#: superset/viz.py:925 msgid "Treemap" msgstr "Mapa de Árbol" @@ -17252,7 +17456,7 @@ msgstr "" "Trunca la fecha especificada a la precisión establecida en el formato de " "fecha" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 msgid "Try applying different filters or ensuring your datasource has data" msgstr "" "Intente aplicar filtros diferentes o asegúrese de que la fuente de datos " @@ -17276,21 +17480,21 @@ msgstr "Martes" msgid "Tukey" msgstr "consulta" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:216 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:65 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:272 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:276 -#: superset-frontend/src/pages/DatasetList/index.tsx:343 -#: superset-frontend/src/pages/DatasetList/index.tsx:552 -#: superset/connectors/sqla/views.py:164 superset/connectors/sqla/views.py:253 +#: superset-frontend/src/pages/DatasetList/index.tsx:354 +#: superset-frontend/src/pages/DatasetList/index.tsx:563 +#: superset/connectors/sqla/views.py:163 superset/connectors/sqla/views.py:252 msgid "Type" msgstr "Tipo" #: superset-frontend/src/components/DeleteModal/index.tsx:92 #: superset-frontend/src/components/ImportModal/index.tsx:397 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1405 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1460 #, python-format msgid "Type \"%s\" to confirm" msgstr "Teclea \"%s\" para confirmar" @@ -17317,7 +17521,7 @@ msgstr "" msgid "Type of comparison, value difference or percentage" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:404 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:407 #, python-format msgid "Type or Select [%s]" msgstr "Escribe o Seleciona [%s]" @@ -17349,22 +17553,23 @@ msgstr "Parámetros de URL" msgid "URL slug" msgstr "nombre para URL" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:622 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:618 msgid "Unable to add a new tab to the backend. Please contact your administrator." msgstr "No se pueden añadir nueva pestaña al back-end. Contacte al administrador." -#: superset/db_engine_specs/presto.py:677 +#: superset/db_engine_specs/presto.py:704 #, python-format msgid "Unable to connect to catalog named \"%(catalog_name)s\"." msgstr "No se puede conectar al catálogo \"%(catalog_name)s\"." #: superset/db_engine_specs/mysql.py:165 -#: superset/db_engine_specs/postgres.py:148 +#: superset/db_engine_specs/postgres.py:147 +#: superset/db_engine_specs/starrocks.py:127 #, python-format msgid "Unable to connect to database \"%(database)s\"." msgstr "No se puede conectar a la Base de Datos: \"%(database)s\\ " -#: superset/db_engine_specs/bigquery.py:177 +#: superset/db_engine_specs/bigquery.py:178 msgid "" "Unable to connect. Verify that the following roles are set on the service" " account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " @@ -17372,10 +17577,18 @@ msgid "" "\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:218 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:216 msgid "Unable to create chart without a query id." msgstr "" +#: superset/key_value/exceptions.py:66 +msgid "Unable to decode value" +msgstr "" + +#: superset/key_value/exceptions.py:62 +msgid "Unable to encode value" +msgstr "" + #: superset/utils/date_parser.py:393 #, fuzzy, python-format msgid "Unable to find such a holiday: [%(holiday)s]" @@ -17387,19 +17600,19 @@ msgid "" "table." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:589 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:585 msgid "" "Unable to migrate query editor state to backend. Superset will retry " "later. Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:543 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:539 msgid "" "Unable to migrate query state to backend. Superset will retry later. " "Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:525 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:521 msgid "" "Unable to migrate table schema state to backend. Superset will retry " "later. Please contact your administrator if this problem persists." @@ -17409,14 +17622,14 @@ msgstr "" msgid "Unable to retrieve dashboard colors" msgstr "" -#: superset/views/database/views.py:275 +#: superset/views/database/views.py:278 #, python-format msgid "" "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" " database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset/views/database/views.py:553 +#: superset/views/database/views.py:556 #, python-format msgid "" "Unable to upload Columnar file \"%(filename)s\" to table " @@ -17424,14 +17637,14 @@ msgid "" "%(error_msg)s" msgstr "" -#: superset/views/database/views.py:412 +#: superset/views/database/views.py:415 #, python-format msgid "" "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " "in database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:93 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:92 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 msgid "Undefined" msgstr "Indefinido" @@ -17445,7 +17658,7 @@ msgstr "Ventana no definida para la operación de movimiento" msgid "Undo the action" msgstr "Probar Conexión" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:131 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:132 msgid "Undo?" msgstr "¿Deshacer?" @@ -17455,7 +17668,7 @@ msgid "Unexpected error" msgstr "Error inesperado" #: superset/databases/commands/exceptions.py:137 -#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1438 +#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1479 msgid "Unexpected error occurred, please check your logs for details" msgstr "" "Se ha producido un error inesperado, por favor verifique los registros " @@ -17466,7 +17679,7 @@ msgstr "" msgid "Unexpected error: " msgstr "Error inesperado: " -#: superset/views/api.py:109 +#: superset/views/api.py:108 #, fuzzy, python-format msgid "Unexpected time range: %s" msgstr "Error inesperado: " @@ -17481,7 +17694,7 @@ msgstr "Error desconocido" msgid "Unknown MySQL server host \"%(hostname)s\"." msgstr "Host desconocido de MySQL: \"%(hostname)s\"" -#: superset/db_engine_specs/presto.py:1319 +#: superset/db_engine_specs/presto.py:1342 msgid "Unknown Presto Error" msgstr "Error de Presto desconocido" @@ -17489,13 +17702,13 @@ msgstr "Error de Presto desconocido" msgid "Unknown Status" msgstr "EStado desconocido" -#: superset/connectors/sqla/models.py:1317 superset/models/helpers.py:1498 +#: superset/models/helpers.py:1582 #, python-format msgid "Unknown column used in orderby: %(col)s" msgstr "Columna desconocida utilizada al ordenar: %(col)s%" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:402 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:480 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:398 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:476 msgid "Unknown error" msgstr "Valor desconocido" @@ -17557,7 +17770,7 @@ msgstr "Consulta sin título" msgid "Untitled query" msgstr "Consulta sin título" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:223 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:222 msgid "Update" msgstr "Actualizar" @@ -17575,7 +17788,7 @@ msgstr "La actualización del gráfico ha sido detenida" msgid "Upload" msgstr "Subir" -#: superset-frontend/src/pages/DatabaseList/index.tsx:202 +#: superset-frontend/src/pages/DatabaseList/index.tsx:213 #, fuzzy msgid "Upload CSV" msgstr "Descargar como imagen" @@ -17595,7 +17808,7 @@ msgstr "Subir Credenciales" msgid "Upload Enabled" msgstr "Subir Excel" -#: superset-frontend/src/pages/DatabaseList/index.tsx:216 +#: superset-frontend/src/pages/DatabaseList/index.tsx:227 #, fuzzy msgid "Upload Excel file" msgstr "Subir Excel" @@ -17608,7 +17821,7 @@ msgstr "" msgid "Upload JSON file" msgstr "Subir un archivo JSON" -#: superset-frontend/src/pages/DatabaseList/index.tsx:209 +#: superset-frontend/src/pages/DatabaseList/index.tsx:220 #, fuzzy msgid "Upload columnar file" msgstr "Columna" @@ -17618,7 +17831,7 @@ msgstr "Columna" msgid "Upload columnar file to database" msgstr "Selecciona un archivo de Excel para ser cargado a una base de datos." -#: superset-frontend/src/pages/DatabaseList/index.tsx:199 +#: superset-frontend/src/pages/DatabaseList/index.tsx:210 #, fuzzy msgid "Upload file to database" msgstr "Editar Base de Datos" @@ -17633,7 +17846,7 @@ msgstr "Administrar" msgid "Use \"%(menuName)s\" menu instead." msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:36 +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 #, fuzzy, python-format msgid "Use %s to open in a new tab." msgstr "Consulta en nueva pestaña" @@ -17645,7 +17858,7 @@ msgstr "Consulta en nueva pestaña" msgid "Use Area Proportions" msgstr "Propiedades del Dashboard" -#: superset/views/database/forms.py:462 +#: superset/views/database/forms.py:472 #, fuzzy msgid "Use Columns" msgstr "%s columnas(s)" @@ -17662,9 +17875,9 @@ msgstr "Usar escala logarítimica para el Eje X" msgid "Use a log scale for the Y-axis" msgstr "Usar escala logarítimica para el Eje Y" -#: superset/db_engine_specs/base.py:1850 -#: superset/db_engine_specs/clickhouse.py:211 -#: superset/db_engine_specs/databricks.py:57 +#: superset/db_engine_specs/base.py:1889 +#: superset/db_engine_specs/clickhouse.py:216 +#: superset/db_engine_specs/databricks.py:58 msgid "Use an encrypted connection to the database" msgstr "Usar una conexión encriptada a la base de datos" @@ -17675,12 +17888,12 @@ msgid "" " Your chart must be one of these visualization types: [%s]" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:87 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 msgid "Use date formatting even when metric value is not a timestamp" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:217 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 msgid "Use legacy datasource editor" msgstr "Usar editor de datasource legado" @@ -17727,16 +17940,6 @@ msgid "" " from the pluginʼs package.json" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:28 -msgid "" -"Used to summarize a set of data by grouping together multiple statistics " -"along two axes. Examples: Sales numbers by region and month, tasks by " -"status and assignee, active users by age and location.\n" -"\n" -" This chart is being deprecated and we recommend checking out Pivot " -"Table V2 instead!" -msgstr "" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 msgid "" "Used to summarize a set of data by grouping together multiple statistics " @@ -17782,12 +17985,18 @@ msgstr "Ver consulta" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:133 #: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 -#: superset/db_engine_specs/base.py:1837 +#: superset/db_engine_specs/base.py:1868 #: superset/db_engine_specs/clickhouse.py:201 #, fuzzy msgid "Username" msgstr "Nombre de la consulta" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:27 +msgid "" +"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" +" of data" +msgstr "" + #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:45 msgid "" "Uses a gauge to showcase progress of a metric towards a target. The " @@ -17840,9 +18049,9 @@ msgstr "Formato de correo electrónico" msgid "Value is required" msgstr "Nombre es requerido" -#: superset/reports/schemas.py:186 superset/reports/schemas.py:192 -#: superset/reports/schemas.py:198 superset/reports/schemas.py:280 -#: superset/reports/schemas.py:286 superset/reports/schemas.py:293 +#: superset/reports/schemas.py:190 superset/reports/schemas.py:195 +#: superset/reports/schemas.py:200 superset/reports/schemas.py:291 +#: superset/reports/schemas.py:296 superset/reports/schemas.py:302 #, fuzzy msgid "Value must be greater than 0" msgstr "`row_offset` debe ser mayor o igual a 0" @@ -17866,16 +18075,16 @@ msgstr "" msgid "Vehicle Types" msgstr "" -#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:252 +#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:251 msgid "Verbose Name" msgstr "Nombre detallado" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:503 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:539 #: superset-frontend/src/features/home/RightMenu.tsx:501 msgid "Version" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:509 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:545 msgid "Version number" msgstr "" @@ -17886,7 +18095,7 @@ msgstr "" msgid "Vertical" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:162 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 msgid "Vertical (Left)" msgstr "" @@ -17916,7 +18125,7 @@ msgstr "Editar Base de Datos" msgid "View all charts" msgstr "Todos los gráficos" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:434 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 #, fuzzy msgid "View as table" msgstr "Ver ejemplos" @@ -17931,8 +18140,8 @@ msgstr "Ejecutar en Laboratiorio SQL" msgid "View keys & indexes (%s)" msgstr "Ver claves e índices (%s)" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:415 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:417 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:424 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:426 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:394 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:396 msgid "View query" @@ -17954,8 +18163,8 @@ msgstr "Visto" msgid "Viewport" msgstr "informe" -#: superset-frontend/src/pages/DatasetList/index.tsx:342 -#: superset-frontend/src/pages/DatasetList/index.tsx:559 +#: superset-frontend/src/pages/DatasetList/index.tsx:353 +#: superset-frontend/src/pages/DatasetList/index.tsx:570 msgid "Virtual" msgstr "" @@ -17963,21 +18172,21 @@ msgstr "" msgid "Virtual (SQL)" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:281 +#: superset-frontend/src/pages/DatasetList/index.tsx:292 msgid "Virtual dataset" msgstr "Conjunto de datos virtual" -#: superset/connectors/sqla/models.py:960 superset/connectors/sqla/utils.py:111 -#: superset/models/helpers.py:1036 +#: superset/connectors/sqla/models.py:921 superset/connectors/sqla/utils.py:110 +#: superset/models/helpers.py:1079 #, fuzzy msgid "Virtual dataset query cannot be empty" msgstr "La consulta de conjunto virtual debe ser de solo lectura" -#: superset/connectors/sqla/models.py:963 superset/models/helpers.py:1039 +#: superset/connectors/sqla/models.py:924 superset/models/helpers.py:1082 msgid "Virtual dataset query cannot consist of multiple statements" msgstr "La consulta de conjunto virtual no puede consistir de varias consultas" -#: superset/connectors/sqla/models.py:928 superset/models/helpers.py:1062 +#: superset/connectors/sqla/models.py:889 superset/models/helpers.py:1105 msgid "Virtual dataset query must be read-only" msgstr "La consulta de conjunto virtual debe ser de solo lectura" @@ -18106,7 +18315,7 @@ msgid "" "corresponds to higher frequency." msgstr "" -#: superset/viz.py:141 +#: superset/viz.py:140 msgid "Viz is missing a datasource" msgstr "Falta una fuente de datos" @@ -18118,22 +18327,22 @@ msgstr "Tipo" msgid "WED" msgstr "MIÉ" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:948 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1003 msgid "Want to add a new database?" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1246 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:216 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:214 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 #, fuzzy msgid "Warning" msgstr "Mensaje de Aviso" -#: superset/connectors/sqla/views.py:258 +#: superset/connectors/sqla/views.py:257 msgid "Warning Message" msgstr "Mensaje de Aviso" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:286 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 msgid "Warning!" msgstr "Mensaje de Aviso" @@ -18149,13 +18358,13 @@ msgstr "" msgid "Was unable to check your query" msgstr "Etiqueta para tu consulta" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1468 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1523 msgid "" "We are unable to connect to your database. Click \"See more\" for " "database-provided information that may help troubleshoot the issue." msgstr "" -#: superset/db_engine_specs/bigquery.py:197 +#: superset/db_engine_specs/bigquery.py:198 #, python-format msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." msgstr "" @@ -18165,8 +18374,8 @@ msgstr "" msgid "We can't seem to resolve the column \"%(column_name)s\"" msgstr "" -#: superset/db_engine_specs/postgres.py:153 -#: superset/db_engine_specs/presto.py:630 +#: superset/db_engine_specs/postgres.py:152 +#: superset/db_engine_specs/presto.py:657 #, python-format msgid "" "We can't seem to resolve the column \"%(column_name)s\" at line " @@ -18188,7 +18397,7 @@ msgid "" "dataset." msgstr "" -#: superset/db_engine_specs/redshift.py:90 +#: superset/db_engine_specs/redshift.py:94 #, python-format msgid "" "We were unable to connect to your database named \"%(database)s\". Please" @@ -18205,33 +18414,33 @@ msgstr "" msgid "Wednesday" msgstr "Miércoles" -#: superset/db_engine_specs/base.py:107 +#: superset/db_engine_specs/base.py:108 #, fuzzy msgid "Week" msgstr "semana" -#: superset/db_engine_specs/base.py:113 +#: superset/db_engine_specs/base.py:114 msgid "Week ending Saturday" msgstr "" -#: superset/db_engine_specs/base.py:112 +#: superset/db_engine_specs/base.py:113 msgid "Week starting Monday" msgstr "" -#: superset/db_engine_specs/base.py:111 +#: superset/db_engine_specs/base.py:112 msgid "Week starting Sunday" msgstr "" -#: superset/db_engine_specs/base.py:114 +#: superset/db_engine_specs/base.py:115 msgid "Week_ending Sunday" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:123 +#: superset-frontend/src/components/ReportModal/index.tsx:122 #, fuzzy msgid "Weekly Report" msgstr "informe" -#: superset-frontend/src/components/ReportModal/index.tsx:122 +#: superset-frontend/src/components/ReportModal/index.tsx:121 #, python-format msgid "Weekly Report for %s" msgstr "" @@ -18245,6 +18454,7 @@ msgstr "" msgid "Weeks %s" msgstr "semana" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:49 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:77 #, fuzzy @@ -18286,7 +18496,7 @@ msgstr[1] "" msgid "What should be shown on the label?" msgstr "" -#: superset/views/database/forms.py:165 +#: superset/views/database/forms.py:175 #, fuzzy msgid "What should happen if the table already exists" msgstr "La fuente de datos %(name)s ya existe" @@ -18314,7 +18524,7 @@ msgstr "" msgid "When checked, the map will zoom to your data after each query" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:189 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 msgid "When enabled, users are able to visualize SQL Lab results in Explore." msgstr "" @@ -18339,11 +18549,11 @@ msgid "" "relative time filter on a partitioned or indexed time-related field." msgstr "" -#: superset/viz.py:861 +#: superset/viz.py:891 msgid "When using 'Group By' you are limited to use a single metric" msgstr "Cuando usas 'Group By', estás limitado a una sola métrica" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:74 msgid "When using other than adaptive formatting, labels may overlap" msgstr "" @@ -18355,11 +18565,11 @@ msgstr "" msgid "Whether the progress bar overlaps when there are multiple groups of data" msgstr "" -#: superset/connectors/sqla/views.py:455 +#: superset/connectors/sqla/views.py:362 msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" msgstr "" -#: superset/connectors/sqla/views.py:111 +#: superset/connectors/sqla/views.py:110 msgid "" "Whether this column is exposed in the `Filters` section of the explore " "view." @@ -18403,7 +18613,7 @@ msgstr "" msgid "Whether to display a bar chart background in table columns" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 msgid "Whether to display a legend for the chart" msgstr "" @@ -18434,14 +18644,14 @@ msgid "" " 5% threshold." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:157 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:118 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:159 msgid "Whether to display the legend (toggles)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:181 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 msgid "Whether to display the metric name as a title" msgstr "" @@ -18454,7 +18664,7 @@ msgstr "" msgid "Whether to display the min and max values of the Y-axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:167 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:187 msgid "Whether to display the numerical values within the cells" @@ -18523,7 +18733,7 @@ msgstr "Métrica con la cual ordenar los resultados." msgid "Whether to make the histogram cumulative" msgstr "" -#: superset/connectors/sqla/views.py:106 +#: superset/connectors/sqla/views.py:105 msgid "" "Whether to make this column available as a [Time Granularity] option, " "column has to be DATETIME or DATETIME-like" @@ -18539,7 +18749,7 @@ msgstr "" msgid "Whether to populate autocomplete filters options" msgstr "" -#: superset/connectors/sqla/views.py:450 +#: superset/connectors/sqla/views.py:357 msgid "" "Whether to populate the filter's dropdown in the explore view's filter " "section with a list of distinct values fetched from the backend on the " @@ -18572,7 +18782,8 @@ msgstr "" msgid "Whether to show the split lines on the axis" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:124 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:143 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:174 #, fuzzy msgid "Whether to sort ascending or descending on the base Axis." msgstr "Ordenar descendente o ascendente" @@ -18604,7 +18815,7 @@ msgstr "Ordenar descendente o ascendente" msgid "Whether to sort results by the selected metric in descending order." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:207 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 msgid "Whether to sort tooltip by the selected metric in descending order." msgstr "" @@ -18672,7 +18883,7 @@ msgid "Working timeout" msgstr "Tiempo de espera" #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 -#: superset/viz.py:2079 +#: superset/viz.py:2006 msgid "World Map" msgstr "Mapa Mundial" @@ -18684,12 +18895,12 @@ msgstr "Escribe una descripción para tu consulta" msgid "Write a handlebars template to render the data" msgstr "" -#: superset/views/database/forms.py:219 +#: superset/views/database/forms.py:229 #, fuzzy msgid "Write dataframe index as a column" msgstr "Escribe el índice del dataframe como una columna." -#: superset/views/database/forms.py:380 superset/views/database/forms.py:471 +#: superset/views/database/forms.py:390 superset/views/database/forms.py:481 msgid "Write dataframe index as a column." msgstr "Escribe el índice del dataframe como una columna." @@ -18748,12 +18959,14 @@ msgstr "" msgid "X bounds" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:122 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:141 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:172 #, fuzzy msgid "X-Axis Sort Ascending" msgstr "Orden Descendente" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:69 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:156 msgid "X-Axis Sort By" msgstr "" @@ -18814,7 +19027,6 @@ msgid "Y Axis 2 Bounds" msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:260 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:248 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:192 @@ -18853,12 +19065,14 @@ msgstr "" msgid "Y bounds" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:121 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:140 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:171 #, fuzzy msgid "Y-Axis Sort Ascending" msgstr "Orden Descendente" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:68 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 msgid "Y-Axis Sort By" msgstr "" @@ -18876,7 +19090,7 @@ msgstr "" msgid "YScale Interval" msgstr "Intérvalo de actualización" -#: superset/db_engine_specs/base.py:110 +#: superset/db_engine_specs/base.py:111 #, fuzzy msgid "Year" msgstr "año" @@ -18902,9 +19116,9 @@ msgstr "año" #: superset-frontend/src/pages/ChartList/index.tsx:707 #: superset-frontend/src/pages/DashboardList/index.tsx:506 #: superset-frontend/src/pages/DashboardList/index.tsx:588 -#: superset-frontend/src/pages/DatabaseList/index.tsx:467 -#: superset-frontend/src/pages/DatabaseList/index.tsx:487 -#: superset-frontend/src/pages/DatasetList/index.tsx:572 +#: superset-frontend/src/pages/DatabaseList/index.tsx:478 +#: superset-frontend/src/pages/DatabaseList/index.tsx:498 +#: superset-frontend/src/pages/DatasetList/index.tsx:583 msgid "Yes" msgstr "Sí" @@ -18931,7 +19145,7 @@ msgid "" "overwrite?" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1394 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1449 msgid "" "You are importing one or more databases that already exist. Overwriting " "might cause you to lose some of your work. Are you sure you want to " @@ -18959,7 +19173,7 @@ msgstr "" "Sobreescribir puede causar que se pierdan algunos de sus trabajos. ¿Está " "seguro de que quiere sobrescribir?" -#: superset/views/core.py:2177 +#: superset/views/core.py:2213 msgid "" "You are not authorized to see this query. If you think this is an error, " "please reach out to your administrator." @@ -18978,7 +19192,7 @@ msgstr "" msgid "You can add the components in the edit mode." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:127 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:157 msgid "You can also just click on the chart to apply cross-filter." msgstr "" @@ -19001,7 +19215,7 @@ msgstr "" msgid "You can preview the list of dashboards in the chart settings dropdown." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:148 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:178 msgid "You can't apply cross-filter on this data point." msgstr "" @@ -19015,7 +19229,7 @@ msgstr "" msgid "You cannot use 45° tick layout along with the time range filter" msgstr "" -#: superset/viz.py:723 +#: superset/viz.py:748 msgid "" "You cannot use [Columns] in combination with [Group " "By]/[Metrics]/[Percentage Metrics]. Please choose one or the other." @@ -19033,7 +19247,7 @@ msgid "You do not have permission to edit this chart" msgstr "No tienes permiso para aprobar esta solicitud." #: superset-frontend/src/components/Tags/utils.tsx:69 -#: superset-frontend/src/dashboard/actions/dashboardState.js:366 +#: superset-frontend/src/dashboard/actions/dashboardState.js:368 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:134 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:40 @@ -19045,7 +19259,7 @@ msgstr "No tienes permiso para acceder a la(s) fuente(s) de datos: %(name)s." msgid "You do not have permissions to access the datasource(s): %(name)s." msgstr "No tienes permiso para acceder a la(s) fuente(s) de datos: %(name)s." -#: superset-frontend/src/dashboard/actions/dashboardState.js:162 +#: superset-frontend/src/dashboard/actions/dashboardState.js:160 msgid "You do not have permissions to edit this dashboard." msgstr "" @@ -19059,7 +19273,7 @@ msgstr "No tienes permiso para acceder a la(s) fuente(s) de datos: %(name)s." msgid "You don't have access to this dashboard." msgstr "No tienes permiso para acceder a la(s) fuente(s) de datos: %(name)s." -#: superset/datasets/commands/exceptions.py:189 +#: superset/datasets/commands/exceptions.py:206 #, fuzzy msgid "You don't have access to this dataset." msgstr "No tienes permiso para acceder a la(s) fuente(s) de datos: %(name)s." @@ -19079,17 +19293,17 @@ msgstr "¡Aún no tienes favoritos!" msgid "You don't have permission to modify the value." msgstr "No tienes permiso para aprobar esta solicitud." -#: superset/security/manager.py:2267 +#: superset/security/manager.py:2262 #, fuzzy, python-format msgid "You don't have the rights to alter %(resource)s" msgstr "No tienes los derechos para alterar este título." -#: superset/views/core.py:923 +#: superset/views/core.py:945 #, fuzzy msgid "You don't have the rights to alter this chart" msgstr "No tienes los derechos para alterar este título." -#: superset/views/core.py:1097 +#: superset/views/core.py:1119 #, fuzzy msgid "You don't have the rights to alter this dashboard" msgstr "No tienes los derechos para alterar este título." @@ -19098,22 +19312,22 @@ msgstr "No tienes los derechos para alterar este título." msgid "You don't have the rights to alter this title." msgstr "No tienes los derechos para alterar este título." -#: superset/views/core.py:929 +#: superset/views/core.py:951 #, fuzzy msgid "You don't have the rights to create a chart" msgstr "No tienes los permisos para " -#: superset/views/core.py:1113 +#: superset/views/core.py:1135 #, fuzzy msgid "You don't have the rights to create a dashboard" msgstr "No tienes los permisos para " -#: superset/views/core.py:644 +#: superset/views/core.py:649 #, fuzzy msgid "You don't have the rights to download as csv" msgstr "No tienes los permisos para " -#: superset/views/core.py:424 +#: superset/views/core.py:425 msgid "You have no permission to approve this request" msgstr "No tienes permiso para aprobar esta solicitud." @@ -19125,7 +19339,7 @@ msgstr "Has eliminado este filtro." msgid "You have unsaved changes." msgstr "Tienes cambios no guardados." -#: superset-frontend/src/dashboard/actions/dashboardState.js:652 +#: superset-frontend/src/dashboard/actions/dashboardState.js:650 #, python-format msgid "" "You have used all %(historyLength)s undo slots and will not be able to " @@ -19134,7 +19348,7 @@ msgid "" msgstr "" #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:300 -#: superset-frontend/src/pages/DatasetList/index.tsx:453 +#: superset-frontend/src/pages/DatasetList/index.tsx:464 msgid "" "You must be a dataset owner in order to edit. Please reach out to a " "dataset owner to request modifications or edit access." @@ -19144,7 +19358,7 @@ msgstr "" msgid "You must pick a name for the new dashboard" msgstr "Debes elegir un nombre para el nuevo Dashboard" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:525 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:519 msgid "You must run the query successfully first" msgstr "Primero debes ejecutar la consulta exitosamente" @@ -19152,7 +19366,7 @@ msgstr "Primero debes ejecutar la consulta exitosamente" msgid "You need to configure HTML sanitization to use CSS" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:350 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 msgid "" "You updated the values in the control panel, but the chart was not " "updated automatically. Run the query by clicking on the \"Update chart\" " @@ -19165,7 +19379,7 @@ msgid "" "match this new dataset have been retained." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:343 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 msgid "Your chart is not up to date" msgstr "" @@ -19180,7 +19394,7 @@ msgstr "" "Tu dashboard es demasiado grande, Por favor reduce el tamaño antes de " "guardar" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1036 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1028 msgid "Your query could not be saved" msgstr "Tu consulta no pudo ser guardada" @@ -19188,7 +19402,7 @@ msgstr "Tu consulta no pudo ser guardada" msgid "Your query could not be scheduled" msgstr "No se pudo programar la consulta." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1071 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1063 msgid "Your query could not be updated" msgstr "Tu consulta no pudo ser actualizada" @@ -19198,16 +19412,16 @@ msgid "" "Saved queries" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1051 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 #, fuzzy msgid "Your query was not properly saved" msgstr "Tu consulta fue guardada" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1054 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1046 msgid "Your query was saved" msgstr "Tu consulta fue guardada" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1067 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1059 msgid "Your query was updated" msgstr "Tu consulta fue actualizada" @@ -19230,20 +19444,20 @@ msgstr "" msgid "Zoom level of the map" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:262 +#: superset-frontend/src/dashboard/actions/dashboardState.js:260 #, fuzzy msgid "[ untitled dashboard ]" msgstr "Editar Dashboard" -#: superset/viz.py:2386 +#: superset/viz.py:2323 msgid "[Longitude] and [Latitude] columns must be present in [Group By]" msgstr "Las columnas [Longitud] y [Latitud] deben estar presentes en [Group By]" -#: superset/viz.py:2336 +#: superset/viz.py:2273 msgid "[Longitude] and [Latitude] must be set" msgstr "Deben especificarse [Longitud] y [Latitud]" -#: superset/explore/commands/get.py:121 superset/views/core.py:870 +#: superset/explore/commands/get.py:121 superset/views/core.py:892 #, fuzzy msgid "[Missing Dataset]" msgstr "Cambiar fuente" @@ -19258,7 +19472,7 @@ msgstr "Se ha otorgado Acceso [Superset] a la fuente de datos %(name)" msgid "[Untitled]" msgstr "%s - sin título" -#: superset/connectors/base/models.py:252 superset/models/sql_lab.py:228 +#: superset/connectors/base/models.py:262 superset/models/sql_lab.py:216 #, fuzzy msgid "[asc]" msgstr "Básico" @@ -19271,7 +19485,7 @@ msgstr "" msgid "[dashboard name]" msgstr "[nombre del Dashboard]" -#: superset/connectors/base/models.py:255 superset/models/sql_lab.py:231 +#: superset/connectors/base/models.py:265 superset/models/sql_lab.py:219 msgid "[desc]" msgstr "" @@ -19296,7 +19510,7 @@ msgstr "" msgid "`compare_type` must be `difference`, `percentage` or `ratio`" msgstr "" -#: superset/charts/schemas.py:573 +#: superset/charts/schemas.py:654 msgid "`confidence_interval` must be between 0 and 1 (exclusive)" msgstr "`confidence_interval` debe ser un número entre 0 y 1 (exclusivo)" @@ -19320,16 +19534,16 @@ msgstr "El paquete `fbprophet` no está instalado" msgid "`rename_columns` must have the same length as `columns`." msgstr "" -#: superset/charts/schemas.py:1114 +#: superset/charts/schemas.py:1284 #, fuzzy msgid "`row_limit` must be greater than or equal to 0" msgstr "`row_limit` debe ser mayor o igual a 1" -#: superset/charts/schemas.py:1121 +#: superset/charts/schemas.py:1291 msgid "`row_offset` must be greater than or equal to 0" msgstr "`row_offset` debe ser mayor o igual a 0" -#: superset/charts/schemas.py:972 +#: superset/charts/schemas.py:1108 msgid "`width` must be greater or equal to 0" msgstr "`width` debe ser mayor o igual a 0" @@ -19337,10 +19551,16 @@ msgstr "`width` debe ser mayor o igual a 0" msgid "aggregate" msgstr "agregación" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 #: superset-frontend/src/pages/AlertReportList/index.tsx:110 msgid "alert" msgstr "alerta" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 +#, fuzzy +msgid "alert dark" +msgstr "alerta" + #: superset-frontend/src/pages/AlertReportList/index.tsx:111 msgid "alerts" msgstr "alertas" @@ -19484,7 +19704,7 @@ msgid "clear all filters" msgstr "Buscar / Filtrar" #: superset-frontend/src/components/Chart/Chart.jsx:290 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:354 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 msgid "click here" msgstr "" @@ -19515,7 +19735,7 @@ msgstr "" msgid "count" msgstr "Columna" -#: superset-frontend/src/explore/components/SaveModal.tsx:365 +#: superset-frontend/src/explore/components/SaveModal.tsx:400 #, fuzzy msgid "create" msgstr "crear un " @@ -19563,16 +19783,16 @@ msgid "dashboards" msgstr "Dashboards" #: superset-frontend/src/features/databases/DatabaseModal/index.tsx:543 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:712 -#: superset-frontend/src/pages/DatabaseList/index.tsx:91 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:729 +#: superset-frontend/src/pages/DatabaseList/index.tsx:102 msgid "database" msgstr "Base de datos" #: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 #: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 #: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 -#: superset-frontend/src/pages/DatasetList/index.tsx:148 -#: superset-frontend/src/pages/DatasetList/index.tsx:822 +#: superset-frontend/src/pages/DatasetList/index.tsx:159 +#: superset-frontend/src/pages/DatasetList/index.tsx:844 msgid "dataset" msgstr "" @@ -19585,8 +19805,8 @@ msgstr "Nombre de la Fuente de Datos" msgid "date" msgstr "fecha" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 msgid "day" msgstr "día" @@ -19615,6 +19835,11 @@ msgstr "" msgid "deck.gl Grid" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:30 +#, fuzzy +msgid "deck.gl Heatmap" +msgstr "Todos los gráficos" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:28 #, fuzzy msgid "deck.gl Multiple Layers" @@ -19645,6 +19870,7 @@ msgstr "Todos los gráficos" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:34 @@ -19733,11 +19959,11 @@ msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:112 #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:657 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:674 msgid "e.g. world_population" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:655 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:672 msgid "e.g. xy12345.us-east-2.aws" msgstr "" @@ -19756,7 +19982,16 @@ msgstr "Nombre de la consulta" msgid "entries" msgstr "Series" -#: superset/connectors/sqla/models.py:1537 superset/models/helpers.py:1742 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +#, fuzzy +msgid "error" +msgstr "%s Error" + +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 +msgid "error dark" +msgstr "" + +#: superset/models/helpers.py:1803 #, fuzzy msgid "error_message" msgstr "Mensaje de error" @@ -19844,10 +20079,6 @@ msgstr "" msgid "geohash (square)" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 -msgid "green" -msgstr "" - #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:168 #, fuzzy msgid "heatmap" @@ -19861,14 +20092,14 @@ msgstr "" #: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:125 #: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1800 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1856 #, fuzzy msgid "here" msgstr "Compartir" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 msgid "hour" msgstr "hora" @@ -19906,7 +20137,7 @@ msgstr "" msgid "joined" msgstr "unido" -#: superset/views/base.py:595 +#: superset/views/base.py:596 msgid "json isn't valid" msgstr "no es json válido" @@ -19972,7 +20203,7 @@ msgstr "Limpiar" msgid "log" msgstr "registro" -#: superset/charts/schemas.py:645 +#: superset/charts/schemas.py:735 msgid "" "lower percentile must be greater than 0 and less than 100. Must be lower " "than upper percentile." @@ -19981,7 +20212,6 @@ msgstr "" "menor que el percentil superior." #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:189 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:58 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 #: superset-frontend/src/filters/components/Range/buildQuery.ts:69 #, fuzzy @@ -19991,9 +20221,9 @@ msgstr "Máx" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:187 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:254 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:56 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:136 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:119 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:403 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:531 @@ -20011,15 +20241,14 @@ msgstr "" msgid "median" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:60 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:62 #: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 #, fuzzy msgid "metric" msgstr "Métrica" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:188 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:57 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 #: superset-frontend/src/filters/components/Range/buildQuery.ts:58 #, fuzzy @@ -20041,8 +20270,8 @@ msgid "monotone" msgstr "mes" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 #: superset-frontend/src/explore/controls.jsx:267 msgid "month" @@ -20053,7 +20282,7 @@ msgid "more than {max} {name}" msgstr "" #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:53 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:78 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:77 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:116 msgid "must have a value" msgstr "" @@ -20120,7 +20349,7 @@ msgstr "hora" msgid "or use existing ones from the panel on the right" msgstr "" -#: superset/charts/schemas.py:1143 +#: superset/charts/schemas.py:1313 #, fuzzy msgid "orderby column must be populated" msgstr "Tu consulta no pudo ser actualizada" @@ -20178,7 +20407,7 @@ msgid "" " first is lower than the second value" msgstr "" -#: superset/views/core.py:1921 +#: superset/views/core.py:1958 #, fuzzy msgid "permalink state not found" msgstr "No se encontró el estado del informe programado" @@ -20238,12 +20467,7 @@ msgstr "Recientes" msgid "recents" msgstr "Recientes" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 -#, fuzzy -msgid "red" -msgstr "Creado" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:563 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:566 #: superset-frontend/src/pages/AlertReportList/index.tsx:110 msgid "report" msgstr "informe" @@ -20255,7 +20479,7 @@ msgstr "informe" msgid "reports" msgstr "informes" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:491 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:522 msgid "restore zoom" msgstr "" @@ -20265,6 +20489,11 @@ msgstr "" msgid "right" msgstr "Altura" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:139 +#, fuzzy +msgid "rowlevelsecurity" +msgstr "Seguridad a nivel de registros" + #: superset-frontend/src/SqlLab/constants.ts:36 #: superset-frontend/src/SqlLab/constants.ts:52 #, fuzzy @@ -20317,7 +20546,6 @@ msgstr "Nada disparado" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:190 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:59 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:138 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:405 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:185 @@ -20351,16 +20579,22 @@ msgstr "" #: superset-frontend/src/SqlLab/constants.ts:38 #: superset-frontend/src/SqlLab/constants.ts:50 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 #, fuzzy msgid "success" msgstr "Éxito" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +#, fuzzy +msgid "success dark" +msgstr "Éxito" + #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:186 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:255 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:378 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:55 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:260 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:532 @@ -20407,7 +20641,7 @@ msgstr "¿Deshacer?" msgid "unknown type icon" msgstr "Valor desconocido" -#: superset/charts/schemas.py:660 +#: superset/charts/schemas.py:750 msgid "" "upper percentile must be greater than 0 and less than 100. Must be higher" " than lower percentile." @@ -20433,7 +20667,6 @@ msgid "value descending" msgstr "Orden descendente" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:60 msgid "var" msgstr "" @@ -20456,13 +20689,13 @@ msgstr "" msgid "viz type" msgstr "Tipo" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:451 msgid "was created" msgstr "fue creada" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:62 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 #: superset-frontend/src/explore/controls.jsx:264 msgid "week" @@ -20495,16 +20728,12 @@ msgid "y: values are normalized within each row" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 #: superset-frontend/src/explore/controls.jsx:269 msgid "year" msgstr "año" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 -msgid "yellow" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:490 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:521 msgid "zoom area" msgstr "" diff --git a/superset/translations/fr/LC_MESSAGES/messages.json b/superset/translations/fr/LC_MESSAGES/messages.json index f0fcf22cde..e2fa0b4f94 100644 --- a/superset/translations/fr/LC_MESSAGES/messages.json +++ b/superset/translations/fr/LC_MESSAGES/messages.json @@ -135,6 +135,9 @@ "A database with the same name already exists.": [ "Une base de données avec le même nom existe déjà." ], + "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ + "" + ], "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ "Une URL complète désignant le lieu du plugin (pourrait être hébergé sur un CDN par exemple)" ], @@ -209,9 +212,6 @@ "Add Database": ["Ajouter une base de données"], "Add Log": ["Ajouter un log"], "Add Metric": ["Ajouter une métrique"], - "Add Row level security filter": [ - "Ajouter un filtre de sécurité au niveau de la ligne" - ], "Add Saved Query": ["Ajouter une requête sauvegardée"], "Add a Plugin": ["Ajouter un plugin"], "Add a new tab to create SQL Query": [""], @@ -226,6 +226,7 @@ "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ "" ], + "Add custom scoping": [""], "Add delivery method": ["Ajouter méthode de livraison"], "Add filter": ["Ajouter un filtre"], "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ @@ -309,6 +310,7 @@ "All": ["Tous"], "All Text": ["Tout texte"], "All charts": ["Tous les graphiques"], + "All charts/global scoping": [""], "All filters": ["Tous les filtres"], "All panels with this column will be affected by this filter": [ "Les panneaux avec cette colonne seront affectés par ce filtre" @@ -640,6 +642,12 @@ "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ "" ], + "Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "" + ], + "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [ + "" + ], "Bubble Chart": ["Bulles"], "Bubble size": ["Taille de la bulle"], "Bucket break points": [""], @@ -835,7 +843,6 @@ "Choose a metric for right axis": [ "Choisir une mesure pour l'axe de droite" ], - "Choose a unique name": [""], "Choose chart type": ["Choisissez un type de graphique"], "Choose one of the available databases from the panel on the left.": [""], "Choose the annotation layer type": [ @@ -1056,6 +1063,7 @@ "Could not load database driver: {}": [ "Ce driver de la base de données n'a pas pu être chargé : {}" ], + "Could not resolve hostname: \"%(host)s\".": [""], "Count as Fraction of Columns": [""], "Count as Fraction of Rows": [""], "Count as Fraction of Total": [""], @@ -1256,6 +1264,7 @@ ], "December": ["Décembre"], "Decides which column to sort the base axis by.": [""], + "Decides which measure to sort the base axis by.": [""], "Decimal Character": ["Caractère décimal"], "Deck.gl - 3D Grid": ["Deck.gl - Grille 3D"], "Deck.gl - 3D HEX": ["Deck.gl - 3D HEX"], @@ -1399,7 +1408,6 @@ "" ], "Display row level total": [""], - "Display total row/column": [""], "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ "" ], @@ -1430,10 +1438,6 @@ "" ], "Drill to detail: %s": [""], - "Drop columns here": ["Supprimer des colonnes ici"], - "Drop columns or metrics here": [ - "Supprimer des colonnes ou des métriques ici" - ], "Drop columns/metrics here or click": [ "Supprimer des colonnes/métriques ici ou cliquer" ], @@ -1488,9 +1492,6 @@ "Edit Log": ["Éditer le log"], "Edit Metric": ["Éditer la métrique"], "Edit Plugin": ["Éditer le plugin"], - "Edit Row level security filter": [ - "Editer le filtre de sécurité au niveau de la ligne" - ], "Edit Saved Query": ["Éditer la requête sauvegardée"], "Edit Table": ["Éditer la table"], "Edit annotation": ["Modifier annotation"], @@ -1613,6 +1614,7 @@ "Excel to Database configuration": [ "Configuration de Excel vers base de données" ], + "Excluded roles": [""], "Executed SQL": ["Lancer la requête SQL"], "Executed query": ["Lancer la requête sélectionnée"], "Execution ID": ["ID d'exécution"], @@ -1664,8 +1666,10 @@ "Failed at stopping query. %s": [""], "Failed to create report": [""], "Failed to execute %(query)s": [""], + "Failed to generate chart edit URL": [""], "Failed to load chart data": [""], "Failed to load chart data.": [""], + "Failed to load dimensions for drill by": [""], "Failed to start remote query on a worker.": [ "Echec de la requête à distance." ], @@ -1692,7 +1696,6 @@ "Filter List": ["Filtres"], "Filter Settings": ["Paramètres des filtres"], "Filter Type": ["Type du filtre"], - "Filter box": ["Boite de filtrage"], "Filter configuration": ["Configuration du filtre"], "Filter configuration for the filter box": [ "Configuration du filtre pour la boîte de filtrage" @@ -1793,9 +1796,6 @@ "Gravity": [""], "Group By": ["Grouper par"], "Group By filter plugin": [""], - "Group By' and 'Columns' can't overlap": [ - "'Grouper par' et 'Colonnes' ne peuvent pas se chevaucher" - ], "Group By, Metrics or Percentage Metrics must have a value": [""], "Group by": ["Grouper par"], "Groupable": ["Groupable"], @@ -1895,6 +1895,10 @@ "Inner radius of donut hole": [""], "Input field supports custom rotation. e.g. 30 for 30°": [""], "Instant filtering": ["Filtrage instantané"], + "Intensity Radius is the radius at which the weight is distributed": [""], + "Intensity is the value multiplied by the weight to obtain the final weight": [ + "" + ], "Interval End column": ["Dernière colonne de l'intervalle"], "Interval start column": ["Première colonne de l'intervalle"], "Invalid JSON": ["JSON invalide"], @@ -1928,6 +1932,7 @@ "Options invalides pour %(rolling_type)s: %(options)s" ], "Invalid permalink key": [""], + "Invalid reference to column: \"%(column)s\"": [""], "Invalid result type: %(result_type)s": [ "Type de résultat invalide : %(result_type)s" ], @@ -2221,7 +2226,6 @@ "No data in file": ["Pas de données dans le fichier"], "No databases match your search": [""], "No description available.": ["Pas de description disponible."], - "No dimensions available for drill by": [""], "No favorite charts yet, go click on stars!": [ "Aucun graphique favori pour le moment, cliquer sur les étoiles !" ], @@ -2374,7 +2378,6 @@ "Optional warning about use of this metric": [ "Avertissement optionnel à propos de l'utilisation de cette métrique" ], - "Optionally add a detailed description": [""], "Or choose from a list of other databases we support:": [""], "Order by entity id": [""], "Order results by selected columns": [""], @@ -2476,7 +2479,6 @@ "Choisissez votre langage de balisage préféré" ], "Pivot Table": ["Table pivot"], - "Pivot Table (legacy)": [""], "Pivot operation must include at least one aggregate": [ "L'opération de pivot nécessite au moins un agrégat" ], @@ -2497,9 +2499,6 @@ "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ "Veuillez corriger une erreur de syntaxe dans la requête près de \"%(server_error)s\". Puis essayez de relancer la requête." ], - "Please choose at least one metric": [ - "Choississez au moins une métrique" - ], "Please choose different metrics on left and right axis": [ "Choisissez des métriques différentes pour les axes gauches et droits" ], @@ -2549,6 +2548,7 @@ "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ "Le port %(port)s sur l'hôte \"%(hostname)s\" a refusé la connexion." ], + "Port out of range 0-65535": [""], "Position JSON": ["JSON des positions"], "Position of child node label on tree": [""], "Position of column level subtotal": [""], @@ -2566,6 +2566,7 @@ "Preview: `%s`": ["Prévisualisation : `%s`"], "Previous": ["Précédent"], "Primary or secondary y-axis": [""], + "Primary y-axis Bounds": [""], "Primary y-axis format": [""], "Private Key": [""], "Profile": ["Profil"], @@ -2652,9 +2653,7 @@ "Refresh frequency": ["Fréquence de rafraichissement"], "Refresh interval": ["Intervalle d'actualisation"], "Refresh the default values": ["Rafraichir les valeurs par défaut"], - "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter. Base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ - "Les filtres réguliers ajoutent des clauses WHERE aux requêtes si un utilisateur appartient à un profil référencé dans le filtre. Les filtres de base appliquent les filtres à toutes les requêtes sauf pour les profils définis dans le filtre, et peuvent être utilisés pour définir ce que les utilisateurs peuvent voir si aucun filtre RLS au sein d'un groupe de filtres ne s'appliquent à eux." - ], + "Regular": [""], "Relationships between community channels": [""], "Relative period": ["Période relative"], "Relative quantity": ["Quantité relative"], @@ -2766,13 +2765,13 @@ "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ "Ligne contenant l'en-tête à utiliser en nom de colonne (0 est la première ligne de données). Laissez à vide s'il n'y a pas de ligne d'en-tête." ], - "Row level security filter": ["Filtre de sécurité au niveau de la ligne"], "Row limit": ["Nombre de lignes max"], "Rows": ["Lignes"], "Rows per page, 0 means no pagination": [""], "Rows subtotal position": [""], "Rows to Read": ["Lignes à lire"], "Rule": ["Règle"], + "Rule added": [""], "Run": ["Exécuter"], "Run a query to display results": [ "Lancer une requête pour afficher les résultats" @@ -2883,6 +2882,7 @@ "Search by query text": ["Texte de recherche"], "Search...": ["Recherche..."], "Second": ["Seconde"], + "Secondary y-axis Bounds": [""], "Secondary y-axis format": [""], "Secondary y-axis title": [""], "Secure Extra": ["Sécurité"], @@ -2926,6 +2926,12 @@ "Selectionner la date de début et la date de fin" ], "Select subject": ["Sélectionner un objet"], + "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" + ], + "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" + ], "Select the number of bins for the histogram": [""], "Select the numeric columns to draw the histogram": [""], "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ @@ -2981,9 +2987,6 @@ "Show Log": ["Afficher le log"], "Show Markers": [""], "Show Metric": ["Afficher la métrique"], - "Show Row level security filter": [ - "Afficher le filtre de sécurité au niveau de la ligne" - ], "Show Saved Query": ["Montrer les requêtes sauvegardées"], "Show Table": ["Afficher les tables"], "Show Trend Line": [""], @@ -3168,7 +3171,6 @@ "Superset a rencontré une erreur inattendue." ], "Survey Responses": [""], - "Swap Groups and Columns": [""], "Swap rows and columns": [""], "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ "" @@ -3179,6 +3181,9 @@ "Symbol of two ends of edge line": [""], "Sync columns from source": ["Synchroniser les colonnes de la source"], "Syntax": ["Syntaxe"], + "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ + "" + ], "TABLES": ["TABLES"], "THU": ["JEU"], "TUE": ["MAR"], @@ -3505,6 +3510,9 @@ "The user seems to have been deleted": [ "L'utilisateur semble avoir été effacé" ], + "The user/password combination is not valid (Incorrect password for user).": [ + "" + ], "The username \"%(username)s\" does not exist.": [ "L'utilisateur \"%(username)s\" n'existe pas." ], @@ -3630,7 +3638,7 @@ "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ "Cela peut être soit une adresse IP (ex 127.0.0.1) ou un nom de domaine (ex mydatabase.com)." ], - "This chart emits/applies cross-filters to other charts that use the same dataset": [ + "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ "" ], "This chart has been moved to a different filter scope.": [ @@ -3830,7 +3838,6 @@ "Track job": ["Suivre le job"], "Transformable": [""], "Transparent": [""], - "Transpose Pivot": [""], "Transpose pivot": [""], "Tree layout": [""], "Treemap": ["Carte proportionnelle"], @@ -3879,6 +3886,8 @@ "" ], "Unable to create chart without a query id.": [""], + "Unable to decode value": [""], + "Unable to encode value": [""], "Unable to find such a holiday: [%(holiday)s]": [ "Impossible de trouver un tel congé : [%(holiday)s]" ], @@ -3988,9 +3997,6 @@ "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ "Utilisé en interne pour identifier le plugin. Devrait être le nom du package tiré du fichier plugin package.json" ], - "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location.\n\n This chart is being deprecated and we recommend checking out Pivot Table V2 instead!": [ - "" - ], "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ "" ], @@ -4004,6 +4010,9 @@ ], "User query": ["Requête utilisateur"], "Username": ["Nom d'utilisateur"], + "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ + "" + ], "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ "" ], @@ -4502,6 +4511,7 @@ "e.g. world_population": [""], "e.g. xy12345.us-east-2.aws": [""], "edit mode": ["mode edition"], + "error dark": [""], "every": ["chaque"], "every day of the month": ["chaque jour du mois"], "every day of the week": ["chaque jour de la semaine"], @@ -4518,7 +4528,6 @@ ], "function type icon": [""], "geohash (square)": [""], - "green": ["vert"], "heatmap: values are normalized across the entire heatmap": [""], "hour": ["heure"], "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ @@ -4571,7 +4580,6 @@ "queries": ["requêtes"], "query": ["requête"], "reboot": ["reboot"], - "red": ["rouge"], "report": ["rapport"], "reports": ["rapports"], "restore zoom": [""], @@ -4597,7 +4605,6 @@ "y": [""], "y: values are normalized within each row": [""], "year": ["année"], - "yellow": ["jaune"], "zoom area": [""] } } diff --git a/superset/translations/fr/LC_MESSAGES/messages.po b/superset/translations/fr/LC_MESSAGES/messages.po index 00fbcfda6e..06cf630274 100644 --- a/superset/translations/fr/LC_MESSAGES/messages.po +++ b/superset/translations/fr/LC_MESSAGES/messages.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-04-07 19:09+0200\n" +"POT-Creation-Date: 2023-05-23 16:30-0300\n" "PO-Revision-Date: 2021-11-16 17:33+0100\n" "Last-Translator: FULL NAME \n" "Language: fr\n" @@ -41,7 +41,7 @@ msgstr "" " Il ne sera pas sauvé à l'enregistrement du graphique.\n" " " -#: superset/reports/notifications/email.py:88 +#: superset/reports/notifications/email.py:89 #, python-format msgid "" "\n" @@ -63,12 +63,12 @@ msgid "" "in the GeoJSON" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:364 +#: superset-frontend/src/explore/components/SaveModal.tsx:399 #, fuzzy msgid " a dashboard OR " msgstr "Sauvegarder le Tableau de Bord" -#: superset-frontend/src/explore/components/SaveModal.tsx:366 +#: superset-frontend/src/explore/components/SaveModal.tsx:401 #, fuzzy msgid " a new one" msgstr "Modifié le" @@ -114,7 +114,7 @@ msgstr "" " de niveau database / nom de colonne via l'extra " "parameter." -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:334 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:340 #, fuzzy msgid " to add calculated columns" msgstr "Colonnes calculées" @@ -129,8 +129,8 @@ msgstr "Ajouter une métrique" msgid " to edit or add columns and metrics." msgstr "%s colonne(s) et métrique(s)" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:323 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:358 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:364 msgid " to mark a column as a time column" msgstr "" @@ -138,7 +138,7 @@ msgstr "" msgid " to open SQL Lab. From there you can save the query as a dataset." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:333 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 msgid " to visualize your data." msgstr "" @@ -146,7 +146,7 @@ msgstr "" msgid "!= (Is not equal)" msgstr "!= (N'est pas égal)" -#: superset/security/analytics_db_safety.py:44 +#: superset/security/analytics_db_safety.py:48 #, python-format msgid "%(dialect)s cannot be used as a data source for security reasons." msgstr "" @@ -161,7 +161,7 @@ msgid "" "%(issues)s" msgstr "Cela peut être déclenché par:" -#: superset/reports/notifications/email.py:168 +#: superset/reports/notifications/email.py:171 #, python-format msgid "%(name)s.csv" msgstr "%(name)s.csv" @@ -193,14 +193,14 @@ msgstr "" "Les graphiques, tableaux de bord et requêtes sauvegardées qui ont été " "récemment consultés apparaîtront ici" -#: superset/reports/notifications/email.py:177 +#: superset/reports/notifications/email.py:180 #, python-format msgid "%(prefix)s %(title)s" msgstr "%(prefix)s %(title)s" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:345 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:363 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:377 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:338 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:356 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:370 #, python-format msgid "%(rows)d rows returned" msgstr "%(rows)d lignes retournées" @@ -222,19 +222,19 @@ msgid_plural "" msgstr[0] "%(suggestion)s au lieu de \"%(undefinedParameter)s?\"" msgstr[1] "" -#: superset/views/core.py:384 +#: superset/views/core.py:385 #, python-format msgid "" "%(user)s was granted the role %(role)s that gives access to the " "%(datasource)s" msgstr "%(user)s a obtenu le profil %(role)s qui donne accès à %(datasource)s" -#: superset/views/core.py:2672 +#: superset/views/core.py:2709 #, python-format msgid "%(user)s's profile" msgstr "Le profil de %(user)s" -#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2327 +#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2369 #, python-format msgid "" "%(validator)s was unable to check your query.\n" @@ -251,25 +251,25 @@ msgid "%s Error" msgstr "%s Erreur" #: superset-frontend/src/components/ImportModal/index.tsx:298 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1300 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1355 #, fuzzy, python-format msgid "%s PASSWORD" msgstr "Mot de passe" #: superset-frontend/src/components/ImportModal/index.tsx:318 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1318 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1373 #, python-format msgid "%s SSH TUNNEL PASSWORD" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:341 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1336 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1391 #, python-format msgid "%s SSH TUNNEL PRIVATE KEY" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:363 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1356 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1411 #, python-format msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" msgstr "" @@ -279,17 +279,17 @@ msgstr "" msgid "%s Selected" msgstr "%s Sélectionné" -#: superset-frontend/src/pages/DatasetList/index.tsx:808 +#: superset-frontend/src/pages/DatasetList/index.tsx:830 #, python-format msgid "%s Selected (%s Physical, %s Virtual)" msgstr "%s Sélectionnée (%s Physique, %s Virtuelle)" -#: superset-frontend/src/pages/DatasetList/index.tsx:801 +#: superset-frontend/src/pages/DatasetList/index.tsx:823 #, python-format msgid "%s Selected (Physical)" msgstr "%s Sélectionnée (Physique)" -#: superset-frontend/src/pages/DatasetList/index.tsx:794 +#: superset-frontend/src/pages/DatasetList/index.tsx:816 #, python-format msgid "%s Selected (Virtual)" msgstr "%s Sélectionnée (Virtuelle)" @@ -299,8 +299,8 @@ msgstr "%s Sélectionnée (Virtuelle)" msgid "%s aggregates(s)" msgstr "%s agrégat(s)" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:274 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:371 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:280 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:377 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:346 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 #, python-format @@ -339,8 +339,8 @@ msgstr[1] "" msgid "%s saved metric(s)" msgstr "%s métrique(s) sauvegardée(s)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:636 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:652 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:639 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:655 #, fuzzy, python-format msgid "%s updated" msgstr "Dernière mise à jour %s" @@ -357,7 +357,7 @@ msgstr "%s%s" msgid "%s-%s of %s" msgstr "%s-%s de %s" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:115 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:116 msgid "(Removed)" msgstr "(Supprimé)" @@ -421,22 +421,22 @@ msgstr "" msgid "+ %s more" msgstr "" -#: superset/views/database/forms.py:153 +#: superset/views/database/forms.py:163 msgid "," msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:656 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:652 msgid "" "-- Note: Unless you save your query, these tabs will NOT persist if you " "clear your cookies or change browsers.\n" "\n" msgstr "" -#: superset/views/database/forms.py:154 +#: superset/views/database/forms.py:164 msgid "." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:791 +#: superset-frontend/src/pages/DatasetList/index.tsx:813 msgid "0 Selected" msgstr "0 sélectionné" @@ -536,7 +536,7 @@ msgstr "Fréquence de rafraichissement" msgid "1 year start frequency" msgstr "Fréquence de rafraichissement" -#: superset/db_engine_specs/base.py:101 +#: superset/db_engine_specs/base.py:102 msgid "10 minute" msgstr "10 minutes" @@ -552,7 +552,7 @@ msgstr "semaine" msgid "104 weeks ago" msgstr "" -#: superset/db_engine_specs/base.py:102 +#: superset/db_engine_specs/base.py:103 msgid "15 minute" msgstr "15 minutes" @@ -673,7 +673,7 @@ msgstr "30 jours" msgid "30 days ago" msgstr "30 jours" -#: superset/db_engine_specs/base.py:103 +#: superset/db_engine_specs/base.py:104 msgid "30 minute" msgstr "30 minutes" @@ -682,7 +682,7 @@ msgstr "30 minutes" msgid "30 minutes" msgstr "30 minutes" -#: superset/db_engine_specs/base.py:98 +#: superset/db_engine_specs/base.py:99 msgid "30 second" msgstr "30 secondes" @@ -702,7 +702,7 @@ msgstr "" msgid "4 weeks (freq=4W-MON)" msgstr "" -#: superset/db_engine_specs/base.py:100 +#: superset/db_engine_specs/base.py:101 msgid "5 minute" msgstr "5 minutes" @@ -711,7 +711,7 @@ msgstr "5 minutes" msgid "5 minutes" msgstr "5 minutes" -#: superset/db_engine_specs/base.py:97 +#: superset/db_engine_specs/base.py:98 msgid "5 second" msgstr "5 secondes" @@ -740,7 +740,7 @@ msgstr "Semaine débutant le lundi" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 #: superset-frontend/src/explore/controls.jsx:261 -#: superset/db_engine_specs/base.py:105 +#: superset/db_engine_specs/base.py:106 msgid "6 hour" msgstr "6 heures" @@ -829,20 +829,20 @@ msgstr ">= (Plus grand ou égal)" msgid "A Big Number" msgstr "Gros nombre" -#: superset/views/database/forms.py:184 +#: superset/views/database/forms.py:194 #, fuzzy msgid "A comma separated list of columns that should be parsed as dates" msgstr "" "Une liste de colonnes séparées par des virgules qui devraient être " "parsées comme des dates." -#: superset/views/database/forms.py:367 +#: superset/views/database/forms.py:377 msgid "A comma separated list of columns that should be parsed as dates." msgstr "" "Une liste de colonnes séparées par des virgules qui devraient être " "parsées comme des dates." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:433 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 #, fuzzy msgid "A comma-separated list of schemas that files are allowed to upload to." msgstr "" @@ -853,6 +853,12 @@ msgstr "" msgid "A database with the same name already exists." msgstr "Une base de données avec le même nom existe déjà." +#: superset/views/database/forms.py:145 +msgid "" +"A dictionary with column names and their data types if you need to change" +" the defaults. Example: {\"user_id\":\"integer\"}" +msgstr "" + #: superset/views/dynamic_plugins.py:52 msgid "" "A full URL pointing to the location of the built plugin (could be hosted " @@ -923,17 +929,17 @@ msgstr "Une référence à la configuration [Time] prends la granularité en com msgid "A report named \"%(name)s\" already exists" msgstr "Le jeu de données %(name)s existe déjà" -#: superset-frontend/src/explore/components/SaveModal.tsx:333 +#: superset-frontend/src/explore/components/SaveModal.tsx:368 msgid "A reusable dataset will be saved with your chart." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:309 +#: superset-frontend/src/components/ReportModal/index.tsx:308 #, fuzzy msgid "A screenshot of the dashboard will be sent to your email at" msgstr "Les rapports planifiés seront envoyés à votre @ e-mail en PNG" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 -#: superset/connectors/sqla/views.py:458 +#: superset/connectors/sqla/views.py:365 msgid "" "A set of parameters that become available in the query using Jinja " "templating syntax" @@ -982,8 +988,8 @@ msgstr "APPLIQUER" msgid "APR" msgstr "AVR" -#: superset-frontend/src/pages/DatabaseList/index.tsx:312 -#: superset-frontend/src/pages/DatabaseList/index.tsx:478 +#: superset-frontend/src/pages/DatabaseList/index.tsx:323 +#: superset-frontend/src/pages/DatabaseList/index.tsx:489 msgid "AQE" msgstr "AQE" @@ -1011,7 +1017,7 @@ msgstr "A propos" msgid "Access" msgstr "Accès" -#: superset/initialization/__init__.py:431 +#: superset/initialization/__init__.py:425 msgid "Access requests" msgstr "Requêtes d'accès" @@ -1023,7 +1029,7 @@ msgstr "" msgid "Access token" msgstr "" -#: superset/views/core.py:317 +#: superset/views/core.py:318 msgid "Access was requested" msgstr "Accès demandé" @@ -1031,7 +1037,7 @@ msgstr "Accès demandé" msgid "Action" msgstr "Action" -#: superset/initialization/__init__.py:393 +#: superset/initialization/__init__.py:387 msgid "Action Log" msgstr "Journaux d'actions" @@ -1042,9 +1048,10 @@ msgstr "Journaux d'actions" #: superset-frontend/src/pages/ChartList/index.tsx:569 #: superset-frontend/src/pages/CssTemplateList/index.tsx:229 #: superset-frontend/src/pages/DashboardList/index.tsx:477 -#: superset-frontend/src/pages/DatabaseList/index.tsx:448 -#: superset-frontend/src/pages/DatasetList/index.tsx:488 +#: superset-frontend/src/pages/DatabaseList/index.tsx:459 +#: superset-frontend/src/pages/DatasetList/index.tsx:499 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:327 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:216 #: superset-frontend/src/pages/SavedQueryList/index.tsx:437 #: superset-frontend/src/pages/Tags/index.tsx:171 msgid "Actions" @@ -1077,19 +1084,20 @@ msgstr "Valeurs NULL" msgid "Actual values" msgstr "Valeurs NULL" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:35 -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 #: superset-frontend/src/explore/controls.jsx:78 #: superset-frontend/src/explore/controls.jsx:101 #, fuzzy msgid "Adaptive formatting" msgstr "Formatage adapté" -#: superset-frontend/src/components/ReportModal/index.tsx:229 +#: superset-frontend/src/components/ReportModal/index.tsx:228 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 #: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 #: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 msgid "Add" msgstr "Ajouter" @@ -1110,7 +1118,7 @@ msgstr "Templates CSS" msgid "Add Chart" msgstr "Ajouter un graphique" -#: superset/connectors/sqla/views.py:74 +#: superset/connectors/sqla/views.py:73 msgid "Add Column" msgstr "Ajouter une colonne" @@ -1126,7 +1134,7 @@ msgstr "Ajouter une base de données" msgid "Add Log" msgstr "Ajouter un log" -#: superset/connectors/sqla/views.py:209 +#: superset/connectors/sqla/views.py:208 msgid "Add Metric" msgstr "Ajouter une métrique" @@ -1135,9 +1143,10 @@ msgstr "Ajouter une métrique" msgid "Add Report" msgstr "rapport" -#: superset/connectors/sqla/views.py:292 -msgid "Add Row level security filter" -msgstr "Ajouter un filtre de sécurité au niveau de la ligne" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +#, fuzzy +msgid "Add Rule" +msgstr "Format Date" #: superset/views/sql_lab/views.py:54 msgid "Add Saved Query" @@ -1152,12 +1161,12 @@ msgstr "Ajouter un plugin" msgid "Add a dataset" msgstr "Ajouter un jeu de données" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:262 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:272 #, fuzzy msgid "Add a new tab" msgstr "Ajouter un nouvelle base de données ?" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:286 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:296 msgid "Add a new tab to create SQL Query" msgstr "" @@ -1188,24 +1197,28 @@ msgstr "Ajouter une annotation" msgid "Add annotation layer" msgstr "Ajouter une couche d'annotations" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:300 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:306 msgid "Add calculated columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:297 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:303 msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:167 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:197 #, fuzzy msgid "Add cross-filter" msgstr "Ajouter un filtre" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 +msgid "Add custom scoping" +msgstr "" + #: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 msgid "Add delivery method" msgstr "Ajouter méthode de livraison" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:330 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 #, fuzzy msgid "Add extra connection information." msgstr "Information simple" @@ -1278,7 +1291,7 @@ msgstr "L'identifiant du graphique actif" msgid "Add the name of the dashboard" msgstr "Modifier le tableau de bord" -#: superset-frontend/src/explore/components/SaveModal.tsx:351 +#: superset-frontend/src/explore/components/SaveModal.tsx:386 msgid "Add to dashboard" msgstr "Ajouter au tableau de bord" @@ -1304,7 +1317,7 @@ msgstr[1] "" msgid "Additional Parameters" msgstr "Paramètres supplémentaires" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1787 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1843 msgid "Additional fields may be required" msgstr "" @@ -1317,17 +1330,17 @@ msgstr "Informations additionnelles" msgid "Additional metadata" msgstr "Paramètres supplémentaires" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:54 #, fuzzy msgid "Additional padding for legend." msgstr "Informations additionnelles" -#: superset/db_engine_specs/base.py:1847 -#: superset/db_engine_specs/clickhouse.py:214 +#: superset/db_engine_specs/base.py:1885 +#: superset/db_engine_specs/clickhouse.py:221 msgid "Additional parameters" msgstr "Paramètres supplémentaires" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:444 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 #, fuzzy msgid "Additional settings." msgstr "Informations additionnelles" @@ -1344,17 +1357,18 @@ msgstr "" msgid "Additive" msgstr "Ajouter un item" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:75 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 msgid "Adjust how this database will interact with SQL Lab." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:221 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:231 msgid "Adjust performance settings of this database." msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:132 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:91 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:127 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:93 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 @@ -1363,7 +1377,7 @@ msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:939 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:771 #: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1811 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 msgid "Advanced" msgstr "Avancé" @@ -1468,7 +1482,6 @@ msgid "" "produce the cluster label." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:63 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:202 msgid "" "Aggregate function to apply when pivoting and computing the total rows " @@ -1481,13 +1494,16 @@ msgid "" " values to a dynamic color scale" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +#, fuzzy +msgid "Aggregation" +msgstr "agrégat" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 #, fuzzy msgid "Aggregation function" msgstr "Fonctions Python" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:593 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:162 #, fuzzy msgid "Alert" @@ -1567,7 +1583,7 @@ msgstr "Erreur de configuration du validateur." msgid "Alerts" msgstr "Alertes" -#: superset/initialization/__init__.py:410 +#: superset/initialization/__init__.py:404 msgid "Alerts & Reports" msgstr "Alertes et rapports" @@ -1593,8 +1609,8 @@ msgstr "" #: superset-frontend/src/pages/DashboardList/index.tsx:528 #: superset-frontend/src/pages/DashboardList/index.tsx:550 #: superset-frontend/src/pages/DashboardList/index.tsx:600 -#: superset-frontend/src/pages/DatabaseList/index.tsx:465 -#: superset-frontend/src/pages/DatabaseList/index.tsx:485 +#: superset-frontend/src/pages/DatabaseList/index.tsx:476 +#: superset-frontend/src/pages/DatabaseList/index.tsx:496 #: superset-frontend/src/pages/Home/index.tsx:205 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:354 #: superset-frontend/src/pages/SavedQueryList/index.tsx:453 @@ -1603,7 +1619,7 @@ msgid "All" msgstr "Tous" #: superset-frontend/src/pages/AllEntities/index.tsx:76 -#: superset/initialization/__init__.py:376 +#: superset/initialization/__init__.py:370 #, fuzzy msgid "All Entities" msgstr "Tous les filtres" @@ -1615,13 +1631,18 @@ msgstr "Tous les filtres" msgid "All Text" msgstr "Tout texte" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 #: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:69 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 #: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:85 #: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:128 msgid "All charts" msgstr "Tous les graphiques" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 +msgid "All charts/global scoping" +msgstr "" + #: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 msgid "All filters" msgstr "Tous les filtres" @@ -1631,7 +1652,7 @@ msgstr "Tous les filtres" msgid "All filters (%(filterCount)d)" msgstr "Tous les filtres (${filterValues.length})" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:49 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 #, fuzzy msgid "All panels" msgstr "Appliquer à tous les panneaux" @@ -1640,7 +1661,7 @@ msgstr "Appliquer à tous les panneaux" msgid "All panels with this column will be affected by this filter" msgstr "Les panneaux avec cette colonne seront affectés par ce filtre" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:107 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 #: superset/views/database/mixins.py:184 msgid "Allow CREATE TABLE AS" msgstr "Autoriser CREATE TABLE AS" @@ -1649,7 +1670,7 @@ msgstr "Autoriser CREATE TABLE AS" msgid "Allow CREATE TABLE AS option in SQL Lab" msgstr "Autorise l'option CREATE TABLE AS dans SQL Lab" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:121 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 #: superset/views/database/mixins.py:185 msgid "Allow CREATE VIEW AS" msgstr "Autoriser CREATE VIEW AS" @@ -1662,7 +1683,7 @@ msgstr "Autorise l'option CREATE VIEW AS dans SQL Lab" msgid "Allow Csv Upload" msgstr "Autoriser le téléversement CSV" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 #: superset/views/database/mixins.py:186 msgid "Allow DML" msgstr "Autoriser DML" @@ -1671,15 +1692,15 @@ msgstr "Autoriser DML" msgid "Allow columns to be rearranged" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:110 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 msgid "Allow creation of new tables based on queries" msgstr "Autoriser la création de nouvelles tables basées sur des requêtes" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:124 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 msgid "Allow creation of new views based on queries" msgstr "Autoriser la création de nouvelles vues basées sur des requêtes" -#: superset-frontend/src/pages/DatabaseList/index.tsx:329 +#: superset-frontend/src/pages/DatabaseList/index.tsx:340 msgid "Allow data manipulation language" msgstr "Autoriser DML" @@ -1689,12 +1710,12 @@ msgid "" "their changes won't persist for the next time they open the chart." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:411 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:421 #, fuzzy msgid "Allow file uploads to database" msgstr "Sélectionner un fichier Excel à charger dans une base de données." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:157 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 msgid "" "Allow manipulation of the database using non-SELECT statements such as " "UPDATE, DELETE, CREATE, etc." @@ -1715,11 +1736,11 @@ msgstr "Autoriséer les sélections multiples" msgid "Allow sending multiple polygons as a filter event" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:186 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 msgid "Allow this database to be explored" msgstr "Autoriser cette base de données à être explorée" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:91 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 msgid "Allow this database to be queried in SQL Lab" msgstr "Autoriser cette base de données à être requêtées dans SQL Lab" @@ -1763,7 +1784,7 @@ msgstr "Un erreur s'est produite" msgid "An alert named \"%(name)s\" already exists" msgstr "Le jeu de données %(name)s existe déjà" -#: superset/common/query_context_processor.py:326 superset/viz.py:1447 +#: superset/common/query_context_processor.py:326 superset/viz.py:1352 msgid "" "An enclosed time range (both start and end) must be specified when using " "a Time Comparison." @@ -1771,7 +1792,7 @@ msgstr "" "Une période délimitée (à la fois début et fin) doit être spécifiée quand " "on utilise une Comparaison de temps." -#: superset/databases/schemas.py:285 +#: superset/databases/schemas.py:289 msgid "" "An engine must be specified when passing individual parameters to a " "database." @@ -1780,7 +1801,7 @@ msgstr "" " à la base de données." #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:791 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:141 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:183 #: superset-frontend/src/components/Tags/utils.tsx:67 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:127 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:109 @@ -1795,7 +1816,7 @@ msgstr "Une erreur est survenue" msgid "An error occurred" msgstr "Un erreur s'est produite" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:317 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:323 msgid "An error occurred saving dataset" msgstr "Une erreur s'est produite durant la sauvegarde du jeu de données" @@ -1807,7 +1828,7 @@ msgstr "Une erreur s'est produite durant la sauvegarde du jeu de données" msgid "An error occurred while accessing the value." msgstr "Une erreur s'est produite durant la création de la source de donnée" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1368 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1360 msgid "" "An error occurred while collapsing the table schema. Please contact your " "administrator." @@ -1815,13 +1836,13 @@ msgstr "" "Une erreur s'est produite en repliant le schéma de la table. Veuillez " "contacter votre administrateur." -#: superset-frontend/src/views/CRUD/hooks.ts:304 +#: superset-frontend/src/views/CRUD/hooks.ts:308 #, fuzzy, python-format msgid "An error occurred while creating %ss: %s" msgstr "Une erreur s'est produite durant la récupération des jeux de données : %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1529 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1551 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1530 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1552 msgid "An error occurred while creating the data source" msgstr "Une erreur s'est produite durant la création de la source de donnée" @@ -1839,7 +1860,7 @@ msgstr "Une erreur s'est produite durant la création de la source de donnée" msgid "An error occurred while deleting the value." msgstr "Une erreur s'est produit en récupérant les valeurs du schéma : %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1344 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1336 msgid "" "An error occurred while expanding the table schema. Please contact your " "administrator." @@ -1853,8 +1874,8 @@ msgid "An error occurred while fetching %s info: %s" msgstr "Une erreur s'est produite durant la récupération des tableaux de bord : %s" #: superset-frontend/src/views/CRUD/hooks.ts:174 -#: superset-frontend/src/views/CRUD/hooks.ts:261 -#: superset-frontend/src/views/CRUD/hooks.ts:349 +#: superset-frontend/src/views/CRUD/hooks.ts:265 +#: superset-frontend/src/views/CRUD/hooks.ts:353 #, fuzzy, python-format msgid "An error occurred while fetching %ss: %s" msgstr "Une erreur s'est produite durant la récupération des jeux de données : %s" @@ -1909,7 +1930,7 @@ msgstr "Une erreur s'est produite durant la récupération des tableaux de bord msgid "An error occurred while fetching dashboards: %s" msgstr "Une erreur s'est produite durant la récupération des tableaux de bord : %s" -#: superset-frontend/src/pages/DatabaseList/index.tsx:145 +#: superset-frontend/src/pages/DatabaseList/index.tsx:156 #, python-format msgid "An error occurred while fetching database related data: %s" msgstr "" @@ -1932,32 +1953,32 @@ msgstr "" "Une erreur s'est produite durant la récupération les sources de données " "du jeu de données : %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:510 +#: superset-frontend/src/pages/DatasetList/index.tsx:521 #, python-format msgid "An error occurred while fetching dataset owner values: %s" msgstr "" "Une erreur s'est produite durant la récupération des valeurs du " "propriétaire du jeu de données : %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:222 +#: superset-frontend/src/pages/DatasetList/index.tsx:233 msgid "An error occurred while fetching dataset related data" msgstr "" "Une erreur s'est produite lors de la récupération des données relatives " "au jeu de données" -#: superset-frontend/src/pages/DatasetList/index.tsx:242 +#: superset-frontend/src/pages/DatasetList/index.tsx:253 #, python-format msgid "An error occurred while fetching dataset related data: %s" msgstr "" "Une erreur s'est produite lors de la récupération des données relatives " "au jeu de données : %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:530 +#: superset-frontend/src/pages/DatasetList/index.tsx:541 #, python-format msgid "An error occurred while fetching datasets: %s" msgstr "Une erreur s'est produite durant la récupération des jeux de données : %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1581 +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx:120 msgid "An error occurred while fetching function names." msgstr "Une erreur s'est produite lors de la récupération des noms des fonctions." @@ -1968,25 +1989,25 @@ msgstr "" "Une erreur s'est produite durant la récupération des propriétaires du " "graphique : %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:546 +#: superset-frontend/src/pages/DatasetList/index.tsx:557 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:378 #: superset-frontend/src/pages/SavedQueryList/index.tsx:480 #, python-format msgid "An error occurred while fetching schema values: %s" msgstr "Une erreur s'est produit en récupérant les valeurs du schéma : %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:799 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:795 msgid "An error occurred while fetching tab state" msgstr "Une erreur s'est produite lors de la récupération de l'état de l'onglet" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1199 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1224 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1191 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1216 msgid "An error occurred while fetching table metadata" msgstr "" "Une erreur s'est produite lors de l'extraction des méta-données de la " "table" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1296 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1288 msgid "" "An error occurred while fetching table metadata. Please contact your " "administrator." @@ -2004,7 +2025,7 @@ msgstr "Une erreur s'est produite en récupérant les valeurs créées : %s" msgid "An error occurred while fetching user values: %s" msgstr "Une erreur s'est produit en récupérant les valeurs d'utilisateur : %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:835 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:831 msgid "" "An error occurred while hiding the left bar. Please contact your " "administrator." @@ -2012,17 +2033,22 @@ msgstr "" "Une erreur s'est produite en masquant la barre de gauche. Veuillez " "contacter votre administrateur." -#: superset-frontend/src/views/CRUD/hooks.ts:502 -#: superset-frontend/src/views/CRUD/hooks.ts:518 +#: superset-frontend/src/views/CRUD/hooks.ts:506 +#: superset-frontend/src/views/CRUD/hooks.ts:522 #, fuzzy, python-format msgid "An error occurred while importing %s: %s" msgstr "Une erreur s'est produite le traitement des logs " +#: superset-frontend/src/explore/components/SaveModal.tsx:135 +#, fuzzy +msgid "An error occurred while loading dashboard information." +msgstr "Une erreur s'est produite durant la récupération des tableaux de bord : %s" + #: superset-frontend/src/components/Chart/chartAction.js:579 msgid "An error occurred while loading the SQL" msgstr "Une erreur s'est produite durant le chargement du SQL" -#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:332 +#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:325 #, fuzzy msgid "An error occurred while opening Explore" msgstr "Une erreur s'est produite le traitement des logs " @@ -2036,19 +2062,19 @@ msgstr "Une erreur s'est produite durant la création de la source de donnée" msgid "An error occurred while pruning logs " msgstr "Une erreur s'est produite le traitement des logs " -#: superset-frontend/src/SqlLab/actions/sqlLab.js:892 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:888 msgid "An error occurred while removing query. Please contact your administrator." msgstr "" "Une erreur s'est produite en supprimant la requête. Veuillez contacter " "votre administrateur." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:857 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:853 msgid "An error occurred while removing tab. Please contact your administrator." msgstr "" "Une erreur s'est produite en supprimant l'onglet. Veuillez contacter " "votre administrateur." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1396 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1388 msgid "" "An error occurred while removing the table schema. Please contact your " "administrator." @@ -2061,7 +2087,7 @@ msgstr "" msgid "An error occurred while rendering the visualization: %s" msgstr "Une erreur s'est produite durant la modification du rapport : %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:710 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:706 msgid "" "An error occurred while setting the active tab. Please contact your " "administrator." @@ -2069,7 +2095,7 @@ msgstr "" "Une erreur s'est produite en positionnant l'onglet actif. Veuillez " "contacter votre administrateur." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:975 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:967 msgid "" "An error occurred while setting the tab autorun. Please contact your " "administrator." @@ -2077,7 +2103,7 @@ msgstr "" "Une erreur s'est produite durant l'initialisation de l'onglet Autorun. " "Veuillez contacter votre administrateur." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:915 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:911 msgid "" "An error occurred while setting the tab database ID. Please contact your " "administrator." @@ -2085,8 +2111,8 @@ msgstr "" "Une erreur s'est produite en positionnant l'id de l'onglet Base de " "données. Veuillez contacter votre administrateur." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1004 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1128 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:996 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1120 #, fuzzy msgid "" "An error occurred while setting the tab name. Please contact your " @@ -2095,7 +2121,7 @@ msgstr "" "Une erreur s'est produite durant l'initialisation du titre de l'onglet. " "Veuillez contacter votre administrateur." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:946 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:942 msgid "" "An error occurred while setting the tab schema. Please contact your " "administrator." @@ -2103,7 +2129,7 @@ msgstr "" "Une erreur s'est produite durant l'initialisation de l'onglet Schéma. " "Veuillez contacter votre administrateur." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1154 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1146 msgid "" "An error occurred while setting the tab template parameters. Please " "contact your administrator." @@ -2116,8 +2142,8 @@ msgstr "" msgid "An error occurred while starring this chart" msgstr "Une erreur s'est produite durant la modification de ce rapport." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:251 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:297 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:255 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:301 msgid "" "An error occurred while storing the latest query id in the backend. " "Please contact your administrator if this problem persists." @@ -2126,7 +2152,7 @@ msgstr "" "dans le backend. Veuillez contacter votre administrateur si le problème " "persiste." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1095 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1087 msgid "" "An error occurred while storing your query in the backend. To avoid " "losing your changes, please save your query using the \"Save Query\" " @@ -2152,7 +2178,7 @@ msgstr "Une erreur s'est produite durant la création de la source de donnée" msgid "An unexpected error occurred" msgstr "Un erreur s'est produite" -#: superset/views/core.py:734 +#: superset/views/core.py:745 msgid "An unknown error occurred. Please contact your Superset administrator" msgstr "Une erreur s'est produite. Contactez votre admin superset" @@ -2185,7 +2211,7 @@ msgstr "Couches d'annotations" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:127 -#: superset/initialization/__init__.py:420 +#: superset/initialization/__init__.py:414 msgid "Annotation Layers" msgstr "Couches d'annotations" @@ -2337,7 +2363,8 @@ msgstr "Les annotations n'ont pas pu être supprimées." #: superset-frontend/src/pages/DashboardList/index.tsx:504 #: superset-frontend/src/pages/DashboardList/index.tsx:572 #: superset-frontend/src/pages/DashboardList/index.tsx:586 -#: superset-frontend/src/pages/DatasetList/index.tsx:570 +#: superset-frontend/src/pages/DatasetList/index.tsx:581 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:260 msgid "Any" msgstr "Tous" @@ -2354,18 +2381,18 @@ msgstr "" "Une palette de couleur sélectionnée ici écrasera les couleurs appliquées " "aux graphiques de ce tableau de bord" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:953 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1008 msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:967 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1022 msgid "" "Any databases that allow connections via SQL Alchemy URIs can be added. " "Learn about how to connect a database driver " msgstr "" -#: superset/views/database/forms.py:169 superset/views/database/forms.py:326 -#: superset/views/database/forms.py:457 +#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 +#: superset/views/database/forms.py:467 msgid "Append" msgstr "Ajouter" @@ -2384,7 +2411,7 @@ msgstr "Filtres appliqués (%d)" msgid "Applied filters: %s" msgstr "Filtres appliqués (%d)" -#: superset/viz.py:246 +#: superset/viz.py:250 msgid "" "Applied rolling window did not return any data. Please make sure the " "source query satisfies the minimum periods defined in the rolling window." @@ -2396,11 +2423,16 @@ msgstr "" #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:856 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:228 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:476 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:479 msgid "Apply" msgstr "Appliquer" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:100 +#, fuzzy +msgid "Apply conditional color formatting to metric" +msgstr "Informations additionnelles" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:386 msgid "Apply conditional color formatting to metrics" msgstr "" @@ -2450,6 +2482,7 @@ msgstr "Voulez vous vraiment annuler ?" #: superset-frontend/src/pages/ChartList/index.tsx:509 #: superset-frontend/src/pages/DashboardList/index.tsx:418 #: superset-frontend/src/pages/DashboardList/index.tsx:739 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:173 #: superset-frontend/src/pages/Tags/index.tsx:144 msgid "Are you sure you want to delete" msgstr "Etes-vous sûr de vouloir supprimer" @@ -2476,7 +2509,7 @@ msgstr "Etes-vous sûr de vouloir supprimer les graphiques sélectionnés ?" msgid "Are you sure you want to delete the selected dashboards?" msgstr "Etes-vous sûr de vouloir supprimer les tableaux de bord sélectionné ?" -#: superset-frontend/src/pages/DatasetList/index.tsx:741 +#: superset-frontend/src/pages/DatasetList/index.tsx:763 msgid "Are you sure you want to delete the selected datasets?" msgstr "Etes-vous sûr de vouloir supprimer les jeux de données sélectionnés ?" @@ -2488,6 +2521,11 @@ msgstr "Etes-vous sûr de vouloir supprimer les couches sélectionnées ?" msgid "Are you sure you want to delete the selected queries?" msgstr "Ete-vous sûr de vouloir supprimer les requêtes sélectionnées ?" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:305 +#, fuzzy +msgid "Are you sure you want to delete the selected rules?" +msgstr "Etes-vous sûr de vouloir supprimer les couches sélectionnées ?" + #: superset-frontend/src/pages/Tags/index.tsx:282 #, fuzzy msgid "Are you sure you want to delete the selected tags?" @@ -2497,7 +2535,7 @@ msgstr "Êtes-vous sûr de vouloir supprimer les %s sélectionnés ?" msgid "Are you sure you want to delete the selected templates?" msgstr "Etes-vous sûr de vouloir supprimer les templates sélectionnés ?" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:426 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:434 #, fuzzy msgid "Are you sure you want to overwrite this dataset?" msgstr "Etes-vous sûr de vouloir supprimer les jeux de données sélectionnés ?" @@ -2506,7 +2544,7 @@ msgstr "Etes-vous sûr de vouloir supprimer les jeux de données sélectionnés msgid "Are you sure you want to proceed?" msgstr "Êtes-vous certain de vouloir continuer ?" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:174 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:216 msgid "Are you sure you want to save and apply changes?" msgstr "Êtes vous sur de vouloir sauvegarder et appliquer les modifications ?" @@ -2550,7 +2588,7 @@ msgstr "lignes" msgid "Assign a set of parameters as" msgstr "Les paramètres du jeu de données sont invalides." -#: superset/connectors/sqla/views.py:476 +#: superset/connectors/sqla/views.py:383 msgid "Associated Charts" msgstr "Les graphiques associés" @@ -2558,9 +2596,9 @@ msgstr "Les graphiques associés" msgid "Async Execution" msgstr "Exécution asynchrone" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:295 -#: superset-frontend/src/pages/DatabaseList/index.tsx:309 -#: superset-frontend/src/pages/DatabaseList/index.tsx:475 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:305 +#: superset-frontend/src/pages/DatabaseList/index.tsx:320 +#: superset-frontend/src/pages/DatabaseList/index.tsx:486 msgid "Asynchronous query execution" msgstr "Exécution de requête asynchrone" @@ -2578,7 +2616,7 @@ msgstr "à" msgid "Auto Zoom" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:530 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 msgid "Autocomplete" msgstr "Complétion automatique" @@ -2604,7 +2642,7 @@ msgstr "" msgid "Average" msgstr "Partage de requête" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:233 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 #, fuzzy msgid "Average value" msgstr "Valeur cible" @@ -2644,10 +2682,10 @@ msgstr "Tri décroissant" msgid "BOOLEAN" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:366 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1051 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1068 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1088 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:373 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1123 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1143 msgid "Back" msgstr "" @@ -2657,7 +2695,7 @@ msgstr "" msgid "Back to all" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:300 +#: superset-frontend/src/pages/DatabaseList/index.tsx:311 #: superset/views/database/mixins.py:200 msgid "Backend" msgstr "Backend" @@ -2673,7 +2711,7 @@ msgstr "Valeur cible" msgid "Bad formula." msgstr "Format Date" -#: superset/viz.py:2509 superset/viz.py:2545 +#: superset/viz.py:2452 superset/viz.py:2492 msgid "Bad spatial key" msgstr "Mauvaise clef spatiale" @@ -2710,6 +2748,12 @@ msgstr "Valeur cible" msgid "Bar orientation" msgstr "Documentation" +#: superset-frontend/src/features/rls/constants.ts:28 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:263 +#, fuzzy +msgid "Base" +msgstr "base de données" + #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:239 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 msgid "Base layer map style" @@ -2723,12 +2767,12 @@ msgstr "Basé sur une métrique" msgid "Based on granularity, number of time periods to compare against" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:228 msgid "Based on what should series be ordered on the chart and legend" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:854 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1723 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1779 msgid "Basic" msgstr "Simple" @@ -2760,7 +2804,7 @@ msgid "Before" msgstr "Avant" #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:37 -#: superset/viz.py:1286 +#: superset/viz.py:1186 msgid "Big Number" msgstr "Gros nombre" @@ -2769,11 +2813,11 @@ msgid "Big Number Font Size" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:36 -#: superset/viz.py:1252 +#: superset/viz.py:1150 msgid "Big Number with Trendline" msgstr "Gros nombre avec tendance" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 #, fuzzy msgid "Bottom" @@ -2805,7 +2849,6 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:261 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:277 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:263 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:251 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:195 @@ -2824,6 +2867,24 @@ msgid "" " the axis range. It won't narrow the data's extent." msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 +msgid "" +"Bounds for the primary Y-axis. When left empty, the bounds are " +"dynamically defined based on the min/max of the data. Note that this " +"feature will only expand the axis range. It won't narrow the data's " +"extent." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:411 +msgid "" +"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" +" bounds are enabled. When left empty, the bounds are " +"dynamically defined\n" +" based on the min/max of the data. Note that this feature " +"will only expand\n" +" the axis range. It won't narrow the data's extent." +msgstr "" + #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:58 #: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/createMetadata.ts:27 @@ -2837,7 +2898,7 @@ msgid "Breakdowns" msgstr "Créé le" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:32 -#: superset/viz.py:1171 +#: superset/viz.py:1065 msgid "Bubble Chart" msgstr "Bulles" @@ -2871,14 +2932,15 @@ msgstr "Rebuild" #: superset-frontend/src/pages/ChartList/index.tsx:789 #: superset-frontend/src/pages/CssTemplateList/index.tsx:262 #: superset-frontend/src/pages/DashboardList/index.tsx:662 -#: superset-frontend/src/pages/DatasetList/index.tsx:596 +#: superset-frontend/src/pages/DatasetList/index.tsx:607 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 #: superset-frontend/src/pages/SavedQueryList/index.tsx:177 #: superset-frontend/src/pages/Tags/index.tsx:267 msgid "Bulk select" msgstr "Sélectionner plusieurs" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 -#: superset/viz.py:1222 +#: superset/viz.py:1118 msgid "Bullet Chart" msgstr "Points" @@ -2894,7 +2956,7 @@ msgstr "Points" msgid "Business" msgstr "" -#: superset/connectors/sqla/views.py:165 +#: superset/connectors/sqla/views.py:164 msgid "Business Data Type" msgstr "" @@ -2930,16 +2992,16 @@ msgstr "" msgid "CANCEL" msgstr "ANNULER" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1520 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1575 #, fuzzy msgid "CREATE DATASET" msgstr "Changer de jeu de données" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:585 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:579 msgid "CREATE TABLE AS" msgstr "Autoriser CREATE TABLE AS" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:596 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:590 msgid "CREATE VIEW AS" msgstr "CREATE VIEW AS" @@ -2965,7 +3027,7 @@ msgstr "CSS" msgid "CSS Styles" msgstr "" -#: superset/initialization/__init__.py:286 superset/views/css_templates.py:38 +#: superset/initialization/__init__.py:288 superset/views/css_templates.py:38 msgid "CSS Templates" msgstr "Templates CSS" @@ -2999,7 +3061,7 @@ msgstr "Templates CSS" msgid "CSV Upload" msgstr "Charger un CSV" -#: superset/views/database/views.py:287 +#: superset/views/database/views.py:290 #, python-format msgid "" "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " @@ -3008,19 +3070,19 @@ msgstr "" "Fichier CSV \"%(csv_filename)s\" chargé dans la table \"%(table_name)s\" " "de la base de données \"%(db_name)s\"" -#: superset/views/database/views.py:160 +#: superset/views/database/views.py:161 msgid "CSV to Database configuration" msgstr "Configuration de CSV vers base de données" -#: superset-frontend/src/pages/DatabaseList/index.tsx:344 +#: superset-frontend/src/pages/DatabaseList/index.tsx:355 msgid "CSV upload" msgstr "Charger un CSV" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:130 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 msgid "CTAS & CVAS SCHEMA" msgstr "SCHEMA CTAS & CVAS" -#: superset/sql_lab.py:440 +#: superset/sql_lab.py:432 msgid "" "CTAS (create table as select) can only be run with a query where the last" " statement is a SELECT. Please make sure your query has a SELECT as its " @@ -3034,7 +3096,7 @@ msgstr "" msgid "CTAS Schema" msgstr "Schéma CTAS" -#: superset/sql_lab.py:457 +#: superset/sql_lab.py:449 msgid "" "CVAS (create view as select) can only be run with a query with a single " "SELECT statement. Please make sure your query has only a SELECT " @@ -3053,7 +3115,7 @@ msgstr "La requête CVAS (create view as select) a plus d'une instruction." msgid "CVAS (create view as select) query is not a SELECT statement." msgstr "La requête CVAS (create view as select) n'est pas une instruction SELECT." -#: superset/connectors/sqla/views.py:486 superset/views/chart/mixin.py:76 +#: superset/connectors/sqla/views.py:393 superset/views/chart/mixin.py:76 msgid "Cache Timeout" msgstr "Cache timeout" @@ -3072,16 +3134,16 @@ msgstr "Cache timeout" msgid "Cached" msgstr "mis en cache" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:349 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:351 #, python-format msgid "Cached %s" msgstr "En cache %s" -#: superset/viz.py:562 +#: superset/viz.py:578 msgid "Cached value not found" msgstr "Valeur en cache non trouvée" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:53 #, fuzzy msgid "Calculate contribution per series or row" msgstr "Calculer la contribution au total" @@ -3104,7 +3166,7 @@ msgid "Calculation type" msgstr "Choisir un type de calcul" #: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 -#: superset/viz.py:1080 +#: superset/viz.py:972 msgid "Calendar Heatmap" msgstr "Calendrier Carte de chaleur" @@ -3117,17 +3179,17 @@ msgstr "On ne peut déplacer un onglet top level vers des onglets imbriqués" msgid "Can select multiple values" msgstr "Peut selectionner plusieurs valeurs" -#: superset/viz.py:1810 +#: superset/viz.py:1727 msgid "Can't have overlap between Series and Breakdowns" msgstr "Il ne faut pas avoir d'élement en commun entre Série et Breakdowns" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:206 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:759 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:263 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:185 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 -#: superset-frontend/src/components/Modal/Modal.tsx:262 -#: superset-frontend/src/components/ReportModal/index.tsx:220 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:205 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:753 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:227 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:268 +#: superset-frontend/src/components/Modal/Modal.tsx:269 +#: superset-frontend/src/components/ReportModal/index.tsx:219 #: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:72 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:649 #: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 @@ -3135,14 +3197,14 @@ msgstr "Il ne faut pas avoir d'élement en commun entre Série et Breakdowns" #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:76 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 -#: superset-frontend/src/explore/components/SaveModal.tsx:379 +#: superset-frontend/src/explore/components/SaveModal.tsx:413 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:843 #: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 #: superset/templates/superset/request_access.html:34 msgid "Cancel" msgstr "Annuler" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:314 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 msgid "Cancel query on window unload event" msgstr "Annule la requête quand on quitte la fenêtre" @@ -3160,7 +3222,7 @@ msgstr "" msgid "Cannot have multiple credentials for the SSH Tunnel" msgstr "" -#: superset/views/core.py:723 +#: superset/views/core.py:734 #, python-format msgid "" "Cannot import dashboard: %(db_error)s.\n" @@ -3232,7 +3294,7 @@ msgstr "Pourcentages" msgid "Category and Value" msgstr "Renseigner une valeur" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:229 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:67 #, fuzzy msgid "Category name" msgstr "Nom de la requête" @@ -3247,15 +3309,15 @@ msgstr "" msgid "Category, Value and Percentage" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:103 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 msgid "Cell Padding" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:117 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 msgid "Cell Radius" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 #, fuzzy msgid "Cell Size" msgstr "Fichier Excel" @@ -3265,7 +3327,7 @@ msgstr "Fichier Excel" msgid "Cell bars" msgstr "Tous les graphiques" -#: superset-frontend/src/components/FilterableTable/index.tsx:431 +#: superset-frontend/src/components/FilterableTable/index.tsx:303 msgid "Cell content" msgstr "Contenu de cellule" @@ -3279,6 +3341,7 @@ msgstr "Nombre de séries max" msgid "Center" msgstr "Récents" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:33 #, fuzzy msgid "Centroid (Longitude and Latitude): " @@ -3302,7 +3365,7 @@ msgstr "Détails de certification" #: superset-frontend/src/pages/ChartList/index.tsx:699 #: superset-frontend/src/pages/DashboardList/index.tsx:580 -#: superset-frontend/src/pages/DatasetList/index.tsx:564 +#: superset-frontend/src/pages/DatasetList/index.tsx:575 #, fuzzy msgid "Certified" msgstr "Certifié" @@ -3334,7 +3397,7 @@ msgstr "" msgid "Change order of rows." msgstr "" -#: superset/connectors/sqla/views.py:478 +#: superset/connectors/sqla/views.py:385 msgid "Changed By" msgstr "Modifié par" @@ -3387,7 +3450,7 @@ msgstr "Modifier ce graphique est interdit" msgid "Changing this control takes effect instantly" msgstr "La modification de ce contrôle prendra effet immédiatement" -#: superset/datasets/commands/exceptions.py:181 +#: superset/datasets/commands/exceptions.py:198 msgid "Changing this dataset is forbidden" msgstr "Changer ce jeu de données est interdit" @@ -3405,15 +3468,16 @@ msgstr "Changer ce jeu de données est interdit" msgid "Changing this report is forbidden" msgstr "Il est interdit de changer ce rapport" -#: superset/views/database/forms.py:196 +#: superset/views/database/forms.py:206 #, fuzzy msgid "Character to interpret as decimal point" msgstr "Caractère à interpréter comme un point décimal." -#: superset/views/database/forms.py:375 +#: superset/views/database/forms.py:385 msgid "Character to interpret as decimal point." msgstr "Caractère à interpréter comme un point décimal." +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:51 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:449 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:405 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:69 @@ -3421,11 +3485,11 @@ msgstr "Caractère à interpréter comme un point décimal." #: superset-frontend/src/features/home/RightMenu.tsx:219 #: superset-frontend/src/pages/ChartList/index.tsx:369 #: superset-frontend/src/pages/ChartList/index.tsx:799 -#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:90 +#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 msgid "Chart" msgstr "Graphique" -#: superset/views/core.py:1727 +#: superset/views/core.py:1762 #, python-format msgid "Chart %(id)s not found" msgstr "Graphique %(id)s non trouvé" @@ -3434,7 +3498,7 @@ msgstr "Graphique %(id)s non trouvé" msgid "Chart Cache Timeout" msgstr "Timeout du cahce du graphique" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:437 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:442 #, fuzzy, python-format msgid "Chart Data: %s" msgstr "Dernière mise à jour %s" @@ -3444,7 +3508,7 @@ msgstr "Dernière mise à jour %s" msgid "Chart ID" msgstr "ID Graphique" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:53 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:55 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:61 @@ -3466,7 +3530,7 @@ msgstr "ID Graphique" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:59 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:131 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:107 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:74 @@ -3514,34 +3578,34 @@ msgstr "Source de données" msgid "Chart Title" msgstr "Onglet titre" -#: superset-frontend/src/explore/actions/saveModalActions.js:127 +#: superset-frontend/src/explore/actions/saveModalActions.js:121 #, fuzzy, python-format msgid "Chart [%s] has been overwritten" msgstr "Le graphique [{}] a été écrasé" -#: superset-frontend/src/explore/actions/saveModalActions.js:124 +#: superset-frontend/src/explore/actions/saveModalActions.js:118 #, fuzzy, python-format msgid "Chart [%s] has been saved" msgstr "Le graphique [{}] a été sauvegardé" -#: superset-frontend/src/explore/actions/saveModalActions.js:145 +#: superset-frontend/src/explore/actions/saveModalActions.js:139 #, fuzzy, python-format msgid "Chart [%s] was added to dashboard [%s]" msgstr "Graphique [{}] ajouté au tableau de bord [{}]" -#: superset/views/core.py:1077 +#: superset/views/core.py:1099 msgid "Chart [{}] has been overwritten" msgstr "Le graphique [{}] a été écrasé" -#: superset/views/core.py:1073 +#: superset/views/core.py:1095 msgid "Chart [{}] has been saved" msgstr "Le graphique [{}] a été sauvegardé" -#: superset/views/core.py:1102 +#: superset/views/core.py:1124 msgid "Chart [{}] was added to dashboard [{}]" msgstr "Graphique [{}] ajouté au tableau de bord [{}]" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:228 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:238 msgid "Chart cache timeout" msgstr "Timeout du cache du graphique" @@ -3612,7 +3676,7 @@ msgstr "Dernière modification" msgid "Chart last modified by" msgstr "Dernière modification par %s" -#: superset-frontend/src/explore/components/SaveModal.tsx:320 +#: superset-frontend/src/explore/components/SaveModal.tsx:355 msgid "Chart name" msgstr "Nom du graphique" @@ -3645,7 +3709,7 @@ msgstr "Onglet titre" msgid "Chart type" msgstr "Type de graphique" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:315 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 msgid "Chart type requires a dataset" msgstr "" @@ -3661,7 +3725,7 @@ msgstr "Onglet titre" #: superset-frontend/src/pages/Home/index.tsx:399 #: superset-frontend/src/profile/components/CreatedContent.tsx:104 #: superset-frontend/src/profile/components/Favorites.tsx:102 -#: superset/initialization/__init__.py:257 superset/views/chart/mixin.py:25 +#: superset/initialization/__init__.py:259 superset/views/chart/mixin.py:25 #: superset/views/dashboard/mixin.py:80 msgid "Charts" msgstr "Graphiques" @@ -3693,7 +3757,7 @@ msgstr "" msgid "Check out this chart in dashboard:" msgstr "Vérifiez ce graphique dans le tableau de bord :" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:474 msgid "Check out this chart: " msgstr "Vérifiez ce tableau de bord : " @@ -3725,11 +3789,11 @@ msgstr "Cocher pour inclure la liste déroulante de granularité de temps" msgid "Child label position" msgstr "" -#: superset/viz.py:2370 +#: superset/viz.py:2307 msgid "Choice of [Label] must be present in [Group By]" msgstr "Le [Label] choisi doit être présent dans [Grouper par]" -#: superset/viz.py:2378 +#: superset/viz.py:2315 msgid "Choice of [Point Radius] must be present in [Group By]" msgstr "Le [Point Radius] doit être présent dans [Grouper par]" @@ -3742,7 +3806,7 @@ msgstr "Choisissez un fichier" msgid "Choose a chart or dashboard not both" msgstr "Choisissez un graphique ou un tableau de bord, pas les deux" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:924 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:979 #, fuzzy msgid "Choose a database..." msgstr "Choisissez un jeu de donnée" @@ -3783,15 +3847,11 @@ msgstr "Choisissez un jeu de donnée" msgid "Choose a target" msgstr "Choisissez un jeu de donnée" -#: superset/connectors/sqla/views.py:327 -msgid "Choose a unique name" -msgstr "" - #: superset-frontend/src/pages/ChartCreation/index.tsx:404 msgid "Choose chart type" msgstr "Choisissez un type de graphique" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:745 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:739 msgid "Choose one of the available databases from the panel on the left." msgstr "" @@ -3872,7 +3932,8 @@ msgid "" "showcase a view into the underlying data or to show aggregated metrics." msgstr "" -#: superset/connectors/sqla/views.py:365 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:454 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:144 msgid "Clause" msgstr "Clause" @@ -3884,7 +3945,7 @@ msgstr "Effacer" msgid "Clear all" msgstr "Effacer tout" -#: superset-frontend/src/components/Table/index.tsx:206 +#: superset-frontend/src/components/Table/index.tsx:210 #, fuzzy msgid "Clear all data" msgstr "Effacer tout" @@ -3912,7 +3973,7 @@ msgstr "Cliquez sur le cadenas pour apporter des modifications." msgid "Click the lock to prevent further changes." msgstr "Cliquez sur le cadenas pour empêcher d'autres modifications." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1955 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2012 msgid "" "Click this link to switch to an alternate form that allows you to input " "the SQLAlchemy URL for this database manually." @@ -3921,7 +3982,7 @@ msgstr "" "permettra d'entrer manuellement l'URL SQLAlchemy pour cette base de " "données." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1771 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1827 msgid "" "Click this link to switch to an alternate form that exposes only the " "required fields needed to connect this database." @@ -3929,7 +3990,7 @@ msgstr "" "Cliquez sur ce lien pour basculer sur un autre formulaire qui ne montrera" " que les champs nécessaires pour se connecter à cette base de données." -#: superset-frontend/src/components/Table/index.tsx:213 +#: superset-frontend/src/components/Table/index.tsx:217 msgid "Click to cancel sorting" msgstr "" @@ -3939,16 +4000,10 @@ msgstr "Cliquer pour modifier" #: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 #, fuzzy, python-format -msgid "Click to edit %s in a new tab" -msgstr "Cliquer pour éditer le Label" - -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:32 -#, fuzzy, python-format msgid "Click to edit %s." msgstr "Cliquer pour modifier" #: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:33 #, fuzzy msgid "Click to edit chart." msgstr "Cliquer pour modifier" @@ -3970,27 +4025,27 @@ msgstr "Cliquer pour forcer le rafraîchissement" msgid "Click to see difference" msgstr "Cliquer pour voir la différence" -#: superset-frontend/src/components/Table/index.tsx:212 +#: superset-frontend/src/components/Table/index.tsx:216 #, fuzzy msgid "Click to sort ascending" msgstr "Cocher pour trier par ordre croissant" -#: superset-frontend/src/components/Table/index.tsx:211 +#: superset-frontend/src/components/Table/index.tsx:215 #, fuzzy msgid "Click to sort descending" msgstr "Tri décroissant" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:83 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:132 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:52 #: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:209 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:219 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:224 #: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:786 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:408 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:414 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:339 #: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:36 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1109 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1164 msgid "Close" msgstr "Fermer" @@ -4024,17 +4079,17 @@ msgstr "Tout réduire" msgid "Collapse data panel" msgstr "Tout réduire" -#: superset-frontend/src/components/Table/index.tsx:210 +#: superset-frontend/src/components/Table/index.tsx:214 #, fuzzy msgid "Collapse row" msgstr "Tout réduire" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:598 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:599 #, fuzzy msgid "Collapse tab content" msgstr "Contenu de cellule" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:197 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 #, fuzzy msgid "Collapse table preview" msgstr "Supprimer la Prévisualisation de la table" @@ -4059,7 +4114,7 @@ msgstr "Métrique de couleur" msgid "Color Scheme" msgstr "Jeu de couleur" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:129 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 #, fuzzy msgid "Color Steps" msgstr "Jeu de couleur" @@ -4083,8 +4138,8 @@ msgid "Color of the target location" msgstr "Détails de la certification" #: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:214 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:218 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 #: superset-frontend/src/explore/controlPanels/sections.tsx:60 #: superset-frontend/src/explore/controls.jsx:460 msgid "Color scheme" @@ -4104,8 +4159,8 @@ msgstr "Couleur" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 #: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:204 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:250 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:256 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:137 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:140 #: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 @@ -4113,7 +4168,7 @@ msgstr "Couleur" #: superset-frontend/src/filters/components/Range/controlPanel.ts:39 #: superset-frontend/src/filters/components/Select/controlPanel.ts:49 #: superset-frontend/src/filters/components/Time/controlPanel.ts:37 -#: superset/connectors/sqla/views.py:155 +#: superset/connectors/sqla/views.py:154 msgid "Column" msgstr "Colonne" @@ -4131,13 +4186,18 @@ msgstr "" msgid "Column Configuration" msgstr "Vérifier la configuration" +#: superset/views/database/forms.py:144 +#, fuzzy +msgid "Column Data Types" +msgstr "Données chargées mises en cache" + #: superset-frontend/src/explore/components/DataTableControl/index.tsx:194 #, fuzzy msgid "Column Formatting" msgstr "Informations additionnelles" -#: superset/views/database/forms.py:222 superset/views/database/forms.py:383 -#: superset/views/database/forms.py:474 +#: superset/views/database/forms.py:232 superset/views/database/forms.py:393 +#: superset/views/database/forms.py:484 msgid "Column Label(s)" msgstr "Labels) de colonne" @@ -4155,6 +4215,11 @@ msgstr "" msgid "Column containing longitude data" msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:69 +#, fuzzy +msgid "Column datatype" +msgstr "Nom(s) de colonne " + #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 msgid "Column header tooltip" msgstr "" @@ -4163,7 +4228,7 @@ msgstr "" msgid "Column is required" msgstr "Colonne requise" -#: superset/views/database/forms.py:384 superset/views/database/forms.py:475 +#: superset/views/database/forms.py:394 superset/views/database/forms.py:485 msgid "" "Column label for index column(s). If None is given and Dataframe Index is" " True, Index Names are used." @@ -4172,7 +4237,7 @@ msgstr "" "que l'index du tableau de données est Vrai, alors les noms d'Index sont " "utilisés." -#: superset/views/database/forms.py:223 +#: superset/views/database/forms.py:233 #, fuzzy msgid "" "Column label for index column(s). If None is given and Dataframe Index is" @@ -4182,7 +4247,7 @@ msgstr "" "que l'index du tableau de données est Vrai, alors les noms d'Index sont " "utilisés." -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:77 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:90 #, fuzzy msgid "Column name" msgstr "Nom(s) de colonne " @@ -4201,7 +4266,7 @@ msgstr "La colonne référencée dans l'agrégat est indéfinie: %(column)s" msgid "Column select" msgstr "Sélection d'une colonne" -#: superset/views/database/forms.py:211 +#: superset/views/database/forms.py:221 #, fuzzy msgid "" "Column to use as the row labels of the dataframe. Leave empty if no index" @@ -4210,7 +4275,7 @@ msgstr "" "Colonne à utiliser comme labelle de ligne du tableau de données. Laissez " "vide si pas d'index de colonne." -#: superset/views/database/forms.py:342 +#: superset/views/database/forms.py:352 msgid "" "Column to use as the row labels of the dataframe. Leave empty if no index" " column." @@ -4218,11 +4283,11 @@ msgstr "" "Colonne à utiliser comme labelle de ligne du tableau de données. Laissez " "vide si pas d'index de colonne." -#: superset/views/database/forms.py:414 +#: superset/views/database/forms.py:424 msgid "Columnar File" msgstr "Fichier en colonnes" -#: superset/views/database/views.py:565 +#: superset/views/database/views.py:568 #, python-format msgid "" "Columnar file \"%(columnar_filename)s\" uploaded to table " @@ -4231,7 +4296,7 @@ msgstr "" "Fichier en colonne \"%(columnar_filename)s\" chargé dans la table " "\"%(table_name)s\" de la base de données \"%(db_name)s\"" -#: superset/views/database/views.py:440 +#: superset/views/database/views.py:443 msgid "Columnar to Database configuration" msgstr "Configuration des colonnes vers la base de données" @@ -4247,18 +4312,18 @@ msgstr "Configuration des colonnes vers la base de données" #: superset-frontend/src/explore/controls.jsx:244 #: superset-frontend/src/explore/fixtures.tsx:97 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 -#: superset/connectors/sqla/views.py:72 +#: superset/connectors/sqla/views.py:71 msgid "Columns" msgstr "Colonnes" -#: superset/views/database/forms.py:183 +#: superset/views/database/forms.py:193 #, fuzzy msgid "Columns To Be Parsed as Dates" msgstr "" "Une liste de colonnes séparées par des virgules qui devraient être " "parsées comme des dates." -#: superset/views/database/forms.py:231 +#: superset/views/database/forms.py:241 #, fuzzy msgid "Columns To Read" msgstr "Pas de colonne" @@ -4268,7 +4333,7 @@ msgstr "Pas de colonne" msgid "Columns missing in dataset: %(invalid_columns)s" msgstr "Colonnes absentes de la source de données : %(invalid_columns)s" -#: superset/viz.py:577 +#: superset/viz.py:593 #, python-format msgid "Columns missing in datasource: %(invalid_columns)s" msgstr "Colonnes absentes de la source de données : %(invalid_columns)s" @@ -4309,11 +4374,6 @@ msgstr "" msgid "Columns to show" msgstr "Choisissez une métrique à afficher" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:85 -#, fuzzy -msgid "Combine Metrics" -msgstr "Trier les métriques" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:250 #, fuzzy msgid "Combine metrics" @@ -4374,6 +4434,7 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:35 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:35 @@ -4419,6 +4480,11 @@ msgstr "Calculer la contribution au total" msgid "Condition" msgstr "Condition" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 +#, fuzzy +msgid "Conditional Formatting" +msgstr "Informations additionnelles" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:385 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:504 #, fuzzy @@ -4475,15 +4541,15 @@ msgstr "Configurer comment votre superposition est affichée ici." msgid "Confirm overwrite" msgstr "Confirmez la sauvegarde" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:180 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:222 msgid "Confirm save" msgstr "Confirmez la sauvegarde" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1059 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1097 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1656 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1695 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1857 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1152 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1712 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 msgid "Connect" msgstr "Connecter" @@ -4497,9 +4563,9 @@ msgstr "" "Connecter à cette base de données les feuilles Google Sheet comme des " "tables" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1660 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1700 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1861 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1716 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1918 msgid "Connect a database" msgstr "Connecter une base de données" @@ -4507,24 +4573,24 @@ msgstr "Connecter une base de données" msgid "Connect database" msgstr "Connexion à la base de données" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1768 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 msgid "Connect this database using the dynamic form instead" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1950 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2007 msgid "Connect this database with a SQLAlchemy URI string instead" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:225 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 msgid "Connection" msgstr "Connexion" #: superset/databases/commands/exceptions.py:107 -#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1430 +#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1471 msgid "Connection failed, please check your connection settings" msgstr "La connexion a échoué, veuillez vérifier vos paramètres de connexion" -#: superset-frontend/src/views/CRUD/hooks.ts:697 +#: superset-frontend/src/views/CRUD/hooks.ts:701 msgid "Connection looks good!" msgstr "" @@ -4549,7 +4615,7 @@ msgstr "" msgid "Contribution" msgstr "Contribution" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:42 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 #, fuzzy msgid "Contribution Mode" msgstr "Contribution" @@ -4604,8 +4670,8 @@ msgstr "Copier le lien" msgid "Copy message" msgstr "Copier le message" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:683 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1469 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:679 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1461 #: superset-frontend/src/SqlLab/reducers/sqlLab.js:107 #, python-format msgid "Copy of %s" @@ -4616,7 +4682,7 @@ msgid "Copy partition query to clipboard" msgstr "Copier la requête de partition vers le presse-papier" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:329 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:468 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:340 msgid "Copy permalink to clipboard" msgstr "Copier le lien dans le presse-papiers" @@ -4646,7 +4712,7 @@ msgstr "" "Copier le nom de la base de données à laquelle vous essayez de vous " "connecter." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:273 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:271 msgid "Copy to Clipboard" msgstr "Copier vers le presse-papier" @@ -4667,7 +4733,12 @@ msgstr "Durée" msgid "Cost estimate" msgstr "Estimation coût" -#: superset/views/utils.py:498 +#: superset/db_engine_specs/ocient.py:259 +#, fuzzy, python-format +msgid "Could not connect to database: \"%(database)s\"" +msgstr "Impossible de se connecter à la base de données \"%(database)s\"." + +#: superset/views/utils.py:496 msgid "Could not determine datasource type" msgstr "Impossible de déterminer le type de source de données" @@ -4676,7 +4747,7 @@ msgstr "Impossible de déterminer le type de source de données" msgid "Could not fetch all saved charts" msgstr "Impossible de récupérer tous les graphiques sauvegardés" -#: superset/views/utils.py:514 +#: superset/views/utils.py:512 msgid "Could not find viz object" msgstr "Impossible de trouver l'objet viz" @@ -4684,7 +4755,7 @@ msgstr "Impossible de trouver l'objet viz" msgid "Could not load database driver" msgstr "Le driver de la base de données n'a pas pu être chargé" -#: superset/views/core.py:1413 +#: superset/views/core.py:1454 #, python-format msgid "Could not load database driver: %(driver_name)s" msgstr "Impossible de charger le driver de base de donnée: %(driver_name)s" @@ -4693,6 +4764,11 @@ msgstr "Impossible de charger le driver de base de donnée: %(driver_name)s" msgid "Could not load database driver: {}" msgstr "Ce driver de la base de données n'a pas pu être chargé : {}" +#: superset/db_engine_specs/ocient.py:264 +#, python-format +msgid "Could not resolve hostname: \"%(host)s\"." +msgstr "" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 #, fuzzy msgid "Count" @@ -4737,12 +4813,12 @@ msgid "Country Field Type" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 -#: superset/viz.py:2044 +#: superset/viz.py:1969 msgid "Country Map" msgstr "Carte de pays" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:767 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:761 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:770 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:96 msgid "Create" msgstr "Créer" @@ -4753,10 +4829,10 @@ msgid "Create Chart" msgstr "Enregistrer un graphique" #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:331 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:321 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:332 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:356 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:327 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:338 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:362 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 #, fuzzy msgid "Create a dataset" @@ -4803,7 +4879,7 @@ msgstr "Créer un nouveau graphique" msgid "Create new filter set" msgstr "Créer un nouvel ensemble de filtre" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 msgid "Create or select schema..." msgstr "Créer ou sélectionner schéma ..." @@ -4826,7 +4902,7 @@ msgstr "Créé le" #: superset-frontend/src/pages/CssTemplateList/index.tsx:273 #: superset-frontend/src/pages/DashboardList/index.tsx:358 #: superset-frontend/src/pages/DashboardList/index.tsx:545 -#: superset-frontend/src/pages/DatabaseList/index.tsx:365 +#: superset-frontend/src/pages/DatabaseList/index.tsx:376 #: superset-frontend/src/pages/Tags/index.tsx:128 #: superset-frontend/src/pages/Tags/index.tsx:183 msgid "Created by" @@ -4857,9 +4933,8 @@ msgstr "L'import du graphique a échoué pour une raison inconnue" msgid "Creating a data source and creating a new tab" msgstr "Créer une source de données et ouvrir un nouvel onglet" -#: superset/connectors/sqla/views.py:366 superset/views/chart/mixin.py:77 -#: superset/views/dashboard/mixin.py:84 superset/views/dashboard/views.py:185 -#: superset/views/database/mixins.py:189 +#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 +#: superset/views/dashboard/views.py:185 superset/views/database/mixins.py:189 msgid "Creator" msgstr "Créateur" @@ -4868,15 +4943,27 @@ msgstr "Créateur" msgid "Crimson" msgstr "Action" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:122 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:152 msgid "Cross-filter will be applied to all of the charts that use this dataset." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:134 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:164 #, fuzzy msgid "Cross-filtering is not enabled for this dashboard." msgstr "Pas de filtre dans ce tableau de bord." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 +#, fuzzy +msgid "Cross-filtering is not enabled in this dashboard" +msgstr "Pas de filtre dans ce tableau de bord." + +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:414 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 +#, fuzzy +msgid "Cross-filtering scoping" +msgstr "Portée du filtre croisé" + #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 #, fuzzy msgid "Cross-filters" @@ -4905,7 +4992,7 @@ msgstr "Plugin custom" msgid "Custom Plugins" msgstr "Plugins custom" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:385 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:391 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 @@ -4918,8 +5005,7 @@ msgstr "" "Les métriques ad-hoc pour le SQL personnalisé ne sont pas disponibles " "pour ce dataset" -#: superset/connectors/sqla/utils.py:194 superset/errors.py:145 -#: superset/models/helpers.py:129 superset/models/helpers.py:864 +#: superset/errors.py:145 superset/models/helpers.py:138 msgid "Custom SQL fields cannot contain sub-queries." msgstr "" @@ -4945,7 +5031,7 @@ msgstr "Pas de colonne temporelle" msgid "Cyclic dependency detected" msgstr "" -#: superset/connectors/sqla/views.py:256 +#: superset/connectors/sqla/views.py:255 msgid "D3 Format" msgstr "Format D3" @@ -4955,7 +5041,7 @@ msgstr "Format D3" msgid "D3 format" msgstr "Format D3" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:22 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:146 msgid "D3 format syntax: https://github.com/d3/d3-format" msgstr "" @@ -4971,7 +5057,7 @@ msgstr "" msgid "D3 time format for datetime columns" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:53 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 msgid "D3 time format syntax: https://github.com/d3/d3-time-format" msgstr "" @@ -4994,7 +5080,7 @@ msgstr "DEC" msgid "DELETE" msgstr "EFFACER" -#: superset-frontend/src/pages/DatabaseList/index.tsx:332 +#: superset-frontend/src/pages/DatabaseList/index.tsx:343 msgid "DML" msgstr "DML" @@ -5024,12 +5110,12 @@ msgstr "" msgid "Dashboard" msgstr "Tableau de bord" -#: superset-frontend/src/explore/actions/saveModalActions.js:135 +#: superset-frontend/src/explore/actions/saveModalActions.js:129 #, fuzzy, python-format msgid "Dashboard [%s] just got created and chart [%s] was added to it" msgstr "Le tableau de bord [{}] a été créé et le graphique [{}] y a été ajouté" -#: superset/views/core.py:1122 +#: superset/views/core.py:1144 msgid "Dashboard [{}] just got created and chart [{}] was added to it" msgstr "Le tableau de bord [{}] a été créé et le graphique [{}] y a été ajouté" @@ -5096,7 +5182,7 @@ msgstr "tableaux de bord" #: superset-frontend/src/pages/Home/index.tsx:385 #: superset-frontend/src/profile/components/CreatedContent.tsx:101 #: superset-frontend/src/profile/components/Favorites.tsx:99 -#: superset/initialization/__init__.py:249 superset/views/chart/mixin.py:78 +#: superset/initialization/__init__.py:251 superset/views/chart/mixin.py:78 #: superset/views/dashboard/mixin.py:24 msgid "Dashboards" msgstr "Tableaux de bord" @@ -5122,7 +5208,7 @@ msgstr "tableau de bord" #: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:708 #: superset-frontend/src/features/home/RightMenu.tsx:169 -#: superset/initialization/__init__.py:244 +#: superset/initialization/__init__.py:246 msgid "Data" msgstr "Données" @@ -5131,7 +5217,7 @@ msgstr "Données" msgid "Data Table" msgstr "Éditer la table" -#: superset/datasets/commands/exceptions.py:197 +#: superset/datasets/commands/exceptions.py:214 msgid "Data URI is not allowed." msgstr "" @@ -5145,7 +5231,7 @@ msgstr "" msgid "Data Zoom" msgstr "" -#: superset/sqllab/commands/results.py:116 superset/views/core.py:2195 +#: superset/sqllab/commands/results.py:116 superset/views/core.py:2231 msgid "" "Data could not be deserialized from the results backend. The storage " "format might have changed, rendering the old data stake. You need to re-" @@ -5154,7 +5240,7 @@ msgstr "" "Impossible de désérialiser la donnée. Le format de stockage peut avoir " "changé. Rejouez la requête originale." -#: superset/sqllab/commands/results.py:75 superset/views/core.py:2148 +#: superset/sqllab/commands/results.py:75 superset/views/core.py:2184 msgid "" "Data could not be retrieved from the results backend. You need to re-run " "the original query." @@ -5170,7 +5256,7 @@ msgstr "" msgid "Data preview" msgstr "Prévisualiser les données" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:283 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:278 msgid "Data refreshed" msgstr "Données rafraîchies" @@ -5189,25 +5275,25 @@ msgstr "DataFrame doit comprendre au moins une série" msgid "DataFrame must include temporal column" msgstr "Dataframe doit inclure une colonne temporelle" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:275 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:274 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -#: superset-frontend/src/pages/DatabaseList/index.tsx:267 -#: superset-frontend/src/pages/DatabaseList/index.tsx:296 -#: superset-frontend/src/pages/DatasetList/index.tsx:349 -#: superset-frontend/src/pages/DatasetList/index.tsx:520 +#: superset-frontend/src/pages/DatabaseList/index.tsx:278 +#: superset-frontend/src/pages/DatabaseList/index.tsx:307 +#: superset-frontend/src/pages/DatasetList/index.tsx:360 +#: superset-frontend/src/pages/DatasetList/index.tsx:531 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:241 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:349 #: superset-frontend/src/pages/SavedQueryList/index.tsx:287 #: superset-frontend/src/pages/SavedQueryList/index.tsx:448 -#: superset/connectors/sqla/views.py:479 superset/connectors/sqla/views.py:480 +#: superset/connectors/sqla/views.py:386 superset/connectors/sqla/views.py:387 #: superset/templates/superset/import_dashboards.html:53 -#: superset/views/database/forms.py:137 superset/views/database/forms.py:305 -#: superset/views/database/forms.py:436 superset/views/database/mixins.py:188 +#: superset/views/database/forms.py:137 superset/views/database/forms.py:315 +#: superset/views/database/forms.py:446 superset/views/database/mixins.py:188 #: superset/views/sql_lab/views.py:83 msgid "Database" msgstr "Base de données" -#: superset/views/database/views.py:478 +#: superset/views/database/views.py:481 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " @@ -5217,7 +5303,7 @@ msgstr "" " pas autorisée pour les téléversements en colonne. Contactez votre " "administrateur Superset." -#: superset/views/database/views.py:179 +#: superset/views/database/views.py:180 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " @@ -5227,7 +5313,7 @@ msgstr "" " pas autorisée pour les téléversements csv. Contactez votre " "administrateur Superset." -#: superset/views/database/views.py:318 +#: superset/views/database/views.py:321 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " @@ -5237,12 +5323,12 @@ msgstr "" " pas autorisée pour les téléversements Excel. Contactez votre " "administrateur Superset." -#: superset/initialization/__init__.py:241 +#: superset/initialization/__init__.py:243 #, fuzzy msgid "Database Connections" msgstr "Tester la connexion" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1467 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1522 #, fuzzy msgid "Database Creation Error" msgstr "Erreur de base de données" @@ -5252,9 +5338,9 @@ msgid "Database URL" msgstr "URL de la base de données" #: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:827 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:849 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1150 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:882 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:904 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1205 #, fuzzy msgid "Database connected" msgstr "La base de données n'a pas pu être créée." @@ -5281,7 +5367,7 @@ msgstr "La base de données ne permet pas la manipulation de données." msgid "Database does not exist" msgstr "La base de données n'existe pas" -#: superset/connectors/sqla/models.py:1793 superset/models/helpers.py:1966 +#: superset/models/helpers.py:2063 msgid "Database does not support subqueries" msgstr "La base de données n'autorise pas les sous-requêtes" @@ -5291,7 +5377,7 @@ msgid "" "documentation page for installation instructions: " msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:429 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 msgid "Database error" msgstr "Erreur de base de données" @@ -5304,8 +5390,8 @@ msgid "Database is required for alerts" msgstr "Une base de données est requise pour les alertes" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:113 -#: superset/db_engine_specs/base.py:1845 -#: superset/db_engine_specs/clickhouse.py:209 +#: superset/db_engine_specs/base.py:1880 +#: superset/db_engine_specs/clickhouse.py:212 msgid "Database name" msgstr "Nom de la base de données" @@ -5317,7 +5403,7 @@ msgstr "La base de données ne peut pas être changée" msgid "Database not found." msgstr "Base de donnée non trouvée." -#: superset/views/core.py:1179 +#: superset/views/core.py:1201 #, fuzzy, python-format msgid "Database not found: %(id)s" msgstr "Identifiant de source de données non trouvé : %(id)s" @@ -5331,25 +5417,25 @@ msgstr "Les paramètres de base de données sont invalides." msgid "Database passwords" msgstr "Port de la base de données" -#: superset/db_engine_specs/base.py:1842 -#: superset/db_engine_specs/clickhouse.py:206 +#: superset/db_engine_specs/base.py:1876 +#: superset/db_engine_specs/clickhouse.py:208 #: superset/db_engine_specs/databricks.py:52 msgid "Database port" msgstr "Port de la base de données" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:811 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:853 #, fuzzy msgid "Database settings updated" msgstr "La base de données n'a pas pu être mise à jour." -#: superset-frontend/src/pages/DatabaseList/index.tsx:258 +#: superset-frontend/src/pages/DatabaseList/index.tsx:269 #: superset-frontend/src/profile/components/Security.tsx:47 #: superset/views/database/mixins.py:33 msgid "Databases" msgstr "Bases de données" -#: superset/views/database/forms.py:219 superset/views/database/forms.py:380 -#: superset/views/database/forms.py:471 +#: superset/views/database/forms.py:229 superset/views/database/forms.py:390 +#: superset/views/database/forms.py:481 msgid "Dataframe Index" msgstr "Index du tableau de données" @@ -5361,7 +5447,7 @@ msgstr "Index du tableau de données" #: superset-frontend/src/pages/ChartCreation/index.tsx:390 #: superset-frontend/src/pages/ChartList/index.tsx:391 #: superset-frontend/src/pages/ChartList/index.tsx:678 -#: superset-frontend/src/pages/DatasetList/index.tsx:606 +#: superset-frontend/src/pages/DatasetList/index.tsx:617 msgid "Dataset" msgstr "Jeu de données" @@ -5370,7 +5456,7 @@ msgstr "Jeu de données" msgid "Dataset %(name)s already exists" msgstr "Le jeu de données %(name)s existe déjà" -#: superset-frontend/src/explore/components/SaveModal.tsx:331 +#: superset-frontend/src/explore/components/SaveModal.tsx:366 #, fuzzy msgid "Dataset Name" msgstr "Nom du jeu de donnée" @@ -5383,29 +5469,29 @@ msgstr "La suppression de la colonne du jeu de données a échoué." msgid "Dataset column not found." msgstr "Colonne du jeu de données introuvable." -#: superset/datasets/commands/exceptions.py:157 +#: superset/datasets/commands/exceptions.py:174 msgid "Dataset could not be created." msgstr "Le jeu de données n'a pas pu être créé." -#: superset/datasets/commands/exceptions.py:165 +#: superset/datasets/commands/exceptions.py:182 msgid "Dataset could not be deleted." msgstr "Le jeu de données n'a pas pu être supprimé." -#: superset/datasets/commands/exceptions.py:193 +#: superset/datasets/commands/exceptions.py:210 #, fuzzy msgid "Dataset could not be duplicated." msgstr "Le jeu de données n'a pas pu être mis à jour." -#: superset/datasets/commands/exceptions.py:161 -#: superset/datasets/commands/exceptions.py:173 +#: superset/datasets/commands/exceptions.py:178 +#: superset/datasets/commands/exceptions.py:190 msgid "Dataset could not be updated." msgstr "Le jeu de données n'a pas pu être mis à jour." -#: superset/datasets/commands/exceptions.py:149 +#: superset/datasets/commands/exceptions.py:166 msgid "Dataset does not exist" msgstr "Le jeu de données n'existe pas" -#: superset-frontend/src/pages/DatasetList/index.tsx:185 +#: superset-frontend/src/pages/DatasetList/index.tsx:196 #, fuzzy msgid "Dataset imported" msgstr "Port de la base de données" @@ -5427,22 +5513,22 @@ msgstr "Métrique du jeu de données non trouvée." msgid "Dataset name" msgstr "Nom du jeu de donnée" -#: superset/datasets/commands/exceptions.py:153 +#: superset/datasets/commands/exceptions.py:170 msgid "Dataset parameters are invalid." msgstr "Les paramètres du jeu de données sont invalides." -#: superset/dashboards/api.py:430 +#: superset/dashboards/api.py:415 #, python-format msgid "Dataset schema is invalid, caused by: %(error)s" msgstr "" -#: superset/datasets/commands/exceptions.py:169 +#: superset/datasets/commands/exceptions.py:186 msgid "Dataset(s) could not be bulk deleted." msgstr "Les jeux de données n'ont pas pu être supprimés par lot." -#: superset-frontend/src/pages/DatasetList/index.tsx:589 +#: superset-frontend/src/pages/DatasetList/index.tsx:600 #: superset-frontend/src/profile/components/Security.tsx:61 -#: superset/initialization/__init__.py:265 +#: superset/initialization/__init__.py:267 msgid "Datasets" msgstr "Jeux de données" @@ -5466,12 +5552,12 @@ msgstr "Source de données" msgid "Datasource & Chart Type" msgstr "Choisissez un type de graphique" -#: superset/commands/exceptions.py:131 +#: superset/commands/exceptions.py:135 #, fuzzy msgid "Datasource does not exist" msgstr "Le jeu de données n'existe pas" -#: superset/commands/exceptions.py:123 +#: superset/commands/exceptions.py:127 msgid "Datasource type is invalid" msgstr "" @@ -5489,8 +5575,7 @@ msgstr "Format Datetime" msgid "Date filter" msgstr "Filtre de date" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:71 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:151 #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:135 @@ -5512,11 +5597,11 @@ msgstr "Formatage adapté" msgid "Date/Time" msgstr "Date/Heure" -#: superset/connectors/sqla/views.py:163 +#: superset/connectors/sqla/views.py:162 msgid "Datetime Format" msgstr "Format Datetime" -#: superset/connectors/sqla/models.py:1237 superset/models/helpers.py:1427 +#: superset/models/helpers.py:1502 msgid "" "Datetime column not provided as part table configuration and is required " "by this type of chart" @@ -5528,7 +5613,7 @@ msgstr "" msgid "Datetime format" msgstr "Format Datetime" -#: superset/db_engine_specs/base.py:106 +#: superset/db_engine_specs/base.py:107 msgid "Day" msgstr "Jour" @@ -5541,7 +5626,7 @@ msgstr "" msgid "Days %s" msgstr "Jours %s" -#: superset/connectors/sqla/models.py:1936 superset/models/helpers.py:988 +#: superset/connectors/sqla/models.py:1222 superset/models/helpers.py:1024 msgid "Db engine did not return all queried columns" msgstr "La base de données n'a pas retourné toutes les colonnes demandées" @@ -5554,47 +5639,56 @@ msgstr "Actif" msgid "December" msgstr "Décembre" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:70 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:89 msgid "Decides which column to sort the base axis by." msgstr "" -#: superset/views/database/forms.py:194 superset/views/database/forms.py:373 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:160 +msgid "Decides which measure to sort the base axis by." +msgstr "" + +#: superset/views/database/forms.py:204 superset/views/database/forms.py:383 msgid "Decimal Character" msgstr "Caractère décimal" -#: superset/viz.py:2743 +#: superset/viz.py:2700 msgid "Deck.gl - 3D Grid" msgstr "Deck.gl - Grille 3D" -#: superset/viz.py:2859 +#: superset/viz.py:2825 msgid "Deck.gl - 3D HEX" msgstr "Deck.gl - 3D HEX" -#: superset/viz.py:2899 +#: superset/viz.py:2890 msgid "Deck.gl - Arc" msgstr "Deck.gl - Arc" -#: superset/viz.py:2880 +#: superset/viz.py:2869 msgid "Deck.gl - GeoJSON" msgstr "Deck.gl - GeoJSON" -#: superset/viz.py:2468 +#: superset/viz.py:2848 +#, fuzzy +msgid "Deck.gl - Heatmap" +msgstr "Deck.gl - Chemins" + +#: superset/viz.py:2406 msgid "Deck.gl - Multiple Layers" msgstr "Deck.gl - Couches Multiples" -#: superset/viz.py:2775 +#: superset/viz.py:2735 msgid "Deck.gl - Paths" msgstr "Deck.gl - Chemins" -#: superset/viz.py:2826 +#: superset/viz.py:2789 msgid "Deck.gl - Polygon" msgstr "Deck.gl - Polygone" -#: superset/viz.py:2662 +#: superset/viz.py:2612 msgid "Deck.gl - Scatter plot" msgstr "Deck.gl - Nuage de points" -#: superset/viz.py:2714 +#: superset/viz.py:2668 msgid "Deck.gl - Screen Grid" msgstr "Deck.gl - Grille d'écran" @@ -5602,7 +5696,7 @@ msgstr "Deck.gl - Grille d'écran" msgid "Default" msgstr "Par défaut" -#: superset/connectors/sqla/views.py:484 +#: superset/connectors/sqla/views.py:391 msgid "Default Endpoint" msgstr "Endpoint par défaut" @@ -5743,11 +5837,13 @@ msgstr "" #: superset-frontend/src/pages/CssTemplateList/index.tsx:338 #: superset-frontend/src/pages/DashboardList/index.tsx:427 #: superset-frontend/src/pages/DashboardList/index.tsx:712 -#: superset-frontend/src/pages/DatasetList/index.tsx:418 -#: superset-frontend/src/pages/DatasetList/index.tsx:751 +#: superset-frontend/src/pages/DatasetList/index.tsx:429 +#: superset-frontend/src/pages/DatasetList/index.tsx:773 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:182 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:313 #: superset-frontend/src/pages/SavedQueryList/index.tsx:542 #: superset-frontend/src/pages/Tags/index.tsx:153 -#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:663 +#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:664 msgid "Delete" msgstr "Effacer" @@ -5760,11 +5856,11 @@ msgstr "Effacer %s ?" msgid "Delete Annotation?" msgstr "Supprimer l'annotation ?" -#: superset-frontend/src/pages/DatabaseList/index.tsx:529 +#: superset-frontend/src/pages/DatabaseList/index.tsx:551 msgid "Delete Database?" msgstr "Supprimer la base de données ?" -#: superset-frontend/src/pages/DatasetList/index.tsx:723 +#: superset-frontend/src/pages/DatasetList/index.tsx:745 msgid "Delete Dataset?" msgstr "Supprimer le jeu de données ?" @@ -5785,7 +5881,7 @@ msgstr "Supprimer le rapport ?" msgid "Delete Template?" msgstr "Supprimer template ?" -#: superset/views/base.py:663 +#: superset/views/base.py:664 msgid "Delete all Really?" msgstr "Vraiment tout effacer ?" @@ -5797,7 +5893,7 @@ msgstr "Supprimer annotation" msgid "Delete dashboard tab?" msgstr "Supprimer l'onglet du tableau de bord ?" -#: superset-frontend/src/pages/DatabaseList/index.tsx:405 +#: superset-frontend/src/pages/DatabaseList/index.tsx:416 msgid "Delete database" msgstr "Supprimer une base de données" @@ -5819,6 +5915,11 @@ msgstr "Supprimer un template" msgid "Delete this container and save to remove this message." msgstr "Supprimez ce conteneur et sauvegardez pour supprimer ce message." +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:108 +#, fuzzy +msgid "Deleted" +msgstr "effacer" + #: superset/annotation_layers/annotations/api.py:504 #, python-format msgid "Deleted %(num)d annotation" @@ -5833,7 +5934,7 @@ msgid_plural "Deleted %(num)d annotation layers" msgstr[0] "%(num)d couche d'annotations supprimée" msgstr[1] "%(num)d couches d'annotations supprimées" -#: superset/charts/api.py:524 +#: superset/charts/api.py:521 #, python-format msgid "Deleted %(num)d chart" msgid_plural "Deleted %(num)d charts" @@ -5847,14 +5948,14 @@ msgid_plural "Deleted %(num)d css templates" msgstr[0] "Template css %(num)d supprimé" msgstr[1] "Templates css %(num)d supprimés" -#: superset/dashboards/api.py:760 +#: superset/dashboards/api.py:745 #, python-format msgid "Deleted %(num)d dashboard" msgid_plural "Deleted %(num)d dashboards" msgstr[0] "%(num)d tableau de bord supprimé" msgstr[1] "%(num)d tableaux de bord supprimés" -#: superset/datasets/api.py:783 +#: superset/datasets/api.py:789 #, python-format msgid "Deleted %(num)d dataset" msgid_plural "Deleted %(num)d datasets" @@ -5868,6 +5969,13 @@ msgid_plural "Deleted %(num)d report schedules" msgstr[0] "%(num)d planification de rapport supprimée" msgstr[1] "%(num)d planifications de rapport supprimées" +#: superset/row_level_security/api.py:349 +#, fuzzy, python-format +msgid "Deleted %(num)d rules" +msgid_plural "Deleted %(num)d rules" +msgstr[0] "%(num)d graphique supprimé" +msgstr[1] "%(num)d graphiques supprimés" + #: superset/queries/saved_queries/api.py:222 #, python-format msgid "Deleted %(num)d saved query" @@ -5875,13 +5983,18 @@ msgid_plural "Deleted %(num)d saved queries" msgstr[0] "%(num)d requête sauvegardée supprimée" msgstr[1] "%(num)d requêtes sauvegardées supprimées" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:94 +#, fuzzy, python-format +msgid "Deleted %s" +msgstr "Supprimé : %s" + #: superset-frontend/src/features/home/SavedQueries.tsx:172 #: superset-frontend/src/pages/AlertReportList/index.tsx:183 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 #: superset-frontend/src/pages/AnnotationList/index.tsx:117 #: superset-frontend/src/pages/CssTemplateList/index.tsx:93 -#: superset-frontend/src/pages/DatabaseList/index.tsx:158 -#: superset-frontend/src/pages/DatasetList/index.tsx:653 +#: superset-frontend/src/pages/DatabaseList/index.tsx:169 +#: superset-frontend/src/pages/DatasetList/index.tsx:664 #: superset-frontend/src/pages/SavedQueryList/index.tsx:242 #: superset-frontend/src/reports/actions/reports.js:158 #: superset-frontend/src/views/CRUD/utils.tsx:272 @@ -5900,7 +6013,7 @@ msgstr "" msgid "Delimited long & lat single column" msgstr "Une seule colonne long & lat délimité" -#: superset/views/database/forms.py:150 +#: superset/views/database/forms.py:160 msgid "Delimiter" msgstr "Délimiteur" @@ -5928,33 +6041,35 @@ msgstr "Dépend de" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:40 +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 #, fuzzy msgid "Deprecated" msgstr "Créé le" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:83 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:114 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:96 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:127 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:55 #: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:157 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:156 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:265 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1206 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1210 -#: superset-frontend/src/components/ReportModal/index.tsx:294 +#: superset-frontend/src/components/ReportModal/index.tsx:293 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1158 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:465 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 #: superset-frontend/src/pages/AnnotationList/index.tsx:161 -#: superset/connectors/sqla/views.py:157 superset/connectors/sqla/views.py:251 -#: superset/connectors/sqla/views.py:362 superset/connectors/sqla/views.py:491 -#: superset/views/chart/mixin.py:80 superset/views/sql_lab/views.py:84 +#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:398 superset/views/chart/mixin.py:80 +#: superset/views/sql_lab/views.py:84 msgid "Description" msgstr "Description" @@ -5967,7 +6082,7 @@ msgstr "Description (cela peut être vu dans la liste)" msgid "Description Columns" msgstr "Colonnes de description" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:50 msgid "Description text that shows up below your Big Number" msgstr "" @@ -6040,7 +6155,7 @@ msgstr "" msgid "Dimensions" msgstr "Est une Dimension" -#: superset/viz.py:2005 +#: superset/viz.py:1928 msgid "Directed Force Layout" msgstr "Graphe orienté" @@ -6051,11 +6166,11 @@ msgstr "Graphe orienté" msgid "Directional" msgstr "description" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:202 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 msgid "Disable SQL Lab data preview queries" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:205 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 msgid "" "Disable data preview when fetching table metadata in SQL Lab. Useful to " "avoid browser performance issues when using databases with very wide " @@ -6097,7 +6212,6 @@ msgstr "" msgid "Display configuration" msgstr "Configuration d'affichage" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:87 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:252 msgid "" "Display metrics side by side within each column, as opposed to each " @@ -6108,15 +6222,11 @@ msgstr "" msgid "Display row level total" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:39 #, fuzzy msgid "Display settings" msgstr "Paramètres de planification" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:78 -msgid "Display total row/column" -msgstr "" - #: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:35 msgid "" "Displays connections between entities in a graph structure. Useful for " @@ -6138,7 +6248,7 @@ msgstr "Estimer le coût" msgid "Distribution" msgstr "Contribution" -#: superset/viz.py:1801 +#: superset/viz.py:1717 msgid "Distribution - Bar Chart" msgstr "Distibution - histogramme" @@ -6156,7 +6266,7 @@ msgstr "" msgid "Documentation" msgstr "Documentation" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:40 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 #, fuzzy msgid "Domain" msgstr "Comparaison" @@ -6172,19 +6282,19 @@ msgstr "mois" msgid "Dotted" msgstr "Édité" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:480 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:482 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:292 #, fuzzy msgid "Download" msgstr "télécharger en CSV" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:317 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:504 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:512 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:329 msgid "Download as image" msgstr "Télécharger comme image" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:264 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:262 msgid "Download to CSV" msgstr "Télécharger en CSV" @@ -6237,20 +6347,20 @@ msgstr "" msgid "Draw split lines for minor y-axis ticks" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:181 -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:191 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 msgid "Drill by" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:172 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 msgid "Drill by is not available for this data point" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:170 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 msgid "Drill by is not yet supported for this chart type" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:154 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:420 #, fuzzy, python-format msgid "Drill by: %s" msgstr "Trier par %s" @@ -6279,68 +6389,41 @@ msgstr "" msgid "Drill to detail: %s" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:206 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:184 #, fuzzy msgid "Drop a column here or click" msgid_plural "Drop columns here or click" msgstr[0] "Supprimer une colonne ici ou cliquer" msgstr[1] "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:335 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:330 #, fuzzy msgid "Drop a column/metric here or click" msgid_plural "Drop columns/metrics here or click" msgstr[0] "Supprimer une colonne/métrique ici ou cliquer" msgstr[1] "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:248 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 #, fuzzy msgid "Drop a temporal column here or click" msgstr "Supprimer une colonne ici ou cliquer" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:216 -#, fuzzy -msgid "Drop column here" -msgid_plural "Drop columns here" -msgstr[0] "Supprimer une colonne ici" -msgstr[1] "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:340 -#, fuzzy -msgid "Drop column or metric here" -msgid_plural "Drop columns or metrics here" -msgstr[0] "Supprimer une colonne ou une métrique ici" -msgstr[1] "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndSelectLabel.tsx:83 -msgid "Drop columns here" -msgstr "Supprimer des colonnes ici" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:402 -msgid "Drop columns or metrics here" -msgstr "Supprimer des colonnes ou des métriques ici" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:401 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:405 msgid "Drop columns/metrics here or click" msgstr "Supprimer des colonnes/métriques ici ou cliquer" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 -#, fuzzy -msgid "Drop temporal column here" -msgstr "Supprimer une colonne ici" - #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:32 #, fuzzy msgid "Dual Line Chart" msgstr "Points" #: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 -#: superset-frontend/src/pages/DatasetList/index.tsx:472 +#: superset-frontend/src/pages/DatasetList/index.tsx:483 #, fuzzy msgid "Duplicate" msgstr "Dupliquer l'onglet" -#: superset/views/datasource/views.py:122 +#: superset/views/datasource/views.py:124 #, python-format msgid "Duplicate column name(s): %(columns)s" msgstr "Nom(s) de colonne dupliqué: %(columns)s" @@ -6368,7 +6451,7 @@ msgstr "Dupliquer l'onglet" msgid "Duration" msgstr "Durée" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:239 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:249 #, fuzzy msgid "" "Duration (in seconds) of the caching timeout for charts of this database." @@ -6405,7 +6488,7 @@ msgstr "" "Durée (en secondes) du timeout du cache pour ce graphique. Notez que " "c'est par défaut le timeout du jeu de données si indéfinie." -#: superset/connectors/sqla/views.py:462 +#: superset/connectors/sqla/views.py:369 msgid "" "Duration (in seconds) of the caching timeout for this table. A timeout of" " 0 indicates that the cache never expires. Note this defaults to the " @@ -6415,7 +6498,7 @@ msgstr "" "indique que le cache n'expire jamais. Notez que le timeout de la base de " "données par défaut est undefined." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:261 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:271 msgid "" "Duration (in seconds) of the metadata caching timeout for schemas of this" " database. If left unset, the cache never expires." @@ -6423,7 +6506,7 @@ msgstr "" "Durée (en seconds) du délai de mise en cache pour les schémas de base de " "données. Si vide, le cache n'expire jamais." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:282 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:292 msgid "" "Duration (in seconds) of the metadata caching timeout for tables of this " "database. If left unset, the cache never expires. " @@ -6431,7 +6514,7 @@ msgstr "" "Durée (en secondes) du délai de mise en cache pour les métadonnées des " "tables de cette base de données. Si vide, le cache n'expire jamais. " -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:50 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" msgstr "Durée en ms (1.40008 => 1ms 400µs 80ns)" @@ -6440,7 +6523,7 @@ msgstr "Durée en ms (1.40008 => 1ms 400µs 80ns)" msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" msgstr "Durée en ms (1.40008 => 1ms 400µs 80ns)" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:49 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 #: superset-frontend/src/explore/controls.jsx:89 msgid "Duration in ms (66000 => 1m 6s)" msgstr "Durée en ms (66000 => 1m 6s)" @@ -6479,7 +6562,7 @@ msgstr "Charge dynamiquement les valeurs du filtre" msgid "ECharts" msgstr "EGraphiques" -#: superset/reports/notifications/email.py:130 +#: superset/reports/notifications/email.py:133 #, fuzzy msgid "EMAIL_REPORTS_CTA" msgstr "Rapports par e-mail actifs" @@ -6490,12 +6573,12 @@ msgstr "Rapports par e-mail actifs" msgid "END (EXCLUSIVE)" msgstr "FIN (EXCLUSIVE)" -#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:171 +#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 #, fuzzy msgid "ERROR" msgstr "Opérateur" -#: superset-frontend/src/views/CRUD/hooks.ts:700 +#: superset-frontend/src/views/CRUD/hooks.ts:704 #, python-format msgid "ERROR: %s" msgstr "" @@ -6527,8 +6610,9 @@ msgstr "L'épaisseur de la ligne" #: superset-frontend/src/pages/AlertReportList/index.tsx:385 #: superset-frontend/src/pages/ChartList/index.tsx:553 #: superset-frontend/src/pages/DashboardList/index.tsx:461 -#: superset-frontend/src/pages/DatabaseList/index.tsx:431 -#: superset-frontend/src/pages/DatasetList/index.tsx:452 +#: superset-frontend/src/pages/DatabaseList/index.tsx:442 +#: superset-frontend/src/pages/DatasetList/index.tsx:463 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:200 msgid "Edit" msgstr "Éditer" @@ -6558,7 +6642,7 @@ msgstr "Modifier le graphique" msgid "Edit Chart Properties" msgstr "Modifier les propriétés du graphique" -#: superset/connectors/sqla/views.py:75 +#: superset/connectors/sqla/views.py:74 msgid "Edit Column" msgstr "Éditer une colonne" @@ -6570,7 +6654,7 @@ msgstr "Éditer le tableau de bord" msgid "Edit Database" msgstr "Éditer la base de données" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:199 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:241 msgid "Edit Dataset " msgstr "Éditer le jeu de données " @@ -6578,7 +6662,7 @@ msgstr "Éditer le jeu de données " msgid "Edit Log" msgstr "Éditer le log" -#: superset/connectors/sqla/views.py:210 +#: superset/connectors/sqla/views.py:209 msgid "Edit Metric" msgstr "Éditer la métrique" @@ -6591,15 +6675,16 @@ msgstr "Éditer le plugin" msgid "Edit Report" msgstr "Modifier le rapport par e-mail" -#: superset/connectors/sqla/views.py:293 -msgid "Edit Row level security filter" -msgstr "Editer le filtre de sécurité au niveau de la ligne" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +#, fuzzy +msgid "Edit Rule" +msgstr "mode edition" #: superset/views/sql_lab/views.py:55 msgid "Edit Saved Query" msgstr "Éditer la requête sauvegardée" -#: superset/connectors/sqla/views.py:387 +#: superset/connectors/sqla/views.py:294 msgid "Edit Table" msgstr "Éditer la table" @@ -6616,9 +6701,9 @@ msgstr "Modifier une couche d'annotations" msgid "Edit annotation layer properties" msgstr "Couches d'annotation" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:74 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:122 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:44 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:212 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:217 #: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:405 #, fuzzy msgid "Edit chart" @@ -6633,7 +6718,7 @@ msgstr "Modifier les propriétés du graphique" msgid "Edit dashboard" msgstr "Éditer le tableau de bord" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1700 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 msgid "Edit database" msgstr "Éditer la base de données" @@ -6643,7 +6728,7 @@ msgstr "Éditer le jeu de données" #: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:243 #: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:264 -#: superset-frontend/src/components/ReportModal/index.tsx:212 +#: superset-frontend/src/components/ReportModal/index.tsx:211 msgid "Edit email report" msgstr "Modifier le rapport par e-mail" @@ -6668,7 +6753,7 @@ msgstr "Modifier un template" msgid "Edit template parameters" msgstr "Modifier les paramètres du modèle" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:717 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:718 #: superset-frontend/src/dashboard/components/DashboardGrid.jsx:242 msgid "Edit the dashboard" msgstr "Modifier le tableau de bord" @@ -6693,8 +6778,9 @@ msgstr "Modifier l'ensemble de filtre :" msgid "Either the database is spelled incorrectly or does not exist." msgstr "Base de données inexistante ou nom incorrect." -#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:654 -#: superset/db_engine_specs/redshift.py:67 +#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:681 +#: superset/db_engine_specs/redshift.py:71 +#: superset/db_engine_specs/starrocks.py:122 #, python-format msgid "Either the username \"%(username)s\" or the password is incorrect." msgstr "L'utilisateur \"%(username)s\" ou le mot de passe est incorrect." @@ -6768,12 +6854,12 @@ msgstr "Collection vide" msgid "Empty column" msgstr "Ma colonne" -#: superset/charts/data/api.py:363 +#: superset/charts/data/api.py:366 #, fuzzy msgid "Empty query result" msgstr "Requête vide ?" -#: superset/connectors/sqla/models.py:1243 superset/models/helpers.py:1433 +#: superset/models/helpers.py:1508 msgid "Empty query?" msgstr "Requête vide ?" @@ -6789,11 +6875,11 @@ msgstr "" "Activez l'option 'Autoriser le chargement de données' dans les paramètres" " de la base de données" -#: superset/connectors/sqla/views.py:482 +#: superset/connectors/sqla/views.py:389 msgid "Enable Filter Select" msgstr "Activer le filtre de sélection" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:139 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 #, fuzzy msgid "Enable cross-filtering" msgstr "Portée du filtre croisé" @@ -6829,7 +6915,7 @@ msgstr "" msgid "Enable node dragging" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:170 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 msgid "Enable query cost estimation" msgstr "Activer l'estimation du coût de la requête" @@ -6838,7 +6924,7 @@ msgstr "Activer l'estimation du coût de la requête" msgid "Enable server side pagination of results (experimental feature)" msgstr "" -#: superset/viz.py:2567 +#: superset/viz.py:2514 msgid "" "Encountered invalid NULL spatial entry," " please consider filtering those " @@ -6891,12 +6977,12 @@ msgstr "Date de début ne peut être postérieure à Date de fin" msgid "Engine \"%(engine)s\" cannot be configured through parameters." msgstr "Le moteur \"%(engine)s\" ne peut pas être configuré via des paramètres." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:476 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:512 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:516 msgid "Engine Parameters" msgstr "Les paramètres du moteur" -#: superset/databases/schemas.py:298 +#: superset/databases/schemas.py:302 msgid "" "Engine spec \"InvalidEngine\" does not support being configured via " "individual parameters." @@ -6904,7 +6990,7 @@ msgstr "" "La spec moteur \"InvalidEngine\" ne supporte pas d'être configuré via " "des paramètres individuels." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:366 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:376 msgid "Enter CA_BUNDLE" msgstr "Entrer CA_BUNDLE" @@ -6913,7 +6999,7 @@ msgstr "Entrer CA_BUNDLE" msgid "Enter Primary Credentials" msgstr "Charger les informations de connexion" -#: superset/views/database/forms.py:151 +#: superset/views/database/forms.py:161 #, fuzzy msgid "Enter a delimiter for this data" msgstr "Entrée un nouveau titre pour l'onglet" @@ -6926,14 +7012,14 @@ msgstr "Entrée un nom pour cette feuille" msgid "Enter a new title for the tab" msgstr "Entrée un nouveau titre pour l'onglet" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:234 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:255 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:276 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:244 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:286 msgid "Enter duration in seconds" msgstr "Entrer la durée en secondes" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:265 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:367 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:369 msgid "Enter fullscreen" msgstr "Passer en plein écran" @@ -6961,7 +7047,7 @@ msgstr "" msgid "Equal to (=)" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:140 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:182 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:139 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:298 #: superset-frontend/src/explore/components/EmbedCodeContent.jsx:57 @@ -6971,22 +7057,22 @@ msgstr "" msgid "Error" msgstr "Opérateur" -#: superset/connectors/sqla/models.py:1650 superset/models/helpers.py:1843 +#: superset/models/helpers.py:1919 #, python-format msgid "Error in jinja expression in HAVING clause: %(msg)s" msgstr "Erreur d'expression jinja dans la clause HAVING : %(msg)s" -#: superset/connectors/sqla/models.py:1145 +#: superset/connectors/sqla/models.py:1105 superset/models/helpers.py:835 #, python-format msgid "Error in jinja expression in RLS filters: %(msg)s" msgstr "Erreur dans l'expression jinja des filtres RLS : %(msg)s" -#: superset/connectors/sqla/models.py:1633 superset/models/helpers.py:1831 +#: superset/models/helpers.py:1901 #, python-format msgid "Error in jinja expression in WHERE clause: %(msg)s" msgstr "Erreur d'expression jinja dans la clause WHERE : %(msg)s" -#: superset/connectors/sqla/models.py:826 +#: superset/connectors/sqla/models.py:789 #, python-format msgid "Error in jinja expression in fetch values predicate: %(msg)s" msgstr "" @@ -7015,7 +7101,7 @@ msgstr "Une erreur s'est produite durant la récupération des tableaux de bord msgid "Error while fetching data: %s" msgstr "Une erreur s'est produite durant la récupération des jeux de données : %s" -#: superset/connectors/sqla/models.py:953 superset/models/helpers.py:1029 +#: superset/connectors/sqla/models.py:914 superset/models/helpers.py:1072 #, python-format msgid "Error while rendering virtual dataset query: %(msg)s" msgstr "Erreur durant le rendu de la requête du jeu de données virtuel : %(msg)s" @@ -7025,12 +7111,12 @@ msgstr "Erreur durant le rendu de la requête du jeu de données virtuel : %(ms msgid "Error: %(error)s" msgstr "" -#: superset/views/core.py:820 superset/views/core.py:1918 +#: superset/views/core.py:842 superset/views/core.py:1955 #, python-format msgid "Error: %(msg)s" msgstr "" -#: superset/views/core.py:817 +#: superset/views/core.py:839 #, fuzzy msgid "Error: permalink state not found" msgstr "Etat du programme de rapport introuvable" @@ -7043,7 +7129,7 @@ msgstr "Estimer le coût" msgid "Estimate selected query cost" msgstr "Estimer le coût estimé de la requête sélectionnée" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:621 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:615 msgid "Estimate the cost before running a query" msgstr "Estimer le coût avant d'exécuter une requête" @@ -7067,7 +7153,7 @@ msgstr "Nom de la feuille" msgid "Event definition" msgstr "" -#: superset/viz.py:2933 +#: superset/viz.py:2927 msgid "Event flow" msgstr "Flot d'événements" @@ -7115,11 +7201,11 @@ msgstr "Exemple" msgid "Examples" msgstr "Exemples" -#: superset/views/database/forms.py:278 +#: superset/views/database/forms.py:288 msgid "Excel File" msgstr "Fichier Excel" -#: superset/views/database/views.py:424 +#: superset/views/database/views.py:427 #, python-format msgid "" "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" @@ -7128,7 +7214,7 @@ msgstr "" "Fichier CSV \"%(excel_filename)s\" chargé dans la table " "\"%(table_name)s\" de la base de données \"%(db_name)s\"" -#: superset/views/database/views.py:303 +#: superset/views/database/views.py:306 msgid "Excel to Database configuration" msgstr "Configuration de Excel vers base de données" @@ -7137,6 +7223,10 @@ msgstr "Configuration de Excel vers base de données" msgid "Exclude selected values" msgstr "Limiter les valeurs" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:405 +msgid "Excluded roles" +msgstr "" + #: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 msgid "Executed SQL" msgstr "Lancer la requête SQL" @@ -7153,17 +7243,17 @@ msgstr "ID d'exécution" msgid "Execution log" msgstr "Log d'exécution" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:411 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:419 #, fuzzy msgid "Existing dataset" msgstr "Jeu de données manquant" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:264 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:366 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:368 msgid "Exit fullscreen" msgstr "Sortir du mode plein écran" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 #, fuzzy msgid "Expand" msgstr "et" @@ -7176,12 +7266,12 @@ msgstr "Développer tout" msgid "Expand data panel" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:209 +#: superset-frontend/src/components/Table/index.tsx:213 #, fuzzy msgid "Expand row" msgstr "Ligne d'en-tête" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:197 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 #, fuzzy msgid "Expand table preview" msgstr "Supprimer la Prévisualisation de la table" @@ -7199,6 +7289,7 @@ msgid "" msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:38 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:37 @@ -7213,11 +7304,11 @@ msgid "Experimental" msgstr "" #: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 -#: superset/views/core.py:987 +#: superset/views/core.py:1009 msgid "Explore" msgstr "Explorer" -#: superset/views/core.py:985 +#: superset/views/core.py:1007 #, python-format msgid "Explore - %(table)s" msgstr "Explorer - %(table)s" @@ -7233,9 +7324,9 @@ msgstr "Explorer le résultat dans la vue d'exploration des données" #: superset-frontend/src/pages/ChartList/index.tsx:854 #: superset-frontend/src/pages/DashboardList/index.tsx:445 #: superset-frontend/src/pages/DashboardList/index.tsx:720 -#: superset-frontend/src/pages/DatabaseList/index.tsx:415 -#: superset-frontend/src/pages/DatasetList/index.tsx:434 -#: superset-frontend/src/pages/DatasetList/index.tsx:759 +#: superset-frontend/src/pages/DatabaseList/index.tsx:426 +#: superset-frontend/src/pages/DatasetList/index.tsx:445 +#: superset-frontend/src/pages/DatasetList/index.tsx:781 #: superset-frontend/src/pages/SavedQueryList/index.tsx:550 #: superset/views/dashboard/views.py:65 msgid "Export" @@ -7249,7 +7340,7 @@ msgstr "Exporter les tableaux de bords ?" msgid "Export query" msgstr "Exporter la requête" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:485 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:487 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:316 #, fuzzy msgid "Export to .CSV" @@ -7260,20 +7351,21 @@ msgstr "Exporter en YAML" msgid "Export to .JSON" msgstr "Exporter en YAML" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:335 #, fuzzy msgid "Export to Excel" msgstr "Exporter en YAML" -#: superset/views/base.py:606 +#: superset/views/base.py:607 msgid "Export to YAML" msgstr "Exporter en YAML" -#: superset/views/base.py:606 +#: superset/views/base.py:607 msgid "Export to YAML?" msgstr "Exporter en YAML?" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:496 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:498 #, fuzzy msgid "Export to full .CSV" msgstr "Exporter en full CSV" @@ -7286,12 +7378,12 @@ msgstr "" msgid "Export to pivoted .CSV" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:88 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 msgid "Expose database in SQL Lab" msgstr "Exposer la base de données dans SQL Lab" -#: superset-frontend/src/pages/DatabaseList/index.tsx:354 -#: superset-frontend/src/pages/DatabaseList/index.tsx:460 +#: superset-frontend/src/pages/DatabaseList/index.tsx:365 +#: superset-frontend/src/pages/DatabaseList/index.tsx:471 #: superset/views/database/mixins.py:183 msgid "Expose in SQL Lab" msgstr "Exposer dans SQL Lab" @@ -7300,12 +7392,12 @@ msgstr "Exposer dans SQL Lab" msgid "Expose this DB in SQL Lab" msgstr "Expose cette BDD dans SQL Lab" -#: superset/connectors/sqla/views.py:161 +#: superset/connectors/sqla/views.py:160 msgid "Expression" msgstr "Expression" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:908 -#: superset/connectors/sqla/views.py:257 superset/connectors/sqla/views.py:494 +#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:401 #: superset/views/database/mixins.py:193 msgid "Extra" msgstr "Extra" @@ -7380,8 +7472,8 @@ msgstr "Octobre" msgid "Factor to multiply the metric by" msgstr "" -#: superset/views/database/forms.py:167 superset/views/database/forms.py:324 -#: superset/views/database/forms.py:455 +#: superset/views/database/forms.py:177 superset/views/database/forms.py:334 +#: superset/views/database/forms.py:465 msgid "Fail" msgstr "Echec" @@ -7392,16 +7484,16 @@ msgid "Failed" msgstr "Echec" #: superset-frontend/src/SqlLab/actions/sqlLab.js:210 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:346 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:350 msgid "Failed at retrieving results" msgstr "Echec lors de la récupération des résultats" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:500 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:496 #, python-format msgid "Failed at stopping query. %s" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:343 +#: superset-frontend/src/components/ReportModal/index.tsx:342 msgid "Failed to create report" msgstr "" @@ -7410,24 +7502,38 @@ msgstr "" msgid "Failed to execute %(query)s" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:97 +msgid "Failed to generate chart edit URL" +msgstr "" + #: superset-frontend/src/pages/Chart/index.tsx:57 msgid "Failed to load chart data" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:402 #: superset-frontend/src/pages/Chart/index.tsx:69 msgid "Failed to load chart data." msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 +msgid "Failed to load dimensions for drill by" +msgstr "" + #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 #, fuzzy msgid "Failed to retrieve advanced type" msgstr "Echec lors de la récupération des résultats" +#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +#, fuzzy +msgid "Failed to save cross-filter scoping" +msgstr "Portée du filtre croisé" + #: superset/errors.py:143 superset/sqllab/sql_json_executer.py:189 msgid "Failed to start remote query on a worker." msgstr "Echec de la requête à distance." -#: superset-frontend/src/components/ReportModal/index.tsx:342 +#: superset-frontend/src/components/ReportModal/index.tsx:341 msgid "Failed to update report" msgstr "" @@ -7451,15 +7557,15 @@ msgstr "Favoris" msgid "February" msgstr "Février" -#: superset/connectors/sqla/views.py:488 +#: superset/connectors/sqla/views.py:395 msgid "Fetch Values Predicate" msgstr "Récupérer les valeurs des prédicats" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:538 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:531 msgid "Fetch data preview" msgstr "Prévisualisation des données" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:352 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:354 #, python-format msgid "Fetched %s" msgstr "Récupéré %s" @@ -7529,12 +7635,18 @@ msgid "Filter Settings" msgstr "Paramètres des filtres" #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:825 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:362 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:373 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:134 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:255 msgid "Filter Type" msgstr "Type du filtre" #: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:28 -msgid "Filter box" -msgstr "Boite de filtrage" +#, fuzzy +msgid "Filter box (deprecated)" +msgstr "Pas de filtre sélectionné." #: superset-frontend/src/dashboard/components/SliceAdder.jsx:351 #, fuzzy @@ -7553,7 +7665,7 @@ msgstr "Configuration du filtre pour la boîte de filtrage" msgid "Filter has default value" msgstr "Le filtre a une valeur par défaut" -#: superset-frontend/src/components/Table/index.tsx:197 +#: superset-frontend/src/components/Table/index.tsx:201 #, fuzzy msgid "Filter menu" msgstr "Nom du filtre" @@ -7574,7 +7686,7 @@ msgstr "" "Le filtre n'affiche que les valeurs pertinentes après les sélections " "effectuées dans d'autres filtres." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:289 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:283 msgid "Filter results" msgstr "Filtrer les résultats" @@ -7610,7 +7722,7 @@ msgstr "Valeur du filtre (sensible à la casse)" msgid "Filter value is required" msgstr "La valeur du filtre est requise" -#: superset/connectors/sqla/models.py:1549 superset/models/helpers.py:1754 +#: superset/models/helpers.py:1815 msgid "Filter value list cannot be empty" msgstr "La liste de valeurs du filtre ne peut pas être vide" @@ -7618,7 +7730,7 @@ msgstr "La liste de valeurs du filtre ne peut pas être vide" msgid "Filter your charts" msgstr "Filtrer vos graphiques" -#: superset/connectors/sqla/views.py:159 +#: superset/connectors/sqla/views.py:158 msgid "Filterable" msgstr "Filtrable" @@ -7626,7 +7738,7 @@ msgstr "Filtrable" #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 #: superset-frontend/src/explore/controls.jsx:446 #: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:35 -#: superset/viz.py:2142 +#: superset/viz.py:2071 msgid "Filters" msgstr "Filtres" @@ -7652,7 +7764,7 @@ msgstr "Configuration des filtres" msgid "Filters out of scope (%d)" msgstr "Filtres hors du périmètre (%d)" -#: superset/connectors/sqla/views.py:342 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:435 msgid "" "Filters with the same group key will be ORed together within the group, " "while different filter groups will be ANDed together. Undefined group " @@ -7673,9 +7785,9 @@ msgstr "" "(department = 'Finance' OR department = 'Marketing') AND (region = " "'Europe')." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1077 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1125 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1857 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1132 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1180 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 msgid "Finish" msgstr "Terminer" @@ -7735,7 +7847,7 @@ msgstr "" msgid "Font size for the smallest value in the list" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:173 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 msgid "" "For Bigquery, Presto and Postgres, shows a button to compute cost before " "running a query." @@ -7753,7 +7865,7 @@ msgid "" "function, refer to the" msgstr "" -#: superset/connectors/sqla/views.py:336 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:408 msgid "" "For regular filters, these are the roles this filter will be applied to. " "For base filters, these are the roles that the filter DOES NOT apply to, " @@ -7769,7 +7881,7 @@ msgstr "" msgid "Force" msgstr "Source" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:141 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 msgid "" "Force all tables and views to be created in this schema when clicking " "CTAS or CVAS in SQL Lab." @@ -7777,21 +7889,21 @@ msgstr "" "Force la création des tables et des vues dans ce schéma quand on cliquer " "sur CTAS or CVAS dans SQL Lab." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:84 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 #, fuzzy msgid "Force date format" msgstr "Format Date" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:381 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 msgid "Force refresh" msgstr "Forcer à rafraîchir" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:292 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:291 msgid "Force refresh schema list" msgstr "Forcez à actualiser la liste des schémas" -#: superset-frontend/src/components/TableSelector/index.tsx:317 +#: superset-frontend/src/components/TableSelector/index.tsx:307 msgid "Force refresh table list" msgstr "Forcer à actualiser les données" @@ -7809,11 +7921,11 @@ msgstr "" msgid "Forest Green" msgstr "Fréquence de rafraichissement" -#: superset/explore/commands/get.py:87 superset/views/core.py:834 +#: superset/explore/commands/get.py:87 superset/views/core.py:856 msgid "Form data not found in cache, reverting to chart metadata." msgstr "" -#: superset/explore/commands/get.py:95 superset/views/core.py:840 +#: superset/explore/commands/get.py:95 superset/views/core.py:862 msgid "Form data not found in cache, reverting to dataset metadata." msgstr "" @@ -7824,7 +7936,7 @@ msgstr "" msgid "Formattable" msgstr "Clefs pour la table" -#: superset-frontend/src/components/ReportModal/index.tsx:255 +#: superset-frontend/src/components/ReportModal/index.tsx:254 msgid "Formatted CSV attached in email" msgstr "CSV formatté attaché dans l'e-mail" @@ -7882,7 +7994,7 @@ msgstr "" msgid "Friday" msgstr "Vendredi" -#: superset/utils/date_parser.py:267 superset/viz.py:392 +#: superset/utils/date_parser.py:267 superset/viz.py:403 msgid "From date cannot be larger than to date" msgstr "La date de début ne peut être postérieure à la date de fin" @@ -7959,7 +8071,7 @@ msgstr "Récupérer la dernière date par l'unité de date." msgid "Get the specify date for the holiday" msgstr "Récupérer la date spécifiée pour le jour férié" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:713 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:714 msgid "Go to the edit mode to configure the dashboard and add charts" msgstr "" "Allez dans l'edition pour configurer le tableau de bord et ajouter des " @@ -8019,20 +8131,23 @@ msgstr "Grouper par" msgid "Group By filter plugin" msgstr "" -#: superset/viz.py:927 -msgid "Group By' and 'Columns' can't overlap" -msgstr "'Grouper par' et 'Colonnes' ne peuvent pas se chevaucher" - #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:84 msgid "Group By, Metrics or Percentage Metrics must have a value" msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:433 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:139 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:267 +#, fuzzy +msgid "Group Key" +msgstr "Grouper par" + #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 msgid "Group by" msgstr "Grouper par" -#: superset/connectors/sqla/views.py:158 +#: superset/connectors/sqla/views.py:157 msgid "Groupable" msgstr "Groupable" @@ -8061,12 +8176,12 @@ msgstr "a été créé" msgid "Header" msgstr "Ligne d'en-tête" -#: superset/views/database/forms.py:244 superset/views/database/forms.py:331 +#: superset/views/database/forms.py:254 superset/views/database/forms.py:341 msgid "Header Row" msgstr "Ligne d'en-tête" #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 -#: superset/viz.py:2249 +#: superset/viz.py:2183 msgid "Heatmap" msgstr "Carte de chaleur" @@ -8091,7 +8206,7 @@ msgstr "" msgid "Hide Line" msgstr "Masquer la couche" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:394 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:396 #, fuzzy msgid "Hide chart description" msgstr "Basculer la description du graphique" @@ -8121,12 +8236,12 @@ msgid "Hierarchy" msgstr "Recherche" #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 -#: superset/viz.py:1743 +#: superset/viz.py:1656 msgid "Histogram" msgstr "Histogramme" #: superset-frontend/src/pages/Home/index.tsx:333 -#: superset/initialization/__init__.py:233 +#: superset/initialization/__init__.py:235 msgid "Home" msgstr "Accueil" @@ -8135,7 +8250,7 @@ msgstr "Accueil" msgid "Horizon Chart" msgstr "Histogrammes horizontaux" -#: superset/viz.py:2310 +#: superset/viz.py:2246 msgid "Horizon Charts" msgstr "Histogrammes horizontaux" @@ -8144,7 +8259,7 @@ msgstr "Histogrammes horizontaux" msgid "Horizontal" msgstr "Histogrammes horizontaux" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:166 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 msgid "Horizontal (Top)" msgstr "" @@ -8156,12 +8271,12 @@ msgstr "" msgid "Host" msgstr "" -#: superset/db_engine_specs/base.py:1839 -#: superset/db_engine_specs/clickhouse.py:203 +#: superset/db_engine_specs/base.py:1872 +#: superset/db_engine_specs/clickhouse.py:204 msgid "Hostname or IP address" msgstr "Nom d'hôte ou adresse IP" -#: superset/db_engine_specs/base.py:104 +#: superset/db_engine_specs/base.py:105 msgid "Hour" msgstr "Heure" @@ -8225,7 +8340,7 @@ msgstr "id:" msgid "Id of root node of the tree." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:391 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:401 msgid "" "If Presto or Trino, all the queries in SQL Lab are going to be executed " "as the currently logged on user who must have permission to run them. If " @@ -8255,7 +8370,7 @@ msgstr "" "impersonnifiant l'utilisateur actuellement connecté via la propriété " "hive.server2.proxy.user." -#: superset/views/database/forms.py:164 +#: superset/views/database/forms.py:174 #, fuzzy msgid "If Table Already Exists" msgstr "Cet ensemble de filtre existe déjà" @@ -8264,7 +8379,7 @@ msgstr "Cet ensemble de filtre existe déjà" msgid "If a metric is specified, sorting will be done based on the metric value" msgstr "Si une métrique est définie, le tri sera basé sur sa valeur" -#: superset/views/database/forms.py:238 +#: superset/views/database/forms.py:248 msgid "" "If duplicate columns are not overridden, they will be presented as \"X.1," " X.2 ...X.x\"" @@ -8276,7 +8391,7 @@ msgstr "" "Si sélectionné, veuillez indiquer les schémas permis pour le " "téléversement csv dans Extra." -#: superset/views/database/forms.py:318 superset/views/database/forms.py:449 +#: superset/views/database/forms.py:328 superset/views/database/forms.py:459 msgid "" "If table exists do one of the following: Fail (do nothing), Replace (drop" " and recreate table) or Append (insert data)." @@ -8300,7 +8415,7 @@ msgstr "" msgid "Ignore time" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:252 +#: superset-frontend/src/components/ReportModal/index.tsx:251 msgid "Image (PNG) embedded in email" msgstr "Image (PNG) encapsulée dans l'e-mail" @@ -8308,7 +8423,7 @@ msgstr "Image (PNG) encapsulée dans l'e-mail" msgid "Image download failed, please refresh and try again." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:386 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:396 msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" msgstr "" "Impersonnaliser l'utilisateur connecté (Presto, Trino, Drill, Hive, and " @@ -8331,11 +8446,11 @@ msgstr "Import %s" msgid "Import Dashboard(s)" msgstr "Importer des tableaux de bords" -#: superset/initialization/__init__.py:337 +#: superset/initialization/__init__.py:331 msgid "Import Dashboards" msgstr "Importer des tableaux de bord" -#: superset/connectors/sqla/views.py:386 +#: superset/connectors/sqla/views.py:293 msgid "Import a table definition" msgstr "Importer la définition d'une table" @@ -8360,16 +8475,16 @@ msgstr "Import des tableaux de bord" msgid "Import database failed for an unknown reason" msgstr "L'import de la base de données a échoué pour une raison inconnue" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1912 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1969 #, fuzzy msgid "Import database from file" msgstr "Importer la base de données" -#: superset/datasets/commands/exceptions.py:185 +#: superset/datasets/commands/exceptions.py:202 msgid "Import dataset failed for an unknown reason" msgstr "L'import du jeu de données a échoué pour une raison inconnue" -#: superset-frontend/src/pages/DatasetList/index.tsx:620 +#: superset-frontend/src/pages/DatasetList/index.tsx:631 msgid "Import datasets" msgstr "Importer des jeux de données" @@ -8396,7 +8511,7 @@ msgstr "dans" msgid "Include Series" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:295 +#: superset-frontend/src/components/ReportModal/index.tsx:294 msgid "Include a description that will be sent with your report" msgstr "" @@ -8415,7 +8530,7 @@ msgstr "Date de fin" msgid "Index" msgstr "Personnel" -#: superset/views/database/forms.py:210 superset/views/database/forms.py:341 +#: superset/views/database/forms.py:220 superset/views/database/forms.py:351 msgid "Index Column" msgstr "Index de colonne" @@ -8455,12 +8570,25 @@ msgstr "Filtrage instantané" msgid "Intensity" msgstr "Entité" -#: superset/views/database/forms.py:190 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:85 +#, fuzzy +msgid "Intensity Radius" +msgstr "Entité" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:86 +msgid "Intensity Radius is the radius at which the weight is distributed" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:69 +msgid "Intensity is the value multiplied by the weight to obtain the final weight" +msgstr "" + +#: superset/views/database/forms.py:200 #, fuzzy msgid "Interpret Datetime Format Automatically" msgstr "Utiliser Pandas pour interpréter le format Datetime automatiquement." -#: superset/views/database/forms.py:191 +#: superset/views/database/forms.py:201 #, fuzzy msgid "Interpret the datetime format automatically" msgstr "Utiliser Pandas pour interpréter le format Datetime automatiquement." @@ -8494,6 +8622,20 @@ msgstr "Première colonne de l'intervalle" msgid "Intervals" msgstr "Intervalle d'actualisation" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:68 +#, fuzzy +msgid "Intesity" +msgstr "Entité" + +#: superset/db_engine_specs/ocient.py:274 +#, fuzzy +msgid "" +"Invalid Connection String: Expecting String of the form " +"'ocient://user:pass@host:port/database'." +msgstr "" +"Chaîne de connexion invalide, une chaîne valide a généralement cette " +"forme : driver://user:password@database-host/database-name" + #: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 msgid "Invalid JSON" msgstr "JSON invalide" @@ -8507,7 +8649,7 @@ msgstr "Type de résultat invalide : %(result_type)s" msgid "Invalid certificate" msgstr "Certificat invalide" -#: superset/views/core.py:1422 +#: superset/views/core.py:1463 msgid "" "Invalid connection string, a valid string usually follows:\n" "'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" @@ -8545,15 +8687,15 @@ msgstr "Expression Cron invalide" msgid "Invalid cumulative operator: %(operator)s" msgstr "Operateur cumulatif invalide: %(operator)s" -#: superset/connectors/sqla/views.py:181 superset/datasets/schemas.py:44 +#: superset/connectors/sqla/views.py:180 superset/datasets/schemas.py:44 msgid "Invalid date/timestamp format" msgstr "Format date/timestamp invalide" -#: superset/viz.py:2160 +#: superset/viz.py:2091 msgid "Invalid filter configuration, please select a column" msgstr "Configuration du filtre invalide, veuillez sélectionner une colonne" -#: superset/connectors/sqla/models.py:1623 superset/models/helpers.py:1820 +#: superset/models/helpers.py:1891 #, python-format msgid "Invalid filter operation type: %(op)s" msgstr "Type d'opération de filtrage invalide : %(op)s" @@ -8578,7 +8720,7 @@ msgstr "Configuration lat/long non valide." msgid "Invalid longitude/latitude" msgstr "Invalide Longitude/Latitude" -#: superset/utils/core.py:1364 +#: superset/utils/core.py:1373 #, fuzzy, python-format msgid "Invalid metric object: %(metric)s" msgstr "Object métrique invalide" @@ -8597,7 +8739,12 @@ msgstr "Options invalides pour %(rolling_type)s: %(options)s" msgid "Invalid permalink key" msgstr "" -#: superset/common/query_actions.py:228 +#: superset/db_engine_specs/ocient.py:292 +#, python-format +msgid "Invalid reference to column: \"%(column)s\"" +msgstr "" + +#: superset/common/query_actions.py:227 #, python-format msgid "Invalid result type: %(result_type)s" msgstr "Type de résultat invalide : %(result_type)s" @@ -8607,7 +8754,7 @@ msgstr "Type de résultat invalide : %(result_type)s" msgid "Invalid rolling_type: %(type)s" msgstr "Le rolling_type invalide: %(type)s" -#: superset/viz.py:2530 +#: superset/viz.py:2474 #, python-format msgid "Invalid spatial point encountered: %s" msgstr "Point géographique invalide : %s" @@ -8618,7 +8765,7 @@ msgstr "Point géographique invalide : %s" msgid "Invalid state." msgstr "Certificat invalide" -#: superset/reports/commands/create.py:144 +#: superset/reports/commands/create.py:142 #, python-format msgid "Invalid tab ids: %s(tab_ids)" msgstr "" @@ -8628,7 +8775,7 @@ msgstr "" msgid "Inverse selection" msgstr "Exécuter la sélection" -#: superset-frontend/src/components/Table/index.tsx:205 +#: superset-frontend/src/components/Table/index.tsx:209 #, fuzzy msgid "Invert current page" msgstr "Pourcentages" @@ -8649,7 +8796,7 @@ msgstr "Est une Dimension" msgid "Is false" msgstr "Éditer la table" -#: superset/views/base_api.py:143 +#: superset/views/base_api.py:149 msgid "Is favorite" msgstr "Favoris" @@ -8668,13 +8815,13 @@ msgstr "Non Null" msgid "Is null" msgstr "Non Null" -#: superset/views/base_api.py:171 +#: superset/views/base_api.py:177 msgid "Is tagged" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:362 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 -#: superset/connectors/sqla/views.py:162 +#: superset/connectors/sqla/views.py:161 msgid "Is temporal" msgstr "Est temporel" @@ -8720,7 +8867,7 @@ msgstr "méta-données JSON " msgid "JSON metadata is invalid!" msgstr "le json n'est pas valide" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 msgid "" "JSON string containing additional connection configuration. This is used " "to provide connection information for systems like Hive, Presto and " @@ -8762,14 +8909,14 @@ msgstr "" msgid "Jinja templating" msgstr "Modifier un template" -#: superset/views/database/forms.py:233 +#: superset/views/database/forms.py:243 #, fuzzy msgid "Json list of the column names that should be read" msgstr "" "Une liste de colonnes séparées par des virgules qui devraient être " "parsées comme des dates." -#: superset/views/database/forms.py:464 +#: superset/views/database/forms.py:474 msgid "" "Json list of the column names that should be read. If not None, only " "these columns will be read from the file." @@ -8777,7 +8924,7 @@ msgstr "" "Liste json des noms de colonnes qui devraient être lues. Si différent de " "None, uniquement ces colonnes seront lues depuis le fichier." -#: superset/views/database/forms.py:203 +#: superset/views/database/forms.py:213 #, fuzzy msgid "" "Json list of the values that should be treated as null. Examples: [\"\"] " @@ -8788,7 +8935,7 @@ msgstr "" "\"N/A\"], [\"nan\", \"null\"]. Attention: Hive database ne supporte " "qu'une seule valeur. Use [\"\"] for empty string." -#: superset/views/database/forms.py:394 +#: superset/views/database/forms.py:404 msgid "" "Json list of the values that should be treated as null. Examples: [\"\"]," " [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " @@ -8841,8 +8988,8 @@ msgstr "Filtres" msgid "LIMIT" msgstr "Nombre de lignes max" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:80 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:109 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:93 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:122 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:251 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:255 @@ -8925,7 +9072,7 @@ msgstr "Partage de requête" msgid "Last" msgstr "à" -#: superset/connectors/sqla/views.py:481 superset/views/database/mixins.py:190 +#: superset/connectors/sqla/views.py:388 superset/views/database/mixins.py:190 msgid "Last Changed" msgstr "Dernière modification" @@ -8952,7 +9099,7 @@ msgstr "Valeurs de pre-filtre disponibles" #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:177 #: superset-frontend/src/pages/ChartList/index.tsx:445 #: superset-frontend/src/pages/CssTemplateList/index.tsx:158 -#: superset-frontend/src/pages/DatabaseList/index.tsx:380 +#: superset-frontend/src/pages/DatabaseList/index.tsx:391 msgid "Last modified" msgstr "Dernière modification" @@ -9010,7 +9157,7 @@ msgstr "Dernière modification" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:28 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:90 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:371 #, fuzzy msgid "Left" @@ -9045,7 +9192,7 @@ msgstr "" msgid "Left to Right" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:144 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 msgid "Left value" msgstr "Valeur gauche" @@ -9058,7 +9205,6 @@ msgstr "Valeur gauche" #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:33 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 #: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 #: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 @@ -9074,15 +9220,16 @@ msgstr "Valeur gauche" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:35 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 #: superset-frontend/src/visualizations/TimeTable/index.ts:35 msgid "Legacy" msgstr "Legacy" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:154 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:289 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:115 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:99 #, fuzzy msgid "Legend" msgstr "Modifié" @@ -9092,7 +9239,7 @@ msgstr "Modifié" msgid "Legend Format" msgstr "Format d'e-mail" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:95 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:92 #, fuzzy msgid "Legend Orientation" msgstr "Documentation" @@ -9102,7 +9249,7 @@ msgstr "Documentation" msgid "Legend Position" msgstr "dernière partition :" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:72 #, fuzzy msgid "Legend type" msgstr "Type du filtre" @@ -9257,7 +9404,7 @@ msgid "Lines encoding" msgstr "Tri croissant" #: superset-frontend/src/pages/SavedQueryList/index.tsx:226 -#: superset-frontend/src/views/CRUD/hooks.ts:673 +#: superset-frontend/src/views/CRUD/hooks.ts:677 msgid "Link Copied!" msgstr "Lien copié !" @@ -9286,7 +9433,7 @@ msgstr "" msgid "List of values to mark with triangles" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:187 +#: superset-frontend/src/components/TableSelector/index.tsx:184 #, fuzzy msgid "List updated" msgstr "le trimestre dernier" @@ -9317,8 +9464,8 @@ msgid "Loading" msgstr "Chargement ..." #: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:495 -#: superset-frontend/src/components/Select/Select.tsx:470 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:496 +#: superset-frontend/src/components/Select/Select.tsx:477 #: superset-frontend/src/components/Select/utils.tsx:152 #: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 #: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 @@ -9347,13 +9494,13 @@ msgstr "" msgid "Logarithmic scale on primary y-axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:432 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:449 msgid "Logarithmic scale on secondary y-axis" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:396 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:420 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:429 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:437 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:446 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:222 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:225 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:210 @@ -9425,17 +9572,17 @@ msgstr "MAI" msgid "MON" msgstr "LUN" -#: superset/connectors/sqla/views.py:490 +#: superset/connectors/sqla/views.py:397 msgid "Main Datetime Column" msgstr "Colonne Datetime principale" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:283 +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:292 msgid "" "Make sure that the controls are configured properly and the datasource " "contains data for the selected time range" msgstr "" -#: superset/views/core.py:1717 +#: superset/views/core.py:1752 msgid "" "Malformed request. slice_id or table_name and db_name arguments are " "expected" @@ -9443,11 +9590,11 @@ msgstr "" "Requête malformée. Les arguments slice_id ou table_name et db_name sont " "attendus" -#: superset/initialization/__init__.py:277 -#: superset/initialization/__init__.py:289 -#: superset/initialization/__init__.py:341 -#: superset/initialization/__init__.py:412 -#: superset/initialization/__init__.py:425 +#: superset/initialization/__init__.py:279 +#: superset/initialization/__init__.py:291 +#: superset/initialization/__init__.py:335 +#: superset/initialization/__init__.py:406 +#: superset/initialization/__init__.py:419 msgid "Manage" msgstr "Gestion" @@ -9467,7 +9614,7 @@ msgstr "Donner un nom à la base de données" msgid "Mandatory" msgstr "Obligatoire" -#: superset/views/database/forms.py:350 +#: superset/views/database/forms.py:360 msgid "Mangle Duplicate Columns" msgstr "Supprimer les colonnes en double" @@ -9486,6 +9633,8 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:67 @@ -9511,7 +9660,7 @@ msgstr "Type de balisage" msgid "MapBox" msgstr "Mapbox" -#: superset/viz.py:2322 +#: superset/viz.py:2258 msgid "Mapbox" msgstr "Mapbox" @@ -9519,12 +9668,12 @@ msgstr "Mapbox" msgid "March" msgstr "Mars" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:50 #, fuzzy msgid "Margin" msgstr "Comparaison" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:348 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:354 msgid "Mark a column as temporal in \"Edit datasource\" modal" msgstr "" @@ -9607,7 +9756,7 @@ msgid "" "this insures that the circle respects this maximum radius." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:232 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 #, fuzzy msgid "Maximum value" msgstr "Valeurs NULL" @@ -9660,7 +9809,7 @@ msgstr "" msgid "Menu actions trigger" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:237 +#: superset-frontend/src/components/ReportModal/index.tsx:236 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 msgid "Message content" msgstr "Contenu du message" @@ -9670,8 +9819,8 @@ msgstr "Contenu du message" msgid "Metadata" msgstr "méta-données JSON " -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:450 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:454 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:486 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:490 msgid "Metadata Parameters" msgstr "Les paramètres de métadonnées" @@ -9696,13 +9845,12 @@ msgstr "Méthode" #: superset-frontend/src/explore/controls.jsx:167 #: superset-frontend/src/explore/controls.jsx:168 #: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 -#: superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:249 msgid "Metric" msgstr "Métrique" -#: superset/connectors/sqla/models.py:1264 -#: superset/connectors/sqla/models.py:1847 superset/models/helpers.py:1192 -#: superset/models/helpers.py:1448 +#: superset/connectors/sqla/models.py:1133 superset/models/helpers.py:1236 +#: superset/models/helpers.py:1529 #, python-format msgid "Metric '%(metric)s' does not exist" msgstr "La métrique '%(metric)s' n'existe pas" @@ -9739,7 +9887,7 @@ msgstr "" msgid "Metric for node values" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:106 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:119 #, fuzzy msgid "Metric name" msgstr "Nom de la requête" @@ -9766,6 +9914,7 @@ msgstr "Choisissez une métrique à afficher" msgid "Metric to sort the results by" msgstr "Métrique servant à trier les résultats" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:139 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:78 msgid "Metric used as a weight for the grid's coloring" msgstr "" @@ -9815,7 +9964,7 @@ msgstr "" #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 #: superset-frontend/src/explore/controls.jsx:152 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 -#: superset/connectors/sqla/views.py:207 +#: superset/connectors/sqla/views.py:206 msgid "Metrics" msgstr "Métriques" @@ -9900,11 +10049,11 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:85 #: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:152 msgid "Minimum threshold in percentage points for showing labels." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:231 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:69 #, fuzzy msgid "Minimum value" msgstr "Valeurs NULL" @@ -9927,7 +10076,7 @@ msgstr "" msgid "Minor Split Line" msgstr "" -#: superset/db_engine_specs/base.py:99 +#: superset/db_engine_specs/base.py:100 msgid "Minute" msgstr "Minute" @@ -9959,12 +10108,13 @@ msgstr "" #: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:278 #: superset-frontend/src/pages/AlertReportList/index.tsx:335 #: superset-frontend/src/pages/DashboardList/index.tsx:347 -#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:375 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:152 #: superset-frontend/src/pages/SavedQueryList/index.tsx:369 #: superset-frontend/src/pages/Tags/index.tsx:118 -#: superset/connectors/sqla/views.py:367 superset/connectors/sqla/views.py:495 -#: superset/views/dashboard/mixin.py:85 superset/views/dashboard/views.py:186 -#: superset/views/database/mixins.py:199 superset/views/sql_lab/views.py:85 +#: superset/connectors/sqla/views.py:402 superset/views/dashboard/mixin.py:85 +#: superset/views/dashboard/views.py:186 superset/views/database/mixins.py:199 +#: superset/views/sql_lab/views.py:85 msgid "Modified" msgstr "Modifié" @@ -9979,7 +10129,7 @@ msgstr "%s modifié" #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 #: superset-frontend/src/pages/ChartList/index.tsx:431 #: superset-frontend/src/pages/DashboardList/index.tsx:326 -#: superset-frontend/src/pages/DatasetList/index.tsx:374 +#: superset-frontend/src/pages/DatasetList/index.tsx:385 msgid "Modified by" msgstr "Modifié" @@ -9992,7 +10142,7 @@ msgstr "Colonnes modifiées : %s" msgid "Monday" msgstr "Lundi" -#: superset/db_engine_specs/base.py:108 +#: superset/db_engine_specs/base.py:109 msgid "Month" msgstr "Mois" @@ -10060,7 +10210,7 @@ msgstr "" msgid "Multiple Line Charts" msgstr "Séries temporelles - Lignes multiples" -#: superset/views/database/views.py:465 +#: superset/views/database/views.py:468 msgid "" "Multiple file extensions are not allowed for columnar uploads. Please " "make sure all files are of the same extension." @@ -10102,11 +10252,11 @@ msgstr "Doit être unique" msgid "Must choose either a chart or a dashboard" msgstr "Choisissez un graphique ou un tableau de bord, pas les deux" -#: superset/viz.py:2346 +#: superset/viz.py:2283 msgid "Must have a [Group By] column to have 'count' as the [Label]" msgstr "Il faut une colonne [Grouper par] pour avoir 'count' comme [Label]" -#: superset/viz.py:1752 +#: superset/viz.py:1666 msgid "Must have at least one numeric column specified" msgstr "Au moins une colonne numérique doit être spécifiée" @@ -10114,7 +10264,7 @@ msgstr "Au moins une colonne numérique doit être spécifiée" msgid "Must provide credentials for the SSH Tunnel" msgstr "" -#: superset/connectors/sqla/models.py:1582 superset/models/helpers.py:1780 +#: superset/models/helpers.py:1848 msgid "Must specify a value for filters with comparison operators" msgstr "" "Il faut spécifier une valeur pour les filtres avec opérateurs de " @@ -10157,19 +10307,21 @@ msgid "NUMERIC" msgstr "Ma métrique" #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:149 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:782 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:212 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:148 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:789 #: superset-frontend/src/pages/AlertReportList/index.tsx:272 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 #: superset-frontend/src/pages/CssTemplateList/index.tsx:131 -#: superset-frontend/src/pages/DatasetList/index.tsx:334 +#: superset-frontend/src/pages/DatasetList/index.tsx:345 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:130 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:248 #: superset-frontend/src/pages/SavedQueryList/index.tsx:283 #: superset-frontend/src/pages/Tags/index.tsx:109 -#: superset/connectors/sqla/views.py:361 superset/views/chart/mixin.py:85 +#: superset/views/chart/mixin.py:85 msgid "Name" msgstr "Nom" @@ -10182,11 +10334,11 @@ msgstr "Le nom est obligatoire" msgid "Name must be unique" msgstr "Le nom doit être unique" -#: superset/views/database/forms.py:406 +#: superset/views/database/forms.py:416 msgid "Name of table to be created from columnar data." msgstr "Nom de la table à créer à partir des données en colonne." -#: superset/views/database/forms.py:270 +#: superset/views/database/forms.py:280 msgid "Name of table to be created from excel data." msgstr "Nom de la table à créer à partir des données Excel." @@ -10208,7 +10360,7 @@ msgstr "Pas de colonne temporelle" msgid "Name of the source nodes" msgstr "" -#: superset/connectors/sqla/views.py:428 +#: superset/connectors/sqla/views.py:335 msgid "Name of the table that exists in the source database" msgstr "Nom de la table qui existe dans la base de données source" @@ -10267,17 +10419,17 @@ msgstr "Nouvel ensemble de filtre" msgid "New header" msgstr "Ligne d'en-tête" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:329 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:331 msgid "New tab" msgstr "Nouvel onglet" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:268 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:310 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:278 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:320 msgid "New tab (Ctrl + q)" msgstr "Nouvel onglet (Ctrl + q)" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:269 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:311 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:279 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:321 msgid "New tab (Ctrl + t)" msgstr "Nouvel onglet (Ctrl + t)" @@ -10300,9 +10452,9 @@ msgstr "Séries temporelles - Graphique Nightingale Rose" #: superset-frontend/src/pages/ChartList/index.tsx:708 #: superset-frontend/src/pages/DashboardList/index.tsx:507 #: superset-frontend/src/pages/DashboardList/index.tsx:589 -#: superset-frontend/src/pages/DatabaseList/index.tsx:468 -#: superset-frontend/src/pages/DatabaseList/index.tsx:488 -#: superset-frontend/src/pages/DatasetList/index.tsx:573 +#: superset-frontend/src/pages/DatabaseList/index.tsx:479 +#: superset-frontend/src/pages/DatabaseList/index.tsx:499 +#: superset-frontend/src/pages/DatasetList/index.tsx:584 msgid "No" msgstr "Non" @@ -10325,6 +10477,11 @@ msgstr "Pas de données" msgid "No Results" msgstr "Visualiser les résultats" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:235 +#, fuzzy +msgid "No Rules yet" +msgstr "récents" + #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:116 #, fuzzy msgid "No annotation layers" @@ -10362,7 +10519,7 @@ msgstr "Aucun graphique" msgid "No columns" msgstr "Pas de colonne" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:242 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 #, fuzzy msgid "No columns found" msgstr "Aucun colonne compatible trouvée" @@ -10376,7 +10533,7 @@ msgstr "Aucun colonne compatible trouvée" msgid "No compatible datasets found" msgstr "Aucun colonne compatible trouvée" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 #, fuzzy msgid "No compatible schema found" msgstr "Aucun colonne compatible trouvée" @@ -10390,14 +10547,14 @@ msgstr "Aucun tableau de bord" msgid "No dashboards yet" msgstr "Aucun tableau de bord" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:133 -#: superset-frontend/src/components/Table/index.tsx:203 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 +#: superset-frontend/src/components/Table/index.tsx:207 #: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:225 #: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 msgid "No data" msgstr "Pas de données" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 msgid "No data after filtering or data is NULL for the latest time record" msgstr "" "Pas de données après filtrage ou données manquantes pour la période " @@ -10420,10 +10577,6 @@ msgstr "" msgid "No description available." msgstr "Pas de description disponible." -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:174 -msgid "No dimensions available for drill by" -msgstr "" - #: superset-frontend/src/profile/components/Favorites.tsx:61 msgid "No favorite charts yet, go click on stars!" msgstr "Aucun graphique favori pour le moment, cliquer sur les étoiles !" @@ -10442,7 +10595,7 @@ msgstr "Pas de filtre" msgid "No filter is selected." msgstr "Pas de filtre sélectionné." -#: superset-frontend/src/components/Table/index.tsx:200 +#: superset-frontend/src/components/Table/index.tsx:204 #, fuzzy msgid "No filters" msgstr "Pas de filtre" @@ -10488,7 +10641,7 @@ msgid "No results" msgstr "Visualiser les résultats" #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:425 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:428 msgid "No results found" msgstr "Aucun résultat trouvé" @@ -10496,7 +10649,7 @@ msgstr "Aucun résultat trouvé" msgid "No results match your filter criteria" msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:280 +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:289 #: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 msgid "No results were returned for this query" msgstr "Aucun résultat avec ces paramètres" @@ -10518,8 +10671,8 @@ msgstr "Aucun résultat avec ces paramètres" msgid "No samples were returned for this dataset" msgstr "Aucun résultat avec ces paramètres" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:293 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:311 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:299 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:317 #, fuzzy msgid "No saved expressions found" msgstr "Expressions sauvegardées" @@ -10550,9 +10703,9 @@ msgstr "" msgid "No table columns" msgstr "Pas de colonne temporelle" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:292 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:310 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:345 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:298 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:316 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:351 #, fuzzy msgid "No temporal columns found" msgstr "Aucun colonne compatible trouvée" @@ -10584,7 +10737,7 @@ msgid "Node size" msgstr "Taille de la bulle" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:45 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:187 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:270 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:286 @@ -10594,12 +10747,12 @@ msgstr "Taille de la bulle" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:402 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:182 #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:124 #: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 #: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:196 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:576 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:48 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:51 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:138 #: superset-frontend/src/explore/controlPanels/sections.tsx:134 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:127 @@ -10687,7 +10840,7 @@ msgstr "Novembre" msgid "Now" msgstr "Maintenant" -#: superset/views/database/forms.py:201 +#: superset/views/database/forms.py:211 #, fuzzy msgid "Null Values" msgstr "Valeurs NULL" @@ -10702,11 +10855,11 @@ msgstr "annotation" msgid "Null or Empty" msgstr "Null ou Vide" -#: superset/views/database/forms.py:392 +#: superset/views/database/forms.py:402 msgid "Null values" msgstr "Valeurs NULL" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:191 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 #, fuzzy msgid "Number Format" msgstr "Format D3" @@ -10722,11 +10875,10 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:60 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:65 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:144 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:117 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:67 #: superset-frontend/plugins/legacy-plugin-chart-treemap/src/controlPanel.ts:67 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:97 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:137 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:276 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:137 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:113 @@ -10769,21 +10921,21 @@ msgstr "" msgid "Number of periods to ratio against" msgstr "" -#: superset/views/database/forms.py:255 +#: superset/views/database/forms.py:265 #, fuzzy msgid "Number of rows of file to read" msgstr "Nombre de lignes du fichier à lire." -#: superset/views/database/forms.py:361 +#: superset/views/database/forms.py:371 msgid "Number of rows of file to read." msgstr "Nombre de lignes du fichier à lire." -#: superset/views/database/forms.py:261 +#: superset/views/database/forms.py:271 #, fuzzy msgid "Number of rows to skip at start of file" msgstr "Nombre de lignes à sauter au début du fichier." -#: superset/views/database/forms.py:355 +#: superset/views/database/forms.py:365 msgid "Number of rows to skip at start of file." msgstr "Nombre de lignes à sauter au début du fichier." @@ -10807,15 +10959,15 @@ msgstr "Interval numérique" msgid "OCT" msgstr "OCT" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:184 -#: superset-frontend/src/components/Modal/Modal.tsx:231 -#: superset-frontend/src/components/Table/index.tsx:198 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 +#: superset-frontend/src/components/Modal/Modal.tsx:238 +#: superset-frontend/src/components/Table/index.tsx:202 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:865 msgid "OK" msgstr "OK" #: superset-frontend/src/components/ImportModal/index.tsx:267 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1379 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1434 msgid "OVERWRITE" msgstr "ECRASE" @@ -10828,7 +10980,7 @@ msgstr "Octobre" msgid "Offline" msgstr "Hors ligne" -#: superset/connectors/sqla/views.py:485 +#: superset/connectors/sqla/views.py:392 msgid "Offset" msgstr "Décalage (offset)" @@ -10877,27 +11029,27 @@ msgstr "Un ou plusieurs contrôles à transposer en colonnes" msgid "One or many metrics to display" msgstr "Une ou plusieurs métriques à afficher" -#: superset/datasets/commands/exceptions.py:90 +#: superset/datasets/commands/exceptions.py:107 msgid "One or more columns already exist" msgstr "Une ou plusieurs colonnes existent déjà" -#: superset/datasets/commands/exceptions.py:80 +#: superset/datasets/commands/exceptions.py:97 msgid "One or more columns are duplicated" msgstr "Une ou plusieurs colonnes sont dupliquées" -#: superset/datasets/commands/exceptions.py:70 +#: superset/datasets/commands/exceptions.py:87 msgid "One or more columns do not exist" msgstr "Une ou plusieurs colonnes n'existent pas" -#: superset/datasets/commands/exceptions.py:119 +#: superset/datasets/commands/exceptions.py:136 msgid "One or more metrics already exist" msgstr "Une ou plusieurs métriques existent déjà" -#: superset/datasets/commands/exceptions.py:109 +#: superset/datasets/commands/exceptions.py:126 msgid "One or more metrics are duplicated" msgstr "Une ou plusieurs métriques sont dupliquées" -#: superset/datasets/commands/exceptions.py:99 +#: superset/datasets/commands/exceptions.py:116 msgid "One or more metrics do not exist" msgstr "Une ou plusieurs métriques n'existent pas" @@ -10913,7 +11065,7 @@ msgstr "Un ou plusieurs paramètres de la requête sont malformés." msgid "One or more parameters specified in the query are missing." msgstr "Il manque un ou plusieurs paramêtres dans la requête." -#: superset/views/core.py:1992 +#: superset/views/core.py:2029 #, fuzzy msgid "" "One or more required fields are missing in the request. Please try again," @@ -10926,23 +11078,23 @@ msgstr "" msgid "One ore more annotation layers failed loading." msgstr "Une ou plusieurs couches d'annotation ont échoué au chargement." -#: superset/sql_lab.py:230 +#: superset/sql_lab.py:228 msgid "Only SELECT statements are allowed against this database." msgstr "Seules les instructions SELECT sont autorisées pour cette base de données." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:133 msgid "Only Total" msgstr "" -#: superset/connectors/sqla/utils.py:123 +#: superset/connectors/sqla/utils.py:122 msgid "Only `SELECT` statements are allowed" msgstr "Seules les instructions `SELECT` sont autorisées" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:29 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 msgid "Only applies when \"Label Type\" is not set to a percentage." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:26 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 msgid "Only applies when \"Label Type\" is set to show values." msgstr "" @@ -10950,18 +11102,18 @@ msgstr "" msgid "Only selected panels will be affected by this filter" msgstr "Seuls les panneaux sélectionnés seront affectés par ce filtre" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:139 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 msgid "" "Only show the total value on the stacked chart, and not show on the " "selected category" msgstr "" -#: superset/connectors/sqla/utils.py:132 +#: superset/connectors/sqla/utils.py:131 msgid "Only single queries supported" msgstr "Seules les requêtes simples sont autorisées" -#: superset/views/database/forms.py:119 superset/views/database/forms.py:288 -#: superset/views/database/forms.py:426 +#: superset/views/database/forms.py:119 superset/views/database/forms.py:298 +#: superset/views/database/forms.py:436 #, python-format msgid "Only the following file extensions are allowed: %(allowed_extensions)s" msgstr "" @@ -11012,7 +11164,7 @@ msgstr "Ouvrir dans SQL Lab" msgid "Open query in SQL Lab" msgstr "Ouvrir requête dans SQL Lab" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:298 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 #: superset/views/database/mixins.py:104 msgid "" "Operate the database in asynchronous mode, meaning that the queries are " @@ -11026,8 +11178,8 @@ msgstr "" "configuré un processus Celery ainsi qu'un backend de résultats. Se " "référer aux docs d'installation pour plus d'informations." -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:126 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:130 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 msgid "Operator" msgstr "Opérateur" @@ -11036,7 +11188,7 @@ msgstr "Opérateur" msgid "Operator undefined for aggregator: %(name)s" msgstr "Opérateur indéfini pour l'agrégat: %(name)s" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:381 msgid "" "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" " certain database engines." @@ -11062,13 +11214,8 @@ msgstr "" msgid "Optional warning about use of this metric" msgstr "Avertissement optionnel à propos de l'utilisation de cette métrique" -#: superset/connectors/sqla/views.py:328 -msgid "Optionally add a detailed description" -msgstr "" - #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:39 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:68 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:108 #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:74 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:45 #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:70 @@ -11082,7 +11229,7 @@ msgstr "" msgid "Options" msgstr "%s option(s)" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:918 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:973 msgid "Or choose from a list of other databases we support:" msgstr "" @@ -11101,7 +11248,7 @@ msgstr "" msgid "Ordering" msgstr "Tri décroissant" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:83 #, fuzzy msgid "Orientation" msgstr "Documentation" @@ -11111,7 +11258,7 @@ msgstr "Documentation" msgid "Orientation of bar chart" msgstr "Source de l'Annotation" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:158 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 #, fuzzy msgid "Orientation of filter bar" msgstr "Source de l'Annotation" @@ -11130,7 +11277,7 @@ msgstr "Valeur d'origine" msgid "Original table column order" msgstr "Ordre de colonne de table original" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 #: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 #: superset-frontend/src/explore/controls.jsx:79 @@ -11142,10 +11289,10 @@ msgid "Orthogonal" msgstr "" #: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:126 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:938 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:479 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:993 #: superset-frontend/src/features/home/EmptyState.tsx:112 -#: superset/views/database/forms.py:155 superset/views/database/forms.py:161 +#: superset/views/database/forms.py:165 superset/views/database/forms.py:171 msgid "Other" msgstr "Autres" @@ -11212,15 +11359,15 @@ msgstr "Modifier intervalle de temps" #: superset-frontend/src/components/ImportModal/index.tsx:426 #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:493 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:459 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:463 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:464 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:148 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 msgid "Overwrite" msgstr "Ecrase" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:249 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:192 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:247 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 msgid "Overwrite & Explore" msgstr "Modifier et explorer" @@ -11229,12 +11376,12 @@ msgstr "Modifier et explorer" msgid "Overwrite Dashboard [%s]" msgstr "Ecraser le Tableau de Bord [%s]" -#: superset/views/database/forms.py:237 +#: superset/views/database/forms.py:247 #, fuzzy msgid "Overwrite Duplicate Columns" msgstr "Supprimer les colonnes en double" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:404 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:412 #, fuzzy msgid "Overwrite existing" msgstr "Garder en édition" @@ -11250,11 +11397,11 @@ msgstr "" #: superset-frontend/src/pages/AlertReportList/index.tsx:452 #: superset-frontend/src/pages/ChartList/index.tsx:608 #: superset-frontend/src/pages/DashboardList/index.tsx:523 -#: superset-frontend/src/pages/DatasetList/index.tsx:500 +#: superset-frontend/src/pages/DatasetList/index.tsx:511 msgid "Owner" msgstr "Propriétaire" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:235 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:93 #: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:408 @@ -11269,14 +11416,14 @@ msgstr "Propriétaire" #: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 #: superset-frontend/src/pages/AlertReportList/index.tsx:324 #: superset-frontend/src/pages/DashboardList/index.tsx:369 -#: superset-frontend/src/pages/DatasetList/index.tsx:389 -#: superset/connectors/sqla/views.py:489 superset/views/chart/mixin.py:82 +#: superset-frontend/src/pages/DatasetList/index.tsx:400 +#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:82 #: superset/views/dashboard/mixin.py:81 msgid "Owners" msgstr "Propriétaires" -#: superset/commands/exceptions.py:108 -#: superset/datasets/commands/exceptions.py:144 +#: superset/commands/exceptions.py:112 +#: superset/datasets/commands/exceptions.py:161 msgid "Owners are invalid" msgstr "Les propriétaires sont invalides" @@ -11322,7 +11469,7 @@ msgid "Pandas resample rule" msgstr "Règle de ré-échantillonnage Pandas" #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 -#: superset/viz.py:2219 +#: superset/viz.py:2152 msgid "Parallel Coordinates" msgstr "Coordonnées parallèles" @@ -11348,7 +11495,7 @@ msgstr "" msgid "Parent" msgstr "" -#: superset/views/database/forms.py:366 +#: superset/views/database/forms.py:376 msgid "Parse Dates" msgstr "Parser les dates" @@ -11367,7 +11514,7 @@ msgstr "" msgid "Partition Chart" msgstr "Diagramme de Partition" -#: superset/viz.py:3071 +#: superset/viz.py:3069 msgid "Partition Diagram" msgstr "Diagramme de Partition" @@ -11388,7 +11535,7 @@ msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:154 #: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 -#: superset/db_engine_specs/base.py:1838 +#: superset/db_engine_specs/base.py:1870 #: superset/db_engine_specs/clickhouse.py:202 msgid "Password" msgstr "Mot de passe" @@ -11445,7 +11592,7 @@ msgstr "Pourcentages" #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:81 #: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:148 #, fuzzy msgid "Percentage threshold" msgstr "Pourcentages" @@ -11464,7 +11611,7 @@ msgstr "Pourcentages" msgid "Percentages" msgstr "Pourcentages" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:219 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:229 msgid "Performance" msgstr "" @@ -11502,8 +11649,8 @@ msgid "Person or group that has certified this metric" msgstr "Groupe ou personne ayant certifié cette métrique" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1114 -#: superset-frontend/src/pages/DatasetList/index.tsx:342 -#: superset-frontend/src/pages/DatasetList/index.tsx:560 +#: superset-frontend/src/pages/DatasetList/index.tsx:353 +#: superset-frontend/src/pages/DatasetList/index.tsx:571 msgid "Physical" msgstr "Physique" @@ -11511,7 +11658,7 @@ msgstr "Physique" msgid "Physical (table or view)" msgstr "Physique (table ou vue)" -#: superset-frontend/src/pages/DatasetList/index.tsx:273 +#: superset-frontend/src/pages/DatasetList/index.tsx:284 msgid "Physical dataset" msgstr "Jeu de données physique" @@ -11520,29 +11667,29 @@ msgstr "Jeu de données physique" msgid "Pick a dimension from which categorical colors are defined" msgstr "" -#: superset/viz.py:769 +#: superset/viz.py:795 msgid "Pick a granularity in the Time section or uncheck 'Include Time'" msgstr "" "Choississez une granularité dans la section Temps ou décochez 'Inclure le" " temps'" -#: superset/viz.py:1605 +#: superset/viz.py:1514 msgid "Pick a metric for left axis!" msgstr "Choisissez une métrique pour l'axe de gauche !" -#: superset/viz.py:1607 +#: superset/viz.py:1516 msgid "Pick a metric for right axis!" msgstr "Choisissez une métrique pour l'axe de droite !" -#: superset/viz.py:1195 +#: superset/viz.py:1090 msgid "Pick a metric for x, y and size" msgstr "Choisissez une métrique pour x, y, taille" -#: superset/viz.py:1234 +#: superset/viz.py:1131 msgid "Pick a metric to display" msgstr "Choisissez une métrique à afficher" -#: superset/viz.py:1260 superset/viz.py:1294 +#: superset/viz.py:1159 superset/viz.py:1195 msgid "Pick a metric!" msgstr "Choisissez une métrique !" @@ -11561,7 +11708,7 @@ msgstr "" msgid "Pick a set of deck.gl charts to layer on top of one another" msgstr "" -#: superset/viz.py:1390 superset/viz.py:1653 +#: superset/viz.py:1294 superset/viz.py:1564 msgid "Pick a time granularity for your time series" msgstr "Choisissez une granularité pour vos séries temporelles" @@ -11569,15 +11716,15 @@ msgstr "Choisissez une granularité pour vos séries temporelles" msgid "Pick a title for you annotation." msgstr "Choisissez un titre pour votre annotation." -#: superset/viz.py:1815 +#: superset/viz.py:1732 msgid "Pick at least one field for [Series]" msgstr "Choisissez au moins un champs pour [Séries]" -#: superset/viz.py:857 superset/viz.py:1813 +#: superset/viz.py:887 superset/viz.py:1730 msgid "Pick at least one metric" msgstr "Choisissez au moins une métrique" -#: superset/viz.py:1943 +#: superset/viz.py:1863 msgid "Pick exactly 2 columns as [Source / Target]" msgstr "Choisissez exactement 2 colonnes pour [Source / Target]" @@ -11610,20 +11757,10 @@ msgstr "Voir exemples" msgid "Pin" msgstr "dans" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:45 -#, fuzzy -msgid "Pivot Options" -msgstr "%s option(s)" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 -#: superset/viz.py:894 msgid "Pivot Table" msgstr "Table pivot" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:32 -msgid "Pivot Table (legacy)" -msgstr "" - #: superset/utils/pandas_postprocessing/pivot.py:70 msgid "Pivot operation must include at least one aggregate" msgstr "L'opération de pivot nécessite au moins un agrégat" @@ -11645,7 +11782,7 @@ msgstr "" msgid "Pixels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 msgid "Plain" msgstr "" @@ -11657,7 +11794,7 @@ msgstr "" msgid "Please apply filter changes" msgstr "" -#: superset/sqllab/query_render.py:120 +#: superset/sqllab/query_render.py:118 msgid "" "Please check your query and confirm that all template parameters are " "surround by double braces, for example, \"{{ ds }}\". Then, try running " @@ -11668,8 +11805,8 @@ msgstr "" "}}\". Puis ré essayez ." #: superset/db_engine_specs/athena.py:56 -#: superset/db_engine_specs/bigquery.py:210 -#: superset/db_engine_specs/postgres.py:161 +#: superset/db_engine_specs/bigquery.py:211 +#: superset/db_engine_specs/postgres.py:160 #: superset/db_engine_specs/snowflake.py:117 #, python-format msgid "" @@ -11679,7 +11816,7 @@ msgstr "" "Veuillez corriger une erreur de syntaxe dans la requête près de " "\"%(syntax_error)s\". Puis essayez de relancer la requête." -#: superset/db_engine_specs/gsheets.py:80 superset/db_engine_specs/mysql.py:170 +#: superset/db_engine_specs/gsheets.py:82 superset/db_engine_specs/mysql.py:170 #, python-format msgid "" "Please check your query for syntax errors near \"%(server_error)s\". " @@ -11698,21 +11835,12 @@ msgstr "" "Veuillez corriger une erreur de syntaxe dans la requête près de " "\"%(syntax_error)s\". Puis essayez de relancer la requête." -#: superset/viz.py:911 -#, fuzzy -msgid "Please choose at least one 'Group by' field" -msgstr "Merci de choisir au moins un champ dans 'Grouper par' " - -#: superset/viz.py:3229 +#: superset/viz.py:3234 #, fuzzy msgid "Please choose at least one groupby" msgstr "Merci de choisir au moins un champ dans 'Grouper par' " -#: superset/viz.py:923 -msgid "Please choose at least one metric" -msgstr "Choississez au moins une métrique" - -#: superset/viz.py:1610 +#: superset/viz.py:1519 msgid "Please choose different metrics on left and right axis" msgstr "Choisissez des métriques différentes pour les axes gauches et droits" @@ -11728,18 +11856,20 @@ msgstr "Choisissez des métriques différentes pour les axes gauches et droits" #: superset-frontend/src/pages/DashboardList/index.tsx:415 #: superset-frontend/src/pages/DashboardList/index.tsx:701 #: superset-frontend/src/pages/DashboardList/index.tsx:756 -#: superset-frontend/src/pages/DatasetList/index.tsx:740 +#: superset-frontend/src/pages/DatasetList/index.tsx:762 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:170 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:304 #: superset-frontend/src/pages/SavedQueryList/index.tsx:533 #: superset-frontend/src/pages/Tags/index.tsx:141 #: superset-frontend/src/pages/Tags/index.tsx:281 msgid "Please confirm" msgstr "Veuillez confirmer" -#: superset-frontend/src/dashboard/actions/dashboardState.js:442 +#: superset-frontend/src/dashboard/actions/dashboardState.js:447 msgid "Please confirm the overwrite values." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:624 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:641 msgid "Please enter a SQLAlchemy URI to test" msgstr "Veuillez entrer une URI SQLAlchemy pour tester" @@ -11747,11 +11877,11 @@ msgstr "Veuillez entrer une URI SQLAlchemy pour tester" msgid "Please filter set name" msgstr "Veuillez saisir un nom d'ensemble de filtre" -#: superset/db_engine_specs/postgres.py:125 +#: superset/db_engine_specs/postgres.py:124 msgid "Please re-enter the password." msgstr "Veuillez re-saisir le mot de passe." -#: superset-frontend/src/views/CRUD/hooks.ts:435 +#: superset-frontend/src/views/CRUD/hooks.ts:439 msgid "Please re-export your file and try importing again" msgstr "" @@ -11785,7 +11915,7 @@ msgstr "" "Merci de sélectionner à la fois un Dataset et un type de graphique pour " "continuer" -#: superset/viz.py:1193 +#: superset/viz.py:1088 msgid "Please use 3 different metric labels" msgstr "Utilisez 3 libellés de métrique différents" @@ -11800,7 +11930,7 @@ msgid "" "multiple metrics across all of the samples or rows in the data." msgstr "" -#: superset/initialization/__init__.py:275 +#: superset/initialization/__init__.py:277 msgid "Plugins" msgstr "Plugins" @@ -11899,13 +12029,17 @@ msgid "Port" msgstr "rapport" #: superset/db_engine_specs/mssql.py:98 -#: superset/db_engine_specs/postgres.py:135 -#: superset/db_engine_specs/presto.py:672 -#: superset/db_engine_specs/redshift.py:77 +#: superset/db_engine_specs/postgres.py:134 +#: superset/db_engine_specs/presto.py:699 +#: superset/db_engine_specs/redshift.py:81 #, python-format msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." msgstr "Le port %(port)s sur l'hôte \"%(hostname)s\" a refusé la connexion." +#: superset/db_engine_specs/ocient.py:269 +msgid "Port out of range 0-65535" +msgstr "" + #: superset/views/dashboard/mixin.py:86 msgid "Position JSON" msgstr "JSON des positions" @@ -11942,7 +12076,7 @@ msgstr "Valeurs de pre-filtre disponibles" msgid "Pre-filter is required" msgstr "Un pré-filtre est obligatoire" -#: superset/connectors/sqla/views.py:440 +#: superset/connectors/sqla/views.py:347 msgid "" "Predicate applied when fetching distinct value to populate the filter " "control component. Supports jinja template syntax. Applies only when " @@ -11989,7 +12123,7 @@ msgstr "Prévisualisation : `%s`" msgid "Previous" msgstr "Précédent" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:346 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:348 #, fuzzy msgid "Previous Line" msgstr "Précédent" @@ -12014,6 +12148,10 @@ msgstr "Vendredi" msgid "Primary or secondary y-axis" msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 +msgid "Primary y-axis Bounds" +msgstr "" + #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:387 msgid "Primary y-axis format" msgstr "" @@ -12032,7 +12170,7 @@ msgstr "Réinitialiser mon mot de passe" msgid "Private Key Password" msgstr "Réinitialiser mon mot de passe" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:269 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 #, fuzzy msgid "Proceed" msgstr "rouge" @@ -12113,11 +12251,11 @@ msgstr "Mettez votre code ici" msgid "Python datetime string pattern" msgstr "Python datetime string pattern" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1530 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1585 msgid "QUERY DATA IN SQL LAB" msgstr "" -#: superset/db_engine_specs/base.py:109 +#: superset/db_engine_specs/base.py:110 msgid "Quarter" msgstr "Trimestre" @@ -12131,9 +12269,9 @@ msgstr "Trimestres %s" msgid "Queries" msgstr "requêtes" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:51 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:43 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:53 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:30 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:33 #: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:90 @@ -12144,7 +12282,6 @@ msgstr "requêtes" #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:36 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:32 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:34 #: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:30 @@ -12155,6 +12292,7 @@ msgstr "requêtes" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:44 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:55 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:43 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:41 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:60 @@ -12168,7 +12306,7 @@ msgstr "requêtes" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:361 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:34 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:35 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:44 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:43 @@ -12184,7 +12322,7 @@ msgstr "requêtes" #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:152 #: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:30 #: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:26 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1479 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1471 #: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 #: superset-frontend/src/explore/controlPanels/sections.tsx:94 #: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:34 @@ -12196,7 +12334,7 @@ msgstr "requêtes" msgid "Query" msgstr "Requête" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:361 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:363 #, python-format msgid "Query %s: %s" msgstr "" @@ -12213,11 +12351,11 @@ msgstr "requête" msgid "Query B" msgstr "requête" -#: superset/initialization/__init__.py:366 +#: superset/initialization/__init__.py:360 msgid "Query History" msgstr "Historiques des requêtes" -#: superset/commands/exceptions.py:138 +#: superset/commands/exceptions.py:142 #, fuzzy msgid "Query does not exist" msgstr "Le graphique n'existe pas" @@ -12233,7 +12371,7 @@ msgstr "Historiques des requêtes" msgid "Query imported" msgstr "Nom de la requête" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:465 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 msgid "Query in a new tab" msgstr "Requête dans un nouvel onglet" @@ -12259,11 +12397,11 @@ msgstr "Nom de la requête" msgid "Query preview" msgstr "Prévisualisation de la requête" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:415 msgid "Query was stopped" msgstr "La requête a été arrêtée" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:498 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:494 msgid "Query was stopped." msgstr "La requête a été arrêtée." @@ -12277,6 +12415,16 @@ msgstr "TYPE INTERVALLE" msgid "RGB Color" msgstr "Couleur fixe" +#: superset/row_level_security/commands/exceptions.py:29 +#, fuzzy +msgid "RLS Rule could not be deleted." +msgstr "Les graphiques n'ont pas pu être supprimés." + +#: superset/row_level_security/commands/exceptions.py:25 +#, fuzzy +msgid "RLS Rule not found." +msgstr "Planification de rapport introuvable." + #: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:159 msgid "Radar" msgstr "" @@ -12422,7 +12570,7 @@ msgstr "Nombre d'enregistrements" msgid "Rectangle" msgstr "Pourcentages" -#: superset/connectors/sqla/views.py:446 +#: superset/connectors/sqla/views.py:353 msgid "Redirects to this endpoint when clicking on the table from the table list" msgstr "" "Redirige à cet endpoint quand on clique sur la table depuis la liste des " @@ -12452,7 +12600,7 @@ msgstr "Se référér à" msgid "Referenced columns not available in DataFrame." msgstr "Les colonnes référencées sont indisponibles dans la DataFrame." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:549 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:542 msgid "Refetch results" msgstr "Résultats de recherche" @@ -12507,10 +12655,16 @@ msgstr "Colonnes des séries temporelles" msgid "Regex" msgstr "vert" -#: superset/connectors/sqla/views.py:329 +#: superset-frontend/src/features/rls/constants.ts:24 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:262 +msgid "Regular" +msgstr "" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:364 +#, fuzzy msgid "" "Regular filters add where clauses to queries if a user belongs to a role " -"referenced in the filter. Base filters apply filters to all queries " +"referenced in the filter, base filters apply filters to all queries " "except the roles defined in the filter, and can be used to define what " "users can see if no RLS filters within a filter group apply to them." msgstr "" @@ -12564,7 +12718,7 @@ msgstr "Me le rappeler dans 24 heures" msgid "Remove" msgstr "Supprimer" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:164 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:194 #, fuzzy msgid "Remove cross-filter" msgstr "Pre-filtre" @@ -12599,8 +12753,8 @@ msgstr "Renommer l'onglet" msgid "Rendering" msgstr "Avertissement" -#: superset/views/database/forms.py:168 superset/views/database/forms.py:325 -#: superset/views/database/forms.py:456 +#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 +#: superset/views/database/forms.py:466 msgid "Replace" msgstr "Remplacer" @@ -12614,13 +12768,12 @@ msgstr "Remplacer" #: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:593 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:163 #, fuzzy msgid "Report" msgstr "rapport" -#: superset-frontend/src/components/ReportModal/index.tsx:282 +#: superset-frontend/src/components/ReportModal/index.tsx:281 #, fuzzy msgid "Report Name" msgstr "Nom du rapport" @@ -12752,7 +12905,7 @@ msgid "Request Permissions" msgstr "Besoin de permissions" #: superset/charts/data/api.py:153 superset/charts/data/api.py:243 -#: superset/charts/data/api.py:309 +#: superset/charts/data/api.py:312 #, python-format msgid "Request is incorrect: %(error)s" msgstr "La requête est incorrecte : %(error)s" @@ -12761,7 +12914,7 @@ msgstr "La requête est incorrecte : %(error)s" msgid "Request is not JSON" msgstr "La requête n'est pas JSON" -#: superset/views/datasource/views.py:75 +#: superset/views/datasource/views.py:77 msgid "Request missing data field." msgstr "Il manque un champ de donnée dans la requête." @@ -12770,14 +12923,14 @@ msgstr "Il manque un champ de donnée dans la requête." msgid "Request timed out" msgstr "La requête n'est pas JSON" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:94 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:98 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:105 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:252 msgid "Required" msgstr "Requis" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:342 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 msgid "Required control values have been removed" msgstr "" @@ -12801,12 +12954,12 @@ msgstr "Méthode de ré-échantillonnage Pandas" msgid "Resample operation requires DatetimeIndex" msgstr "L'opération de pivot nécessite au moins un index" -#: superset-frontend/src/components/Table/index.tsx:199 +#: superset-frontend/src/components/Table/index.tsx:203 #, fuzzy msgid "Reset" msgstr "date" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:293 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:280 msgid "Reset state" msgstr "Réinitialiser l'état" @@ -12830,14 +12983,15 @@ msgstr "Restaurer le Filtre" msgid "Results" msgstr "Résultats" +#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 #: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:212 #: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 #, fuzzy, python-format msgid "Results %s" msgstr "Résultats" -#: superset/sql_lab.py:410 superset/sqllab/commands/results.py:59 -#: superset/views/core.py:2133 +#: superset/sql_lab.py:402 superset/sqllab/commands/results.py:59 +#: superset/views/core.py:2169 msgid "Results backend is not configured." msgstr "Le backend des résultats n'est pas configuré." @@ -12866,12 +13020,12 @@ msgstr "Inverser lat/long " msgid "Rich Tooltip" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:178 msgid "Rich tooltip" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:372 #, fuzzy msgid "Right" @@ -12900,7 +13054,7 @@ msgstr "Mesure de l'axe de droite" msgid "Right to Left" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:157 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 msgid "Right value" msgstr "Valeur droite" @@ -12912,7 +13066,7 @@ msgstr "" msgid "Role" msgstr "Profil" -#: superset/views/core.py:407 +#: superset/views/core.py:408 #, python-format msgid "Role %(r)s was extended to provide the access to the datasource %(ds)s" msgstr "" @@ -12923,8 +13077,10 @@ msgstr "" #: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:389 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:551 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:406 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:415 #: superset-frontend/src/profile/components/Security.tsx:35 -#: superset/connectors/sqla/views.py:364 superset/views/dashboard/mixin.py:82 +#: superset/views/dashboard/mixin.py:82 msgid "Roles" msgstr "Profils" @@ -12982,7 +13138,7 @@ msgstr "Fonction de fenêtre glissante" msgid "Rolling window" msgstr "Fenêtre glissante" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 #: superset/views/database/mixins.py:195 msgid "Root certificate" msgstr "Certificat racine" @@ -13013,16 +13169,18 @@ msgstr "" msgid "Round cap" msgstr "Carte de pays" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 #: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 msgid "Row" msgstr "Ligne" -#: superset/initialization/__init__.py:295 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:70 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:302 +#: superset/initialization/__init__.py:436 msgid "Row Level Security" msgstr "Sécurité de niveau ligne" -#: superset/views/database/forms.py:245 +#: superset/views/database/forms.py:255 #, fuzzy msgid "" "Row containing the headers to use as column names (0 is first line of " @@ -13031,7 +13189,7 @@ msgstr "" "Ligne contenant l'en-tête à utiliser en nom de colonne (0 est la première" " ligne de données). Laissez à vide s'il n'y a pas de ligne d'en-tête." -#: superset/views/database/forms.py:332 +#: superset/views/database/forms.py:342 msgid "" "Row containing the headers to use as column names (0 is first line of " "data). Leave empty if there is no header row." @@ -13039,10 +13197,6 @@ msgstr "" "Ligne contenant l'en-tête à utiliser en nom de colonne (0 est la première" " ligne de données). Laissez à vide s'il n'y a pas de ligne d'en-tête." -#: superset/connectors/sqla/views.py:290 -msgid "Row level security filter" -msgstr "Filtre de sécurité au niveau de la ligne" - #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:247 #: superset-frontend/src/explore/controls.jsx:340 msgid "Row limit" @@ -13065,7 +13219,7 @@ msgstr "" msgid "Rows subtotal position" msgstr "" -#: superset/views/database/forms.py:254 superset/views/database/forms.py:360 +#: superset/views/database/forms.py:264 superset/views/database/forms.py:370 msgid "Rows to Read" msgstr "Lignes à lire" @@ -13075,10 +13229,20 @@ msgstr "Lignes à lire" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:504 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:233 #: superset-frontend/src/explore/controlPanels/sections.tsx:230 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:286 msgid "Rule" msgstr "Règle" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:54 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:355 +#, fuzzy +msgid "Rule Name" +msgstr "Nom de la requête" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:253 +msgid "Rule added" +msgstr "" + +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:53 msgid "Run" msgstr "Exécuter" @@ -13096,12 +13260,12 @@ msgstr "Lancer une requête pour afficher les résultats" msgid "Run in SQL Lab" msgstr "Exécuter dans SQL Lab" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:309 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:319 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:311 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:321 msgid "Run query" msgstr "Lancer la requête" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:131 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:132 msgid "Run query (Ctrl + Return)" msgstr "Exécuter la requête (Ctrl + Return)" @@ -13109,7 +13273,7 @@ msgstr "Exécuter la requête (Ctrl + Return)" msgid "Run query in a new tab" msgstr "Lancer la requête dans une nouvelle fenêtre" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:52 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:51 msgid "Run selection" msgstr "Exécuter la sélection" @@ -13118,7 +13282,7 @@ msgstr "Exécuter la sélection" msgid "Running" msgstr "En cours" -#: superset/sql_lab.py:488 +#: superset/sql_lab.py:480 #, python-format msgid "Running statement %(statement_num)s out of %(statement_count)s" msgstr "" @@ -13140,8 +13304,8 @@ msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 #: superset-frontend/src/features/home/commonMenuData.ts:22 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:312 -#: superset/initialization/__init__.py:354 -#: superset/initialization/__init__.py:362 +#: superset/initialization/__init__.py:348 +#: superset/initialization/__init__.py:356 msgid "SQL" msgstr "SQL" @@ -13149,17 +13313,17 @@ msgstr "SQL" msgid "SQL Copied!" msgstr "SQL Copié !" -#: superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:253 msgid "SQL Expression" msgstr "Expression SQL" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:73 -#: superset/initialization/__init__.py:349 -#: superset/initialization/__init__.py:371 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 +#: superset/initialization/__init__.py:343 +#: superset/initialization/__init__.py:365 msgid "SQL Lab" msgstr "SQL Lab" -#: superset/connectors/sqla/views.py:492 +#: superset/connectors/sqla/views.py:399 msgid "SQL Lab View" msgstr "Vue SQL Lab" @@ -13281,7 +13445,7 @@ msgstr "" msgid "Samples" msgstr "Exemples" -#: superset/datasets/commands/exceptions.py:177 +#: superset/datasets/commands/exceptions.py:194 #, fuzzy msgid "Samples for dataset could not be retrieved." msgstr "Le jeu de données n'a pas pu être créé." @@ -13291,7 +13455,7 @@ msgstr "Le jeu de données n'a pas pu être créé." msgid "Samples for datasource could not be retrieved." msgstr "Le jeu de données n'a pas pu être créé." -#: superset/viz.py:1935 +#: superset/viz.py:1854 msgid "Sankey" msgstr "Sankey" @@ -13320,25 +13484,26 @@ msgstr "Samedi" #: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 #: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:199 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:214 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:246 -#: superset-frontend/src/components/ReportModal/index.tsx:229 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:288 +#: superset-frontend/src/components/ReportModal/index.tsx:228 #: superset-frontend/src/dashboard/components/Header/index.jsx:607 #: superset-frontend/src/dashboard/components/Header/index.jsx:609 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 #: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 #: superset-frontend/src/dashboard/components/SaveModal.tsx:211 #: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:794 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:156 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:492 #: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:268 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:458 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:462 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 -#: superset-frontend/src/explore/components/SaveModal.tsx:415 +#: superset-frontend/src/explore/components/SaveModal.tsx:449 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:418 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:424 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:147 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 @@ -13348,30 +13513,31 @@ msgstr "Samedi" #: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 #: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1695 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 #: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 msgid "Save" msgstr "Enregistrer" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:246 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:190 msgid "Save & Explore" msgstr "Sauver et explorer" -#: superset-frontend/src/explore/components/SaveModal.tsx:396 +#: superset-frontend/src/explore/components/SaveModal.tsx:430 msgid "Save & go to dashboard" msgstr "Sauvegarder et aller au tableau de bord" -#: superset-frontend/src/explore/components/SaveModal.tsx:395 +#: superset-frontend/src/explore/components/SaveModal.tsx:429 #, fuzzy msgid "Save & go to new dashboard" msgstr "Sauvegarder et aller au tableau de bord" -#: superset-frontend/src/explore/components/SaveModal.tsx:308 +#: superset-frontend/src/explore/components/SaveModal.tsx:343 msgid "Save (Overwrite)" msgstr "Enregister (écrase)" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:199 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:306 msgid "Save as" msgstr "Enregistrer sous" @@ -13386,16 +13552,16 @@ msgstr "Choisissez un jeu de donnée" msgid "Save as dataset" msgstr "Choisissez un jeu de donnée" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:394 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:214 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:402 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 msgid "Save as new" msgstr "Enregistrer comme nouveau" -#: superset-frontend/src/explore/components/SaveModal.tsx:412 +#: superset-frontend/src/explore/components/SaveModal.tsx:446 msgid "Save as new chart" msgstr "Enregistrer comme un nouveau graphique" -#: superset-frontend/src/explore/components/SaveModal.tsx:316 +#: superset-frontend/src/explore/components/SaveModal.tsx:351 #, fuzzy msgid "Save as..." msgstr "Enregistrer sous ..." @@ -13409,7 +13575,7 @@ msgstr "Enregistrer sous :" msgid "Save changes" msgstr "Abandonner les modifications" -#: superset-frontend/src/explore/components/SaveModal.tsx:432 +#: superset-frontend/src/explore/components/SaveModal.tsx:466 msgid "Save chart" msgstr "Enregistrer un graphique" @@ -13417,7 +13583,7 @@ msgstr "Enregistrer un graphique" msgid "Save dashboard" msgstr "Sauvegarder le Tableau de Bord" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:106 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:105 #, fuzzy msgid "Save dataset" msgstr "Changer de jeu de données" @@ -13426,11 +13592,11 @@ msgstr "Changer de jeu de données" msgid "Save for this session" msgstr "Sauvegarder pour la session" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:350 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:356 msgid "Save or Overwrite Dataset" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:202 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:201 msgid "Save query" msgstr "Sauvegarder la requête" @@ -13438,28 +13604,28 @@ msgstr "Sauvegarder la requête" msgid "Save the query to enable this feature" msgstr "Sauver la requête pour permettre cette fonction" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:250 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:465 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:149 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 msgid "Save this query as a virtual dataset to continue exploring" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:414 +#: superset-frontend/src/explore/components/SaveModal.tsx:448 #, fuzzy msgid "Save to new dashboard" msgstr "Sauvegarder et aller au tableau de bord" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:265 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:271 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 msgid "Saved" msgstr "Enregistré" -#: superset/initialization/__init__.py:358 +#: superset/initialization/__init__.py:352 msgid "Saved Queries" msgstr "Requêtes sauvegardées" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:249 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:255 msgid "Saved expressions" msgstr "Expressions sauvegardées" @@ -13519,12 +13685,12 @@ msgid "" msgstr "" #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 -#: superset-frontend/src/components/ReportModal/index.tsx:306 +#: superset-frontend/src/components/ReportModal/index.tsx:305 #: superset-frontend/src/pages/AlertReportList/index.tsx:276 msgid "Schedule" msgstr "Plannifeir" -#: superset-frontend/src/components/ReportModal/index.tsx:212 +#: superset-frontend/src/components/ReportModal/index.tsx:211 #, fuzzy msgid "Schedule a new email report" msgstr "Planifier un rapport par e-mail" @@ -13541,7 +13707,7 @@ msgstr "Plannifier une requête" msgid "Schedule settings" msgstr "Paramètres de planification" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:518 msgid "Schedule the query periodically" msgstr "Planifier la requête de façon périodique" @@ -13560,34 +13726,34 @@ msgstr "Plannifié à (UTC)" msgid "Scheduled task executor not found" msgstr "Etat du programme de rapport introuvable" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:299 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:221 -#: superset-frontend/src/pages/DatasetList/index.tsx:354 -#: superset-frontend/src/pages/DatasetList/index.tsx:536 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:298 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 +#: superset-frontend/src/pages/DatasetList/index.tsx:365 +#: superset-frontend/src/pages/DatasetList/index.tsx:547 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:250 #: superset-frontend/src/pages/SavedQueryList/index.tsx:297 #: superset-frontend/src/pages/SavedQueryList/index.tsx:469 -#: superset/connectors/sqla/views.py:483 superset/views/database/forms.py:144 -#: superset/views/database/forms.py:311 superset/views/database/forms.py:442 +#: superset/connectors/sqla/views.py:390 superset/views/database/forms.py:154 +#: superset/views/database/forms.py:321 superset/views/database/forms.py:452 msgid "Schema" msgstr "Schéma" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:247 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:257 msgid "Schema cache timeout" msgstr "Timeout du cache de schéma" -#: superset/views/core.py:1164 +#: superset/views/core.py:1186 #, fuzzy msgid "Schema undefined" msgstr "Indéfini" -#: superset/connectors/sqla/views.py:429 +#: superset/connectors/sqla/views.py:336 msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" msgstr "" "Schéma, utilisé uniquement dans certaines bases de données comme " "Postgres, Redshift et DB2" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:419 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:429 #, fuzzy msgid "Schemas allowed for File upload" msgstr "Schémas autorisés pour le chargement de CSV" @@ -13600,7 +13766,7 @@ msgstr "Périmètre" msgid "Scoping" msgstr "Portée" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 msgid "Scroll" msgstr "" @@ -13616,15 +13782,15 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:724 #: superset-frontend/src/pages/CssTemplateList/index.tsx:293 #: superset-frontend/src/pages/DashboardList/index.tsx:516 -#: superset-frontend/src/pages/DatabaseList/index.tsx:492 -#: superset-frontend/src/pages/DatasetList/index.tsx:577 +#: superset-frontend/src/pages/DatabaseList/index.tsx:503 +#: superset-frontend/src/pages/DatasetList/index.tsx:588 #: superset-frontend/src/pages/SavedQueryList/index.tsx:494 #: superset-frontend/src/pages/Tags/index.tsx:204 #: superset/templates/appbuilder/general/widgets/search.html:40 msgid "Search" msgstr "Recherche" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:294 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 msgid "Search / Filter" msgstr "Rechercher / Filtrer" @@ -13649,12 +13815,12 @@ msgstr "Recherche" msgid "Search by query text" msgstr "Texte de recherche" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:207 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 #, fuzzy msgid "Search columns" msgstr "Utilise Columns" -#: superset-frontend/src/components/Table/index.tsx:202 +#: superset-frontend/src/components/Table/index.tsx:206 #, fuzzy msgid "Search in filters" msgstr "Rechercher / Filtrer" @@ -13668,7 +13834,7 @@ msgstr "Profils utilisateurs" msgid "Search..." msgstr "Recherche..." -#: superset/db_engine_specs/base.py:96 +#: superset/db_engine_specs/base.py:97 msgid "Second" msgstr "Seconde" @@ -13684,10 +13850,14 @@ msgid "Secondary Metric" msgstr "Basé sur une métrique" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:408 +msgid "Secondary y-axis Bounds" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:425 msgid "Secondary y-axis format" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:417 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:434 msgid "Secondary y-axis title" msgstr "" @@ -13700,15 +13870,15 @@ msgstr "%s secondes" msgid "Secure Extra" msgstr "Sécurité" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:336 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:341 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:346 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 msgid "Secure extra" msgstr "Sécurité" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:329 -#: superset/initialization/__init__.py:297 -#: superset/initialization/__init__.py:395 -#: superset/initialization/__init__.py:433 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:339 +#: superset/initialization/__init__.py:389 +#: superset/initialization/__init__.py:427 +#: superset/initialization/__init__.py:438 msgid "Security" msgstr "Sécurité" @@ -13731,25 +13901,25 @@ msgstr "Voir moins" msgid "See more" msgstr "Voir plus" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:412 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:405 #, fuzzy msgid "See query details" msgstr "requêtes sauvegardées" -#: superset-frontend/src/components/TableSelector/index.tsx:288 +#: superset-frontend/src/components/TableSelector/index.tsx:277 msgid "See table schema" msgstr "Voir le schéma de la table" -#: superset-frontend/src/explore/components/SaveModal.tsx:363 +#: superset-frontend/src/explore/components/SaveModal.tsx:398 #: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 msgid "Select" msgstr "Sélectionner" #: superset-frontend/src/components/AsyncSelect/index.jsx:41 #: superset-frontend/src/components/Select/AsyncSelect.tsx:123 -#: superset-frontend/src/components/Select/Select.tsx:103 +#: superset-frontend/src/components/Select/Select.tsx:104 #: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 -#: superset-frontend/src/explore/components/controls/SelectControl.jsx:230 +#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 msgid "Select ..." msgstr "Sélectionner..." @@ -13761,11 +13931,11 @@ msgstr "Choisir la méthode de livraison" msgid "Select Viz Type" msgstr "Selectionner un type de visualisation" -#: superset/views/database/forms.py:415 +#: superset/views/database/forms.py:425 msgid "Select a Columnar file to be uploaded to a database." msgstr "Sélectionner un fichier en colonne à téléverser dans une base de données." -#: superset/views/database/forms.py:279 +#: superset/views/database/forms.py:289 msgid "Select a Excel file to be uploaded to a database." msgstr "Sélectionner un fichier Excel à charger dans une base de données." @@ -13773,7 +13943,7 @@ msgstr "Sélectionner un fichier Excel à charger dans une base de données." msgid "Select a column" msgstr "Sélectionner une colonne" -#: superset-frontend/src/explore/components/SaveModal.tsx:357 +#: superset-frontend/src/explore/components/SaveModal.tsx:392 msgid "Select a dashboard" msgstr "Sélectionner un tableau de bord" @@ -13796,7 +13966,7 @@ msgstr "Une connexion non sécurisée avec la base de données a été arrêtée msgid "Select a database to upload the file to" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:744 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:738 #, fuzzy msgid "Select a database to write a query" msgstr "Sélectionnez la base de données ou tapez le nom de la table" @@ -13811,7 +13981,7 @@ msgstr "Est une Dimension" msgid "Select a file to be uploaded to the database" msgstr "Sélectionner un fichier CSV à charger dans une base de données." -#: superset/views/database/forms.py:145 +#: superset/views/database/forms.py:155 #, fuzzy msgid "Select a schema if the database supports this" msgstr "" @@ -13826,12 +13996,12 @@ msgstr "Selectionner un type de visualisation" msgid "Select aggregate options" msgstr "Sélectionner les options d’agrégat" -#: superset-frontend/src/components/Table/index.tsx:207 +#: superset-frontend/src/components/Table/index.tsx:211 #, fuzzy msgid "Select all data" msgstr "Tout Dé-Sélectionner" -#: superset-frontend/src/components/Table/index.tsx:201 +#: superset-frontend/src/components/Table/index.tsx:205 #, fuzzy msgid "Select all items" msgstr "Tout Dé-Sélectionner" @@ -13840,6 +14010,11 @@ msgstr "Tout Dé-Sélectionner" msgid "Select any columns for metadata inspection" msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +#, fuzzy +msgid "Select chart" +msgstr "Tous les graphiques" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:45 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:103 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:138 @@ -13851,13 +14026,13 @@ msgstr "Tous les graphiques" msgid "Select color scheme" msgstr "Sélectionner un schéma de couleurs" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:208 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 msgid "Select column" msgstr "Sélectionner la colonne" -#: superset-frontend/src/components/Table/index.tsx:204 +#: superset-frontend/src/components/Table/index.tsx:208 #, fuzzy msgid "Select current page" msgstr "Selectionnee les filtres parents" @@ -13867,8 +14042,8 @@ msgstr "Selectionnee les filtres parents" msgid "Select database & schema" msgstr "Voir le schéma de la table" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:272 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:280 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:271 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:279 #, fuzzy msgid "Select database or type to search databases" msgstr "Sélectionnez la base de données ou tapez le nom de la table" @@ -13878,7 +14053,7 @@ msgstr "Sélectionnez la base de données ou tapez le nom de la table" msgid "Select database table" msgstr "Supprimer une base de données" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1791 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1847 msgid "" "Select databases require additional fields to be completed in the " "Advanced tab to successfully connect the database. Learn what " @@ -13917,7 +14092,7 @@ msgstr "Sélectionner l'opérateur" msgid "Select or type a value" msgstr "Sélectionner ou renseigner une valeur" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:410 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:418 #, fuzzy msgid "Select or type dataset name" msgstr "Sélectionnez la base de données ou tapez le nom de la table" @@ -13930,8 +14105,8 @@ msgstr "Sélectionner les propriétaires" msgid "Select saved metrics" msgstr "Sélectionner les métriques sauvegardées" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:297 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:304 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:296 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 #, fuzzy msgid "Select schema or type to search schemas" msgstr "Sélectionnez le schéma ou tapez le nom du schéma" @@ -13941,7 +14116,7 @@ msgstr "Sélectionnez le schéma ou tapez le nom du schéma" msgid "Select scheme" msgstr "Sélectionner un schéma de couleurs" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:304 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:307 msgid "Select start and end date" msgstr "Selectionner la date de début et la date de fin" @@ -13949,8 +14124,8 @@ msgstr "Selectionner la date de début et la date de fin" msgid "Select subject" msgstr "Sélectionner un objet" +#: superset-frontend/src/components/TableSelector/index.tsx:284 #: superset-frontend/src/components/TableSelector/index.tsx:295 -#: superset-frontend/src/components/TableSelector/index.tsx:306 #, fuzzy msgid "Select table or type to search tables" msgstr "Sélectionnez la table ou le nom de type de table" @@ -13960,6 +14135,23 @@ msgstr "Sélectionnez la table ou le nom de type de table" msgid "Select the Annotation Layer you would like to use." msgstr "Choisir le type de couche d'annotations" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +msgid "" +"Select the charts to which you want to apply cross-filters in this " +"dashboard. Deselecting a chart will exclude it from being filtered when " +"applying cross-filters from any chart on the dashboard. You can select " +"\"All charts\" to apply cross-filters to all charts that use the same " +"dataset or contain the same column name in the dashboard." +msgstr "" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +msgid "" +"Select the charts to which you want to apply cross-filters when " +"interacting with this chart. You can select \"All charts\" to apply " +"filters to all charts that use the same dataset or contain the same " +"column name in the dashboard." +msgstr "" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:392 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:37 #, fuzzy @@ -14006,7 +14198,7 @@ msgstr "Septembre" msgid "Sequential" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 msgid "Series" msgstr "Séries" @@ -14025,7 +14217,7 @@ msgstr "Nombre de séries max" msgid "Series Limit Sort Descending" msgstr "Tri décroissant" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:255 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:246 #, fuzzy msgid "Series Order" msgstr "Séries" @@ -14101,13 +14293,13 @@ msgid "Settings for time series" msgstr "" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:325 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:464 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:467 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 #: superset-frontend/src/features/home/SavedQueries.tsx:211 msgid "Share" msgstr "Partage de requête" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:469 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:472 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:343 msgid "Share chart by email" msgstr "Partager le graphique par e-mail" @@ -14116,7 +14308,7 @@ msgstr "Partager le graphique par e-mail" msgid "Share permalink by email" msgstr "Partager le lien par mail" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1429 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1421 msgid "Shared query" msgstr "Requête partagée" @@ -14125,7 +14317,7 @@ msgstr "Requête partagée" msgid "Shared query fields" msgstr "requêtes sauvegardées" -#: superset/views/database/forms.py:298 +#: superset/views/database/forms.py:308 msgid "Sheet Name" msgstr "Nom de la feuille" @@ -14176,7 +14368,7 @@ msgstr "Voir le Template CSS" msgid "Show Chart" msgstr "Afficher le graphique" -#: superset/connectors/sqla/views.py:73 +#: superset/connectors/sqla/views.py:72 msgid "Show Column" msgstr "Afficher la colonne" @@ -14211,11 +14403,11 @@ msgstr "Afficher le log" msgid "Show Markers" msgstr "" -#: superset/connectors/sqla/views.py:208 +#: superset/connectors/sqla/views.py:207 msgid "Show Metric" msgstr "Afficher la métrique" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:178 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 #, fuzzy msgid "Show Metric Names" msgstr "Afficher la métrique" @@ -14225,15 +14417,11 @@ msgstr "Afficher la métrique" msgid "Show Range Filter" msgstr "Filtre d'intervalle" -#: superset/connectors/sqla/views.py:291 -msgid "Show Row level security filter" -msgstr "Afficher le filtre de sécurité au niveau de la ligne" - #: superset/views/sql_lab/views.py:53 msgid "Show Saved Query" msgstr "Montrer les requêtes sauvegardées" -#: superset/connectors/sqla/views.py:385 +#: superset/connectors/sqla/views.py:292 msgid "Show Table" msgstr "Afficher les tables" @@ -14256,12 +14444,12 @@ msgstr "" msgid "Show Upper Labels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:110 #, fuzzy msgid "Show Value" msgstr "Afficher les tables" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:164 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:315 #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:184 #, fuzzy @@ -14296,7 +14484,7 @@ msgstr "" msgid "Show cell bars" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:395 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 #, fuzzy msgid "Show chart description" msgstr "Basculer la description du graphique" @@ -14335,7 +14523,7 @@ msgstr "Afficher les tables" msgid "Show labels when the node has children." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:39 msgid "Show legend" msgstr "" @@ -14375,7 +14563,7 @@ msgstr "Propriétés du tableau de bord" msgid "Show rows total" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 msgid "Show series values on the chart" msgstr "" @@ -14402,7 +14590,6 @@ msgid "" " apply to the result." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:76 #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:365 msgid "Show totals" @@ -14447,7 +14634,7 @@ msgstr "" msgid "Showing %s of %s" msgstr "Affichage de %s sur %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:184 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 msgid "Shows a list of all series available at that point in time" msgstr "" @@ -14467,7 +14654,7 @@ msgstr "" msgid "Significance Level" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:341 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 @@ -14520,24 +14707,24 @@ msgstr "" msgid "Sizes of vehicles" msgstr "" -#: superset/views/database/forms.py:177 +#: superset/views/database/forms.py:187 msgid "Skip Blank Lines" msgstr "Sauter les lignes vides" -#: superset/views/database/forms.py:174 +#: superset/views/database/forms.py:184 msgid "Skip Initial Space" msgstr "Supprimer l'espace initial" -#: superset/views/database/forms.py:260 superset/views/database/forms.py:354 +#: superset/views/database/forms.py:270 superset/views/database/forms.py:364 msgid "Skip Rows" msgstr "Sauter des lignes" -#: superset/views/database/forms.py:178 +#: superset/views/database/forms.py:188 #, fuzzy msgid "Skip blank lines rather than interpreting them as Not A Number values" msgstr "Sauter les lignes vides au lieu des les interpréter comme des valeurs NaN." -#: superset/views/database/forms.py:174 +#: superset/views/database/forms.py:184 #, fuzzy msgid "Skip spaces after delimiter" msgstr "Supprimer l'espace après le délimiteur." @@ -14574,7 +14761,7 @@ msgstr "" msgid "Solid" msgstr "" -#: superset/commands/exceptions.py:115 +#: superset/commands/exceptions.py:119 msgid "Some roles do not exist" msgstr "Des profils n'existent pas" @@ -14583,7 +14770,7 @@ msgstr "Des profils n'existent pas" msgid "Something went wrong." msgstr "Une erreur s'est produite. Ré essayez plus tard." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:864 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:919 #, python-format msgid "Sorry there was an error fetching database information: %s" msgstr "" @@ -14606,7 +14793,7 @@ msgstr "Désolén une erreur s'est produite" msgid "Sorry, an error occurred" msgstr "Désolén une erreur s'est produite" -#: superset-frontend/src/dashboard/actions/dashboardState.js:357 +#: superset-frontend/src/dashboard/actions/dashboardState.js:359 #, fuzzy msgid "Sorry, an unknown error occurred" msgstr "Désolén une erreur s'est produite" @@ -14640,7 +14827,7 @@ msgstr "" "Désolé, une erreur s'est produite lors de la récupération des graphiques " "sauvegardés : " -#: superset-frontend/src/dashboard/actions/dashboardState.js:360 +#: superset-frontend/src/dashboard/actions/dashboardState.js:362 #, fuzzy, python-format msgid "Sorry, there was an error saving this dashboard: %s" msgstr "" @@ -14649,7 +14836,7 @@ msgstr "" #: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 #: superset-frontend/src/pages/SavedQueryList/index.tsx:229 -#: superset-frontend/src/views/CRUD/hooks.ts:676 +#: superset-frontend/src/views/CRUD/hooks.ts:680 msgid "Sorry, your browser does not support copying." msgstr "Désolé, votre navigateur ne doit pas supporter la copie." @@ -14659,7 +14846,7 @@ msgstr "Désolé, votre navigateur ne supporte pas la copie. Utilisez Ctrl/Cmd + #: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 #: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 -#: superset-frontend/src/components/Table/index.tsx:208 +#: superset-frontend/src/components/Table/index.tsx:212 msgid "Sort" msgstr "Trier" @@ -14679,12 +14866,12 @@ msgstr "Tri décroissant" msgid "Sort Metric" msgstr "Trier les métriques" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:247 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:238 #, fuzzy msgid "Sort Series Ascending" msgstr "Tri croissant" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:227 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:224 #, fuzzy msgid "Sort Series By" msgstr "Trier par" @@ -14763,7 +14950,7 @@ msgstr "Trier les métriques" msgid "Sort rows by" msgstr "Trier par" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:250 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:241 msgid "Sort series in ascending order" msgstr "" @@ -14796,6 +14983,7 @@ msgstr "Catégorie" msgid "Sparkline" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:978 msgid "Spatial" msgstr "Spatial" @@ -14805,25 +14993,25 @@ msgstr "Spatial" msgid "Specific Date/Time" msgstr "Date/Heure Spécifique" -#: superset/views/database/forms.py:312 superset/views/database/forms.py:443 +#: superset/views/database/forms.py:322 superset/views/database/forms.py:453 msgid "Specify a schema (if database flavor supports this)." msgstr "" "Spécifier un schéma (si la base de données soutient cette " "fonctionnalités)." -#: superset/views/database/forms.py:351 +#: superset/views/database/forms.py:361 msgid "Specify duplicate columns as \"X.0, X.1\"." msgstr "Spécifier les colonnes en double comme\"X.0, X.1\"." -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:711 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:705 msgid "Specify name to CREATE TABLE AS schema in: public" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:710 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:704 msgid "Specify name to CREATE VIEW AS schema in: public" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:515 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:551 msgid "" "Specify the database version. This should be used with Presto in order to" " enable query cost estimation." @@ -14851,7 +15039,7 @@ msgstr "Paramètres" msgid "Square miles" msgstr "requêtes" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 #, fuzzy msgid "Stack" msgstr "Backend" @@ -14866,7 +15054,7 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:161 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:115 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:128 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:125 msgid "Stack series on top of each other" msgstr "" @@ -14887,7 +15075,7 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:124 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:121 #: superset-frontend/src/explore/fixtures.tsx:58 msgid "Stacked Style" msgstr "" @@ -14960,7 +15148,7 @@ msgstr "Etat" msgid "State" msgstr "Etat" -#: superset/sql_lab.py:511 +#: superset/sql_lab.py:503 #, python-format msgid "Statement %(statement_num)s out of %(statement_count)s" msgstr "" @@ -15012,21 +15200,21 @@ msgid "" "irregular intervals." msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:47 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:46 #: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 msgid "Stop" msgstr "Arrêt" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:337 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:339 msgid "Stop query" msgstr "Arrêter la requête" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:116 #, fuzzy msgid "Stop running (Ctrl + e)" msgstr "Arrêter l'exécution (Ctrl + x)" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:114 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 msgid "Stop running (Ctrl + x)" msgstr "Arrêter l'exécution (Ctrl + x)" @@ -15034,7 +15222,7 @@ msgstr "Arrêter l'exécution (Ctrl + x)" msgid "Stopped an unsafe database connection" msgstr "Une connexion non sécurisée avec la base de données a été arrêtée" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 #, fuzzy msgid "Stream" msgstr "Histogramme" @@ -15054,7 +15242,7 @@ msgstr "" msgid "Stretched style" msgstr "Récupéré %s" -#: superset/views/database/forms.py:299 +#: superset/views/database/forms.py:309 msgid "Strings used for sheet names (default is the first sheet)." msgstr "" "Chaînes utilisées pour les noms des feuilles (par défaut la première " @@ -15088,11 +15276,11 @@ msgstr "Style" msgid "Style the ends of the progress bar with a round cap" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:56 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 msgid "Subdomain" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 #, fuzzy msgid "Subheader" msgstr "Ligne d'en-tête" @@ -15105,8 +15293,8 @@ msgstr "" msgid "Submit" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:472 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:678 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 #: superset/charts/post_processing.py:161 #: superset/charts/post_processing.py:178 msgid "Subtotal" @@ -15118,7 +15306,7 @@ msgstr "" msgid "Success" msgstr "Succès" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:193 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 #, fuzzy msgid "Successfully changed dataset!" msgstr "Changer de jeu de données" @@ -15153,7 +15341,7 @@ msgstr "" msgid "Sum values" msgstr "Valeurs NULL" -#: superset/viz.py:1888 +#: superset/viz.py:1805 msgid "Sunburst" msgstr "Camembert hiérarchique" @@ -15180,7 +15368,7 @@ msgid "Superset Embedded SDK documentation." msgstr "" #: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:470 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:473 msgid "Superset chart" msgstr "Graphique superset" @@ -15196,7 +15384,7 @@ msgstr "Superset a rencontré une erreur lors de l'exécution d'une commande." msgid "Superset encountered an unexpected error." msgstr "Superset a rencontré une erreur inattendue." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:920 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 #, fuzzy msgid "Supported databases" msgstr "Importer la base de données" @@ -15205,11 +15393,7 @@ msgstr "Importer la base de données" msgid "Survey Responses" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:101 -msgid "Swap Groups and Columns" -msgstr "" - -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:254 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:311 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:435 #, fuzzy @@ -15260,6 +15444,11 @@ msgstr "Synchroniser les colonnes de la source" msgid "Syntax" msgstr "Syntaxe" +#: superset/db_engine_specs/ocient.py:282 +#, python-format +msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +msgstr "" + #: superset-frontend/src/pages/QueryHistoryList/index.tsx:268 #: superset-frontend/src/pages/SavedQueryList/index.tsx:315 msgid "TABLES" @@ -15293,36 +15482,36 @@ msgstr "Nom de l'onglet" msgid "Tab title" msgstr "Onglet titre" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:26 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 -#: superset-frontend/src/components/TableSelector/index.tsx:290 +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 +#: superset-frontend/src/components/TableSelector/index.tsx:279 #: superset-frontend/src/visualizations/TimeTable/index.ts:26 -#: superset/connectors/sqla/views.py:160 superset/connectors/sqla/views.py:255 -#: superset/connectors/sqla/views.py:477 superset/views/chart/mixin.py:86 +#: superset/connectors/sqla/views.py:159 superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:384 superset/views/chart/mixin.py:86 msgid "Table" msgstr "Table" -#: superset/views/core.py:1740 +#: superset/views/core.py:1775 #, python-format msgid "Table %(table)s wasn't found in the database %(db)s" msgstr "Table %(table)s pas trouvée dans la base de données %(db)s" -#: superset/views/database/forms.py:317 superset/views/database/forms.py:448 +#: superset/views/database/forms.py:327 superset/views/database/forms.py:458 msgid "Table Exists" msgstr "La table existe" -#: superset/connectors/sqla/views.py:487 superset/views/database/forms.py:128 -#: superset/views/database/forms.py:269 superset/views/database/forms.py:405 +#: superset/connectors/sqla/views.py:394 superset/views/database/forms.py:128 +#: superset/views/database/forms.py:279 superset/views/database/forms.py:415 msgid "Table Name" msgstr "Nom de la table" -#: superset/viz.py:698 +#: superset/viz.py:722 msgid "Table View" msgstr "Vue en table" -#: superset/datasets/commands/exceptions.py:130 +#: superset/datasets/commands/exceptions.py:147 #, python-format msgid "" "Table [%(table_name)s] could not be found, please double check your " @@ -15340,7 +15529,7 @@ msgstr "" "connexion à votre base de données, le schéma et le nom de la table, " "error: {}" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:268 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:278 msgid "Table cache timeout" msgstr "Timeout du cache de table" @@ -15354,8 +15543,8 @@ msgstr "Colonne de Titre" msgid "Table loading" msgstr "Tri croissant" -#: superset/views/database/forms.py:132 superset/views/database/forms.py:273 -#: superset/views/database/forms.py:409 +#: superset/views/database/forms.py:132 superset/views/database/forms.py:283 +#: superset/views/database/forms.py:419 msgid "Table name cannot contain a schema" msgstr "" @@ -15363,15 +15552,22 @@ msgstr "" msgid "Table name undefined" msgstr "Nom de la table non défini" +#: superset/db_engine_specs/ocient.py:287 +#, fuzzy, python-format +msgid "Table or View \"%(table)s\" does not exist." +msgstr "L'utilisateur \"%(username)s\" n'existe pas." + #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 msgid "" "Table that visualizes paired t-tests, which are used to understand " "statistical differences between groups." msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:384 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:393 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:287 #: superset-frontend/src/pages/SavedQueryList/index.tsx:334 -#: superset/connectors/sqla/views.py:363 superset/connectors/sqla/views.py:384 +#: superset/connectors/sqla/views.py:291 msgid "Tables" msgstr "Tables" @@ -15422,7 +15618,7 @@ msgstr "Le jeu de données n'a pas pu être supprimé." #: superset-frontend/src/pages/SavedQueryList/index.tsx:382 #: superset-frontend/src/pages/SavedQueryList/index.tsx:487 #: superset-frontend/src/pages/Tags/index.tsx:279 -#: superset/initialization/__init__.py:384 +#: superset/initialization/__init__.py:378 msgid "Tags" msgstr "Tags" @@ -15452,7 +15648,7 @@ msgstr "" msgid "Target category" msgstr "Catégorie" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:173 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 msgid "Target value" msgstr "Valeur cible" @@ -15462,7 +15658,7 @@ msgstr "Nom du template" #: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:962 -#: superset/connectors/sqla/views.py:493 +#: superset/connectors/sqla/views.py:400 msgid "Template parameters" msgstr "Les paramètres du modèle" @@ -15474,7 +15670,7 @@ msgstr "" "Lien template, il est possible d'inclure {{ metric }} or autres valeurs " "provenant de ces contrôles." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:317 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:327 msgid "" "Terminate running queries when browser window closed or navigated to " "another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " @@ -15501,7 +15697,7 @@ msgstr "Zone de texte" msgid "Text align" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:248 +#: superset-frontend/src/components/ReportModal/index.tsx:247 msgid "Text embedded in email" msgstr "Text encapsulé dans l'e-mail" @@ -15552,7 +15748,7 @@ msgid "" " the filters list?" msgstr "" -#: superset/views/core.py:372 +#: superset/views/core.py:373 msgid "The access requests seem to have been deleted" msgstr "L'accée à cette requête semble avoir été effacé" @@ -15570,12 +15766,12 @@ msgid "" "associated with more than one category, only the first will be used." msgstr "" -#: superset/common/query_context_processor.py:586 +#: superset/common/query_context_processor.py:585 #, fuzzy msgid "The chart datasource does not exist" msgstr "Le graphique n'existe pas" -#: superset/common/query_context_processor.py:584 +#: superset/common/query_context_processor.py:583 msgid "The chart does not exist" msgstr "Le graphique n'existe pas" @@ -15628,7 +15824,7 @@ msgstr "Ce Tableau de Bord a été sauvegardé" msgid "The data source seems to have been deleted" msgstr "La source de données semble avoir été effacée" -#: superset/connectors/sqla/views.py:115 +#: superset/connectors/sqla/views.py:114 msgid "" "The data type that was inferred by the database. It may be necessary to " "input a type manually for expression-defined columns in some cases. In " @@ -15639,7 +15835,7 @@ msgstr "" "dans certains cas. Dans la plupart des cas il n'est pas nécessaire de le " "modifier." -#: superset-frontend/src/pages/DatabaseList/index.tsx:515 +#: superset-frontend/src/pages/DatabaseList/index.tsx:529 #, python-format msgid "" "The database %s is linked to %s charts that appear on %s dashboards and " @@ -15687,11 +15883,11 @@ msgstr "La base de données a retourné une erreur inattendue." msgid "The database was deleted." msgstr "La base de données a été supprimée." -#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2002 +#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2039 msgid "The database was not found." msgstr "Base de données non trouvée." -#: superset-frontend/src/pages/DatasetList/index.tsx:710 +#: superset-frontend/src/pages/DatasetList/index.tsx:724 #, python-format msgid "" "The dataset %s is linked to %s charts that appear on %s dashboards. Are " @@ -15703,11 +15899,11 @@ msgstr "" "jeu de données cassera ces objets." #: superset-frontend/src/components/Chart/Chart.jsx:88 -#: superset/views/utils.py:274 +#: superset/views/utils.py:272 msgid "The dataset associated with this chart no longer exists" msgstr "Le jeu de donnée associé à ce graphique n'existe plus" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:168 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:210 msgid "" "The dataset configuration exposed here\n" " affects all the charts using this dataset.\n" @@ -15722,7 +15918,7 @@ msgstr "" " peut affecter d'autres graphiques\n" " de manière non voulue." -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:129 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:164 #: superset-frontend/src/pages/ChartCreation/index.tsx:261 msgid "The dataset has been saved" msgstr "Le jeu de données a été sauvegardé" @@ -15731,7 +15927,7 @@ msgstr "Le jeu de données a été sauvegardé" msgid "The dataset linked to this chart may have been deleted." msgstr "Le jeu de données lié à ce graphique semble avoir été effacé." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1496 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1488 msgid "The datasource couldn't be loaded" msgstr "La requête ne peut pas être chargée" @@ -15747,7 +15943,7 @@ msgstr "" "La description peut être affichée comme des widgets d'entête dans la vue " "tableau de bord. Prend en charge le Markdown." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:104 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 msgid "The distance between cells, in pixels" msgstr "" @@ -15763,7 +15959,7 @@ msgstr "Le nombre de secondes avant l'expiration du cache" msgid "The encoding format of the lines" msgstr "Métrique servant à trier les résultats" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:495 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:531 msgid "" "The engine_params object gets unpacked into the sqlalchemy.create_engine " "call." @@ -15780,6 +15976,7 @@ msgstr "" "Les entrées suivantes dans `series_columns` sont manquantes dans " "`columns`: %(columns)s. " +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:111 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:67 msgid "The function to use when aggregating points into groups" msgstr "" @@ -15792,9 +15989,9 @@ msgstr "" "atteint." #: superset/db_engine_specs/mssql.py:103 -#: superset/db_engine_specs/postgres.py:140 -#: superset/db_engine_specs/presto.py:664 -#: superset/db_engine_specs/redshift.py:82 +#: superset/db_engine_specs/postgres.py:139 +#: superset/db_engine_specs/presto.py:691 +#: superset/db_engine_specs/redshift.py:86 #, python-format msgid "" "The host \"%(hostname)s\" might be down, and can't be reached on port " @@ -15808,9 +16005,9 @@ msgid "The host might be down, and can't be reached on the provided port." msgstr "L'hôte est peut-être HS et ne peut pas être atteint sur le port." #: superset/db_engine_specs/mssql.py:93 -#: superset/db_engine_specs/postgres.py:130 -#: superset/db_engine_specs/presto.py:659 -#: superset/db_engine_specs/redshift.py:72 +#: superset/db_engine_specs/postgres.py:129 +#: superset/db_engine_specs/presto.py:686 +#: superset/db_engine_specs/redshift.py:76 #, python-format msgid "The hostname \"%(hostname)s\" cannot be resolved." msgstr "Le nom d'hôte \"%(hostname)s\" ne peut pas être résolu." @@ -15824,7 +16021,7 @@ msgstr "Le nom d'hôte ne peut pas être résolu." msgid "The id of the active chart" msgstr "L'identifiant du graphique actif" -#: superset/connectors/sqla/views.py:418 +#: superset/connectors/sqla/views.py:325 msgid "" "The list of charts associated with this table. By altering this " "datasource, you may change how these associated charts behave. Also note " @@ -15872,7 +16069,7 @@ msgstr "" "Le paramètre metadata_params dans Champ supplémentaire n'est pas " "correctement configuré. La clé %(key)s est invalide." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:469 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:505 msgid "" "The metadata_params object gets unpacked into the sqlalchemy.MetaData " "call." @@ -15900,7 +16097,7 @@ msgstr "" "Ceci cachera la \"montée en puissance\" qui aura lieu au cours des 7 " "périodes" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:130 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 msgid "The number color \"steps\"" msgstr "" @@ -15912,7 +16109,7 @@ msgstr "" "Nombre d'heures, négatif ou positif, pour décaler la colonne de temps. " "Cela peut être utilisé pour passer du temps UTC au temps local." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:308 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:301 #, python-format msgid "" "The number of results displayed is limited to %(rows)d by the " @@ -15920,7 +16117,7 @@ msgid "" "download to csv to see more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:314 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:307 #, python-format msgid "" "The number of results displayed is limited to %(rows)d. Please add " @@ -15928,26 +16125,26 @@ msgid "" "more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:365 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:358 #, fuzzy, python-format msgid "The number of rows displayed is limited to %(rows)d by the dropdown." msgstr "" "Le nombre de lignes affichées est limité à %(rows)d par la limite de la " "liste déroulante." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:334 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." msgstr "" "Le nombre de lignes affichées est limité à %(rows)d par la limite de la " "liste déroulante." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:326 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:319 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the query" msgstr "Le nombre de lignes affichées est limité à %(rows)d par la requête" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:339 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:332 #, python-format msgid "" "The number of rows displayed is limited to %(rows)d by the query and " @@ -15965,14 +16162,14 @@ msgstr "Le nombre de secondes avant l'expiration du cache" msgid "The object does not exist in the given database." msgstr "L'objet n'existe pas dans la base de données." -#: superset/sqllab/query_render.py:96 +#: superset/sqllab/query_render.py:94 #, python-format msgid "The parameter %(parameters)s in your query is undefined." msgid_plural "The following parameters in your query are undefined: %(parameters)s." msgstr[0] "Le paramètre %(parameters)s de votre requête est indéfini." msgstr[1] "Les paramètres suivants de votre requête sont indéfinis : %(parameters)s." -#: superset/db_engine_specs/postgres.py:120 +#: superset/db_engine_specs/postgres.py:119 #, python-format msgid "The password provided for username \"%(username)s\" is incorrect." msgstr "Le mot de passe fourni pour l'utilisateur \"%(username)s\" est incorrect." @@ -16042,7 +16239,7 @@ msgstr "" "fichiers d'export et doivent être ajoutés manuellement après l'import si " "nécessaire." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1284 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1339 #, fuzzy msgid "" "The passwords for the databases below are needed in order to import them." @@ -16068,7 +16265,7 @@ msgid "" "\"freq\" expressions." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 msgid "The pixel radius" msgstr "" @@ -16095,7 +16292,7 @@ msgstr "Le numéro de port est invalide." msgid "The primary metric is used to define the arc segment sizes" msgstr "" -#: superset/views/core.py:2212 +#: superset/views/core.py:2248 msgid "The provided `rows` argument is not a valid integer." msgstr "L'argument `rows` n'est pas un entier valide." @@ -16104,7 +16301,7 @@ msgid "The query associated with the results was deleted." msgstr "La requête associée aux résutlats a été supprimée." #: superset/sqllab/commands/export.py:63 superset/sqllab/commands/results.py:91 -#: superset/views/core.py:2162 +#: superset/views/core.py:2198 msgid "" "The query associated with these results could not be found. You need to " "re-run the original query." @@ -16112,7 +16309,7 @@ msgstr "" "La requête associée à ces résultats n'a pu être trouvée. Rejouez la " "requête originale." -#: superset/sqllab/query_render.py:117 +#: superset/sqllab/query_render.py:115 msgid "The query contains one or more malformed template parameters." msgstr "Cette requête contient un ou plusieurs paramètres de modèle malformé(s)." @@ -16134,11 +16331,11 @@ msgstr "" msgid "The query has a syntax error." msgstr "La requête a une erreur de syntaxe." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:519 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:512 msgid "The query returned no data" msgstr "La requête n'a pas retourné de résultat" -#: superset/sql_lab.py:301 +#: superset/sql_lab.py:297 #, python-format msgid "" "The query was killed after %(sqllab_timeout)s seconds. It might be too " @@ -16184,7 +16381,7 @@ msgstr "" msgid "The rich tooltip shows a list of all series for that point in time" msgstr "" -#: superset/db_engine_specs/bigquery.py:202 +#: superset/db_engine_specs/bigquery.py:203 #, python-format msgid "" "The schema \"%(schema)s\" does not exist. A valid schema must be used to " @@ -16193,7 +16390,7 @@ msgstr "" "Le schéma \"%(schema)s\" n'existe pas. Un schéma valide doit être utilisé" " pour cette requête." -#: superset/db_engine_specs/presto.py:646 +#: superset/db_engine_specs/presto.py:673 #, python-format msgid "" "The schema \"%(schema_name)s\" does not exist. A valid schema must be " @@ -16206,11 +16403,12 @@ msgstr "" msgid "The schema was deleted or renamed in the database." msgstr "Le schéma a été supprimé ou renommé dans la base de données." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:92 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 msgid "The size of the square cell, in pixels" msgstr "" -#: superset/views/datasource/views.py:88 +#: superset/datasets/commands/exceptions.py:72 +#: superset/views/datasource/views.py:90 msgid "" "The submitted URL is not considered safe, only use URLs with the same " "domain as Superset." @@ -16224,7 +16422,7 @@ msgstr "Les données fournies sont dans un format incorrect." msgid "The submitted payload has the incorrect schema." msgstr "Les données fournies ont un schéma incorrect." -#: superset/db_engine_specs/bigquery.py:189 +#: superset/db_engine_specs/bigquery.py:190 #, python-format msgid "" "The table \"%(table)s\" does not exist. A valid table must be used to run" @@ -16233,7 +16431,7 @@ msgstr "" "La table \"%(table)s\" n'existe pas. Une table valide doit être utilisée " "pour cette requête." -#: superset/db_engine_specs/presto.py:638 +#: superset/db_engine_specs/presto.py:665 #, python-format msgid "" "The table \"%(table_name)s\" does not exist. A valid table must be used " @@ -16242,7 +16440,7 @@ msgstr "" "La table \"%(table_name)s\" n'existe pas. Une table valide doit être " "utilisée pour cette requête." -#: superset/connectors/sqla/views.py:515 +#: superset/connectors/sqla/views.py:422 msgid "" "The table was created. As part of this two-phase configuration process, " "you should now click the edit button by the new table to configure it." @@ -16319,13 +16517,13 @@ msgstr "" "Notez que l'on peut indiquer explicitement la fuseau horaire dans le " "format ISO 8601 quand on spécifie l'heure de début et/ou de fin." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 msgid "" "The time unit for each block. Should be a smaller unit than " "domain_granularity. Should be larger or equal to Time Grain" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 msgid "The time unit used for the grouping of blocks" msgstr "" @@ -16343,7 +16541,12 @@ msgstr "" msgid "The user seems to have been deleted" msgstr "L'utilisateur semble avoir été effacé" -#: superset/db_engine_specs/postgres.py:115 +#: superset/db_engine_specs/ocient.py:251 +msgid "The user/password combination is not valid (Incorrect password for user)." +msgstr "" + +#: superset/db_engine_specs/ocient.py:246 +#: superset/db_engine_specs/postgres.py:114 #, python-format msgid "The username \"%(username)s\" does not exist." msgstr "L'utilisateur \"%(username)s\" n'existe pas." @@ -16371,16 +16574,16 @@ msgstr "L'identifiant du graphique actif" msgid "There are associated alerts or reports" msgstr "Il y a des alertes ou des rapports associés" -#: superset/charts/commands/bulk_delete.py:62 -#: superset/charts/commands/delete.py:71 -#: superset/dashboards/commands/bulk_delete.py:63 -#: superset/dashboards/commands/delete.py:64 -#: superset/databases/commands/delete.py:63 +#: superset/charts/commands/bulk_delete.py:61 +#: superset/charts/commands/delete.py:70 +#: superset/dashboards/commands/bulk_delete.py:62 +#: superset/dashboards/commands/delete.py:63 +#: superset/databases/commands/delete.py:62 #, python-format msgid "There are associated alerts or reports: %s," msgstr "Il y a des alertes ou des rapports associés : %s," -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:710 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:711 msgid "There are no charts added to this dashboard" msgstr "Il n'y a pas de graphiques ajouté dans ce tableau de bord" @@ -16446,7 +16649,7 @@ msgstr "" msgid "There was an error fetching tables" msgstr "Il y a eu une erreur au chargement des tables" -#: superset-frontend/src/views/CRUD/hooks.ts:589 +#: superset-frontend/src/views/CRUD/hooks.ts:593 #, fuzzy, python-format msgid "There was an error fetching the favorite status: %s" msgstr "Erreur à la récupération du statut favori de ce Tableau de Bord." @@ -16457,20 +16660,25 @@ msgstr "" "Une erreur s'est produite lors de lors de la récupération de votre " "activité récente :" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:450 +#, fuzzy +msgid "There was an error loading the chart data" +msgstr "Une erreur s'est produite lors de la récupération des schémas" + #: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 #, fuzzy msgid "There was an error loading the dataset metadata" msgstr "Il y a eu une erreur au chargement des tables" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:241 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:240 msgid "There was an error loading the schemas" msgstr "Une erreur s'est produite lors de la récupération des schémas" -#: superset-frontend/src/components/TableSelector/index.tsx:194 +#: superset-frontend/src/components/TableSelector/index.tsx:191 msgid "There was an error loading the tables" msgstr "Il y a eu une erreur au chargement des tables" -#: superset-frontend/src/views/CRUD/hooks.ts:612 +#: superset-frontend/src/views/CRUD/hooks.ts:616 #, fuzzy, python-format msgid "There was an error saving the favorite status: %s" msgstr "Il y a eu une erreur au chargement des tables" @@ -16484,14 +16692,20 @@ msgstr "Il y avait une erreur avec vore requête" #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 #: superset-frontend/src/pages/AnnotationList/index.tsx:121 #: superset-frontend/src/pages/CssTemplateList/index.tsx:97 -#: superset-frontend/src/pages/DatabaseList/index.tsx:167 -#: superset-frontend/src/pages/DatasetList/index.tsx:657 +#: superset-frontend/src/pages/DatabaseList/index.tsx:178 +#: superset-frontend/src/pages/DatasetList/index.tsx:668 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:97 #: superset-frontend/src/pages/SavedQueryList/index.tsx:245 #: superset-frontend/src/views/CRUD/utils.tsx:315 #, python-format msgid "There was an issue deleting %s: %s" msgstr "Il y a eu un problème lors de la suppression de %s: %s" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:111 +#, fuzzy, python-format +msgid "There was an issue deleting rules: %s" +msgstr "Il y a eu un problème lors de la suppression de %s: %s" + #: superset-frontend/src/pages/AlertReportList/index.tsx:201 #, python-format msgid "There was an issue deleting the selected %s: %s" @@ -16517,7 +16731,7 @@ msgstr "" "Une erreur s'est produite durant la sauvegarde du tableau de bord " "sélectionné : " -#: superset-frontend/src/pages/DatasetList/index.tsx:675 +#: superset-frontend/src/pages/DatasetList/index.tsx:686 #, python-format msgid "There was an issue deleting the selected datasets: %s" msgstr "Il y a eu un problème en supprimant les jeux de données sélectionnés : %s" @@ -16546,17 +16760,17 @@ msgstr "" msgid "There was an issue deleting: %s" msgstr "Il y a eu un problème lors de la suppression de : %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:683 +#: superset-frontend/src/pages/DatasetList/index.tsx:694 #, fuzzy msgid "There was an issue duplicating the dataset." msgstr "Il y a eu un problème en supprimant les jeux de données sélectionnés : %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:699 +#: superset-frontend/src/pages/DatasetList/index.tsx:710 #, fuzzy, python-format msgid "There was an issue duplicating the selected datasets: %s" msgstr "Il y a eu un problème en supprimant les jeux de données sélectionnés : %s" -#: superset-frontend/src/dashboard/actions/dashboardState.js:129 +#: superset-frontend/src/dashboard/actions/dashboardState.js:127 msgid "There was an issue favoriting this dashboard." msgstr "Un problème est survenu lors de l'activation de ce tableau de bord." @@ -16566,7 +16780,7 @@ msgstr "" "Désolé, une erreur s'est produite lors de la récupération des rapports de" " ce tableau de bord." -#: superset-frontend/src/dashboard/actions/dashboardState.js:104 +#: superset-frontend/src/dashboard/actions/dashboardState.js:103 msgid "There was an issue fetching the favorite status of this dashboard." msgstr "Erreur à la récupération du statut favori de ce Tableau de Bord." @@ -16608,13 +16822,13 @@ msgstr "" msgid "There was an issue previewing the selected query. %s" msgstr "Il y a eu un problème de prévisualisation de la requête sélectionnée. %s" -#: superset/viz.py:1992 +#: superset/viz.py:1915 msgid "" "There's a loop in your Sankey, please provide a tree. Here's a faulty " "link: {}" msgstr "Il y a une boucle dans votre Sankey, il faut un arbre. Lien fautif: {}" -#: superset/connectors/sqla/views.py:335 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:386 msgid "These are the tables this filter will be applied to." msgstr "Ce sont les tables sur lesquelles vont s'appliquer les filtres." @@ -16675,10 +16889,10 @@ msgstr "" "Cela peut être soit une adresse IP (ex 127.0.0.1) ou un nom de domaine " "(ex mydatabase.com)." -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:244 +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:245 msgid "" -"This chart emits/applies cross-filters to other charts that use the same " -"dataset" +"This chart applies cross-filters to charts whose datasets contain columns" +" with the same name." msgstr "" #: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 @@ -16693,7 +16907,7 @@ msgstr "" msgid "This chart might be incompatible with the filter (datasets don't match)" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:322 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 msgid "" "This chart type is not supported when using an unsaved query as a chart " "source. " @@ -16705,7 +16919,7 @@ msgid "" " Check the JSON metadata in the Advanced settings" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:121 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:113 msgid "This column might be incompatible with current dataset" msgstr "" @@ -16759,12 +16973,12 @@ msgstr "" "Ce tableau de bord n'est pas publié, il ne sera pas visible dans la liste" " des tableaux de bord. Cliquez ici pour publier ce tableau de bord." -#: superset-frontend/src/dashboard/actions/dashboardState.js:154 +#: superset-frontend/src/dashboard/actions/dashboardState.js:152 #, fuzzy msgid "This dashboard is now hidden" msgstr "Modifier ce tableau de bord est interdit" -#: superset-frontend/src/dashboard/actions/dashboardState.js:153 +#: superset-frontend/src/dashboard/actions/dashboardState.js:151 #, fuzzy msgid "This dashboard is now published" msgstr "Ce tableau de bord est maintenant ${nowPublished}" @@ -16779,7 +16993,7 @@ msgid "" " id to the SDK:" msgstr "" -#: superset/views/core.py:1319 +#: superset/views/core.py:1353 msgid "" "This dashboard was changed recently. Please reload dashboard to get " "latest version." @@ -16787,12 +17001,12 @@ msgstr "" "Ce tableau de bord a été changé récemment. Merci de le recharger pour " "avoir la dernière version." -#: superset-frontend/src/dashboard/actions/dashboardState.js:311 -#: superset-frontend/src/dashboard/actions/dashboardState.js:350 +#: superset-frontend/src/dashboard/actions/dashboardState.js:313 +#: superset-frontend/src/dashboard/actions/dashboardState.js:352 msgid "This dashboard was saved successfully." msgstr "Ce Tableau de Bord a été sauvegardé avec succès." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1119 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1174 msgid "This database is managed externally, and can't be edited in Superset" msgstr "" @@ -16802,7 +17016,7 @@ msgid "" "table." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:240 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:282 msgid "This dataset is managed externally, and can't be edited in Superset" msgstr "" @@ -16820,7 +17034,7 @@ msgstr "Ceci définit l'élément à tracer sur le graphique" msgid "This defines the level of the hierarchy" msgstr "Ceci définit l'élément à tracer sur le graphique" -#: superset/connectors/sqla/views.py:436 +#: superset/connectors/sqla/views.py:343 msgid "" "This fields acts a Superset view, meaning that Superset will run a query " "against this string as a subquery." @@ -16845,7 +17059,7 @@ msgstr "Cet ensemble de filtre est identique à : \"%s\"" msgid "This functionality is disabled in your environment for security reasons." msgstr "" -#: superset/connectors/sqla/views.py:352 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:456 msgid "" "This is the condition that will be added to the WHERE clause. For " "example, to only return rows for a particular client, you might define a " @@ -16883,7 +17097,7 @@ msgstr "Ce composant markdown est en erreur. Reprenez vos modifications récente msgid "This may be triggered by:" msgstr "Cela peut être déclenché par:" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:258 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:256 msgid "This metric might be incompatible with current dataset" msgstr "" @@ -16929,15 +17143,15 @@ msgid "" "associate one dataset with a table.\n" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:85 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 msgid "This value should be greater than the left target value" msgstr "Cette valeur devrait être plus grande que la valeur cible de gauche" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:80 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 msgid "This value should be smaller than the right target value" msgstr "Cette valeur devrait être plus petite que la valeur cible de droite" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:141 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:171 #, fuzzy msgid "This visualization type does not support cross-filtering." msgstr "Ce type de visualisation n'est pas supporté." @@ -16975,6 +17189,7 @@ msgstr "Jeudi" #: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:38 #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 @@ -17006,7 +17221,7 @@ msgstr "Colonne de temps" msgid "Time Comparison" msgstr "Comparaison de temps" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:141 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 #, fuzzy msgid "Time Format" msgstr "Format Datetime" @@ -17043,39 +17258,39 @@ msgstr "Granularité de Temps" msgid "Time Series" msgstr "Colonnes des séries temporelles" -#: superset/viz.py:1670 +#: superset/viz.py:1581 msgid "Time Series - Bar Chart" msgstr "Séries temporelles - histogramme" -#: superset/viz.py:1596 +#: superset/viz.py:1504 msgid "Time Series - Dual Axis Line Chart" msgstr "Séries temporelles - double axe" -#: superset/viz.py:1308 +#: superset/viz.py:1209 msgid "Time Series - Line Chart" msgstr "Séries temporelles - ligne" -#: superset/viz.py:1518 +#: superset/viz.py:1424 msgid "Time Series - Multiple Line Charts" msgstr "Séries temporelles - Lignes multiples" -#: superset/viz.py:3036 +#: superset/viz.py:3033 msgid "Time Series - Nightingale Rose Chart" msgstr "Séries temporelles - Graphique Nightingale Rose" -#: superset/viz.py:2965 +#: superset/viz.py:2961 msgid "Time Series - Paired t-test" msgstr "Séries temporelles - Paired t-test" -#: superset/viz.py:1725 +#: superset/viz.py:1638 msgid "Time Series - Percent Change" msgstr "Séries temporelles - pourcentage de changement" -#: superset/viz.py:1679 +#: superset/viz.py:1590 msgid "Time Series - Period Pivot" msgstr "Séries temporelles - Période Pivot" -#: superset/viz.py:1733 +#: superset/viz.py:1646 msgid "Time Series - Stacked" msgstr "Séries temporelles - empilées" @@ -17092,7 +17307,7 @@ msgstr "Colonnes des séries temporelles" msgid "Time Shift" msgstr "Décalage temporel" -#: superset/viz.py:849 +#: superset/viz.py:878 msgid "Time Table View" msgstr "Vue de la table temporelle" @@ -17103,7 +17318,7 @@ msgstr "Vue de la table temporelle" msgid "Time column" msgstr "Colonne de temps" -#: superset/connectors/sqla/models.py:1392 superset/models/helpers.py:1575 +#: superset/models/helpers.py:1659 #, python-format msgid "Time column \"%(col)s\" does not exist in dataset" msgstr "La colonne temporelle \"%(col)s\" n'existe pas dans le jeu de données" @@ -17193,6 +17408,7 @@ msgid "Time ratio" msgstr "Granularité de Temps" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 #: superset-frontend/src/explore/controlPanels/sections.tsx:66 msgid "Time related form attributes" msgstr "Attributs de formulaire liés au temps" @@ -17327,12 +17543,12 @@ msgstr "Erreur de timeout" msgid "Timestamp format" msgstr "Format date/timestamp invalide" -#: superset-frontend/src/components/ReportModal/index.tsx:326 +#: superset-frontend/src/components/ReportModal/index.tsx:325 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 msgid "Timezone" msgstr "Fuseau horaire" -#: superset/connectors/sqla/views.py:427 +#: superset/connectors/sqla/views.py:334 msgid "Timezone offset (in hours) for this datasource" msgstr "Timezone offset (en heure) de cette source de données" @@ -17376,33 +17592,29 @@ msgstr "Pour filtrer sur une métrique, utiliser l'onglet Custom SQL." msgid "To get a readable URL for your dashboard" msgstr "Pour avoir une URL lisible pour votre tableau de bord" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:288 -#, fuzzy -msgid "Too many columns to filter" -msgstr "Un ou plusieurs contrôles à transposer en colonnes" - #: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:27 msgid "Tools" msgstr "Outils" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:216 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:213 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 msgid "Tooltip" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:201 #, fuzzy msgid "Tooltip sort by metric" msgstr "Filtres par métrique" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:191 #, fuzzy msgid "Tooltip time format" msgstr "Format Datetime" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 #, fuzzy msgid "Top" @@ -17427,14 +17639,14 @@ msgstr "" msgid "Total (%(aggfunc)s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:497 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:562 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:784 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 #, python-format msgid "Total (%(aggregatorName)s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:230 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:68 #, fuzzy msgid "Total value" msgstr "Valeurs NULL" @@ -17449,7 +17661,7 @@ msgstr "Totaux" msgid "Totals" msgstr "Totaux" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:411 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:404 msgid "Track job" msgstr "Suivre le job" @@ -17469,10 +17681,6 @@ msgstr "" msgid "Transparent" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:99 -msgid "Transpose Pivot" -msgstr "" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:238 msgid "Transpose pivot" msgstr "" @@ -17492,7 +17700,7 @@ msgid "Tree orientation" msgstr "Documentation" #: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:60 -#: superset/viz.py:1035 +#: superset/viz.py:925 msgid "Treemap" msgstr "Carte proportionnelle" @@ -17559,7 +17767,7 @@ msgstr "" msgid "Truncates the specified date to the accuracy specified by the date unit." msgstr "Tronquer la date spécifiée à la précision spécifiée par l'unité de date." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 msgid "Try applying different filters or ensuring your datasource has data" msgstr "" @@ -17582,21 +17790,21 @@ msgstr "Mardi" msgid "Tukey" msgstr "requête" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:216 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:65 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:272 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:276 -#: superset-frontend/src/pages/DatasetList/index.tsx:343 -#: superset-frontend/src/pages/DatasetList/index.tsx:552 -#: superset/connectors/sqla/views.py:164 superset/connectors/sqla/views.py:253 +#: superset-frontend/src/pages/DatasetList/index.tsx:354 +#: superset-frontend/src/pages/DatasetList/index.tsx:563 +#: superset/connectors/sqla/views.py:163 superset/connectors/sqla/views.py:252 msgid "Type" msgstr "Type" #: superset-frontend/src/components/DeleteModal/index.tsx:92 #: superset-frontend/src/components/ImportModal/index.tsx:397 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1405 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1460 #, python-format msgid "Type \"%s\" to confirm" msgstr "Tapez \"%s\" pour confirmer" @@ -17622,7 +17830,7 @@ msgstr "Type de feuilles Google Sheets autorisées" msgid "Type of comparison, value difference or percentage" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:404 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:407 #, python-format msgid "Type or Select [%s]" msgstr "Tapez ou Selectionnez [%s]" @@ -17654,24 +17862,25 @@ msgstr "Paramètres URL" msgid "URL slug" msgstr "URL Slug" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:622 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:618 msgid "Unable to add a new tab to the backend. Please contact your administrator." msgstr "" "Impossible d'ajouter une table dans le backend. Veuillez contacter votre " "administrateur." -#: superset/db_engine_specs/presto.py:677 +#: superset/db_engine_specs/presto.py:704 #, python-format msgid "Unable to connect to catalog named \"%(catalog_name)s\"." msgstr "Impossible de se connecter au catalogue \"%(catalog_name)s\"." #: superset/db_engine_specs/mysql.py:165 -#: superset/db_engine_specs/postgres.py:148 +#: superset/db_engine_specs/postgres.py:147 +#: superset/db_engine_specs/starrocks.py:127 #, python-format msgid "Unable to connect to database \"%(database)s\"." msgstr "Impossible de se connecter à la base de données \"%(database)s\"." -#: superset/db_engine_specs/bigquery.py:177 +#: superset/db_engine_specs/bigquery.py:178 msgid "" "Unable to connect. Verify that the following roles are set on the service" " account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " @@ -17679,10 +17888,18 @@ msgid "" "\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:218 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:216 msgid "Unable to create chart without a query id." msgstr "" +#: superset/key_value/exceptions.py:66 +msgid "Unable to decode value" +msgstr "" + +#: superset/key_value/exceptions.py:62 +msgid "Unable to encode value" +msgstr "" + #: superset/utils/date_parser.py:393 #, python-format msgid "Unable to find such a holiday: [%(holiday)s]" @@ -17694,7 +17911,7 @@ msgid "" "table." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:589 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:585 msgid "" "Unable to migrate query editor state to backend. Superset will retry " "later. Please contact your administrator if this problem persists." @@ -17703,7 +17920,7 @@ msgstr "" "Superset réessayera plus tard. Veuillez contacter votre administrateur si" " le problème persiste." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:543 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:539 msgid "" "Unable to migrate query state to backend. Superset will retry later. " "Please contact your administrator if this problem persists." @@ -17712,7 +17929,7 @@ msgstr "" "réessayera plus tard. Veuillez contacter votre administrateur si le " "problème persiste." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:525 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:521 msgid "" "Unable to migrate table schema state to backend. Superset will retry " "later. Please contact your administrator if this problem persists." @@ -17725,7 +17942,7 @@ msgstr "" msgid "Unable to retrieve dashboard colors" msgstr "" -#: superset/views/database/views.py:275 +#: superset/views/database/views.py:278 #, python-format msgid "" "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" @@ -17735,7 +17952,7 @@ msgstr "" "\"%(table_name)s\" de la base de données \"%(db_name)s\". Message " "d'erreur : %(error_msg)s" -#: superset/views/database/views.py:553 +#: superset/views/database/views.py:556 #, python-format msgid "" "Unable to upload Columnar file \"%(filename)s\" to table " @@ -17746,7 +17963,7 @@ msgstr "" "table \"%(table_name)s\" de la base de données \"%(db_name)s\". Message " "d'erreur : %(error_msg)s" -#: superset/views/database/views.py:412 +#: superset/views/database/views.py:415 #, python-format msgid "" "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " @@ -17756,7 +17973,7 @@ msgstr "" "\"%(table_name)s\" de la base de données \"%(db_name)s\". Message " "d'erreur : %(error_msg)s" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:93 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:92 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 msgid "Undefined" msgstr "Indéfini" @@ -17770,7 +17987,7 @@ msgstr "Fenêtre indéfinie pour l'opération de roulement" msgid "Undo the action" msgstr "Exécuter la sélection" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:131 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:132 msgid "Undo?" msgstr "Défaire?" @@ -17780,7 +17997,7 @@ msgid "Unexpected error" msgstr "Erreur inattendue" #: superset/databases/commands/exceptions.py:137 -#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1438 +#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1479 msgid "Unexpected error occurred, please check your logs for details" msgstr "Erreur inattendue, consultez les logs pour plus de détails" @@ -17789,7 +18006,7 @@ msgstr "Erreur inattendue, consultez les logs pour plus de détails" msgid "Unexpected error: " msgstr "Erreur inattendue" -#: superset/views/api.py:109 +#: superset/views/api.py:108 #, fuzzy, python-format msgid "Unexpected time range: %s" msgstr "Erreur inattendue" @@ -17803,7 +18020,7 @@ msgstr "Erreur inconnue" msgid "Unknown MySQL server host \"%(hostname)s\"." msgstr "Hôte MySQL \"%(hostname)s\" inconnu." -#: superset/db_engine_specs/presto.py:1319 +#: superset/db_engine_specs/presto.py:1342 msgid "Unknown Presto Error" msgstr "Erreur Presto inconnue" @@ -17811,13 +18028,13 @@ msgstr "Erreur Presto inconnue" msgid "Unknown Status" msgstr "Statut inconnu" -#: superset/connectors/sqla/models.py:1317 superset/models/helpers.py:1498 +#: superset/models/helpers.py:1582 #, python-format msgid "Unknown column used in orderby: %(col)s" msgstr "Colonne inconnue utilisée dans le tri %(col)s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:402 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:480 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:398 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:476 msgid "Unknown error" msgstr "Erreur inconnue" @@ -17879,7 +18096,7 @@ msgstr "Requête sans titre" msgid "Untitled query" msgstr "Requête sans titre" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:223 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:222 msgid "Update" msgstr "Mettre à jour" @@ -17898,7 +18115,7 @@ msgstr "La requête a été arrêtée" msgid "Upload" msgstr "Téléverser" -#: superset-frontend/src/pages/DatabaseList/index.tsx:202 +#: superset-frontend/src/pages/DatabaseList/index.tsx:213 #, fuzzy msgid "Upload CSV" msgstr "télécharger en CSV" @@ -17916,7 +18133,7 @@ msgstr "Charger les informations de connexion" msgid "Upload Enabled" msgstr "Téléverser un fichier Excel" -#: superset-frontend/src/pages/DatabaseList/index.tsx:216 +#: superset-frontend/src/pages/DatabaseList/index.tsx:227 #, fuzzy msgid "Upload Excel file" msgstr "Téléverser un fichier Excel" @@ -17929,7 +18146,7 @@ msgstr "Importer des fichiers Excel vers la base de données" msgid "Upload JSON file" msgstr "Charger un fichier JSON" -#: superset-frontend/src/pages/DatabaseList/index.tsx:209 +#: superset-frontend/src/pages/DatabaseList/index.tsx:220 #, fuzzy msgid "Upload columnar file" msgstr "Téléverser un fichier en colonnes" @@ -17938,7 +18155,7 @@ msgstr "Téléverser un fichier en colonnes" msgid "Upload columnar file to database" msgstr "Importer des colonnes vers la base de données" -#: superset-frontend/src/pages/DatabaseList/index.tsx:199 +#: superset-frontend/src/pages/DatabaseList/index.tsx:210 #, fuzzy msgid "Upload file to database" msgstr "Importer des fichiers Excel vers la base de données" @@ -17953,7 +18170,7 @@ msgstr "Gestion" msgid "Use \"%(menuName)s\" menu instead." msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:36 +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 #, fuzzy, python-format msgid "Use %s to open in a new tab." msgstr "Requête dans un nouvel onglet" @@ -17965,7 +18182,7 @@ msgstr "Requête dans un nouvel onglet" msgid "Use Area Proportions" msgstr "Sélectionner les options d’agrégat" -#: superset/views/database/forms.py:462 +#: superset/views/database/forms.py:472 msgid "Use Columns" msgstr "Utilise Columns" @@ -17981,9 +18198,9 @@ msgstr "" msgid "Use a log scale for the Y-axis" msgstr "" -#: superset/db_engine_specs/base.py:1850 -#: superset/db_engine_specs/clickhouse.py:211 -#: superset/db_engine_specs/databricks.py:57 +#: superset/db_engine_specs/base.py:1889 +#: superset/db_engine_specs/clickhouse.py:216 +#: superset/db_engine_specs/databricks.py:58 msgid "Use an encrypted connection to the database" msgstr "Utiliser une connexion cryptée vers la base de données" @@ -17994,12 +18211,12 @@ msgid "" " Your chart must be one of these visualization types: [%s]" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:87 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 msgid "Use date formatting even when metric value is not a timestamp" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:217 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 msgid "Use legacy datasource editor" msgstr "Utiliser l'ancien éditeur de source de données" @@ -18050,16 +18267,6 @@ msgstr "" "Utilisé en interne pour identifier le plugin. Devrait être le nom du " "package tiré du fichier plugin package.json" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:28 -msgid "" -"Used to summarize a set of data by grouping together multiple statistics " -"along two axes. Examples: Sales numbers by region and month, tasks by " -"status and assignee, active users by age and location.\n" -"\n" -" This chart is being deprecated and we recommend checking out Pivot " -"Table V2 instead!" -msgstr "" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 msgid "" "Used to summarize a set of data by grouping together multiple statistics " @@ -18104,11 +18311,17 @@ msgstr "Requête utilisateur" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:133 #: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 -#: superset/db_engine_specs/base.py:1837 +#: superset/db_engine_specs/base.py:1868 #: superset/db_engine_specs/clickhouse.py:201 msgid "Username" msgstr "Nom d'utilisateur" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:27 +msgid "" +"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" +" of data" +msgstr "" + #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:45 msgid "" "Uses a gauge to showcase progress of a metric towards a target. The " @@ -18160,9 +18373,9 @@ msgstr "Format d'e-mail" msgid "Value is required" msgstr "Une valeur est obligatoire" -#: superset/reports/schemas.py:186 superset/reports/schemas.py:192 -#: superset/reports/schemas.py:198 superset/reports/schemas.py:280 -#: superset/reports/schemas.py:286 superset/reports/schemas.py:293 +#: superset/reports/schemas.py:190 superset/reports/schemas.py:195 +#: superset/reports/schemas.py:200 superset/reports/schemas.py:291 +#: superset/reports/schemas.py:296 superset/reports/schemas.py:302 msgid "Value must be greater than 0" msgstr "La valeur doit être plus grande que 0" @@ -18187,16 +18400,16 @@ msgstr "" msgid "Vehicle Types" msgstr "Type du filtre" -#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:252 +#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:251 msgid "Verbose Name" msgstr "Nom explicite" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:503 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:539 #: superset-frontend/src/features/home/RightMenu.tsx:501 msgid "Version" msgstr "Version" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:509 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:545 msgid "Version number" msgstr "Numéro de version" @@ -18208,7 +18421,7 @@ msgstr "Numéro de version" msgid "Vertical" msgstr "virtuel" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:162 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 #, fuzzy msgid "Vertical (Left)" msgstr "virtuel" @@ -18239,7 +18452,7 @@ msgstr "Éditer le jeu de données" msgid "View all charts" msgstr "Chercher tous les graphiques" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:434 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 #, fuzzy msgid "View as table" msgstr "Voir exemples" @@ -18254,8 +18467,8 @@ msgstr "Voir dans SQL Lab" msgid "View keys & indexes (%s)" msgstr "Vue des clefs et index (%s)" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:415 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:417 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:424 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:426 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:394 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:396 msgid "View query" @@ -18277,8 +18490,8 @@ msgstr "Consultés %s" msgid "Viewport" msgstr "rapport" -#: superset-frontend/src/pages/DatasetList/index.tsx:342 -#: superset-frontend/src/pages/DatasetList/index.tsx:559 +#: superset-frontend/src/pages/DatasetList/index.tsx:353 +#: superset-frontend/src/pages/DatasetList/index.tsx:570 #, fuzzy msgid "Virtual" msgstr "virtuel" @@ -18287,22 +18500,22 @@ msgstr "virtuel" msgid "Virtual (SQL)" msgstr "SQL virtuel" -#: superset-frontend/src/pages/DatasetList/index.tsx:281 +#: superset-frontend/src/pages/DatasetList/index.tsx:292 msgid "Virtual dataset" msgstr "Jeu de données virtuel" -#: superset/connectors/sqla/models.py:960 superset/connectors/sqla/utils.py:111 -#: superset/models/helpers.py:1036 +#: superset/connectors/sqla/models.py:921 superset/connectors/sqla/utils.py:110 +#: superset/models/helpers.py:1079 msgid "Virtual dataset query cannot be empty" msgstr "La requête du jeu de données virtuel ne peut pas être vide" -#: superset/connectors/sqla/models.py:963 superset/models/helpers.py:1039 +#: superset/connectors/sqla/models.py:924 superset/models/helpers.py:1082 msgid "Virtual dataset query cannot consist of multiple statements" msgstr "" "La requête du jeu de données virtuel ne peut pas comporter plusieurs " "instructions" -#: superset/connectors/sqla/models.py:928 superset/models/helpers.py:1062 +#: superset/connectors/sqla/models.py:889 superset/models/helpers.py:1105 msgid "Virtual dataset query must be read-only" msgstr "La requête du jeu de données virtuel doit être en lecture seule" @@ -18431,7 +18644,7 @@ msgid "" "corresponds to higher frequency." msgstr "" -#: superset/viz.py:141 +#: superset/viz.py:140 msgid "Viz is missing a datasource" msgstr "Viz est une source de données manquante" @@ -18443,21 +18656,21 @@ msgstr "Type" msgid "WED" msgstr "MER" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:948 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1003 msgid "Want to add a new database?" msgstr "Ajouter un nouvelle base de données ?" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1246 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:216 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:214 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 msgid "Warning" msgstr "Avertissement" -#: superset/connectors/sqla/views.py:258 +#: superset/connectors/sqla/views.py:257 msgid "Warning Message" msgstr "Message d'avertissement" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:286 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 msgid "Warning!" msgstr "Attention !" @@ -18475,13 +18688,13 @@ msgstr "" msgid "Was unable to check your query" msgstr "Label pour votre requête" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1468 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1523 msgid "" "We are unable to connect to your database. Click \"See more\" for " "database-provided information that may help troubleshoot the issue." msgstr "" -#: superset/db_engine_specs/bigquery.py:197 +#: superset/db_engine_specs/bigquery.py:198 #, python-format msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." msgstr "" @@ -18493,8 +18706,8 @@ msgstr "" msgid "We can't seem to resolve the column \"%(column_name)s\"" msgstr "Nous ne pouvons résoudre la colonne \"%(column_name)s\"" -#: superset/db_engine_specs/postgres.py:153 -#: superset/db_engine_specs/presto.py:630 +#: superset/db_engine_specs/postgres.py:152 +#: superset/db_engine_specs/presto.py:657 #, python-format msgid "" "We can't seem to resolve the column \"%(column_name)s\" at line " @@ -18518,7 +18731,7 @@ msgid "" "dataset." msgstr "" -#: superset/db_engine_specs/redshift.py:90 +#: superset/db_engine_specs/redshift.py:94 #, python-format msgid "" "We were unable to connect to your database named \"%(database)s\". Please" @@ -18537,32 +18750,32 @@ msgstr "" msgid "Wednesday" msgstr "Mercredi" -#: superset/db_engine_specs/base.py:107 +#: superset/db_engine_specs/base.py:108 msgid "Week" msgstr "Semaine" -#: superset/db_engine_specs/base.py:113 +#: superset/db_engine_specs/base.py:114 msgid "Week ending Saturday" msgstr "Semaine terminant le samedi" -#: superset/db_engine_specs/base.py:112 +#: superset/db_engine_specs/base.py:113 msgid "Week starting Monday" msgstr "Semaine débutant le lundi" -#: superset/db_engine_specs/base.py:111 +#: superset/db_engine_specs/base.py:112 msgid "Week starting Sunday" msgstr "Semaine débutant le dimanche" -#: superset/db_engine_specs/base.py:114 +#: superset/db_engine_specs/base.py:115 msgid "Week_ending Sunday" msgstr "Semaine terminant le dimanche" -#: superset-frontend/src/components/ReportModal/index.tsx:123 +#: superset-frontend/src/components/ReportModal/index.tsx:122 #, fuzzy msgid "Weekly Report" msgstr "rapport" -#: superset-frontend/src/components/ReportModal/index.tsx:122 +#: superset-frontend/src/components/ReportModal/index.tsx:121 #, python-format msgid "Weekly Report for %s" msgstr "" @@ -18576,6 +18789,7 @@ msgstr "" msgid "Weeks %s" msgstr "Semaines %s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:49 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:77 #, fuzzy @@ -18617,7 +18831,7 @@ msgstr[1] "" msgid "What should be shown on the label?" msgstr "" -#: superset/views/database/forms.py:165 +#: superset/views/database/forms.py:175 #, fuzzy msgid "What should happen if the table already exists" msgstr "Un ensemble de filtre avec ce nom existe déjà" @@ -18647,7 +18861,7 @@ msgstr "" msgid "When checked, the map will zoom to your data after each query" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:189 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 msgid "When enabled, users are able to visualize SQL Lab results in Explore." msgstr "" "Quand activé, les utilisateurs peuvent visualiser les résulats de SQL Lab" @@ -18683,11 +18897,11 @@ msgstr "" "parcours en appliquant un filtre temporel sur un champ temporel " "partitionné ou indexé." -#: superset/viz.py:861 +#: superset/viz.py:891 msgid "When using 'Group By' you are limited to use a single metric" msgstr "Quand vous utilisez 'Grouper par' vous êtes limité à une seule métrique" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:74 msgid "When using other than adaptive formatting, labels may overlap" msgstr "" @@ -18699,11 +18913,11 @@ msgstr "Quand l'option est utilisée, une valeur par defaut doit être indiquée msgid "Whether the progress bar overlaps when there are multiple groups of data" msgstr "" -#: superset/connectors/sqla/views.py:455 +#: superset/connectors/sqla/views.py:362 msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" msgstr "Si la table a été générée par le flow 'Visualiser' dans SQL Lab" -#: superset/connectors/sqla/views.py:111 +#: superset/connectors/sqla/views.py:110 msgid "" "Whether this column is exposed in the `Filters` section of the explore " "view." @@ -18747,7 +18961,7 @@ msgstr "" msgid "Whether to display a bar chart background in table columns" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 msgid "Whether to display a legend for the chart" msgstr "" @@ -18778,14 +18992,14 @@ msgid "" " 5% threshold." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:157 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:118 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:159 msgid "Whether to display the legend (toggles)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:181 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 msgid "Whether to display the metric name as a title" msgstr "" @@ -18798,7 +19012,7 @@ msgstr "" msgid "Whether to display the min and max values of the Y-axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:167 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:187 msgid "Whether to display the numerical values within the cells" @@ -18867,7 +19081,7 @@ msgstr "Métrique servant à trier les résultats" msgid "Whether to make the histogram cumulative" msgstr "" -#: superset/connectors/sqla/views.py:106 +#: superset/connectors/sqla/views.py:105 msgid "" "Whether to make this column available as a [Time Granularity] option, " "column has to be DATETIME or DATETIME-like" @@ -18883,7 +19097,7 @@ msgstr "" msgid "Whether to populate autocomplete filters options" msgstr "S'il faut remplir les options des filtres de saisie semi-automatique" -#: superset/connectors/sqla/views.py:450 +#: superset/connectors/sqla/views.py:357 msgid "" "Whether to populate the filter's dropdown in the explore view's filter " "section with a list of distinct values fetched from the backend on the " @@ -18916,7 +19130,8 @@ msgstr "" msgid "Whether to show the split lines on the axis" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:124 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:143 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:174 #, fuzzy msgid "Whether to sort ascending or descending on the base Axis." msgstr "Trier par ordre décroissant ou croissant" @@ -18948,7 +19163,7 @@ msgstr "Trier par ordre décroissant ou croissant" msgid "Whether to sort results by the selected metric in descending order." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:207 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 msgid "Whether to sort tooltip by the selected metric in descending order." msgstr "" @@ -19016,7 +19231,7 @@ msgid "Working timeout" msgstr "Timeout d'exécution" #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 -#: superset/viz.py:2079 +#: superset/viz.py:2006 msgid "World Map" msgstr "Carte du monde" @@ -19028,12 +19243,12 @@ msgstr "Ecrire une description à votre requête" msgid "Write a handlebars template to render the data" msgstr "" -#: superset/views/database/forms.py:219 +#: superset/views/database/forms.py:229 #, fuzzy msgid "Write dataframe index as a column" msgstr "Ecrire l'index du tableau de données en colonne." -#: superset/views/database/forms.py:380 superset/views/database/forms.py:471 +#: superset/views/database/forms.py:390 superset/views/database/forms.py:481 msgid "Write dataframe index as a column." msgstr "Ecrire l'index du tableau de données en colonne." @@ -19093,12 +19308,14 @@ msgstr "" msgid "X bounds" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:122 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:141 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:172 #, fuzzy msgid "X-Axis Sort Ascending" msgstr "Tri croissant" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:69 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:156 msgid "X-Axis Sort By" msgstr "" @@ -19159,7 +19376,6 @@ msgid "Y Axis 2 Bounds" msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:260 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:248 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:192 @@ -19199,12 +19415,14 @@ msgstr "" msgid "Y bounds" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:121 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:140 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:171 #, fuzzy msgid "Y-Axis Sort Ascending" msgstr "Tri croissant" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:68 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 msgid "Y-Axis Sort By" msgstr "" @@ -19222,7 +19440,7 @@ msgstr "" msgid "YScale Interval" msgstr "Intervalle d'actualisation" -#: superset/db_engine_specs/base.py:110 +#: superset/db_engine_specs/base.py:111 msgid "Year" msgstr "Année" @@ -19247,9 +19465,9 @@ msgstr "Année %s" #: superset-frontend/src/pages/ChartList/index.tsx:707 #: superset-frontend/src/pages/DashboardList/index.tsx:506 #: superset-frontend/src/pages/DashboardList/index.tsx:588 -#: superset-frontend/src/pages/DatabaseList/index.tsx:467 -#: superset-frontend/src/pages/DatabaseList/index.tsx:487 -#: superset-frontend/src/pages/DatasetList/index.tsx:572 +#: superset-frontend/src/pages/DatabaseList/index.tsx:478 +#: superset-frontend/src/pages/DatabaseList/index.tsx:498 +#: superset-frontend/src/pages/DatasetList/index.tsx:583 msgid "Yes" msgstr "Oui" @@ -19282,7 +19500,7 @@ msgstr "" "L'écrasement peut vous conduire à perdre une partie de votre travail. " "Etes-vous sûr de vouloir ce remplacement ?" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1394 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1449 msgid "" "You are importing one or more databases that already exist. Overwriting " "might cause you to lose some of your work. Are you sure you want to " @@ -19313,7 +19531,7 @@ msgstr "" "L'écrasement peut vous conduire à perdre une partie de votre travail. " "Etes-vous sûr de vouloir ce remplacement ?" -#: superset/views/core.py:2177 +#: superset/views/core.py:2213 msgid "" "You are not authorized to see this query. If you think this is an error, " "please reach out to your administrator." @@ -19335,7 +19553,7 @@ msgstr "Vous pouvez ajouter les composants via le" msgid "You can add the components in the edit mode." msgstr "Vous pouvez ajouter les composants via mode edition" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:127 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:157 msgid "You can also just click on the chart to apply cross-filter." msgstr "" @@ -19360,7 +19578,7 @@ msgstr "" msgid "You can preview the list of dashboards in the chart settings dropdown." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:148 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:178 msgid "You can't apply cross-filter on this data point." msgstr "" @@ -19374,7 +19592,7 @@ msgstr "" msgid "You cannot use 45° tick layout along with the time range filter" msgstr "" -#: superset/viz.py:723 +#: superset/viz.py:748 msgid "" "You cannot use [Columns] in combination with [Group " "By]/[Metrics]/[Percentage Metrics]. Please choose one or the other." @@ -19393,7 +19611,7 @@ msgid "You do not have permission to edit this chart" msgstr "Vous n'avez pas les permission pour modifier ce graphique" #: superset-frontend/src/components/Tags/utils.tsx:69 -#: superset-frontend/src/dashboard/actions/dashboardState.js:366 +#: superset-frontend/src/dashboard/actions/dashboardState.js:368 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:134 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:40 @@ -19405,7 +19623,7 @@ msgstr "Vous n'avez pas le droit de modifier ce tableau de bord" msgid "You do not have permissions to access the datasource(s): %(name)s." msgstr "Vous n'avez pas les permissions pour accéder à(aux) source(s) : %(name)s." -#: superset-frontend/src/dashboard/actions/dashboardState.js:162 +#: superset-frontend/src/dashboard/actions/dashboardState.js:160 msgid "You do not have permissions to edit this dashboard." msgstr "Vous n'avez pas les droits pour modifier ce tableau de bord." @@ -19418,7 +19636,7 @@ msgstr "Vous n'avez pas accès à ce tableau de bord." msgid "You don't have access to this dashboard." msgstr "Vous n'avez pas accès à ce tableau de bord." -#: superset/datasets/commands/exceptions.py:189 +#: superset/datasets/commands/exceptions.py:206 #, fuzzy msgid "You don't have access to this dataset." msgstr "Vous n'avez pas accès à ce tableau de bord." @@ -19438,17 +19656,17 @@ msgstr "Vous n'avez pas encore de favoris !" msgid "You don't have permission to modify the value." msgstr "Vous n'avez pas les permission pour modifier ce graphique" -#: superset/security/manager.py:2267 +#: superset/security/manager.py:2262 #, fuzzy, python-format msgid "You don't have the rights to alter %(resource)s" msgstr "Vous n'avez pas les droits pour modifier ce titre." -#: superset/views/core.py:923 +#: superset/views/core.py:945 #, fuzzy msgid "You don't have the rights to alter this chart" msgstr "Vous n'avez pas les droits pour modifier ce titre." -#: superset/views/core.py:1097 +#: superset/views/core.py:1119 #, fuzzy msgid "You don't have the rights to alter this dashboard" msgstr "Vous n'avez pas les droits pour modifier ce titre." @@ -19457,22 +19675,22 @@ msgstr "Vous n'avez pas les droits pour modifier ce titre." msgid "You don't have the rights to alter this title." msgstr "Vous n'avez pas les droits pour modifier ce titre." -#: superset/views/core.py:929 +#: superset/views/core.py:951 #, fuzzy msgid "You don't have the rights to create a chart" msgstr "Vous n'avez pas les droits pour " -#: superset/views/core.py:1113 +#: superset/views/core.py:1135 #, fuzzy msgid "You don't have the rights to create a dashboard" msgstr "Vous n'avez pas les droits pour " -#: superset/views/core.py:644 +#: superset/views/core.py:649 #, fuzzy msgid "You don't have the rights to download as csv" msgstr "Vous n'avez pas les droits pour " -#: superset/views/core.py:424 +#: superset/views/core.py:425 msgid "You have no permission to approve this request" msgstr "Vous n'avez pas les permission pour approuver cette requête" @@ -19484,7 +19702,7 @@ msgstr "Vous avez supprimé ce filtre." msgid "You have unsaved changes." msgstr "Vous avez des modifications non sauvegardées." -#: superset-frontend/src/dashboard/actions/dashboardState.js:652 +#: superset-frontend/src/dashboard/actions/dashboardState.js:650 #, python-format msgid "" "You have used all %(historyLength)s undo slots and will not be able to " @@ -19493,7 +19711,7 @@ msgid "" msgstr "" #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:300 -#: superset-frontend/src/pages/DatasetList/index.tsx:453 +#: superset-frontend/src/pages/DatasetList/index.tsx:464 msgid "" "You must be a dataset owner in order to edit. Please reach out to a " "dataset owner to request modifications or edit access." @@ -19503,7 +19721,7 @@ msgstr "" msgid "You must pick a name for the new dashboard" msgstr "Vous devez entrer un nom pour le nouveau Tableau de Bord" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:525 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:519 msgid "You must run the query successfully first" msgstr "Vous devez d'abord exécuter la requête avec succès" @@ -19511,7 +19729,7 @@ msgstr "Vous devez d'abord exécuter la requête avec succès" msgid "You need to configure HTML sanitization to use CSS" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:350 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 msgid "" "You updated the values in the control panel, but the chart was not " "updated automatically. Run the query by clicking on the \"Update chart\" " @@ -19524,7 +19742,7 @@ msgid "" "match this new dataset have been retained." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:343 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 msgid "Your chart is not up to date" msgstr "" @@ -19538,7 +19756,7 @@ msgstr "" "Votre tableau de bord est trop gros.Merci de réduire sa taille avant de " "sauvegarder." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1036 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1028 msgid "Your query could not be saved" msgstr "Votre requête n'a pas pu être enregistrée" @@ -19546,7 +19764,7 @@ msgstr "Votre requête n'a pas pu être enregistrée" msgid "Your query could not be scheduled" msgstr "Votre requête ne peut pas être planifiée" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1071 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1063 msgid "Your query could not be updated" msgstr "Votre requête n'a pas pu être mise à jour" @@ -19558,16 +19776,16 @@ msgstr "" "Votre requête a été planifiée. Pour voir les détails de votre requête, " "naviguer vers Requêtes sauvegardées" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1051 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 #, fuzzy msgid "Your query was not properly saved" msgstr "Votre requête a été enregistrée" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1054 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1046 msgid "Your query was saved" msgstr "Votre requête a été enregistrée" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1067 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1059 msgid "Your query was updated" msgstr "Votre requête a été mise à jour" @@ -19589,22 +19807,22 @@ msgstr "" msgid "Zoom level of the map" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:262 +#: superset-frontend/src/dashboard/actions/dashboardState.js:260 #, fuzzy msgid "[ untitled dashboard ]" msgstr "Éditer le tableau de bord" -#: superset/viz.py:2386 +#: superset/viz.py:2323 msgid "[Longitude] and [Latitude] columns must be present in [Group By]" msgstr "" "Les colonnes [Longitude] et [Latitude] doivent êtres présentes dans " "[Grouper par]" -#: superset/viz.py:2336 +#: superset/viz.py:2273 msgid "[Longitude] and [Latitude] must be set" msgstr "Les colonnes [Longitude] et [Latitude] doivent êtres définies" -#: superset/explore/commands/get.py:121 superset/views/core.py:870 +#: superset/explore/commands/get.py:121 superset/views/core.py:892 msgid "[Missing Dataset]" msgstr "[jeu de données manquant]" @@ -19617,7 +19835,7 @@ msgstr "[Superset] Accès à la source de données %(name)s accordé" msgid "[Untitled]" msgstr "[Sans titre]" -#: superset/connectors/base/models.py:252 superset/models/sql_lab.py:228 +#: superset/connectors/base/models.py:262 superset/models/sql_lab.py:216 #, fuzzy msgid "[asc]" msgstr "Simple" @@ -19631,7 +19849,7 @@ msgstr "Copier" msgid "[dashboard name]" msgstr "[nom du tableau de bord]" -#: superset/connectors/base/models.py:255 superset/models/sql_lab.py:231 +#: superset/connectors/base/models.py:265 superset/models/sql_lab.py:219 msgid "[desc]" msgstr "" @@ -19656,7 +19874,7 @@ msgstr "`compare_columns` doit être de même longueur que `source_columns`." msgid "`compare_type` must be `difference`, `percentage` or `ratio`" msgstr "`compare_type` doit être `difference`, `percentage` or `ratio`" -#: superset/charts/schemas.py:573 +#: superset/charts/schemas.py:654 msgid "`confidence_interval` must be between 0 and 1 (exclusive)" msgstr "`confidence_interval` doit être entre 0 et 1 (exclusif)" @@ -19679,15 +19897,15 @@ msgstr "`prophet` package non installé" msgid "`rename_columns` must have the same length as `columns`." msgstr "`rename_columns` doit être de même longueur que `columns`." -#: superset/charts/schemas.py:1114 +#: superset/charts/schemas.py:1284 msgid "`row_limit` must be greater than or equal to 0" msgstr "`row_limit` doit être plus grand ou égal à 0" -#: superset/charts/schemas.py:1121 +#: superset/charts/schemas.py:1291 msgid "`row_offset` must be greater than or equal to 0" msgstr "`row_offset` doit être plus grand ou égal à 0" -#: superset/charts/schemas.py:972 +#: superset/charts/schemas.py:1108 msgid "`width` must be greater or equal to 0" msgstr "`width` doit être plus grand ou égal à 0" @@ -19695,10 +19913,16 @@ msgstr "`width` doit être plus grand ou égal à 0" msgid "aggregate" msgstr "agrégat" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 #: superset-frontend/src/pages/AlertReportList/index.tsx:110 msgid "alert" msgstr "alerte" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 +#, fuzzy +msgid "alert dark" +msgstr "alerte" + #: superset-frontend/src/pages/AlertReportList/index.tsx:111 msgid "alerts" msgstr "alertes" @@ -19844,7 +20068,7 @@ msgid "clear all filters" msgstr "Rechercher toutes les options de filtrage" #: superset-frontend/src/components/Chart/Chart.jsx:290 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:354 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 msgid "click here" msgstr "" @@ -19875,7 +20099,7 @@ msgstr "" msgid "count" msgstr "colonne" -#: superset-frontend/src/explore/components/SaveModal.tsx:365 +#: superset-frontend/src/explore/components/SaveModal.tsx:400 #, fuzzy msgid "create" msgstr "Créer" @@ -19923,16 +20147,16 @@ msgid "dashboards" msgstr "tableaux de bord" #: superset-frontend/src/features/databases/DatabaseModal/index.tsx:543 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:712 -#: superset-frontend/src/pages/DatabaseList/index.tsx:91 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:729 +#: superset-frontend/src/pages/DatabaseList/index.tsx:102 msgid "database" msgstr "base de données" #: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 #: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 #: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 -#: superset-frontend/src/pages/DatasetList/index.tsx:148 -#: superset-frontend/src/pages/DatasetList/index.tsx:822 +#: superset-frontend/src/pages/DatasetList/index.tsx:159 +#: superset-frontend/src/pages/DatasetList/index.tsx:844 msgid "dataset" msgstr "jeu de données" @@ -19945,8 +20169,8 @@ msgstr "Nom du jeu de donnée" msgid "date" msgstr "date" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 msgid "day" msgstr "jour" @@ -19979,6 +20203,11 @@ msgstr "Deck.gl - Polygone" msgid "deck.gl Grid" msgstr "Deck.gl - Grille 3D" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:30 +#, fuzzy +msgid "deck.gl Heatmap" +msgstr "Deck.gl - Chemins" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:28 #, fuzzy msgid "deck.gl Multiple Layers" @@ -20013,6 +20242,7 @@ msgstr "Deck.gl - Chemins" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:34 @@ -20100,11 +20330,11 @@ msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:112 #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:657 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:674 msgid "e.g. world_population" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:655 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:672 msgid "e.g. xy12345.us-east-2.aws" msgstr "" @@ -20122,7 +20352,16 @@ msgstr "mode edition" msgid "entries" msgstr "Séries" -#: superset/connectors/sqla/models.py:1537 superset/models/helpers.py:1742 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +#, fuzzy +msgid "error" +msgstr "Opérateur" + +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 +msgid "error dark" +msgstr "" + +#: superset/models/helpers.py:1803 #, fuzzy msgid "error_message" msgstr "Message d'erreur" @@ -20209,10 +20448,6 @@ msgstr "" msgid "geohash (square)" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 -msgid "green" -msgstr "vert" - #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:168 #, fuzzy msgid "heatmap" @@ -20226,14 +20461,14 @@ msgstr "" #: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:125 #: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1800 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1856 #, fuzzy msgid "here" msgstr "Partage de requête" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 msgid "hour" msgstr "heure" @@ -20271,7 +20506,7 @@ msgstr "" msgid "joined" msgstr "relié" -#: superset/views/base.py:595 +#: superset/views/base.py:596 msgid "json isn't valid" msgstr "le json n'est pas valide" @@ -20338,7 +20573,7 @@ msgstr "Effacer" msgid "log" msgstr "log" -#: superset/charts/schemas.py:645 +#: superset/charts/schemas.py:735 msgid "" "lower percentile must be greater than 0 and less than 100. Must be lower " "than upper percentile." @@ -20347,7 +20582,6 @@ msgstr "" "et doit être plus petit que le percentile supérieur." #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:189 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:58 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 #: superset-frontend/src/filters/components/Range/buildQuery.ts:69 #, fuzzy @@ -20357,9 +20591,9 @@ msgstr "Max" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:187 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:254 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:56 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:136 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:119 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:403 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:531 @@ -20378,15 +20612,14 @@ msgstr "Comparaison" msgid "median" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:60 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:62 #: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 #, fuzzy msgid "metric" msgstr "Métrique" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:188 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:57 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 #: superset-frontend/src/filters/components/Range/buildQuery.ts:58 #, fuzzy @@ -20407,8 +20640,8 @@ msgid "monotone" msgstr "mois" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 #: superset-frontend/src/explore/controls.jsx:267 msgid "month" @@ -20419,7 +20652,7 @@ msgid "more than {max} {name}" msgstr "" #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:53 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:78 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:77 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:116 #, fuzzy msgid "must have a value" @@ -20489,7 +20722,7 @@ msgstr "" "Vous pouvez créer de nouveaux graphiques ou utililser ceux existants à " "partir du panneau de droite" -#: superset/charts/schemas.py:1143 +#: superset/charts/schemas.py:1313 msgid "orderby column must be populated" msgstr "la colonne de tri doit être remplie" @@ -20549,7 +20782,7 @@ msgstr "" "percentiles doit être une liste ou un couple de 2 valeurs dont le premier" " est inférieur au second" -#: superset/views/core.py:1921 +#: superset/views/core.py:1958 #, fuzzy msgid "permalink state not found" msgstr "Etat du programme de rapport introuvable" @@ -20607,11 +20840,7 @@ msgstr "date" msgid "recents" msgstr "récents" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 -msgid "red" -msgstr "rouge" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:563 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:566 #: superset-frontend/src/pages/AlertReportList/index.tsx:110 msgid "report" msgstr "rapport" @@ -20623,7 +20852,7 @@ msgstr "rapport" msgid "reports" msgstr "rapports" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:491 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:522 msgid "restore zoom" msgstr "" @@ -20633,6 +20862,11 @@ msgstr "" msgid "right" msgstr "Hauteur" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:139 +#, fuzzy +msgid "rowlevelsecurity" +msgstr "Sécurité de niveau ligne" + #: superset-frontend/src/SqlLab/constants.ts:36 #: superset-frontend/src/SqlLab/constants.ts:52 #, fuzzy @@ -20685,7 +20919,6 @@ msgstr "Rien déclenché" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:190 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:59 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:138 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:405 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:185 @@ -20719,16 +20952,22 @@ msgstr "" #: superset-frontend/src/SqlLab/constants.ts:38 #: superset-frontend/src/SqlLab/constants.ts:50 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 #, fuzzy msgid "success" msgstr "Succès" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +#, fuzzy +msgid "success dark" +msgstr "Succès" + #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:186 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:255 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:378 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:55 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:260 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:532 @@ -20776,7 +21015,7 @@ msgstr "Défaire?" msgid "unknown type icon" msgstr "Erreur inconnue" -#: superset/charts/schemas.py:660 +#: superset/charts/schemas.py:750 msgid "" "upper percentile must be greater than 0 and less than 100. Must be higher" " than lower percentile." @@ -20802,7 +21041,6 @@ msgid "value descending" msgstr "Tri décroissant" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:60 #, fuzzy msgid "var" msgstr "Tabulaire" @@ -20826,13 +21064,13 @@ msgstr "virtuel" msgid "viz type" msgstr "type de visualisation" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:451 msgid "was created" msgstr "a été créé" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:62 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 #: superset-frontend/src/explore/controls.jsx:264 msgid "week" @@ -20867,16 +21105,12 @@ msgid "y: values are normalized within each row" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 #: superset-frontend/src/explore/controls.jsx:269 msgid "year" msgstr "année" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 -msgid "yellow" -msgstr "jaune" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:490 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:521 msgid "zoom area" msgstr "" diff --git a/superset/translations/it/LC_MESSAGES/messages.json b/superset/translations/it/LC_MESSAGES/messages.json index 4215d55cac..740adb95e6 100644 --- a/superset/translations/it/LC_MESSAGES/messages.json +++ b/superset/translations/it/LC_MESSAGES/messages.json @@ -134,6 +134,9 @@ "" ], "A database with the same name already exists.": [""], + "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ + "" + ], "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ "" ], @@ -198,7 +201,6 @@ "Add Database": ["Aggiungi Database"], "Add Log": [""], "Add Metric": ["Aggiungi metrica"], - "Add Row level security filter": [""], "Add Saved Query": ["Aggiungi query salvata"], "Add a Plugin": ["Aggiungi colonna"], "Add a new tab to create SQL Query": [""], @@ -209,6 +211,7 @@ "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ "" ], + "Add custom scoping": [""], "Add delivery method": [""], "Add extra connection information.": [""], "Add filter": ["Aggiungi filtro"], @@ -272,6 +275,7 @@ "All": [""], "All Text": [""], "All charts": ["Grafico a Proiettile"], + "All charts/global scoping": [""], "All filters": ["Filtri"], "All filters (%(filterCount)d)": [""], "All panels": [""], @@ -472,6 +476,7 @@ "" ], "Apply": ["Applica"], + "Apply conditional color formatting to metric": [""], "Apply conditional color formatting to metrics": [""], "Apply conditional color formatting to numeric columns": [""], "Apply to all panels": [""], @@ -488,6 +493,7 @@ "Are you sure you want to delete the selected datasets?": [""], "Are you sure you want to delete the selected layers?": [""], "Are you sure you want to delete the selected queries?": [""], + "Are you sure you want to delete the selected rules?": [""], "Are you sure you want to delete the selected tags?": [""], "Are you sure you want to delete the selected templates?": [""], "Are you sure you want to overwrite this dataset?": [""], @@ -539,6 +545,12 @@ "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ "" ], + "Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "" + ], + "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [ + "" + ], "Box Plot": ["Box Plot"], "Bubble Chart": ["Grafico a Bolle"], "Bubble Color": [""], @@ -696,7 +708,6 @@ "Choose a metric for right axis": [ "Seleziona una metrica per l'asse destro" ], - "Choose a unique name": [""], "Choose one of the available databases from the panel on the left.": [""], "Choose the annotation layer type": [""], "Choose the position of the legend": [""], @@ -734,7 +745,6 @@ ], "Click to cancel sorting": [""], "Click to edit": [""], - "Click to edit %s in a new tab": [""], "Click to edit %s.": [""], "Click to edit chart.": [""], "Click to edit label": [""], @@ -868,12 +878,14 @@ "Copy the name of the database you are trying to connect to.": [""], "Copy to clipboard": [""], "Cost estimate": [""], + "Could not connect to database: \"%(database)s\"": [""], "Could not determine datasource type": [""], "Could not fetch all saved charts": ["Non posso connettermi al server"], "Could not find viz object": [""], "Could not load database driver": ["Non posso connettermi al server"], "Could not load database driver: %(driver_name)s": [""], "Could not load database driver: {}": ["Non posso connettermi al server"], + "Could not resolve hostname: \"%(host)s\".": [""], "Count as Fraction of Columns": [""], "Count as Fraction of Rows": [""], "Count as Fraction of Total": [""], @@ -1020,6 +1032,7 @@ "Db engine did not return all queried columns": [""], "December": [""], "Decides which column to sort the base axis by.": [""], + "Decides which measure to sort the base axis by.": [""], "Decimal Character": [""], "Deck.gl - 3D Grid": [""], "Deck.gl - 3D HEX": [""], @@ -1134,7 +1147,6 @@ "" ], "Display row level total": [""], - "Display total row/column": [""], "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ "" ], @@ -1167,10 +1179,7 @@ ], "Drill to detail: %s": [""], "Drop a temporal column here or click": [""], - "Drop columns here": [""], - "Drop columns or metrics here": [""], "Drop columns/metrics here or click": [""], - "Drop temporal column here": [""], "Duplicate": [""], "Duplicate column name(s): %(columns)s": [""], "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ @@ -1212,7 +1221,6 @@ "Edit Log": ["Modifica"], "Edit Metric": ["Modifica metrica"], "Edit Plugin": ["Edita colonna"], - "Edit Row level security filter": [""], "Edit Saved Query": ["Modifica query salvata"], "Edit Table": ["Modifica Tabella"], "Edit annotation": ["Azione"], @@ -1314,6 +1322,7 @@ ], "Excel to Database configuration": [""], "Exclude selected values": [""], + "Excluded roles": [""], "Executed query": ["query condivisa"], "Execution ID": [""], "Execution log": [""], @@ -1365,8 +1374,10 @@ "Failed at stopping query. %s": [""], "Failed to create report": [""], "Failed to execute %(query)s": [""], + "Failed to generate chart edit URL": [""], "Failed to load chart data": [""], "Failed to load chart data.": [""], + "Failed to load dimensions for drill by": [""], "Failed to start remote query on a worker.": [""], "Failed to update report": [""], "Failed to verify select options: %s": [""], @@ -1385,7 +1396,7 @@ "Fill all required fields to enable \"Default Value\"": [""], "Fill method": [""], "Filter List": ["Filtri"], - "Filter box": ["Filtri"], + "Filter box (deprecated)": [""], "Filter configuration": ["Controlli del filtro"], "Filter configuration for the filter box": [""], "Filter has default value": [""], @@ -1470,7 +1481,6 @@ "Greater than (>)": [""], "Grid": [""], "Group By filter plugin": [""], - "Group By' and 'Columns' can't overlap": [""], "Group By, Metrics or Percentage Metrics must have a value": [""], "Group by": ["Raggruppa per"], "Groupable": ["Raggruppabile"], @@ -1559,9 +1569,18 @@ "Input field supports custom rotation. e.g. 30 for 30°": [""], "Instant filtering": ["Cerca / Filtra"], "Intensity": [""], + "Intensity Radius": [""], + "Intensity Radius is the radius at which the weight is distributed": [""], + "Intensity is the value multiplied by the weight to obtain the final weight": [ + "" + ], "Interpret Datetime Format Automatically": [""], "Interpret the datetime format automatically": [""], "Interval colors": [""], + "Intesity": [""], + "Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:port/database'.": [ + "" + ], "Invalid JSON": [""], "Invalid advanced data type: %(advanced_data_type)s": [""], "Invalid certificate": [""], @@ -1588,6 +1607,7 @@ "Invalid numpy function: %(operator)s": [""], "Invalid options for %(rolling_type)s: %(options)s": [""], "Invalid permalink key": [""], + "Invalid reference to column: \"%(column)s\"": [""], "Invalid result type: %(result_type)s": [""], "Invalid rolling_type: %(type)s": [""], "Invalid spatial point encountered: %s": [""], @@ -1888,7 +1908,6 @@ ], "No data in file": [""], "No databases match your search": [""], - "No dimensions available for drill by": [""], "No favorite charts yet, go click on stars!": [""], "No favorite dashboards yet, go click on stars!": [""], "No filter is selected.": [""], @@ -2010,7 +2029,6 @@ ], "Optional name of the data column.": [""], "Optional warning about use of this metric": [""], - "Optionally add a detailed description": [""], "Or choose from a list of other databases we support:": [""], "Order by entity id": [""], "Order results by selected columns": [""], @@ -2117,9 +2135,7 @@ ], "Pick your favorite markup language": [""], "Pie shape": [""], - "Pivot Options": [""], "Pivot Table": ["Vista Pivot"], - "Pivot Table (legacy)": [""], "Pivot operation must include at least one aggregate": [""], "Pivot operation requires at least one index": [""], "Pixel height of each series": [""], @@ -2139,7 +2155,6 @@ "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ "" ], - "Please choose at least one metric": ["Seleziona almeno una metrica"], "Please choose different metrics on left and right axis": [ "Seleziona metriche differenti per gli assi destro e sinistro" ], @@ -2183,6 +2198,7 @@ "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ "" ], + "Port out of range 0-65535": [""], "Position JSON": ["Posizione del JSON"], "Position of child node label on tree": [""], "Position of column level subtotal": [""], @@ -2200,6 +2216,7 @@ "Previous Line": [""], "Primary": [""], "Primary or secondary y-axis": [""], + "Primary y-axis Bounds": [""], "Primary y-axis format": [""], "Private Key": [""], "Private Key & Password": [""], @@ -2276,7 +2293,8 @@ "Refresh table list": [""], "Refresh the default values": [""], "Regex": [""], - "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter. Base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ + "Regular": [""], + "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter, base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ "" ], "Relationships between community channels": [""], @@ -2374,13 +2392,13 @@ "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ "" ], - "Row level security filter": [""], "Row limit": [""], "Rows": [""], "Rows per page, 0 means no pagination": [""], "Rows subtotal position": [""], "Rows to Read": [""], "Rule": [""], + "Rule added": [""], "Run": [""], "Run a query to display query history": [""], "Run a query to display results": [""], @@ -2481,6 +2499,7 @@ "Search...": ["Cerca"], "Second": [""], "Secondary": [""], + "Secondary y-axis Bounds": [""], "Secondary y-axis format": [""], "Secondary y-axis title": [""], "Seconds %s": [""], @@ -2518,6 +2537,12 @@ "Select subject": [""], "Select table or type to search tables": [""], "Select the Annotation Layer you would like to use.": [""], + "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" + ], + "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" + ], "Select the number of bins for the histogram": [""], "Select the numeric columns to draw the histogram": [""], "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ @@ -2569,7 +2594,6 @@ "Show Log": ["Mostra colonna"], "Show Markers": [""], "Show Metric": ["Mostra metrica"], - "Show Row level security filter": [""], "Show Saved Query": ["Mostra query salvate"], "Show Table": ["Mostra Tabelle"], "Show Timestamp": [""], @@ -2745,7 +2769,6 @@ "Superset encountered an error while running a command.": [""], "Superset encountered an unexpected error.": [""], "Survey Responses": [""], - "Swap Groups and Columns": [""], "Swap rows and columns": [""], "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ "" @@ -2757,6 +2780,9 @@ "Symbol of two ends of edge line": [""], "Sync columns from source": [""], "Syntax": [""], + "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ + "" + ], "TABLES": [""], "THU": [""], "TUE": [""], @@ -3032,6 +3058,9 @@ ], "The unit of measure for the specified point radius": [""], "The user seems to have been deleted": [""], + "The user/password combination is not valid (Incorrect password for user).": [ + "" + ], "The username \"%(username)s\" does not exist.": [""], "The username provided when connecting to a database is not valid.": [""], "The way the ticks are laid out on the X-axis": [""], @@ -3099,7 +3128,7 @@ "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ "" ], - "This chart emits/applies cross-filters to other charts that use the same dataset": [ + "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ "" ], "This chart has been moved to a different filter scope.": [""], @@ -3276,7 +3305,6 @@ "To get a readable URL for your dashboard": [ "ottenere una URL leggibile per la tua dashboard" ], - "Too many columns to filter": [""], "Tooltip": [""], "Top": [""], "Top to Bottom": [""], @@ -3287,7 +3315,6 @@ "Track job": [""], "Transformable": [""], "Transparent": [""], - "Transpose Pivot": [""], "Transpose pivot": [""], "Tree layout": [""], "Treemap": ["Treemap"], @@ -3331,6 +3358,8 @@ "" ], "Unable to create chart without a query id.": [""], + "Unable to decode value": [""], + "Unable to encode value": [""], "Unable to find such a holiday: [%(holiday)s]": [""], "Unable to load columns for the selected table. Please select a different table.": [ "" @@ -3412,9 +3441,6 @@ "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ "" ], - "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location.\n\n This chart is being deprecated and we recommend checking out Pivot Table V2 instead!": [ - "" - ], "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ "" ], @@ -3424,6 +3450,9 @@ "User must select a value before applying the filter": [""], "User must select a value for this filter": [""], "User query": ["condividi query"], + "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ + "" + ], "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ "" ], @@ -3888,6 +3917,7 @@ "e.g. sql/protocolv1/o/12345": [""], "e.g. world_population": [""], "e.g. xy12345.us-east-2.aws": [""], + "error dark": [""], "error_message": [""], "every": [""], "every day of the month": ["Codice a 3 lettere della nazione"], @@ -3904,7 +3934,6 @@ "for more information on how to structure your URI.": [""], "function type icon": [""], "geohash (square)": [""], - "green": [""], "heatmap: values are normalized across the entire heatmap": [""], "here": [""], "hour": ["ora"], @@ -3969,6 +3998,7 @@ "report": ["Importa"], "reports": ["Importa"], "restore zoom": [""], + "rowlevelsecurity": [""], "search by tags": [""], "seconds": [""], "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ @@ -4005,7 +4035,6 @@ "y": [""], "y: values are normalized within each row": [""], "year": ["anno"], - "yellow": [""], "zoom area": [""] } } diff --git a/superset/translations/it/LC_MESSAGES/messages.po b/superset/translations/it/LC_MESSAGES/messages.po index 43744e480d..66b6a69123 100644 --- a/superset/translations/it/LC_MESSAGES/messages.po +++ b/superset/translations/it/LC_MESSAGES/messages.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-04-07 19:09+0200\n" +"POT-Creation-Date: 2023-05-23 16:30-0300\n" "PO-Revision-Date: 2018-02-11 22:26+0200\n" "Last-Translator: Raffaele Spangaro \n" "Language: it\n" @@ -37,7 +37,7 @@ msgid "" " " msgstr "" -#: superset/reports/notifications/email.py:88 +#: superset/reports/notifications/email.py:89 #, python-format msgid "" "\n" @@ -56,12 +56,12 @@ msgid "" "in the GeoJSON" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:364 +#: superset-frontend/src/explore/components/SaveModal.tsx:399 #, fuzzy msgid " a dashboard OR " msgstr "Salva e vai alla dashboard" -#: superset-frontend/src/explore/components/SaveModal.tsx:366 +#: superset-frontend/src/explore/components/SaveModal.tsx:401 #, fuzzy msgid " a new one" msgstr "Cambiato il" @@ -92,7 +92,7 @@ msgid "" " database/column name level via the extra parameter." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:334 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:340 #, fuzzy msgid " to add calculated columns" msgstr "Visualizza colonne" @@ -106,8 +106,8 @@ msgstr "Aggiungi metrica" msgid " to edit or add columns and metrics." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:323 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:358 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:364 msgid " to mark a column as a time column" msgstr "" @@ -115,7 +115,7 @@ msgstr "" msgid " to open SQL Lab. From there you can save the query as a dataset." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:333 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 msgid " to visualize your data." msgstr "" @@ -123,7 +123,7 @@ msgstr "" msgid "!= (Is not equal)" msgstr "" -#: superset/security/analytics_db_safety.py:44 +#: superset/security/analytics_db_safety.py:48 #, python-format msgid "%(dialect)s cannot be used as a data source for security reasons." msgstr "" @@ -136,7 +136,7 @@ msgid "" "%(issues)s" msgstr "" -#: superset/reports/notifications/email.py:168 +#: superset/reports/notifications/email.py:171 #, python-format msgid "%(name)s.csv" msgstr "" @@ -166,14 +166,14 @@ msgstr "" msgid "%(other)s saved queries will appear here" msgstr "" -#: superset/reports/notifications/email.py:177 +#: superset/reports/notifications/email.py:180 #, python-format msgid "%(prefix)s %(title)s" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:345 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:363 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:377 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:338 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:356 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:370 #, python-format msgid "%(rows)d rows returned" msgstr "" @@ -194,19 +194,19 @@ msgid_plural "" "\"%(undefinedParameter)s\"?" msgstr[0] "" -#: superset/views/core.py:384 +#: superset/views/core.py:385 #, python-format msgid "" "%(user)s was granted the role %(role)s that gives access to the " "%(datasource)s" msgstr "" -#: superset/views/core.py:2672 +#: superset/views/core.py:2709 #, python-format msgid "%(user)s's profile" msgstr "" -#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2327 +#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2369 #, python-format msgid "" "%(validator)s was unable to check your query.\n" @@ -220,25 +220,25 @@ msgid "%s Error" msgstr "Errore..." #: superset-frontend/src/components/ImportModal/index.tsx:298 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1300 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1355 #, fuzzy, python-format msgid "%s PASSWORD" msgstr "Porta Broker" #: superset-frontend/src/components/ImportModal/index.tsx:318 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1318 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1373 #, python-format msgid "%s SSH TUNNEL PASSWORD" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:341 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1336 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1391 #, python-format msgid "%s SSH TUNNEL PRIVATE KEY" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:363 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1356 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1411 #, python-format msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" msgstr "" @@ -248,17 +248,17 @@ msgstr "" msgid "%s Selected" msgstr "Seleziona data finale" -#: superset-frontend/src/pages/DatasetList/index.tsx:808 +#: superset-frontend/src/pages/DatasetList/index.tsx:830 #, python-format msgid "%s Selected (%s Physical, %s Virtual)" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:801 +#: superset-frontend/src/pages/DatasetList/index.tsx:823 #, python-format msgid "%s Selected (Physical)" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:794 +#: superset-frontend/src/pages/DatasetList/index.tsx:816 #, python-format msgid "%s Selected (Virtual)" msgstr "" @@ -268,8 +268,8 @@ msgstr "" msgid "%s aggregates(s)" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:274 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:371 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:280 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:377 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:346 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 #, python-format @@ -306,8 +306,8 @@ msgstr[0] "Errore..." msgid "%s saved metric(s)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:636 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:652 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:639 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:655 #, fuzzy, python-format msgid "%s updated" msgstr "%s - senza nome" @@ -324,7 +324,7 @@ msgstr "" msgid "%s-%s of %s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:115 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:116 msgid "(Removed)" msgstr "" @@ -374,22 +374,22 @@ msgstr "" msgid "+ %s more" msgstr "" -#: superset/views/database/forms.py:153 +#: superset/views/database/forms.py:163 msgid "," msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:656 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:652 msgid "" "-- Note: Unless you save your query, these tabs will NOT persist if you " "clear your cookies or change browsers.\n" "\n" msgstr "" -#: superset/views/database/forms.py:154 +#: superset/views/database/forms.py:164 msgid "." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:791 +#: superset-frontend/src/pages/DatasetList/index.tsx:813 msgid "0 Selected" msgstr "Seleziona data finale" @@ -484,7 +484,7 @@ msgstr "" msgid "1 year start frequency" msgstr "" -#: superset/db_engine_specs/base.py:101 +#: superset/db_engine_specs/base.py:102 #, fuzzy msgid "10 minute" msgstr "10 minuti" @@ -501,7 +501,7 @@ msgstr "settimana" msgid "104 weeks ago" msgstr "" -#: superset/db_engine_specs/base.py:102 +#: superset/db_engine_specs/base.py:103 #, fuzzy msgid "15 minute" msgstr "minuto" @@ -622,7 +622,7 @@ msgstr "" msgid "30 days ago" msgstr "" -#: superset/db_engine_specs/base.py:103 +#: superset/db_engine_specs/base.py:104 #, fuzzy msgid "30 minute" msgstr "10 minuti" @@ -632,7 +632,7 @@ msgstr "10 minuti" msgid "30 minutes" msgstr "10 minuti" -#: superset/db_engine_specs/base.py:98 +#: superset/db_engine_specs/base.py:99 msgid "30 second" msgstr "" @@ -652,7 +652,7 @@ msgstr "" msgid "4 weeks (freq=4W-MON)" msgstr "" -#: superset/db_engine_specs/base.py:100 +#: superset/db_engine_specs/base.py:101 #, fuzzy msgid "5 minute" msgstr "minuto" @@ -662,7 +662,7 @@ msgstr "minuto" msgid "5 minutes" msgstr "" -#: superset/db_engine_specs/base.py:97 +#: superset/db_engine_specs/base.py:98 msgid "5 second" msgstr "" @@ -689,7 +689,7 @@ msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 #: superset-frontend/src/explore/controls.jsx:261 -#: superset/db_engine_specs/base.py:105 +#: superset/db_engine_specs/base.py:106 #, fuzzy msgid "6 hour" msgstr "ora" @@ -778,15 +778,15 @@ msgstr "" msgid "A Big Number" msgstr "Numero Grande" -#: superset/views/database/forms.py:184 +#: superset/views/database/forms.py:194 msgid "A comma separated list of columns that should be parsed as dates" msgstr "" -#: superset/views/database/forms.py:367 +#: superset/views/database/forms.py:377 msgid "A comma separated list of columns that should be parsed as dates." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:433 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 msgid "A comma-separated list of schemas that files are allowed to upload to." msgstr "" @@ -794,6 +794,12 @@ msgstr "" msgid "A database with the same name already exists." msgstr "" +#: superset/views/database/forms.py:145 +msgid "" +"A dictionary with column names and their data types if you need to change" +" the defaults. Example: {\"user_id\":\"integer\"}" +msgstr "" + #: superset/views/dynamic_plugins.py:52 msgid "" "A full URL pointing to the location of the built plugin (could be hosted " @@ -859,16 +865,16 @@ msgstr "" msgid "A report named \"%(name)s\" already exists" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:333 +#: superset-frontend/src/explore/components/SaveModal.tsx:368 msgid "A reusable dataset will be saved with your chart." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:309 +#: superset-frontend/src/components/ReportModal/index.tsx:308 msgid "A screenshot of the dashboard will be sent to your email at" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 -#: superset/connectors/sqla/views.py:458 +#: superset/connectors/sqla/views.py:365 msgid "" "A set of parameters that become available in the query using Jinja " "templating syntax" @@ -916,8 +922,8 @@ msgstr "" msgid "APR" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:312 -#: superset-frontend/src/pages/DatabaseList/index.tsx:478 +#: superset-frontend/src/pages/DatabaseList/index.tsx:323 +#: superset-frontend/src/pages/DatabaseList/index.tsx:489 msgid "AQE" msgstr "" @@ -945,7 +951,7 @@ msgstr "" msgid "Access" msgstr "Nessun Accesso!" -#: superset/initialization/__init__.py:431 +#: superset/initialization/__init__.py:425 msgid "Access requests" msgstr "" @@ -957,7 +963,7 @@ msgstr "" msgid "Access token" msgstr "" -#: superset/views/core.py:317 +#: superset/views/core.py:318 msgid "Access was requested" msgstr "" @@ -965,7 +971,7 @@ msgstr "" msgid "Action" msgstr "Azione" -#: superset/initialization/__init__.py:393 +#: superset/initialization/__init__.py:387 msgid "Action Log" msgstr "" @@ -976,9 +982,10 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:569 #: superset-frontend/src/pages/CssTemplateList/index.tsx:229 #: superset-frontend/src/pages/DashboardList/index.tsx:477 -#: superset-frontend/src/pages/DatabaseList/index.tsx:448 -#: superset-frontend/src/pages/DatasetList/index.tsx:488 +#: superset-frontend/src/pages/DatabaseList/index.tsx:459 +#: superset-frontend/src/pages/DatasetList/index.tsx:499 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:327 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:216 #: superset-frontend/src/pages/SavedQueryList/index.tsx:437 #: superset-frontend/src/pages/Tags/index.tsx:171 msgid "Actions" @@ -1011,19 +1018,20 @@ msgstr "Valore del filtro" msgid "Actual values" msgstr "Valore del filtro" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:35 -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 #: superset-frontend/src/explore/controls.jsx:78 #: superset-frontend/src/explore/controls.jsx:101 #, fuzzy msgid "Adaptive formatting" msgstr "Formato Datetime" -#: superset-frontend/src/components/ReportModal/index.tsx:229 +#: superset-frontend/src/components/ReportModal/index.tsx:228 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 #: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 #: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 msgid "Add" msgstr "" @@ -1044,7 +1052,7 @@ msgstr "Template CSS" msgid "Add Chart" msgstr "Aggiungi grafico" -#: superset/connectors/sqla/views.py:74 +#: superset/connectors/sqla/views.py:73 msgid "Add Column" msgstr "Aggiungi colonna" @@ -1060,7 +1068,7 @@ msgstr "Aggiungi Database" msgid "Add Log" msgstr "" -#: superset/connectors/sqla/views.py:209 +#: superset/connectors/sqla/views.py:208 msgid "Add Metric" msgstr "Aggiungi metrica" @@ -1069,9 +1077,10 @@ msgstr "Aggiungi metrica" msgid "Add Report" msgstr "Importa" -#: superset/connectors/sqla/views.py:292 -msgid "Add Row level security filter" -msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +#, fuzzy +msgid "Add Rule" +msgstr "Formato Datetime" #: superset/views/sql_lab/views.py:54 msgid "Add Saved Query" @@ -1086,12 +1095,12 @@ msgstr "Aggiungi colonna" msgid "Add a dataset" msgstr "Aggiungi Database" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:262 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:272 #, fuzzy msgid "Add a new tab" msgstr "Query in un nuovo tab" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:286 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:296 msgid "Add a new tab to create SQL Query" msgstr "" @@ -1124,24 +1133,28 @@ msgstr "Azione" msgid "Add annotation layer" msgstr "Azione" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:300 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:306 msgid "Add calculated columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:297 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:303 msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:167 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:197 #, fuzzy msgid "Add cross-filter" msgstr "Aggiungi filtro" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 +msgid "Add custom scoping" +msgstr "" + #: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 msgid "Add delivery method" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:330 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 msgid "Add extra connection information." msgstr "" @@ -1213,7 +1226,7 @@ msgstr "" msgid "Add the name of the dashboard" msgstr "Salva e vai alla dashboard" -#: superset-frontend/src/explore/components/SaveModal.tsx:351 +#: superset-frontend/src/explore/components/SaveModal.tsx:386 msgid "Add to dashboard" msgstr "Aggiungi ad una nuova dashboard" @@ -1239,7 +1252,7 @@ msgstr[0] "Aggiungi ad una nuova dashboard" msgid "Additional Parameters" msgstr "Parametri" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1787 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1843 msgid "Additional fields may be required" msgstr "" @@ -1251,17 +1264,17 @@ msgstr "" msgid "Additional metadata" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:54 msgid "Additional padding for legend." msgstr "" -#: superset/db_engine_specs/base.py:1847 -#: superset/db_engine_specs/clickhouse.py:214 +#: superset/db_engine_specs/base.py:1885 +#: superset/db_engine_specs/clickhouse.py:221 #, fuzzy msgid "Additional parameters" msgstr "Parametri" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:444 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 #, fuzzy msgid "Additional settings." msgstr "Parametri" @@ -1278,17 +1291,18 @@ msgstr "" msgid "Additive" msgstr "Aggiungi filtro" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:75 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 msgid "Adjust how this database will interact with SQL Lab." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:221 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:231 msgid "Adjust performance settings of this database." msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:132 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:91 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:127 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:93 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 @@ -1297,7 +1311,7 @@ msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:939 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:771 #: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1811 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 msgid "Advanced" msgstr "" @@ -1401,7 +1415,6 @@ msgid "" "produce the cluster label." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:63 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:202 msgid "" "Aggregate function to apply when pivoting and computing the total rows " @@ -1414,13 +1427,16 @@ msgid "" " values to a dynamic color scale" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +#, fuzzy +msgid "Aggregation" +msgstr "Creato il" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 #, fuzzy msgid "Aggregation function" msgstr "Testa la Connessione" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:593 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:162 #, fuzzy msgid "Alert" @@ -1500,7 +1516,7 @@ msgstr "" msgid "Alerts" msgstr "" -#: superset/initialization/__init__.py:410 +#: superset/initialization/__init__.py:404 msgid "Alerts & Reports" msgstr "" @@ -1526,8 +1542,8 @@ msgstr "" #: superset-frontend/src/pages/DashboardList/index.tsx:528 #: superset-frontend/src/pages/DashboardList/index.tsx:550 #: superset-frontend/src/pages/DashboardList/index.tsx:600 -#: superset-frontend/src/pages/DatabaseList/index.tsx:465 -#: superset-frontend/src/pages/DatabaseList/index.tsx:485 +#: superset-frontend/src/pages/DatabaseList/index.tsx:476 +#: superset-frontend/src/pages/DatabaseList/index.tsx:496 #: superset-frontend/src/pages/Home/index.tsx:205 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:354 #: superset-frontend/src/pages/SavedQueryList/index.tsx:453 @@ -1536,7 +1552,7 @@ msgid "All" msgstr "" #: superset-frontend/src/pages/AllEntities/index.tsx:76 -#: superset/initialization/__init__.py:376 +#: superset/initialization/__init__.py:370 #, fuzzy msgid "All Entities" msgstr "Filtri" @@ -1548,13 +1564,18 @@ msgstr "Filtri" msgid "All Text" msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 #: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:69 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 #: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:85 #: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:128 msgid "All charts" msgstr "Grafico a Proiettile" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 +msgid "All charts/global scoping" +msgstr "" + #: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 msgid "All filters" msgstr "Filtri" @@ -1564,7 +1585,7 @@ msgstr "Filtri" msgid "All filters (%(filterCount)d)" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:49 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 msgid "All panels" msgstr "" @@ -1572,7 +1593,7 @@ msgstr "" msgid "All panels with this column will be affected by this filter" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:107 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 #: superset/views/database/mixins.py:184 msgid "Allow CREATE TABLE AS" msgstr "Permetti CREATE TABLE AS" @@ -1581,7 +1602,7 @@ msgstr "Permetti CREATE TABLE AS" msgid "Allow CREATE TABLE AS option in SQL Lab" msgstr "Permetti l'opzione CREATE TABLE AS in SQL Lab" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:121 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 #: superset/views/database/mixins.py:185 msgid "Allow CREATE VIEW AS" msgstr "Permetti CREATE TABLE AS" @@ -1594,7 +1615,7 @@ msgstr "Permetti l'opzione CREATE TABLE AS in SQL Lab" msgid "Allow Csv Upload" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 #: superset/views/database/mixins.py:186 msgid "Allow DML" msgstr "Permetti DML" @@ -1603,15 +1624,15 @@ msgstr "Permetti DML" msgid "Allow columns to be rearranged" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:110 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 msgid "Allow creation of new tables based on queries" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:124 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 msgid "Allow creation of new views based on queries" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:329 +#: superset-frontend/src/pages/DatabaseList/index.tsx:340 msgid "Allow data manipulation language" msgstr "" @@ -1621,11 +1642,11 @@ msgid "" "their changes won't persist for the next time they open the chart." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:411 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:421 msgid "Allow file uploads to database" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:157 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 msgid "" "Allow manipulation of the database using non-SELECT statements such as " "UPDATE, DELETE, CREATE, etc." @@ -1644,11 +1665,11 @@ msgstr "Seleziona una colonna" msgid "Allow sending multiple polygons as a filter event" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:186 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 msgid "Allow this database to be explored" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:91 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 msgid "Allow this database to be queried in SQL Lab" msgstr "" @@ -1692,20 +1713,20 @@ msgstr "Errore nel creare il datasource" msgid "An alert named \"%(name)s\" already exists" msgstr "Una o più metriche da mostrare" -#: superset/common/query_context_processor.py:326 superset/viz.py:1447 +#: superset/common/query_context_processor.py:326 superset/viz.py:1352 msgid "" "An enclosed time range (both start and end) must be specified when using " "a Time Comparison." msgstr "" -#: superset/databases/schemas.py:285 +#: superset/databases/schemas.py:289 msgid "" "An engine must be specified when passing individual parameters to a " "database." msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:791 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:141 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:183 #: superset-frontend/src/components/Tags/utils.tsx:67 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:127 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:109 @@ -1720,7 +1741,7 @@ msgstr "" msgid "An error occurred" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:317 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:323 msgid "An error occurred saving dataset" msgstr "Errore nel creare il datasource" @@ -1732,19 +1753,19 @@ msgstr "Errore nel creare il datasource" msgid "An error occurred while accessing the value." msgstr "Errore nel creare il datasource" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1368 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1360 msgid "" "An error occurred while collapsing the table schema. Please contact your " "administrator." msgstr "Errore nel creare il datasource" -#: superset-frontend/src/views/CRUD/hooks.ts:304 +#: superset-frontend/src/views/CRUD/hooks.ts:308 #, fuzzy, python-format msgid "An error occurred while creating %ss: %s" msgstr "Errore nel creare il datasource" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1529 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1551 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1530 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1552 msgid "An error occurred while creating the data source" msgstr "Errore nel creare il datasource" @@ -1762,7 +1783,7 @@ msgstr "Errore nel creare il datasource" msgid "An error occurred while deleting the value." msgstr "Errore nel rendering della visualizzazione: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1344 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1336 msgid "" "An error occurred while expanding the table schema. Please contact your " "administrator." @@ -1774,8 +1795,8 @@ msgid "An error occurred while fetching %s info: %s" msgstr "Errore nel creare il datasource" #: superset-frontend/src/views/CRUD/hooks.ts:174 -#: superset-frontend/src/views/CRUD/hooks.ts:261 -#: superset-frontend/src/views/CRUD/hooks.ts:349 +#: superset-frontend/src/views/CRUD/hooks.ts:265 +#: superset-frontend/src/views/CRUD/hooks.ts:353 #, fuzzy, python-format msgid "An error occurred while fetching %ss: %s" msgstr "Errore nel creare il datasource" @@ -1819,7 +1840,7 @@ msgstr "Errore nel creare il datasource" msgid "An error occurred while fetching dashboards: %s" msgstr "Errore nel creare il datasource" -#: superset-frontend/src/pages/DatabaseList/index.tsx:145 +#: superset-frontend/src/pages/DatabaseList/index.tsx:156 #, python-format msgid "An error occurred while fetching database related data: %s" msgstr "Errore nel recupero dei metadati della tabella" @@ -1836,26 +1857,26 @@ msgstr "Errore nel creare il datasource" msgid "An error occurred while fetching dataset datasource values: %s" msgstr "Errore nel creare il datasource" -#: superset-frontend/src/pages/DatasetList/index.tsx:510 +#: superset-frontend/src/pages/DatasetList/index.tsx:521 #, python-format msgid "An error occurred while fetching dataset owner values: %s" msgstr "Errore nel creare il datasource" -#: superset-frontend/src/pages/DatasetList/index.tsx:222 +#: superset-frontend/src/pages/DatasetList/index.tsx:233 msgid "An error occurred while fetching dataset related data" msgstr "Errore nel recupero dei metadati della tabella" -#: superset-frontend/src/pages/DatasetList/index.tsx:242 +#: superset-frontend/src/pages/DatasetList/index.tsx:253 #, python-format msgid "An error occurred while fetching dataset related data: %s" msgstr "Errore nel recupero dei metadati della tabella" -#: superset-frontend/src/pages/DatasetList/index.tsx:530 +#: superset-frontend/src/pages/DatasetList/index.tsx:541 #, python-format msgid "An error occurred while fetching datasets: %s" msgstr "Errore nel creare il datasource" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1581 +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx:120 #, fuzzy msgid "An error occurred while fetching function names." msgstr "Errore nel recupero dei metadati della tabella" @@ -1865,23 +1886,23 @@ msgstr "Errore nel recupero dei metadati della tabella" msgid "An error occurred while fetching owners values: %s" msgstr "Errore nel creare il datasource" -#: superset-frontend/src/pages/DatasetList/index.tsx:546 +#: superset-frontend/src/pages/DatasetList/index.tsx:557 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:378 #: superset-frontend/src/pages/SavedQueryList/index.tsx:480 #, python-format msgid "An error occurred while fetching schema values: %s" msgstr "Errore nel rendering della visualizzazione: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:799 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:795 msgid "An error occurred while fetching tab state" msgstr "Errore nel recupero dei metadati della tabella" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1199 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1224 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1191 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1216 msgid "An error occurred while fetching table metadata" msgstr "Errore nel recupero dei metadati della tabella" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1296 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1288 msgid "" "An error occurred while fetching table metadata. Please contact your " "administrator." @@ -1897,24 +1918,29 @@ msgstr "Errore nel rendering della visualizzazione: %s" msgid "An error occurred while fetching user values: %s" msgstr "Errore nel rendering della visualizzazione: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:835 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:831 #, fuzzy msgid "" "An error occurred while hiding the left bar. Please contact your " "administrator." msgstr "Errore nel creare il datasource" -#: superset-frontend/src/views/CRUD/hooks.ts:502 -#: superset-frontend/src/views/CRUD/hooks.ts:518 +#: superset-frontend/src/views/CRUD/hooks.ts:506 +#: superset-frontend/src/views/CRUD/hooks.ts:522 #, fuzzy, python-format msgid "An error occurred while importing %s: %s" msgstr "Errore nel rendering della visualizzazione: %s" +#: superset-frontend/src/explore/components/SaveModal.tsx:135 +#, fuzzy +msgid "An error occurred while loading dashboard information." +msgstr "Errore nel creare il datasource" + #: superset-frontend/src/components/Chart/chartAction.js:579 msgid "An error occurred while loading the SQL" msgstr "Errore nel creare il datasource" -#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:332 +#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:325 #, fuzzy msgid "An error occurred while opening Explore" msgstr "Errore nel rendering della visualizzazione: %s" @@ -1928,15 +1954,15 @@ msgstr "Errore nel creare il datasource" msgid "An error occurred while pruning logs " msgstr "Errore nel rendering della visualizzazione: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:892 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:888 msgid "An error occurred while removing query. Please contact your administrator." msgstr "Errore nel creare il datasource" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:857 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:853 msgid "An error occurred while removing tab. Please contact your administrator." msgstr "Errore nel creare il datasource" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1396 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1388 msgid "" "An error occurred while removing the table schema. Please contact your " "administrator." @@ -1947,39 +1973,39 @@ msgstr "Errore nel creare il datasource" msgid "An error occurred while rendering the visualization: %s" msgstr "Errore nel rendering della visualizzazione: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:710 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:706 msgid "" "An error occurred while setting the active tab. Please contact your " "administrator." msgstr "Errore nel creare il datasource" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:975 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:967 msgid "" "An error occurred while setting the tab autorun. Please contact your " "administrator." msgstr "Errore nel creare il datasource" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:915 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:911 msgid "" "An error occurred while setting the tab database ID. Please contact your " "administrator." msgstr "Errore nel creare il datasource" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1004 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1128 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:996 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1120 #, fuzzy msgid "" "An error occurred while setting the tab name. Please contact your " "administrator." msgstr "Errore nel creare il datasource" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:946 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:942 msgid "" "An error occurred while setting the tab schema. Please contact your " "administrator." msgstr "Errore nel creare il datasource" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1154 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1146 msgid "" "An error occurred while setting the tab template parameters. Please " "contact your administrator." @@ -1990,14 +2016,14 @@ msgstr "" msgid "An error occurred while starring this chart" msgstr "Errore nel creare il datasource" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:251 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:297 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:255 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:301 msgid "" "An error occurred while storing the latest query id in the backend. " "Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1095 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1087 msgid "" "An error occurred while storing your query in the backend. To avoid " "losing your changes, please save your query using the \"Save Query\" " @@ -2019,7 +2045,7 @@ msgstr "Errore nel creare il datasource" msgid "An unexpected error occurred" msgstr "" -#: superset/views/core.py:734 +#: superset/views/core.py:745 msgid "An unknown error occurred. Please contact your Superset administrator" msgstr "" @@ -2052,7 +2078,7 @@ msgstr "Azione" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:127 -#: superset/initialization/__init__.py:420 +#: superset/initialization/__init__.py:414 msgid "Annotation Layers" msgstr "" @@ -2213,7 +2239,8 @@ msgstr "" #: superset-frontend/src/pages/DashboardList/index.tsx:504 #: superset-frontend/src/pages/DashboardList/index.tsx:572 #: superset-frontend/src/pages/DashboardList/index.tsx:586 -#: superset-frontend/src/pages/DatasetList/index.tsx:570 +#: superset-frontend/src/pages/DatasetList/index.tsx:581 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:260 #, fuzzy msgid "Any" msgstr "giorno" @@ -2229,18 +2256,18 @@ msgid "" "dashboard's individual charts" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:953 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1008 msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:967 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1022 msgid "" "Any databases that allow connections via SQL Alchemy URIs can be added. " "Learn about how to connect a database driver " msgstr "" -#: superset/views/database/forms.py:169 superset/views/database/forms.py:326 -#: superset/views/database/forms.py:457 +#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 +#: superset/views/database/forms.py:467 msgid "Append" msgstr "" @@ -2259,7 +2286,7 @@ msgstr "Aggiungi filtro" msgid "Applied filters: %s" msgstr "Aggiungi filtro" -#: superset/viz.py:246 +#: superset/viz.py:250 msgid "" "Applied rolling window did not return any data. Please make sure the " "source query satisfies the minimum periods defined in the rolling window." @@ -2268,11 +2295,15 @@ msgstr "" #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:856 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:228 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:476 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:479 msgid "Apply" msgstr "Applica" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:100 +msgid "Apply conditional color formatting to metric" +msgstr "" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:386 msgid "Apply conditional color formatting to metrics" msgstr "" @@ -2322,6 +2353,7 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:509 #: superset-frontend/src/pages/DashboardList/index.tsx:418 #: superset-frontend/src/pages/DashboardList/index.tsx:739 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:173 #: superset-frontend/src/pages/Tags/index.tsx:144 msgid "Are you sure you want to delete" msgstr "" @@ -2348,7 +2380,7 @@ msgstr "" msgid "Are you sure you want to delete the selected dashboards?" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:741 +#: superset-frontend/src/pages/DatasetList/index.tsx:763 msgid "Are you sure you want to delete the selected datasets?" msgstr "" @@ -2360,6 +2392,10 @@ msgstr "" msgid "Are you sure you want to delete the selected queries?" msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:305 +msgid "Are you sure you want to delete the selected rules?" +msgstr "" + #: superset-frontend/src/pages/Tags/index.tsx:282 msgid "Are you sure you want to delete the selected tags?" msgstr "" @@ -2368,7 +2404,7 @@ msgstr "" msgid "Are you sure you want to delete the selected templates?" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:426 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:434 msgid "Are you sure you want to overwrite this dataset?" msgstr "" @@ -2376,7 +2412,7 @@ msgstr "" msgid "Are you sure you want to proceed?" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:174 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:216 msgid "Are you sure you want to save and apply changes?" msgstr "" @@ -2419,7 +2455,7 @@ msgstr "" msgid "Assign a set of parameters as" msgstr "" -#: superset/connectors/sqla/views.py:476 +#: superset/connectors/sqla/views.py:383 msgid "Associated Charts" msgstr "" @@ -2427,9 +2463,9 @@ msgstr "" msgid "Async Execution" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:295 -#: superset-frontend/src/pages/DatabaseList/index.tsx:309 -#: superset-frontend/src/pages/DatabaseList/index.tsx:475 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:305 +#: superset-frontend/src/pages/DatabaseList/index.tsx:320 +#: superset-frontend/src/pages/DatabaseList/index.tsx:486 msgid "Asynchronous query execution" msgstr "" @@ -2447,7 +2483,7 @@ msgstr "Descrizione" msgid "Auto Zoom" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:530 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 msgid "Autocomplete" msgstr "" @@ -2473,7 +2509,7 @@ msgstr "" msgid "Average" msgstr "Database" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:233 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 #, fuzzy msgid "Average value" msgstr "Valore del filtro" @@ -2510,10 +2546,10 @@ msgstr "" msgid "BOOLEAN" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:366 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1051 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1068 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1088 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:373 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1123 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1143 msgid "Back" msgstr "" @@ -2523,7 +2559,7 @@ msgstr "" msgid "Back to all" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:300 +#: superset-frontend/src/pages/DatabaseList/index.tsx:311 #: superset/views/database/mixins.py:200 msgid "Backend" msgstr "" @@ -2539,7 +2575,7 @@ msgstr "Valore del filtro" msgid "Bad formula." msgstr "Formato Datetime" -#: superset/viz.py:2509 superset/viz.py:2545 +#: superset/viz.py:2452 superset/viz.py:2492 msgid "Bad spatial key" msgstr "" @@ -2576,6 +2612,12 @@ msgstr "Valore del filtro" msgid "Bar orientation" msgstr "Azione" +#: superset-frontend/src/features/rls/constants.ts:28 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:263 +#, fuzzy +msgid "Base" +msgstr "Database" + #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:239 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 msgid "Base layer map style" @@ -2590,12 +2632,12 @@ msgstr "Seleziona una metrica" msgid "Based on granularity, number of time periods to compare against" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:228 msgid "Based on what should series be ordered on the chart and legend" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:854 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1723 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1779 msgid "Basic" msgstr "" @@ -2626,7 +2668,7 @@ msgid "Before" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:37 -#: superset/viz.py:1286 +#: superset/viz.py:1186 msgid "Big Number" msgstr "Numero Grande" @@ -2635,11 +2677,11 @@ msgid "Big Number Font Size" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:36 -#: superset/viz.py:1252 +#: superset/viz.py:1150 msgid "Big Number with Trendline" msgstr "Numero Grande con Linea del Trend" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 #, fuzzy msgid "Bottom" @@ -2671,7 +2713,6 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:261 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:277 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:263 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:251 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:195 @@ -2690,6 +2731,24 @@ msgid "" " the axis range. It won't narrow the data's extent." msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 +msgid "" +"Bounds for the primary Y-axis. When left empty, the bounds are " +"dynamically defined based on the min/max of the data. Note that this " +"feature will only expand the axis range. It won't narrow the data's " +"extent." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:411 +msgid "" +"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" +" bounds are enabled. When left empty, the bounds are " +"dynamically defined\n" +" based on the min/max of the data. Note that this feature " +"will only expand\n" +" the axis range. It won't narrow the data's extent." +msgstr "" + #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:58 #: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/createMetadata.ts:27 @@ -2702,7 +2761,7 @@ msgid "Breakdowns" msgstr "Creato il" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:32 -#: superset/viz.py:1171 +#: superset/viz.py:1065 msgid "Bubble Chart" msgstr "Grafico a Bolle" @@ -2734,14 +2793,15 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:789 #: superset-frontend/src/pages/CssTemplateList/index.tsx:262 #: superset-frontend/src/pages/DashboardList/index.tsx:662 -#: superset-frontend/src/pages/DatasetList/index.tsx:596 +#: superset-frontend/src/pages/DatasetList/index.tsx:607 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 #: superset-frontend/src/pages/SavedQueryList/index.tsx:177 #: superset-frontend/src/pages/Tags/index.tsx:267 msgid "Bulk select" msgstr "Seleziona %s" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 -#: superset/viz.py:1222 +#: superset/viz.py:1118 msgid "Bullet Chart" msgstr "Grafico a Proiettile" @@ -2757,7 +2817,7 @@ msgstr "Grafico a Proiettile" msgid "Business" msgstr "" -#: superset/connectors/sqla/views.py:165 +#: superset/connectors/sqla/views.py:164 msgid "Business Data Type" msgstr "" @@ -2788,16 +2848,16 @@ msgstr "" msgid "CANCEL" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1520 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1575 #, fuzzy msgid "CREATE DATASET" msgstr "Seleziona una destinazione" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:585 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:579 msgid "CREATE TABLE AS" msgstr "Permetti CREATE TABLE AS" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:596 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:590 msgid "CREATE VIEW AS" msgstr "Permetti CREATE TABLE AS" @@ -2823,7 +2883,7 @@ msgstr "CSS" msgid "CSS Styles" msgstr "" -#: superset/initialization/__init__.py:286 superset/views/css_templates.py:38 +#: superset/initialization/__init__.py:288 superset/views/css_templates.py:38 msgid "CSS Templates" msgstr "Template CSS" @@ -2856,26 +2916,26 @@ msgstr "Template CSS" msgid "CSV Upload" msgstr "" -#: superset/views/database/views.py:287 +#: superset/views/database/views.py:290 #, python-format msgid "" "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " "database \"%(db_name)s\"" msgstr "" -#: superset/views/database/views.py:160 +#: superset/views/database/views.py:161 msgid "CSV to Database configuration" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:344 +#: superset-frontend/src/pages/DatabaseList/index.tsx:355 msgid "CSV upload" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:130 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 msgid "CTAS & CVAS SCHEMA" msgstr "" -#: superset/sql_lab.py:440 +#: superset/sql_lab.py:432 msgid "" "CTAS (create table as select) can only be run with a query where the last" " statement is a SELECT. Please make sure your query has a SELECT as its " @@ -2886,7 +2946,7 @@ msgstr "" msgid "CTAS Schema" msgstr "Schema CTAS" -#: superset/sql_lab.py:457 +#: superset/sql_lab.py:449 msgid "" "CVAS (create view as select) can only be run with a query with a single " "SELECT statement. Please make sure your query has only a SELECT " @@ -2901,7 +2961,7 @@ msgstr "" msgid "CVAS (create view as select) query is not a SELECT statement." msgstr "" -#: superset/connectors/sqla/views.py:486 superset/views/chart/mixin.py:76 +#: superset/connectors/sqla/views.py:393 superset/views/chart/mixin.py:76 msgid "Cache Timeout" msgstr "Cache Timeout" @@ -2919,16 +2979,16 @@ msgstr "Cache Timeout" msgid "Cached" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:349 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:351 #, python-format msgid "Cached %s" msgstr "" -#: superset/viz.py:562 +#: superset/viz.py:578 msgid "Cached value not found" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:53 msgid "Calculate contribution per series or row" msgstr "" @@ -2950,7 +3010,7 @@ msgid "Calculation type" msgstr "Seleziona un tipo di visualizzazione" #: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 -#: superset/viz.py:1080 +#: superset/viz.py:972 msgid "Calendar Heatmap" msgstr "Calendario di Intensità" @@ -2963,17 +3023,17 @@ msgstr "" msgid "Can select multiple values" msgstr "" -#: superset/viz.py:1810 +#: superset/viz.py:1727 msgid "Can't have overlap between Series and Breakdowns" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:206 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:759 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:263 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:185 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 -#: superset-frontend/src/components/Modal/Modal.tsx:262 -#: superset-frontend/src/components/ReportModal/index.tsx:220 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:205 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:753 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:227 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:268 +#: superset-frontend/src/components/Modal/Modal.tsx:269 +#: superset-frontend/src/components/ReportModal/index.tsx:219 #: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:72 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:649 #: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 @@ -2981,14 +3041,14 @@ msgstr "" #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:76 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 -#: superset-frontend/src/explore/components/SaveModal.tsx:379 +#: superset-frontend/src/explore/components/SaveModal.tsx:413 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:843 #: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 #: superset/templates/superset/request_access.html:34 msgid "Cancel" msgstr "Annulla" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:314 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 msgid "Cancel query on window unload event" msgstr "" @@ -3004,7 +3064,7 @@ msgstr "" msgid "Cannot have multiple credentials for the SSH Tunnel" msgstr "" -#: superset/views/core.py:723 +#: superset/views/core.py:734 #, python-format msgid "" "Cannot import dashboard: %(db_error)s.\n" @@ -3070,7 +3130,7 @@ msgstr "" msgid "Category and Value" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:229 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:67 #, fuzzy msgid "Category name" msgstr "Ricerca Query" @@ -3085,15 +3145,15 @@ msgstr "" msgid "Category, Value and Percentage" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:103 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 msgid "Cell Padding" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:117 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 msgid "Cell Radius" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 #, fuzzy msgid "Cell Size" msgstr "Grandezza della bolla" @@ -3103,7 +3163,7 @@ msgstr "Grandezza della bolla" msgid "Cell bars" msgstr "Grafico a Proiettile" -#: superset-frontend/src/components/FilterableTable/index.tsx:431 +#: superset-frontend/src/components/FilterableTable/index.tsx:303 msgid "Cell content" msgstr "" @@ -3115,6 +3175,7 @@ msgstr "" msgid "Center" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:33 msgid "Centroid (Longitude and Latitude): " msgstr "" @@ -3136,7 +3197,7 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:699 #: superset-frontend/src/pages/DashboardList/index.tsx:580 -#: superset-frontend/src/pages/DatasetList/index.tsx:564 +#: superset-frontend/src/pages/DatasetList/index.tsx:575 #, fuzzy msgid "Certified" msgstr "Modificato" @@ -3169,7 +3230,7 @@ msgstr "" msgid "Change order of rows." msgstr "" -#: superset/connectors/sqla/views.py:478 +#: superset/connectors/sqla/views.py:385 msgid "Changed By" msgstr "Modificato da" @@ -3216,7 +3277,7 @@ msgstr "" msgid "Changing this control takes effect instantly" msgstr "" -#: superset/datasets/commands/exceptions.py:181 +#: superset/datasets/commands/exceptions.py:198 msgid "Changing this dataset is forbidden" msgstr "" @@ -3233,14 +3294,15 @@ msgstr "" msgid "Changing this report is forbidden" msgstr "" -#: superset/views/database/forms.py:196 +#: superset/views/database/forms.py:206 msgid "Character to interpret as decimal point" msgstr "" -#: superset/views/database/forms.py:375 +#: superset/views/database/forms.py:385 msgid "Character to interpret as decimal point." msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:51 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:449 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:405 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:69 @@ -3248,11 +3310,11 @@ msgstr "" #: superset-frontend/src/features/home/RightMenu.tsx:219 #: superset-frontend/src/pages/ChartList/index.tsx:369 #: superset-frontend/src/pages/ChartList/index.tsx:799 -#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:90 +#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 msgid "Chart" msgstr "" -#: superset/views/core.py:1727 +#: superset/views/core.py:1762 #, python-format msgid "Chart %(id)s not found" msgstr "" @@ -3261,7 +3323,7 @@ msgstr "" msgid "Chart Cache Timeout" msgstr "Cache Timeout" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:437 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:442 #, fuzzy, python-format msgid "Chart Data: %s" msgstr "Opzioni del grafico" @@ -3271,7 +3333,7 @@ msgstr "Opzioni del grafico" msgid "Chart ID" msgstr "Grafici" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:53 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:55 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:61 @@ -3293,7 +3355,7 @@ msgstr "Grafici" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:59 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:131 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:107 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:74 @@ -3340,34 +3402,34 @@ msgstr "Sorgente Dati" msgid "Chart Title" msgstr "Grafici" -#: superset-frontend/src/explore/actions/saveModalActions.js:127 +#: superset-frontend/src/explore/actions/saveModalActions.js:121 #, python-format msgid "Chart [%s] has been overwritten" msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:124 +#: superset-frontend/src/explore/actions/saveModalActions.js:118 #, fuzzy, python-format msgid "Chart [%s] has been saved" msgstr "La tua query non può essere salvata" -#: superset-frontend/src/explore/actions/saveModalActions.js:145 +#: superset-frontend/src/explore/actions/saveModalActions.js:139 #, python-format msgid "Chart [%s] was added to dashboard [%s]" msgstr "" -#: superset/views/core.py:1077 +#: superset/views/core.py:1099 msgid "Chart [{}] has been overwritten" msgstr "" -#: superset/views/core.py:1073 +#: superset/views/core.py:1095 msgid "Chart [{}] has been saved" msgstr "" -#: superset/views/core.py:1102 +#: superset/views/core.py:1124 msgid "Chart [{}] was added to dashboard [{}]" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:228 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:238 msgid "Chart cache timeout" msgstr "Cache Timeout" @@ -3427,7 +3489,7 @@ msgstr "Ultima Modifica" msgid "Chart last modified by" msgstr "Ultima Modifica" -#: superset-frontend/src/explore/components/SaveModal.tsx:320 +#: superset-frontend/src/explore/components/SaveModal.tsx:355 msgid "Chart name" msgstr "Grafici" @@ -3460,7 +3522,7 @@ msgstr "Grafici" msgid "Chart type" msgstr "Grafici" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:315 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 msgid "Chart type requires a dataset" msgstr "" @@ -3476,7 +3538,7 @@ msgstr "Grafici" #: superset-frontend/src/pages/Home/index.tsx:399 #: superset-frontend/src/profile/components/CreatedContent.tsx:104 #: superset-frontend/src/profile/components/Favorites.tsx:102 -#: superset/initialization/__init__.py:257 superset/views/chart/mixin.py:25 +#: superset/initialization/__init__.py:259 superset/views/chart/mixin.py:25 #: superset/views/dashboard/mixin.py:80 msgid "Charts" msgstr "Grafici" @@ -3509,7 +3571,7 @@ msgstr "" msgid "Check out this chart in dashboard:" msgstr "Rimuovi il grafico dalla dashboard" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:474 #, fuzzy msgid "Check out this chart: " msgstr "Guarda questa slice: %s" @@ -3540,11 +3602,11 @@ msgstr "" msgid "Child label position" msgstr "" -#: superset/viz.py:2370 +#: superset/viz.py:2307 msgid "Choice of [Label] must be present in [Group By]" msgstr "" -#: superset/viz.py:2378 +#: superset/viz.py:2315 msgid "Choice of [Point Radius] must be present in [Group By]" msgstr "" @@ -3557,7 +3619,7 @@ msgstr "Seleziona una sorgente" msgid "Choose a chart or dashboard not both" msgstr "Rimuovi il grafico dalla dashboard" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:924 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:979 #, fuzzy msgid "Choose a database..." msgstr "Seleziona una destinazione" @@ -3598,16 +3660,12 @@ msgstr "Seleziona una destinazione" msgid "Choose a target" msgstr "Seleziona una destinazione" -#: superset/connectors/sqla/views.py:327 -msgid "Choose a unique name" -msgstr "" - #: superset-frontend/src/pages/ChartCreation/index.tsx:404 #, fuzzy msgid "Choose chart type" msgstr "Grafici" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:745 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:739 msgid "Choose one of the available databases from the panel on the left." msgstr "" @@ -3686,7 +3744,8 @@ msgid "" "showcase a view into the underlying data or to show aggregated metrics." msgstr "" -#: superset/connectors/sqla/views.py:365 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:454 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:144 msgid "Clause" msgstr "" @@ -3698,7 +3757,7 @@ msgstr "" msgid "Clear all" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:206 +#: superset-frontend/src/components/Table/index.tsx:210 #, fuzzy msgid "Clear all data" msgstr "Grafico a Proiettile" @@ -3726,19 +3785,19 @@ msgstr "" msgid "Click the lock to prevent further changes." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1955 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2012 msgid "" "Click this link to switch to an alternate form that allows you to input " "the SQLAlchemy URL for this database manually." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1771 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1827 msgid "" "Click this link to switch to an alternate form that exposes only the " "required fields needed to connect this database." msgstr "" -#: superset-frontend/src/components/Table/index.tsx:213 +#: superset-frontend/src/components/Table/index.tsx:217 msgid "Click to cancel sorting" msgstr "" @@ -3748,16 +3807,10 @@ msgstr "" #: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 #, python-format -msgid "Click to edit %s in a new tab" -msgstr "" - -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:32 -#, python-format msgid "Click to edit %s." msgstr "" #: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:33 msgid "Click to edit chart." msgstr "" @@ -3778,27 +3831,27 @@ msgstr "" msgid "Click to see difference" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:212 +#: superset-frontend/src/components/Table/index.tsx:216 #, fuzzy msgid "Click to sort ascending" msgstr "Importa" -#: superset-frontend/src/components/Table/index.tsx:211 +#: superset-frontend/src/components/Table/index.tsx:215 #, fuzzy msgid "Click to sort descending" msgstr "Importa" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:83 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:132 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:52 #: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:209 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:219 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:224 #: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:786 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:408 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:414 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:339 #: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:36 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1109 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1164 msgid "Close" msgstr "" @@ -3831,15 +3884,15 @@ msgstr "" msgid "Collapse data panel" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:210 +#: superset-frontend/src/components/Table/index.tsx:214 msgid "Collapse row" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:598 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:599 msgid "Collapse tab content" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:197 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 msgid "Collapse table preview" msgstr "" @@ -3862,7 +3915,7 @@ msgstr "Seleziona la metrica" msgid "Color Scheme" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:129 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 msgid "Color Steps" msgstr "" @@ -3883,8 +3936,8 @@ msgid "Color of the target location" msgstr "" #: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:214 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:218 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 #: superset-frontend/src/explore/controlPanels/sections.tsx:60 #: superset-frontend/src/explore/controls.jsx:460 msgid "Color scheme" @@ -3904,8 +3957,8 @@ msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 #: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:204 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:250 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:256 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:137 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:140 #: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 @@ -3913,7 +3966,7 @@ msgstr "" #: superset-frontend/src/filters/components/Range/controlPanel.ts:39 #: superset-frontend/src/filters/components/Select/controlPanel.ts:49 #: superset-frontend/src/filters/components/Time/controlPanel.ts:37 -#: superset/connectors/sqla/views.py:155 +#: superset/connectors/sqla/views.py:154 msgid "Column" msgstr "Colonna" @@ -3929,13 +3982,18 @@ msgstr "" msgid "Column Configuration" msgstr "Controlli del filtro" +#: superset/views/database/forms.py:144 +#, fuzzy +msgid "Column Data Types" +msgstr "Analytics avanzate" + #: superset-frontend/src/explore/components/DataTableControl/index.tsx:194 #, fuzzy msgid "Column Formatting" msgstr "Formato Datetime" -#: superset/views/database/forms.py:222 superset/views/database/forms.py:383 -#: superset/views/database/forms.py:474 +#: superset/views/database/forms.py:232 superset/views/database/forms.py:393 +#: superset/views/database/forms.py:484 msgid "Column Label(s)" msgstr "" @@ -3953,6 +4011,11 @@ msgstr "" msgid "Column containing longitude data" msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:69 +#, fuzzy +msgid "Column datatype" +msgstr "Colonna" + #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 msgid "Column header tooltip" msgstr "" @@ -3962,19 +4025,19 @@ msgstr "" msgid "Column is required" msgstr "Sorgente Dati" -#: superset/views/database/forms.py:384 superset/views/database/forms.py:475 +#: superset/views/database/forms.py:394 superset/views/database/forms.py:485 msgid "" "Column label for index column(s). If None is given and Dataframe Index is" " True, Index Names are used." msgstr "" -#: superset/views/database/forms.py:223 +#: superset/views/database/forms.py:233 msgid "" "Column label for index column(s). If None is given and Dataframe Index is" " checked, Index Names are used" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:77 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:90 #, fuzzy msgid "Column name" msgstr "Colonna" @@ -3994,31 +4057,31 @@ msgstr "" msgid "Column select" msgstr "Seleziona una colonna" -#: superset/views/database/forms.py:211 +#: superset/views/database/forms.py:221 msgid "" "Column to use as the row labels of the dataframe. Leave empty if no index" " column" msgstr "" -#: superset/views/database/forms.py:342 +#: superset/views/database/forms.py:352 msgid "" "Column to use as the row labels of the dataframe. Leave empty if no index" " column." msgstr "" -#: superset/views/database/forms.py:414 +#: superset/views/database/forms.py:424 #, fuzzy msgid "Columnar File" msgstr "Colonna" -#: superset/views/database/views.py:565 +#: superset/views/database/views.py:568 #, python-format msgid "" "Columnar file \"%(columnar_filename)s\" uploaded to table " "\"%(table_name)s\" in database \"%(db_name)s\"" msgstr "" -#: superset/views/database/views.py:440 +#: superset/views/database/views.py:443 #, fuzzy msgid "Columnar to Database configuration" msgstr "Controlli del filtro" @@ -4035,15 +4098,15 @@ msgstr "Controlli del filtro" #: superset-frontend/src/explore/controls.jsx:244 #: superset-frontend/src/explore/fixtures.tsx:97 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 -#: superset/connectors/sqla/views.py:72 +#: superset/connectors/sqla/views.py:71 msgid "Columns" msgstr "" -#: superset/views/database/forms.py:183 +#: superset/views/database/forms.py:193 msgid "Columns To Be Parsed as Dates" msgstr "" -#: superset/views/database/forms.py:231 +#: superset/views/database/forms.py:241 #, fuzzy msgid "Columns To Read" msgstr "Mostra colonna" @@ -4053,7 +4116,7 @@ msgstr "Mostra colonna" msgid "Columns missing in dataset: %(invalid_columns)s" msgstr "" -#: superset/viz.py:577 +#: superset/viz.py:593 #, python-format msgid "Columns missing in datasource: %(invalid_columns)s" msgstr "" @@ -4095,11 +4158,6 @@ msgstr "" msgid "Columns to show" msgstr "Seleziona una metrica da visualizzare" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:85 -#, fuzzy -msgid "Combine Metrics" -msgstr "Mostra metrica" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:250 #, fuzzy msgid "Combine metrics" @@ -4158,6 +4216,7 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:35 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:35 @@ -4205,6 +4264,11 @@ msgstr "" msgid "Condition" msgstr "Testa la Connessione" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 +#, fuzzy +msgid "Conditional Formatting" +msgstr "Formato Datetime" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:385 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:504 msgid "Conditional formatting" @@ -4259,15 +4323,15 @@ msgstr "" msgid "Confirm overwrite" msgstr "Sovrascrivi la slice %s" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:180 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:222 msgid "Confirm save" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1059 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1097 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1656 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1695 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1857 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1152 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1712 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 #, fuzzy msgid "Connect" msgstr "Testa la Connessione" @@ -4280,9 +4344,9 @@ msgstr "" msgid "Connect Google Sheets as tables to this database" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1660 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1700 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1861 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1716 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1918 #, fuzzy msgid "Connect a database" msgstr "Database" @@ -4292,24 +4356,24 @@ msgstr "Database" msgid "Connect database" msgstr "Database" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1768 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 msgid "Connect this database using the dynamic form instead" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1950 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2007 msgid "Connect this database with a SQLAlchemy URI string instead" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:225 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 msgid "Connection" msgstr "Testa la Connessione" #: superset/databases/commands/exceptions.py:107 -#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1430 +#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1471 msgid "Connection failed, please check your connection settings" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:697 +#: superset-frontend/src/views/CRUD/hooks.ts:701 msgid "Connection looks good!" msgstr "" @@ -4334,7 +4398,7 @@ msgstr "" msgid "Contribution" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:42 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 msgid "Contribution Mode" msgstr "" @@ -4389,8 +4453,8 @@ msgstr "" msgid "Copy message" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:683 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1469 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:679 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1461 #: superset-frontend/src/SqlLab/reducers/sqlLab.js:107 #, python-format msgid "Copy of %s" @@ -4401,7 +4465,7 @@ msgid "Copy partition query to clipboard" msgstr "" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:329 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:468 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:340 #, fuzzy msgid "Copy permalink to clipboard" @@ -4427,7 +4491,7 @@ msgstr "" msgid "Copy the name of the database you are trying to connect to." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:273 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:271 #, fuzzy msgid "Copy to Clipboard" msgstr "copia URL in appunti" @@ -4449,7 +4513,12 @@ msgstr "Descrizione" msgid "Cost estimate" msgstr "" -#: superset/views/utils.py:498 +#: superset/db_engine_specs/ocient.py:259 +#, python-format +msgid "Could not connect to database: \"%(database)s\"" +msgstr "" + +#: superset/views/utils.py:496 msgid "Could not determine datasource type" msgstr "" @@ -4458,7 +4527,7 @@ msgstr "" msgid "Could not fetch all saved charts" msgstr "Non posso connettermi al server" -#: superset/views/utils.py:514 +#: superset/views/utils.py:512 msgid "Could not find viz object" msgstr "" @@ -4466,7 +4535,7 @@ msgstr "" msgid "Could not load database driver" msgstr "Non posso connettermi al server" -#: superset/views/core.py:1413 +#: superset/views/core.py:1454 #, python-format msgid "Could not load database driver: %(driver_name)s" msgstr "" @@ -4475,6 +4544,11 @@ msgstr "" msgid "Could not load database driver: {}" msgstr "Non posso connettermi al server" +#: superset/db_engine_specs/ocient.py:264 +#, python-format +msgid "Could not resolve hostname: \"%(host)s\"." +msgstr "" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 #, fuzzy msgid "Count" @@ -4518,12 +4592,12 @@ msgid "Country Field Type" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 -#: superset/viz.py:2044 +#: superset/viz.py:1969 msgid "Country Map" msgstr "Mappa della Nazione" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:767 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:761 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:770 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:96 #, fuzzy msgid "Create" @@ -4535,10 +4609,10 @@ msgid "Create Chart" msgstr "Esplora grafico" #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:331 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:321 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:332 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:356 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:327 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:338 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:362 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 #, fuzzy msgid "Create a dataset" @@ -4585,7 +4659,7 @@ msgstr "Creato il" msgid "Create new filter set" msgstr "Creato il" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 msgid "Create or select schema..." msgstr "" @@ -4608,7 +4682,7 @@ msgstr "Creato il" #: superset-frontend/src/pages/CssTemplateList/index.tsx:273 #: superset-frontend/src/pages/DashboardList/index.tsx:358 #: superset-frontend/src/pages/DashboardList/index.tsx:545 -#: superset-frontend/src/pages/DatabaseList/index.tsx:365 +#: superset-frontend/src/pages/DatabaseList/index.tsx:376 #: superset-frontend/src/pages/Tags/index.tsx:128 #: superset-frontend/src/pages/Tags/index.tsx:183 msgid "Created by" @@ -4638,9 +4712,8 @@ msgstr "" msgid "Creating a data source and creating a new tab" msgstr "" -#: superset/connectors/sqla/views.py:366 superset/views/chart/mixin.py:77 -#: superset/views/dashboard/mixin.py:84 superset/views/dashboard/views.py:185 -#: superset/views/database/mixins.py:189 +#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 +#: superset/views/dashboard/views.py:185 superset/views/database/mixins.py:189 msgid "Creator" msgstr "Creatore" @@ -4649,14 +4722,26 @@ msgstr "Creatore" msgid "Crimson" msgstr "Azione" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:122 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:152 msgid "Cross-filter will be applied to all of the charts that use this dataset." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:134 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:164 msgid "Cross-filtering is not enabled for this dashboard." msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 +#, fuzzy +msgid "Cross-filtering is not enabled in this dashboard" +msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." + +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:414 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 +#, fuzzy +msgid "Cross-filtering scoping" +msgstr "Cerca / Filtra" + #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 #, fuzzy msgid "Cross-filters" @@ -4684,7 +4769,7 @@ msgstr "" msgid "Custom Plugins" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:385 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:391 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 @@ -4695,8 +4780,7 @@ msgstr "" msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" msgstr "" -#: superset/connectors/sqla/utils.py:194 superset/errors.py:145 -#: superset/models/helpers.py:129 superset/models/helpers.py:864 +#: superset/errors.py:145 superset/models/helpers.py:138 msgid "Custom SQL fields cannot contain sub-queries." msgstr "" @@ -4721,7 +4805,7 @@ msgstr "Visualizza colonne" msgid "Cyclic dependency detected" msgstr "" -#: superset/connectors/sqla/views.py:256 +#: superset/connectors/sqla/views.py:255 msgid "D3 Format" msgstr "Formato D3" @@ -4731,7 +4815,7 @@ msgstr "Formato D3" msgid "D3 format" msgstr "Formato D3" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:22 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:146 msgid "D3 format syntax: https://github.com/d3/d3-format" msgstr "" @@ -4747,7 +4831,7 @@ msgstr "" msgid "D3 time format for datetime columns" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:53 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 msgid "D3 time format syntax: https://github.com/d3/d3-time-format" msgstr "" @@ -4770,7 +4854,7 @@ msgstr "" msgid "DELETE" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:332 +#: superset-frontend/src/pages/DatabaseList/index.tsx:343 msgid "DML" msgstr "" @@ -4799,12 +4883,12 @@ msgstr "" msgid "Dashboard" msgstr "Dashboard" -#: superset-frontend/src/explore/actions/saveModalActions.js:135 +#: superset-frontend/src/explore/actions/saveModalActions.js:129 #, python-format msgid "Dashboard [%s] just got created and chart [%s] was added to it" msgstr "" -#: superset/views/core.py:1122 +#: superset/views/core.py:1144 msgid "Dashboard [{}] just got created and chart [{}] was added to it" msgstr "" @@ -4871,7 +4955,7 @@ msgstr "Elenco Dashboard" #: superset-frontend/src/pages/Home/index.tsx:385 #: superset-frontend/src/profile/components/CreatedContent.tsx:101 #: superset-frontend/src/profile/components/Favorites.tsx:99 -#: superset/initialization/__init__.py:249 superset/views/chart/mixin.py:78 +#: superset/initialization/__init__.py:251 superset/views/chart/mixin.py:78 #: superset/views/dashboard/mixin.py:24 msgid "Dashboards" msgstr "Elenco Dashboard" @@ -4897,7 +4981,7 @@ msgstr "Elenco Dashboard" #: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:708 #: superset-frontend/src/features/home/RightMenu.tsx:169 -#: superset/initialization/__init__.py:244 +#: superset/initialization/__init__.py:246 msgid "Data" msgstr "Database" @@ -4906,7 +4990,7 @@ msgstr "Database" msgid "Data Table" msgstr "Modifica Tabella" -#: superset/datasets/commands/exceptions.py:197 +#: superset/datasets/commands/exceptions.py:214 msgid "Data URI is not allowed." msgstr "" @@ -4920,14 +5004,14 @@ msgstr "" msgid "Data Zoom" msgstr "" -#: superset/sqllab/commands/results.py:116 superset/views/core.py:2195 +#: superset/sqllab/commands/results.py:116 superset/views/core.py:2231 msgid "" "Data could not be deserialized from the results backend. The storage " "format might have changed, rendering the old data stake. You need to re-" "run the original query." msgstr "" -#: superset/sqllab/commands/results.py:75 superset/views/core.py:2148 +#: superset/sqllab/commands/results.py:75 superset/views/core.py:2184 msgid "" "Data could not be retrieved from the results backend. You need to re-run " "the original query." @@ -4941,7 +5025,7 @@ msgstr "" msgid "Data preview" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:283 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:278 msgid "Data refreshed" msgstr "" @@ -4960,51 +5044,51 @@ msgstr "Seleziona almeno una metrica" msgid "DataFrame must include temporal column" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:275 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:274 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -#: superset-frontend/src/pages/DatabaseList/index.tsx:267 -#: superset-frontend/src/pages/DatabaseList/index.tsx:296 -#: superset-frontend/src/pages/DatasetList/index.tsx:349 -#: superset-frontend/src/pages/DatasetList/index.tsx:520 +#: superset-frontend/src/pages/DatabaseList/index.tsx:278 +#: superset-frontend/src/pages/DatabaseList/index.tsx:307 +#: superset-frontend/src/pages/DatasetList/index.tsx:360 +#: superset-frontend/src/pages/DatasetList/index.tsx:531 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:241 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:349 #: superset-frontend/src/pages/SavedQueryList/index.tsx:287 #: superset-frontend/src/pages/SavedQueryList/index.tsx:448 -#: superset/connectors/sqla/views.py:479 superset/connectors/sqla/views.py:480 +#: superset/connectors/sqla/views.py:386 superset/connectors/sqla/views.py:387 #: superset/templates/superset/import_dashboards.html:53 -#: superset/views/database/forms.py:137 superset/views/database/forms.py:305 -#: superset/views/database/forms.py:436 superset/views/database/mixins.py:188 +#: superset/views/database/forms.py:137 superset/views/database/forms.py:315 +#: superset/views/database/forms.py:446 superset/views/database/mixins.py:188 #: superset/views/sql_lab/views.py:83 msgid "Database" msgstr "Database" -#: superset/views/database/views.py:478 +#: superset/views/database/views.py:481 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " "for columnar uploads. Please contact your Superset Admin." msgstr "" -#: superset/views/database/views.py:179 +#: superset/views/database/views.py:180 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " "for csv uploads. Please contact your Superset Admin." msgstr "" -#: superset/views/database/views.py:318 +#: superset/views/database/views.py:321 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " "for excel uploads. Please contact your Superset Admin." msgstr "" -#: superset/initialization/__init__.py:241 +#: superset/initialization/__init__.py:243 #, fuzzy msgid "Database Connections" msgstr "Testa la Connessione" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1467 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1522 #, fuzzy msgid "Database Creation Error" msgstr "Espressione del Database" @@ -5014,9 +5098,9 @@ msgid "Database URL" msgstr "URL del Database" #: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:827 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:849 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1150 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:882 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:904 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1205 #, fuzzy msgid "Database connected" msgstr "La tua query non può essere salvata" @@ -5043,7 +5127,7 @@ msgstr "" msgid "Database does not exist" msgstr "" -#: superset/connectors/sqla/models.py:1793 superset/models/helpers.py:1966 +#: superset/models/helpers.py:2063 #, fuzzy msgid "Database does not support subqueries" msgstr "Sorgente dati e tipo di grafico" @@ -5054,7 +5138,7 @@ msgid "" "documentation page for installation instructions: " msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:429 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 msgid "Database error" msgstr "Espressione del Database" @@ -5068,8 +5152,8 @@ msgid "Database is required for alerts" msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:113 -#: superset/db_engine_specs/base.py:1845 -#: superset/db_engine_specs/clickhouse.py:209 +#: superset/db_engine_specs/base.py:1880 +#: superset/db_engine_specs/clickhouse.py:212 msgid "Database name" msgstr "Database" @@ -5081,7 +5165,7 @@ msgstr "" msgid "Database not found." msgstr "" -#: superset/views/core.py:1179 +#: superset/views/core.py:1201 #, fuzzy, python-format msgid "Database not found: %(id)s" msgstr "Template CSS" @@ -5095,26 +5179,26 @@ msgstr "" msgid "Database passwords" msgstr "Database" -#: superset/db_engine_specs/base.py:1842 -#: superset/db_engine_specs/clickhouse.py:206 +#: superset/db_engine_specs/base.py:1876 +#: superset/db_engine_specs/clickhouse.py:208 #: superset/db_engine_specs/databricks.py:52 #, fuzzy msgid "Database port" msgstr "Database" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:811 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:853 #, fuzzy msgid "Database settings updated" msgstr "La tua query non può essere salvata" -#: superset-frontend/src/pages/DatabaseList/index.tsx:258 +#: superset-frontend/src/pages/DatabaseList/index.tsx:269 #: superset-frontend/src/profile/components/Security.tsx:47 #: superset/views/database/mixins.py:33 msgid "Databases" msgstr "Basi di dati" -#: superset/views/database/forms.py:219 superset/views/database/forms.py:380 -#: superset/views/database/forms.py:471 +#: superset/views/database/forms.py:229 superset/views/database/forms.py:390 +#: superset/views/database/forms.py:481 msgid "Dataframe Index" msgstr "" @@ -5126,7 +5210,7 @@ msgstr "" #: superset-frontend/src/pages/ChartCreation/index.tsx:390 #: superset-frontend/src/pages/ChartList/index.tsx:391 #: superset-frontend/src/pages/ChartList/index.tsx:678 -#: superset-frontend/src/pages/DatasetList/index.tsx:606 +#: superset-frontend/src/pages/DatasetList/index.tsx:617 msgid "Dataset" msgstr "Database" @@ -5135,7 +5219,7 @@ msgstr "Database" msgid "Dataset %(name)s already exists" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:331 +#: superset-frontend/src/explore/components/SaveModal.tsx:366 #, fuzzy msgid "Dataset Name" msgstr "Database" @@ -5150,29 +5234,29 @@ msgstr "La tua query non può essere salvata" msgid "Dataset column not found." msgstr "La tua query non può essere salvata" -#: superset/datasets/commands/exceptions.py:157 +#: superset/datasets/commands/exceptions.py:174 msgid "Dataset could not be created." msgstr "La tua query non può essere salvata" -#: superset/datasets/commands/exceptions.py:165 +#: superset/datasets/commands/exceptions.py:182 msgid "Dataset could not be deleted." msgstr "" -#: superset/datasets/commands/exceptions.py:193 +#: superset/datasets/commands/exceptions.py:210 #, fuzzy msgid "Dataset could not be duplicated." msgstr "La tua query non può essere salvata" -#: superset/datasets/commands/exceptions.py:161 -#: superset/datasets/commands/exceptions.py:173 +#: superset/datasets/commands/exceptions.py:178 +#: superset/datasets/commands/exceptions.py:190 msgid "Dataset could not be updated." msgstr "La tua query non può essere salvata" -#: superset/datasets/commands/exceptions.py:149 +#: superset/datasets/commands/exceptions.py:166 msgid "Dataset does not exist" msgstr "Sorgente dati e tipo di grafico" -#: superset-frontend/src/pages/DatasetList/index.tsx:185 +#: superset-frontend/src/pages/DatasetList/index.tsx:196 #, fuzzy msgid "Dataset imported" msgstr "Database" @@ -5196,22 +5280,22 @@ msgstr "Dashboard" msgid "Dataset name" msgstr "Database" -#: superset/datasets/commands/exceptions.py:153 +#: superset/datasets/commands/exceptions.py:170 msgid "Dataset parameters are invalid." msgstr "" -#: superset/dashboards/api.py:430 +#: superset/dashboards/api.py:415 #, python-format msgid "Dataset schema is invalid, caused by: %(error)s" msgstr "" -#: superset/datasets/commands/exceptions.py:169 +#: superset/datasets/commands/exceptions.py:186 msgid "Dataset(s) could not be bulk deleted." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:589 +#: superset-frontend/src/pages/DatasetList/index.tsx:600 #: superset-frontend/src/profile/components/Security.tsx:61 -#: superset/initialization/__init__.py:265 +#: superset/initialization/__init__.py:267 msgid "Datasets" msgstr "Basi di dati" @@ -5235,12 +5319,12 @@ msgstr "Sorgente Dati" msgid "Datasource & Chart Type" msgstr "Sorgente Dati" -#: superset/commands/exceptions.py:131 +#: superset/commands/exceptions.py:135 #, fuzzy msgid "Datasource does not exist" msgstr "Sorgente dati e tipo di grafico" -#: superset/commands/exceptions.py:123 +#: superset/commands/exceptions.py:127 msgid "Datasource type is invalid" msgstr "" @@ -5258,8 +5342,7 @@ msgstr "Formato Datetime" msgid "Date filter" msgstr "Aggiungi filtro" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:71 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:151 #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:135 @@ -5281,11 +5364,11 @@ msgstr "Formato Datetime" msgid "Date/Time" msgstr "Tempo" -#: superset/connectors/sqla/views.py:163 +#: superset/connectors/sqla/views.py:162 msgid "Datetime Format" msgstr "Formato Datetime" -#: superset/connectors/sqla/models.py:1237 superset/models/helpers.py:1427 +#: superset/models/helpers.py:1502 msgid "" "Datetime column not provided as part table configuration and is required " "by this type of chart" @@ -5297,7 +5380,7 @@ msgstr "" msgid "Datetime format" msgstr "Formato Datetime" -#: superset/db_engine_specs/base.py:106 +#: superset/db_engine_specs/base.py:107 #, fuzzy msgid "Day" msgstr "giorno" @@ -5311,7 +5394,7 @@ msgstr "" msgid "Days %s" msgstr "giorno" -#: superset/connectors/sqla/models.py:1936 superset/models/helpers.py:988 +#: superset/connectors/sqla/models.py:1222 superset/models/helpers.py:1024 msgid "Db engine did not return all queried columns" msgstr "" @@ -5324,47 +5407,56 @@ msgstr "Azione" msgid "December" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:70 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:89 msgid "Decides which column to sort the base axis by." msgstr "" -#: superset/views/database/forms.py:194 superset/views/database/forms.py:373 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:160 +msgid "Decides which measure to sort the base axis by." +msgstr "" + +#: superset/views/database/forms.py:204 superset/views/database/forms.py:383 msgid "Decimal Character" msgstr "" -#: superset/viz.py:2743 +#: superset/viz.py:2700 msgid "Deck.gl - 3D Grid" msgstr "" -#: superset/viz.py:2859 +#: superset/viz.py:2825 msgid "Deck.gl - 3D HEX" msgstr "" -#: superset/viz.py:2899 +#: superset/viz.py:2890 msgid "Deck.gl - Arc" msgstr "" -#: superset/viz.py:2880 +#: superset/viz.py:2869 msgid "Deck.gl - GeoJSON" msgstr "" -#: superset/viz.py:2468 +#: superset/viz.py:2848 +#, fuzzy +msgid "Deck.gl - Heatmap" +msgstr "Grafico a Proiettile" + +#: superset/viz.py:2406 msgid "Deck.gl - Multiple Layers" msgstr "" -#: superset/viz.py:2775 +#: superset/viz.py:2735 msgid "Deck.gl - Paths" msgstr "" -#: superset/viz.py:2826 +#: superset/viz.py:2789 msgid "Deck.gl - Polygon" msgstr "" -#: superset/viz.py:2662 +#: superset/viz.py:2612 msgid "Deck.gl - Scatter plot" msgstr "" -#: superset/viz.py:2714 +#: superset/viz.py:2668 msgid "Deck.gl - Screen Grid" msgstr "" @@ -5372,7 +5464,7 @@ msgstr "" msgid "Default" msgstr "Endpoint predefinito" -#: superset/connectors/sqla/views.py:484 +#: superset/connectors/sqla/views.py:391 msgid "Default Endpoint" msgstr "Endpoint predefinito" @@ -5504,11 +5596,13 @@ msgstr "" #: superset-frontend/src/pages/CssTemplateList/index.tsx:338 #: superset-frontend/src/pages/DashboardList/index.tsx:427 #: superset-frontend/src/pages/DashboardList/index.tsx:712 -#: superset-frontend/src/pages/DatasetList/index.tsx:418 -#: superset-frontend/src/pages/DatasetList/index.tsx:751 +#: superset-frontend/src/pages/DatasetList/index.tsx:429 +#: superset-frontend/src/pages/DatasetList/index.tsx:773 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:182 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:313 #: superset-frontend/src/pages/SavedQueryList/index.tsx:542 #: superset-frontend/src/pages/Tags/index.tsx:153 -#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:663 +#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:664 msgid "Delete" msgstr "Cancella" @@ -5521,11 +5615,11 @@ msgstr "Cancella" msgid "Delete Annotation?" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:529 +#: superset-frontend/src/pages/DatabaseList/index.tsx:551 msgid "Delete Database?" msgstr "Mostra database" -#: superset-frontend/src/pages/DatasetList/index.tsx:723 +#: superset-frontend/src/pages/DatasetList/index.tsx:745 msgid "Delete Dataset?" msgstr "" @@ -5547,7 +5641,7 @@ msgstr "Template CSS" msgid "Delete Template?" msgstr "Template CSS" -#: superset/views/base.py:663 +#: superset/views/base.py:664 msgid "Delete all Really?" msgstr "" @@ -5559,7 +5653,7 @@ msgstr "Azione" msgid "Delete dashboard tab?" msgstr "Inserisci un nome per la dashboard" -#: superset-frontend/src/pages/DatabaseList/index.tsx:405 +#: superset-frontend/src/pages/DatabaseList/index.tsx:416 msgid "Delete database" msgstr "Database" @@ -5582,6 +5676,11 @@ msgstr "" msgid "Delete this container and save to remove this message." msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:108 +#, fuzzy +msgid "Deleted" +msgstr "Cancella" + #: superset/annotation_layers/annotations/api.py:504 #, python-format msgid "Deleted %(num)d annotation" @@ -5594,7 +5693,7 @@ msgid "Deleted %(num)d annotation layer" msgid_plural "Deleted %(num)d annotation layers" msgstr[0] "" -#: superset/charts/api.py:524 +#: superset/charts/api.py:521 #, python-format msgid "Deleted %(num)d chart" msgid_plural "Deleted %(num)d charts" @@ -5606,13 +5705,13 @@ msgid "Deleted %(num)d css template" msgid_plural "Deleted %(num)d css templates" msgstr[0] "" -#: superset/dashboards/api.py:760 +#: superset/dashboards/api.py:745 #, python-format msgid "Deleted %(num)d dashboard" msgid_plural "Deleted %(num)d dashboards" msgstr[0] "Seleziona una dashboard" -#: superset/datasets/api.py:783 +#: superset/datasets/api.py:789 #, python-format msgid "Deleted %(num)d dataset" msgid_plural "Deleted %(num)d datasets" @@ -5624,19 +5723,30 @@ msgid "Deleted %(num)d report schedule" msgid_plural "Deleted %(num)d report schedules" msgstr[0] "" +#: superset/row_level_security/api.py:349 +#, fuzzy, python-format +msgid "Deleted %(num)d rules" +msgid_plural "Deleted %(num)d rules" +msgstr[0] "" + #: superset/queries/saved_queries/api.py:222 #, python-format msgid "Deleted %(num)d saved query" msgid_plural "Deleted %(num)d saved queries" msgstr[0] "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:94 +#, fuzzy, python-format +msgid "Deleted %s" +msgstr "Cancella" + #: superset-frontend/src/features/home/SavedQueries.tsx:172 #: superset-frontend/src/pages/AlertReportList/index.tsx:183 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 #: superset-frontend/src/pages/AnnotationList/index.tsx:117 #: superset-frontend/src/pages/CssTemplateList/index.tsx:93 -#: superset-frontend/src/pages/DatabaseList/index.tsx:158 -#: superset-frontend/src/pages/DatasetList/index.tsx:653 +#: superset-frontend/src/pages/DatabaseList/index.tsx:169 +#: superset-frontend/src/pages/DatasetList/index.tsx:664 #: superset-frontend/src/pages/SavedQueryList/index.tsx:242 #: superset-frontend/src/reports/actions/reports.js:158 #: superset-frontend/src/views/CRUD/utils.tsx:272 @@ -5655,7 +5765,7 @@ msgstr "" msgid "Delimited long & lat single column" msgstr "" -#: superset/views/database/forms.py:150 +#: superset/views/database/forms.py:160 msgid "Delimiter" msgstr "" @@ -5683,33 +5793,35 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:40 +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 #, fuzzy msgid "Deprecated" msgstr "Creato il" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:83 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:114 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:96 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:127 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:55 #: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:157 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:156 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:265 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1206 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1210 -#: superset-frontend/src/components/ReportModal/index.tsx:294 +#: superset-frontend/src/components/ReportModal/index.tsx:293 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1158 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:465 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 #: superset-frontend/src/pages/AnnotationList/index.tsx:161 -#: superset/connectors/sqla/views.py:157 superset/connectors/sqla/views.py:251 -#: superset/connectors/sqla/views.py:362 superset/connectors/sqla/views.py:491 -#: superset/views/chart/mixin.py:80 superset/views/sql_lab/views.py:84 +#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:398 superset/views/chart/mixin.py:80 +#: superset/views/sql_lab/views.py:84 msgid "Description" msgstr "Descrizione" @@ -5723,7 +5835,7 @@ msgstr "" msgid "Description Columns" msgstr "descrizione" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:50 msgid "Description text that shows up below your Big Number" msgstr "" @@ -5790,7 +5902,7 @@ msgstr "" msgid "Dimensions" msgstr "" -#: superset/viz.py:2005 +#: superset/viz.py:1928 msgid "Directed Force Layout" msgstr "Disposizione a Forza Diretta" @@ -5801,11 +5913,11 @@ msgstr "Disposizione a Forza Diretta" msgid "Directional" msgstr "descrizione" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:202 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 msgid "Disable SQL Lab data preview queries" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:205 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 msgid "" "Disable data preview when fetching table metadata in SQL Lab. Useful to " "avoid browser performance issues when using databases with very wide " @@ -5847,7 +5959,6 @@ msgstr "" msgid "Display configuration" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:87 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:252 msgid "" "Display metrics side by side within each column, as opposed to each " @@ -5858,15 +5969,11 @@ msgstr "" msgid "Display row level total" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:39 #, fuzzy msgid "Display settings" msgstr "Mostra query salvate" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:78 -msgid "Display total row/column" -msgstr "" - #: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:35 msgid "" "Displays connections between entities in a graph structure. Useful for " @@ -5887,7 +5994,7 @@ msgstr "" msgid "Distribution" msgstr "descrizione" -#: superset/viz.py:1801 +#: superset/viz.py:1717 msgid "Distribution - Bar Chart" msgstr "Distribuzione - Grafico Barre" @@ -5906,7 +6013,7 @@ msgstr "" msgid "Documentation" msgstr "Azione" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:40 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 msgid "Domain" msgstr "" @@ -5921,18 +6028,18 @@ msgstr "mese" msgid "Dotted" msgstr "Modifica" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:480 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:482 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:292 msgid "Download" msgstr "" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:317 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:504 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:512 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:329 msgid "Download as image" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:264 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:262 msgid "Download to CSV" msgstr "" @@ -5984,20 +6091,20 @@ msgstr "" msgid "Draw split lines for minor y-axis ticks" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:181 -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:191 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 msgid "Drill by" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:172 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 msgid "Drill by is not available for this data point" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:170 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 msgid "Drill by is not yet supported for this chart type" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:154 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:420 #, fuzzy, python-format msgid "Drill by: %s" msgstr "Importa" @@ -6026,61 +6133,37 @@ msgstr "" msgid "Drill to detail: %s" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:206 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:184 #, fuzzy msgid "Drop a column here or click" msgid_plural "Drop columns here or click" msgstr[0] "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:335 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:330 #, fuzzy msgid "Drop a column/metric here or click" msgid_plural "Drop columns/metrics here or click" msgstr[0] "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:248 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 msgid "Drop a temporal column here or click" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:216 -#, fuzzy -msgid "Drop column here" -msgid_plural "Drop columns here" -msgstr[0] "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:340 -#, fuzzy -msgid "Drop column or metric here" -msgid_plural "Drop columns or metrics here" -msgstr[0] "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndSelectLabel.tsx:83 -msgid "Drop columns here" -msgstr "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:402 -msgid "Drop columns or metrics here" -msgstr "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:401 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:405 msgid "Drop columns/metrics here or click" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 -msgid "Drop temporal column here" -msgstr "" - #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:32 #, fuzzy msgid "Dual Line Chart" msgstr "Grafico a Proiettile" #: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 -#: superset-frontend/src/pages/DatasetList/index.tsx:472 +#: superset-frontend/src/pages/DatasetList/index.tsx:483 msgid "Duplicate" msgstr "" -#: superset/views/datasource/views.py:122 +#: superset/views/datasource/views.py:124 #, python-format msgid "Duplicate column name(s): %(columns)s" msgstr "" @@ -6106,7 +6189,7 @@ msgstr "" msgid "Duration" msgstr "Descrizione" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:239 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:249 msgid "" "Duration (in seconds) of the caching timeout for charts of this database." " A timeout of 0 indicates that the cache never expires, and -1 bypasses " @@ -6134,28 +6217,28 @@ msgid "" "undefined." msgstr "Durata (in secondi) per il timeout della cache per questa slice." -#: superset/connectors/sqla/views.py:462 +#: superset/connectors/sqla/views.py:369 msgid "" "Duration (in seconds) of the caching timeout for this table. A timeout of" " 0 indicates that the cache never expires. Note this defaults to the " "database timeout if undefined." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:261 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:271 #, fuzzy msgid "" "Duration (in seconds) of the metadata caching timeout for schemas of this" " database. If left unset, the cache never expires." msgstr "Durata (in secondi) per il timeout della cache per questa slice." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:282 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:292 #, fuzzy msgid "" "Duration (in seconds) of the metadata caching timeout for tables of this " "database. If left unset, the cache never expires. " msgstr "Durata (in secondi) per il timeout della cache per questa slice." -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:50 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" msgstr "" @@ -6163,7 +6246,7 @@ msgstr "" msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:49 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 #: superset-frontend/src/explore/controls.jsx:89 msgid "Duration in ms (66000 => 1m 6s)" msgstr "" @@ -6203,7 +6286,7 @@ msgstr "" msgid "ECharts" msgstr "Grafici" -#: superset/reports/notifications/email.py:130 +#: superset/reports/notifications/email.py:133 #, fuzzy msgid "EMAIL_REPORTS_CTA" msgstr "Importa" @@ -6214,12 +6297,12 @@ msgstr "Importa" msgid "END (EXCLUSIVE)" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:171 +#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 #, fuzzy msgid "ERROR" msgstr "Errore..." -#: superset-frontend/src/views/CRUD/hooks.ts:700 +#: superset-frontend/src/views/CRUD/hooks.ts:704 #, python-format msgid "ERROR: %s" msgstr "" @@ -6251,8 +6334,9 @@ msgstr "Larghezza" #: superset-frontend/src/pages/AlertReportList/index.tsx:385 #: superset-frontend/src/pages/ChartList/index.tsx:553 #: superset-frontend/src/pages/DashboardList/index.tsx:461 -#: superset-frontend/src/pages/DatabaseList/index.tsx:431 -#: superset-frontend/src/pages/DatasetList/index.tsx:452 +#: superset-frontend/src/pages/DatabaseList/index.tsx:442 +#: superset-frontend/src/pages/DatasetList/index.tsx:463 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:200 msgid "Edit" msgstr "Modifica" @@ -6282,7 +6366,7 @@ msgstr "Modifica grafico" msgid "Edit Chart Properties" msgstr "Elenco Dashboard" -#: superset/connectors/sqla/views.py:75 +#: superset/connectors/sqla/views.py:74 msgid "Edit Column" msgstr "Edita colonna" @@ -6294,7 +6378,7 @@ msgstr "" msgid "Edit Database" msgstr "Mostra database" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:199 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:241 msgid "Edit Dataset " msgstr "Mostra database" @@ -6302,7 +6386,7 @@ msgstr "Mostra database" msgid "Edit Log" msgstr "Modifica" -#: superset/connectors/sqla/views.py:210 +#: superset/connectors/sqla/views.py:209 msgid "Edit Metric" msgstr "Modifica metrica" @@ -6315,15 +6399,16 @@ msgstr "Edita colonna" msgid "Edit Report" msgstr "Importa" -#: superset/connectors/sqla/views.py:293 -msgid "Edit Row level security filter" -msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +#, fuzzy +msgid "Edit Rule" +msgstr "Ricerca Query" #: superset/views/sql_lab/views.py:55 msgid "Edit Saved Query" msgstr "Modifica query salvata" -#: superset/connectors/sqla/views.py:387 +#: superset/connectors/sqla/views.py:294 msgid "Edit Table" msgstr "Modifica Tabella" @@ -6340,9 +6425,9 @@ msgstr "" msgid "Edit annotation layer properties" msgstr "Template CSS" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:74 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:122 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:44 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:212 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:217 #: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:405 #, fuzzy msgid "Edit chart" @@ -6358,7 +6443,7 @@ msgstr "" msgid "Edit dashboard" msgstr "Aggiungi ad una nuova dashboard" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1700 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 msgid "Edit database" msgstr "Mostra database" @@ -6368,7 +6453,7 @@ msgstr "Mostra database" #: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:243 #: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:264 -#: superset-frontend/src/components/ReportModal/index.tsx:212 +#: superset-frontend/src/components/ReportModal/index.tsx:211 msgid "Edit email report" msgstr "" @@ -6394,7 +6479,7 @@ msgstr "Template CSS" msgid "Edit template parameters" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:717 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:718 #: superset-frontend/src/dashboard/components/DashboardGrid.jsx:242 #, fuzzy msgid "Edit the dashboard" @@ -6420,8 +6505,9 @@ msgstr "" msgid "Either the database is spelled incorrectly or does not exist." msgstr "" -#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:654 -#: superset/db_engine_specs/redshift.py:67 +#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:681 +#: superset/db_engine_specs/redshift.py:71 +#: superset/db_engine_specs/starrocks.py:122 #, python-format msgid "Either the username \"%(username)s\" or the password is incorrect." msgstr "" @@ -6492,12 +6578,12 @@ msgstr "Testa la Connessione" msgid "Empty column" msgstr "Colonna" -#: superset/charts/data/api.py:363 +#: superset/charts/data/api.py:366 #, fuzzy msgid "Empty query result" msgstr "Query vuota?" -#: superset/connectors/sqla/models.py:1243 superset/models/helpers.py:1433 +#: superset/models/helpers.py:1508 msgid "Empty query?" msgstr "Query vuota?" @@ -6510,11 +6596,11 @@ msgstr "" msgid "Enable 'Allow file uploads to database' in any database's settings" msgstr "" -#: superset/connectors/sqla/views.py:482 +#: superset/connectors/sqla/views.py:389 msgid "Enable Filter Select" msgstr "Abilita il filtro di Select" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:139 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 msgid "Enable cross-filtering" msgstr "" @@ -6549,7 +6635,7 @@ msgstr "" msgid "Enable node dragging" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:170 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 msgid "Enable query cost estimation" msgstr "" @@ -6558,7 +6644,7 @@ msgstr "" msgid "Enable server side pagination of results (experimental feature)" msgstr "" -#: superset/viz.py:2567 +#: superset/viz.py:2514 msgid "" "Encountered invalid NULL spatial entry," " please consider filtering those " @@ -6606,19 +6692,19 @@ msgstr "La data di inizio non può essere dopo la data di fine" msgid "Engine \"%(engine)s\" cannot be configured through parameters." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:476 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:512 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:516 #, fuzzy msgid "Engine Parameters" msgstr "Parametri" -#: superset/databases/schemas.py:298 +#: superset/databases/schemas.py:302 msgid "" "Engine spec \"InvalidEngine\" does not support being configured via " "individual parameters." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:366 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:376 msgid "Enter CA_BUNDLE" msgstr "" @@ -6626,7 +6712,7 @@ msgstr "" msgid "Enter Primary Credentials" msgstr "" -#: superset/views/database/forms.py:151 +#: superset/views/database/forms.py:161 msgid "Enter a delimiter for this data" msgstr "" @@ -6638,14 +6724,14 @@ msgstr "" msgid "Enter a new title for the tab" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:234 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:255 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:276 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:244 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:286 msgid "Enter duration in seconds" msgstr "" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:265 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:367 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:369 msgid "Enter fullscreen" msgstr "" @@ -6672,7 +6758,7 @@ msgstr "" msgid "Equal to (=)" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:140 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:182 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:139 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:298 #: superset-frontend/src/explore/components/EmbedCodeContent.jsx:57 @@ -6682,22 +6768,22 @@ msgstr "" msgid "Error" msgstr "Errore..." -#: superset/connectors/sqla/models.py:1650 superset/models/helpers.py:1843 +#: superset/models/helpers.py:1919 #, python-format msgid "Error in jinja expression in HAVING clause: %(msg)s" msgstr "" -#: superset/connectors/sqla/models.py:1145 +#: superset/connectors/sqla/models.py:1105 superset/models/helpers.py:835 #, python-format msgid "Error in jinja expression in RLS filters: %(msg)s" msgstr "" -#: superset/connectors/sqla/models.py:1633 superset/models/helpers.py:1831 +#: superset/models/helpers.py:1901 #, python-format msgid "Error in jinja expression in WHERE clause: %(msg)s" msgstr "" -#: superset/connectors/sqla/models.py:826 +#: superset/connectors/sqla/models.py:789 #, python-format msgid "Error in jinja expression in fetch values predicate: %(msg)s" msgstr "" @@ -6722,7 +6808,7 @@ msgstr "Errore nel recupero dati" msgid "Error while fetching data: %s" msgstr "Errore nel recupero dati" -#: superset/connectors/sqla/models.py:953 superset/models/helpers.py:1029 +#: superset/connectors/sqla/models.py:914 superset/models/helpers.py:1072 #, fuzzy, python-format msgid "Error while rendering virtual dataset query: %(msg)s" msgstr "Errore nel recupero dati" @@ -6732,12 +6818,12 @@ msgstr "Errore nel recupero dati" msgid "Error: %(error)s" msgstr "" -#: superset/views/core.py:820 superset/views/core.py:1918 +#: superset/views/core.py:842 superset/views/core.py:1955 #, python-format msgid "Error: %(msg)s" msgstr "" -#: superset/views/core.py:817 +#: superset/views/core.py:839 msgid "Error: permalink state not found" msgstr "" @@ -6749,7 +6835,7 @@ msgstr "" msgid "Estimate selected query cost" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:621 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:615 msgid "Estimate the cost before running a query" msgstr "" @@ -6772,7 +6858,7 @@ msgstr "Nome Completo" msgid "Event definition" msgstr "" -#: superset/viz.py:2933 +#: superset/viz.py:2927 msgid "Event flow" msgstr "" @@ -6820,18 +6906,18 @@ msgstr "" msgid "Examples" msgstr "" -#: superset/views/database/forms.py:278 +#: superset/views/database/forms.py:288 msgid "Excel File" msgstr "" -#: superset/views/database/views.py:424 +#: superset/views/database/views.py:427 #, python-format msgid "" "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" " database \"%(db_name)s\"" msgstr "" -#: superset/views/database/views.py:303 +#: superset/views/database/views.py:306 msgid "Excel to Database configuration" msgstr "" @@ -6839,6 +6925,10 @@ msgstr "" msgid "Exclude selected values" msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:405 +msgid "Excluded roles" +msgstr "" + #: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 #, fuzzy msgid "Executed SQL" @@ -6856,17 +6946,17 @@ msgstr "" msgid "Execution log" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:411 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:419 #, fuzzy msgid "Existing dataset" msgstr "Seleziona una destinazione" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:264 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:366 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:368 msgid "Exit fullscreen" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 msgid "Expand" msgstr "" @@ -6878,11 +6968,11 @@ msgstr "" msgid "Expand data panel" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:209 +#: superset-frontend/src/components/Table/index.tsx:213 msgid "Expand row" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:197 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 msgid "Expand table preview" msgstr "" @@ -6899,6 +6989,7 @@ msgid "" msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:38 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:37 @@ -6913,11 +7004,11 @@ msgid "Experimental" msgstr "" #: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 -#: superset/views/core.py:987 +#: superset/views/core.py:1009 msgid "Explore" msgstr "Esplora grafico" -#: superset/views/core.py:985 +#: superset/views/core.py:1007 #, python-format msgid "Explore - %(table)s" msgstr "" @@ -6933,9 +7024,9 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:854 #: superset-frontend/src/pages/DashboardList/index.tsx:445 #: superset-frontend/src/pages/DashboardList/index.tsx:720 -#: superset-frontend/src/pages/DatabaseList/index.tsx:415 -#: superset-frontend/src/pages/DatasetList/index.tsx:434 -#: superset-frontend/src/pages/DatasetList/index.tsx:759 +#: superset-frontend/src/pages/DatabaseList/index.tsx:426 +#: superset-frontend/src/pages/DatasetList/index.tsx:445 +#: superset-frontend/src/pages/DatasetList/index.tsx:781 #: superset-frontend/src/pages/SavedQueryList/index.tsx:550 #: superset/views/dashboard/views.py:65 msgid "Export" @@ -6950,7 +7041,7 @@ msgstr "" msgid "Export query" msgstr "condividi query" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:485 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:487 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:316 #, fuzzy msgid "Export to .CSV" @@ -6961,20 +7052,21 @@ msgstr "Esporta in YAML" msgid "Export to .JSON" msgstr "Esporta in YAML" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:335 #, fuzzy msgid "Export to Excel" msgstr "Esporta in YAML" -#: superset/views/base.py:606 +#: superset/views/base.py:607 msgid "Export to YAML" msgstr "Esporta in YAML" -#: superset/views/base.py:606 +#: superset/views/base.py:607 msgid "Export to YAML?" msgstr "Esporta in YAML?" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:496 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:498 msgid "Export to full .CSV" msgstr "" @@ -6986,12 +7078,12 @@ msgstr "" msgid "Export to pivoted .CSV" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:88 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 msgid "Expose database in SQL Lab" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:354 -#: superset-frontend/src/pages/DatabaseList/index.tsx:460 +#: superset-frontend/src/pages/DatabaseList/index.tsx:365 +#: superset-frontend/src/pages/DatabaseList/index.tsx:471 #: superset/views/database/mixins.py:183 msgid "Expose in SQL Lab" msgstr "Esponi in SQL Lab" @@ -7000,12 +7092,12 @@ msgstr "Esponi in SQL Lab" msgid "Expose this DB in SQL Lab" msgstr "Esponi questo DB in SQL Lab" -#: superset/connectors/sqla/views.py:161 +#: superset/connectors/sqla/views.py:160 msgid "Expression" msgstr "Espressione" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:908 -#: superset/connectors/sqla/views.py:257 superset/connectors/sqla/views.py:494 +#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:401 #: superset/views/database/mixins.py:193 msgid "Extra" msgstr "Extra" @@ -7073,8 +7165,8 @@ msgstr "Creatore" msgid "Factor to multiply the metric by" msgstr "" -#: superset/views/database/forms.py:167 superset/views/database/forms.py:324 -#: superset/views/database/forms.py:455 +#: superset/views/database/forms.py:177 superset/views/database/forms.py:334 +#: superset/views/database/forms.py:465 msgid "Fail" msgstr "" @@ -7085,16 +7177,16 @@ msgid "Failed" msgstr "" #: superset-frontend/src/SqlLab/actions/sqlLab.js:210 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:346 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:350 msgid "Failed at retrieving results" msgstr "Errore nel recupero dei dati dal backend" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:500 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:496 #, python-format msgid "Failed at stopping query. %s" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:343 +#: superset-frontend/src/components/ReportModal/index.tsx:342 msgid "Failed to create report" msgstr "" @@ -7103,24 +7195,38 @@ msgstr "" msgid "Failed to execute %(query)s" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:97 +msgid "Failed to generate chart edit URL" +msgstr "" + #: superset-frontend/src/pages/Chart/index.tsx:57 msgid "Failed to load chart data" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:402 #: superset-frontend/src/pages/Chart/index.tsx:69 msgid "Failed to load chart data." msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 +msgid "Failed to load dimensions for drill by" +msgstr "" + #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 #, fuzzy msgid "Failed to retrieve advanced type" msgstr "Errore nel recupero dei dati dal backend" +#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +#, fuzzy +msgid "Failed to save cross-filter scoping" +msgstr "Cerca / Filtra" + #: superset/errors.py:143 superset/sqllab/sql_json_executer.py:189 msgid "Failed to start remote query on a worker." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:342 +#: superset-frontend/src/components/ReportModal/index.tsx:341 msgid "Failed to update report" msgstr "" @@ -7144,15 +7250,15 @@ msgstr "" msgid "February" msgstr "" -#: superset/connectors/sqla/views.py:488 +#: superset/connectors/sqla/views.py:395 msgid "Fetch Values Predicate" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:538 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:531 msgid "Fetch data preview" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:352 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:354 #, python-format msgid "Fetched %s" msgstr "" @@ -7220,13 +7326,18 @@ msgid "Filter Settings" msgstr "Abilita il filtro di Select" #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:825 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:362 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:373 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:134 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:255 #, fuzzy msgid "Filter Type" msgstr "Valore del filtro" #: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:28 -msgid "Filter box" -msgstr "Filtri" +msgid "Filter box (deprecated)" +msgstr "" #: superset-frontend/src/dashboard/components/SliceAdder.jsx:351 #, fuzzy @@ -7245,7 +7356,7 @@ msgstr "" msgid "Filter has default value" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:197 +#: superset-frontend/src/components/Table/index.tsx:201 #, fuzzy msgid "Filter menu" msgstr "Valore del filtro" @@ -7262,7 +7373,7 @@ msgstr "Valore del filtro" msgid "Filter only displays values relevant to selections made in other filters." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:289 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:283 msgid "Filter results" msgstr "Risultati della ricerca" @@ -7301,7 +7412,7 @@ msgstr "" msgid "Filter value is required" msgstr "Sorgente Dati" -#: superset/connectors/sqla/models.py:1549 superset/models/helpers.py:1754 +#: superset/models/helpers.py:1815 msgid "Filter value list cannot be empty" msgstr "" @@ -7309,7 +7420,7 @@ msgstr "" msgid "Filter your charts" msgstr "Controlli del filtro" -#: superset/connectors/sqla/views.py:159 +#: superset/connectors/sqla/views.py:158 msgid "Filterable" msgstr "Filtrabile" @@ -7317,7 +7428,7 @@ msgstr "Filtrabile" #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 #: superset-frontend/src/explore/controls.jsx:446 #: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:35 -#: superset/viz.py:2142 +#: superset/viz.py:2071 msgid "Filters" msgstr "Filtri" @@ -7343,7 +7454,7 @@ msgstr "Controlli del filtro" msgid "Filters out of scope (%d)" msgstr "" -#: superset/connectors/sqla/views.py:342 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:435 msgid "" "Filters with the same group key will be ORed together within the group, " "while different filter groups will be ANDed together. Undefined group " @@ -7355,9 +7466,9 @@ msgid "" " 'Europe')." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1077 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1125 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1857 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1132 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1180 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 msgid "Finish" msgstr "" @@ -7415,7 +7526,7 @@ msgstr "" msgid "Font size for the smallest value in the list" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:173 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 msgid "" "For Bigquery, Presto and Postgres, shows a button to compute cost before " "running a query." @@ -7431,7 +7542,7 @@ msgid "" "function, refer to the" msgstr "" -#: superset/connectors/sqla/views.py:336 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:408 msgid "" "For regular filters, these are the roles this filter will be applied to. " "For base filters, these are the roles that the filter DOES NOT apply to, " @@ -7443,27 +7554,27 @@ msgstr "" msgid "Force" msgstr "Sorgente" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:141 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 msgid "" "Force all tables and views to be created in this schema when clicking " "CTAS or CVAS in SQL Lab." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:84 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 #, fuzzy msgid "Force date format" msgstr "Formato Datetime" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:381 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 msgid "Force refresh" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:292 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:291 msgid "Force refresh schema list" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:317 +#: superset-frontend/src/components/TableSelector/index.tsx:307 msgid "Force refresh table list" msgstr "" @@ -7480,11 +7591,11 @@ msgstr "" msgid "Forest Green" msgstr "Ruoli per l'accesso" -#: superset/explore/commands/get.py:87 superset/views/core.py:834 +#: superset/explore/commands/get.py:87 superset/views/core.py:856 msgid "Form data not found in cache, reverting to chart metadata." msgstr "" -#: superset/explore/commands/get.py:95 superset/views/core.py:840 +#: superset/explore/commands/get.py:95 superset/views/core.py:862 msgid "Form data not found in cache, reverting to dataset metadata." msgstr "" @@ -7495,7 +7606,7 @@ msgstr "" msgid "Formattable" msgstr "Formato D3" -#: superset-frontend/src/components/ReportModal/index.tsx:255 +#: superset-frontend/src/components/ReportModal/index.tsx:254 msgid "Formatted CSV attached in email" msgstr "" @@ -7552,7 +7663,7 @@ msgstr "" msgid "Friday" msgstr "" -#: superset/utils/date_parser.py:267 superset/viz.py:392 +#: superset/utils/date_parser.py:267 superset/viz.py:403 msgid "From date cannot be larger than to date" msgstr "La data di inizio non può essere dopo la data di fine" @@ -7629,7 +7740,7 @@ msgstr "" msgid "Get the specify date for the holiday" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:713 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:714 msgid "Go to the edit mode to configure the dashboard and add charts" msgstr "" @@ -7685,20 +7796,23 @@ msgstr "Raggruppa per" msgid "Group By filter plugin" msgstr "" -#: superset/viz.py:927 -msgid "Group By' and 'Columns' can't overlap" -msgstr "" - #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:84 msgid "Group By, Metrics or Percentage Metrics must have a value" msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:433 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:139 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:267 +#, fuzzy +msgid "Group Key" +msgstr "Raggruppa per" + #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 msgid "Group by" msgstr "Raggruppa per" -#: superset/connectors/sqla/views.py:158 +#: superset/connectors/sqla/views.py:157 msgid "Groupable" msgstr "Raggruppabile" @@ -7726,12 +7840,12 @@ msgstr "è stata creata" msgid "Header" msgstr "" -#: superset/views/database/forms.py:244 superset/views/database/forms.py:331 +#: superset/views/database/forms.py:254 superset/views/database/forms.py:341 msgid "Header Row" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 -#: superset/viz.py:2249 +#: superset/viz.py:2183 msgid "Heatmap" msgstr "Mappa di Intensità" @@ -7755,7 +7869,7 @@ msgstr "" msgid "Hide Line" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:394 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:396 #, fuzzy msgid "Hide chart description" msgstr "descrizione" @@ -7784,12 +7898,12 @@ msgid "Hierarchy" msgstr "Cerca" #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 -#: superset/viz.py:1743 +#: superset/viz.py:1656 msgid "Histogram" msgstr "Istogramma" #: superset-frontend/src/pages/Home/index.tsx:333 -#: superset/initialization/__init__.py:233 +#: superset/initialization/__init__.py:235 msgid "Home" msgstr "" @@ -7798,7 +7912,7 @@ msgstr "" msgid "Horizon Chart" msgstr "Grafici d'orizzonte" -#: superset/viz.py:2310 +#: superset/viz.py:2246 msgid "Horizon Charts" msgstr "Grafici d'orizzonte" @@ -7807,7 +7921,7 @@ msgstr "Grafici d'orizzonte" msgid "Horizontal" msgstr "Grafici d'orizzonte" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:166 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 msgid "Horizontal (Top)" msgstr "" @@ -7819,12 +7933,12 @@ msgstr "" msgid "Host" msgstr "" -#: superset/db_engine_specs/base.py:1839 -#: superset/db_engine_specs/clickhouse.py:203 +#: superset/db_engine_specs/base.py:1872 +#: superset/db_engine_specs/clickhouse.py:204 msgid "Hostname or IP address" msgstr "" -#: superset/db_engine_specs/base.py:104 +#: superset/db_engine_specs/base.py:105 #, fuzzy msgid "Hour" msgstr "ora" @@ -7882,7 +7996,7 @@ msgstr "" msgid "Id of root node of the tree." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:391 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:401 msgid "" "If Presto or Trino, all the queries in SQL Lab are going to be executed " "as the currently logged on user who must have permission to run them. If " @@ -7900,7 +8014,7 @@ msgid "" "hive.server2.proxy.user property." msgstr "" -#: superset/views/database/forms.py:164 +#: superset/views/database/forms.py:174 #, fuzzy msgid "If Table Already Exists" msgstr "Una o più metriche da mostrare" @@ -7909,7 +8023,7 @@ msgstr "Una o più metriche da mostrare" msgid "If a metric is specified, sorting will be done based on the metric value" msgstr "" -#: superset/views/database/forms.py:238 +#: superset/views/database/forms.py:248 msgid "" "If duplicate columns are not overridden, they will be presented as \"X.1," " X.2 ...X.x\"" @@ -7919,7 +8033,7 @@ msgstr "" msgid "If selected, please set the schemas allowed for csv upload in Extra." msgstr "" -#: superset/views/database/forms.py:318 superset/views/database/forms.py:449 +#: superset/views/database/forms.py:328 superset/views/database/forms.py:459 msgid "" "If table exists do one of the following: Fail (do nothing), Replace (drop" " and recreate table) or Append (insert data)." @@ -7937,7 +8051,7 @@ msgstr "" msgid "Ignore time" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:252 +#: superset-frontend/src/components/ReportModal/index.tsx:251 msgid "Image (PNG) embedded in email" msgstr "" @@ -7945,7 +8059,7 @@ msgstr "" msgid "Image download failed, please refresh and try again." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:386 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:396 msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" msgstr "" @@ -7966,11 +8080,11 @@ msgstr "Importa" msgid "Import Dashboard(s)" msgstr "Importa dashboard" -#: superset/initialization/__init__.py:337 +#: superset/initialization/__init__.py:331 msgid "Import Dashboards" msgstr "Importa dashboard" -#: superset/connectors/sqla/views.py:386 +#: superset/connectors/sqla/views.py:293 msgid "Import a table definition" msgstr "" @@ -7996,16 +8110,16 @@ msgstr "Importa dashboard" msgid "Import database failed for an unknown reason" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1912 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1969 #, fuzzy msgid "Import database from file" msgstr "Mostra database" -#: superset/datasets/commands/exceptions.py:185 +#: superset/datasets/commands/exceptions.py:202 msgid "Import dataset failed for an unknown reason" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:620 +#: superset-frontend/src/pages/DatasetList/index.tsx:631 #, fuzzy msgid "Import datasets" msgstr "Mostra database" @@ -8034,7 +8148,7 @@ msgstr "Min" msgid "Include Series" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:295 +#: superset-frontend/src/components/ReportModal/index.tsx:294 msgid "Include a description that will be sent with your report" msgstr "" @@ -8052,7 +8166,7 @@ msgstr "" msgid "Index" msgstr "Min" -#: superset/views/database/forms.py:210 superset/views/database/forms.py:341 +#: superset/views/database/forms.py:220 superset/views/database/forms.py:351 msgid "Index Column" msgstr "" @@ -8091,11 +8205,23 @@ msgstr "Cerca / Filtra" msgid "Intensity" msgstr "" -#: superset/views/database/forms.py:190 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:85 +msgid "Intensity Radius" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:86 +msgid "Intensity Radius is the radius at which the weight is distributed" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:69 +msgid "Intensity is the value multiplied by the weight to obtain the final weight" +msgstr "" + +#: superset/views/database/forms.py:200 msgid "Interpret Datetime Format Automatically" msgstr "" -#: superset/views/database/forms.py:191 +#: superset/views/database/forms.py:201 msgid "Interpret the datetime format automatically" msgstr "" @@ -8129,6 +8255,16 @@ msgstr "Controlli del filtro" msgid "Intervals" msgstr "Filtrabile" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:68 +msgid "Intesity" +msgstr "" + +#: superset/db_engine_specs/ocient.py:274 +msgid "" +"Invalid Connection String: Expecting String of the form " +"'ocient://user:pass@host:port/database'." +msgstr "" + #: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 msgid "Invalid JSON" msgstr "" @@ -8142,7 +8278,7 @@ msgstr "" msgid "Invalid certificate" msgstr "" -#: superset/views/core.py:1422 +#: superset/views/core.py:1463 msgid "" "Invalid connection string, a valid string usually follows:\n" "'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" @@ -8171,15 +8307,15 @@ msgstr "" msgid "Invalid cumulative operator: %(operator)s" msgstr "" -#: superset/connectors/sqla/views.py:181 superset/datasets/schemas.py:44 +#: superset/connectors/sqla/views.py:180 superset/datasets/schemas.py:44 msgid "Invalid date/timestamp format" msgstr "" -#: superset/viz.py:2160 +#: superset/viz.py:2091 msgid "Invalid filter configuration, please select a column" msgstr "" -#: superset/connectors/sqla/models.py:1623 superset/models/helpers.py:1820 +#: superset/models/helpers.py:1891 #, python-format msgid "Invalid filter operation type: %(op)s" msgstr "" @@ -8204,7 +8340,7 @@ msgstr "" msgid "Invalid longitude/latitude" msgstr "" -#: superset/utils/core.py:1364 +#: superset/utils/core.py:1373 #, python-format msgid "Invalid metric object: %(metric)s" msgstr "" @@ -8223,7 +8359,12 @@ msgstr "" msgid "Invalid permalink key" msgstr "" -#: superset/common/query_actions.py:228 +#: superset/db_engine_specs/ocient.py:292 +#, python-format +msgid "Invalid reference to column: \"%(column)s\"" +msgstr "" + +#: superset/common/query_actions.py:227 #, python-format msgid "Invalid result type: %(result_type)s" msgstr "" @@ -8233,7 +8374,7 @@ msgstr "" msgid "Invalid rolling_type: %(type)s" msgstr "" -#: superset/viz.py:2530 +#: superset/viz.py:2474 #, python-format msgid "Invalid spatial point encountered: %s" msgstr "" @@ -8243,7 +8384,7 @@ msgstr "" msgid "Invalid state." msgstr "" -#: superset/reports/commands/create.py:144 +#: superset/reports/commands/create.py:142 #, python-format msgid "Invalid tab ids: %s(tab_ids)" msgstr "" @@ -8252,7 +8393,7 @@ msgstr "" msgid "Inverse selection" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:205 +#: superset-frontend/src/components/Table/index.tsx:209 #, fuzzy msgid "Invert current page" msgstr "Ultima Modifica" @@ -8273,7 +8414,7 @@ msgstr "" msgid "Is false" msgstr "Modifica Tabella" -#: superset/views/base_api.py:143 +#: superset/views/base_api.py:149 msgid "Is favorite" msgstr "" @@ -8290,13 +8431,13 @@ msgstr "" msgid "Is null" msgstr "" -#: superset/views/base_api.py:171 +#: superset/views/base_api.py:177 msgid "Is tagged" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:362 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 -#: superset/connectors/sqla/views.py:162 +#: superset/connectors/sqla/views.py:161 msgid "Is temporal" msgstr "è temporale" @@ -8340,7 +8481,7 @@ msgstr "Metadati JSON" msgid "JSON metadata is invalid!" msgstr "json non è valido" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 msgid "" "JSON string containing additional connection configuration. This is used " "to provide connection information for systems like Hive, Presto and " @@ -8377,24 +8518,24 @@ msgstr "" msgid "Jinja templating" msgstr "Template CSS" -#: superset/views/database/forms.py:233 +#: superset/views/database/forms.py:243 msgid "Json list of the column names that should be read" msgstr "" -#: superset/views/database/forms.py:464 +#: superset/views/database/forms.py:474 msgid "" "Json list of the column names that should be read. If not None, only " "these columns will be read from the file." msgstr "" -#: superset/views/database/forms.py:203 +#: superset/views/database/forms.py:213 msgid "" "Json list of the values that should be treated as null. Examples: [\"\"] " "for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " "Hive database supports only a single value" msgstr "" -#: superset/views/database/forms.py:394 +#: superset/views/database/forms.py:404 msgid "" "Json list of the values that should be treated as null. Examples: [\"\"]," " [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " @@ -8443,8 +8584,8 @@ msgstr "Filtri" msgid "LIMIT" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:80 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:109 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:93 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:122 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:251 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:255 @@ -8525,7 +8666,7 @@ msgstr "" msgid "Last" msgstr "" -#: superset/connectors/sqla/views.py:481 superset/views/database/mixins.py:190 +#: superset/connectors/sqla/views.py:388 superset/views/database/mixins.py:190 msgid "Last Changed" msgstr "Ultima Modifica" @@ -8552,7 +8693,7 @@ msgstr "" #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:177 #: superset-frontend/src/pages/ChartList/index.tsx:445 #: superset-frontend/src/pages/CssTemplateList/index.tsx:158 -#: superset-frontend/src/pages/DatabaseList/index.tsx:380 +#: superset-frontend/src/pages/DatabaseList/index.tsx:391 msgid "Last modified" msgstr "Ultima Modifica" @@ -8611,7 +8752,7 @@ msgstr "Ultima Modifica" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:28 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:90 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:371 #, fuzzy msgid "Left" @@ -8645,7 +8786,7 @@ msgstr "" msgid "Left to Right" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:144 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 #, fuzzy msgid "Left value" msgstr "Valore del filtro" @@ -8659,7 +8800,6 @@ msgstr "Valore del filtro" #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:33 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 #: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 #: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 @@ -8675,15 +8815,16 @@ msgstr "Valore del filtro" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:35 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 #: superset-frontend/src/visualizations/TimeTable/index.ts:35 msgid "Legacy" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:154 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:289 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:115 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:99 msgid "Legend" msgstr "" @@ -8692,7 +8833,7 @@ msgstr "" msgid "Legend Format" msgstr "Formato Datetime" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:95 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:92 #, fuzzy msgid "Legend Orientation" msgstr "Azione" @@ -8702,7 +8843,7 @@ msgstr "Azione" msgid "Legend Position" msgstr "Testa la Connessione" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:72 msgid "Legend type" msgstr "" @@ -8847,7 +8988,7 @@ msgid "Lines encoding" msgstr "Importa" #: superset-frontend/src/pages/SavedQueryList/index.tsx:226 -#: superset-frontend/src/views/CRUD/hooks.ts:673 +#: superset-frontend/src/views/CRUD/hooks.ts:677 msgid "Link Copied!" msgstr "" @@ -8876,7 +9017,7 @@ msgstr "" msgid "List of values to mark with triangles" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:187 +#: superset-frontend/src/components/TableSelector/index.tsx:184 msgid "List updated" msgstr "" @@ -8905,8 +9046,8 @@ msgid "Loading" msgstr "" #: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:495 -#: superset-frontend/src/components/Select/Select.tsx:470 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:496 +#: superset-frontend/src/components/Select/Select.tsx:477 #: superset-frontend/src/components/Select/utils.tsx:152 #: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 #: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 @@ -8935,13 +9076,13 @@ msgstr "" msgid "Logarithmic scale on primary y-axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:432 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:449 msgid "Logarithmic scale on secondary y-axis" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:396 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:420 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:429 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:437 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:446 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:222 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:225 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:210 @@ -9011,27 +9152,27 @@ msgstr "" msgid "MON" msgstr "" -#: superset/connectors/sqla/views.py:490 +#: superset/connectors/sqla/views.py:397 msgid "Main Datetime Column" msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:283 +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:292 msgid "" "Make sure that the controls are configured properly and the datasource " "contains data for the selected time range" msgstr "" -#: superset/views/core.py:1717 +#: superset/views/core.py:1752 msgid "" "Malformed request. slice_id or table_name and db_name arguments are " "expected" msgstr "" -#: superset/initialization/__init__.py:277 -#: superset/initialization/__init__.py:289 -#: superset/initialization/__init__.py:341 -#: superset/initialization/__init__.py:412 -#: superset/initialization/__init__.py:425 +#: superset/initialization/__init__.py:279 +#: superset/initialization/__init__.py:291 +#: superset/initialization/__init__.py:335 +#: superset/initialization/__init__.py:406 +#: superset/initialization/__init__.py:419 msgid "Manage" msgstr "Gestisci" @@ -9051,7 +9192,7 @@ msgstr "Database" msgid "Mandatory" msgstr "" -#: superset/views/database/forms.py:350 +#: superset/views/database/forms.py:360 msgid "Mangle Duplicate Columns" msgstr "" @@ -9070,6 +9211,8 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:67 @@ -9094,7 +9237,7 @@ msgstr "" msgid "MapBox" msgstr "Mapbox" -#: superset/viz.py:2322 +#: superset/viz.py:2258 msgid "Mapbox" msgstr "Mapbox" @@ -9102,11 +9245,11 @@ msgstr "Mapbox" msgid "March" msgstr "Cerca" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:50 msgid "Margin" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:348 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:354 msgid "Mark a column as temporal in \"Edit datasource\" modal" msgstr "" @@ -9186,7 +9329,7 @@ msgid "" "this insures that the circle respects this maximum radius." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:232 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 #, fuzzy msgid "Maximum value" msgstr "Valore del filtro" @@ -9239,7 +9382,7 @@ msgstr "" msgid "Menu actions trigger" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:237 +#: superset-frontend/src/components/ReportModal/index.tsx:236 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 msgid "Message content" msgstr "" @@ -9249,8 +9392,8 @@ msgstr "" msgid "Metadata" msgstr "Metadati JSON" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:450 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:454 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:486 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:490 #, fuzzy msgid "Metadata Parameters" msgstr "Parametri" @@ -9276,13 +9419,12 @@ msgstr "" #: superset-frontend/src/explore/controls.jsx:167 #: superset-frontend/src/explore/controls.jsx:168 #: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 -#: superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:249 msgid "Metric" msgstr "Metrica" -#: superset/connectors/sqla/models.py:1264 -#: superset/connectors/sqla/models.py:1847 superset/models/helpers.py:1192 -#: superset/models/helpers.py:1448 +#: superset/connectors/sqla/models.py:1133 superset/models/helpers.py:1236 +#: superset/models/helpers.py:1529 #, python-format msgid "Metric '%(metric)s' does not exist" msgstr "" @@ -9319,7 +9461,7 @@ msgstr "" msgid "Metric for node values" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:106 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:119 #, fuzzy msgid "Metric name" msgstr "Ricerca Query" @@ -9346,6 +9488,7 @@ msgstr "Seleziona una metrica da visualizzare" msgid "Metric to sort the results by" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:139 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:78 msgid "Metric used as a weight for the grid's coloring" msgstr "" @@ -9384,7 +9527,7 @@ msgstr "" #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 #: superset-frontend/src/explore/controls.jsx:152 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 -#: superset/connectors/sqla/views.py:207 +#: superset/connectors/sqla/views.py:206 msgid "Metrics" msgstr "Metriche" @@ -9467,11 +9610,11 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:85 #: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:152 msgid "Minimum threshold in percentage points for showing labels." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:231 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:69 #, fuzzy msgid "Minimum value" msgstr "Valore del filtro" @@ -9494,7 +9637,7 @@ msgstr "" msgid "Minor Split Line" msgstr "" -#: superset/db_engine_specs/base.py:99 +#: superset/db_engine_specs/base.py:100 #, fuzzy msgid "Minute" msgstr "minuto" @@ -9528,12 +9671,13 @@ msgstr "" #: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:278 #: superset-frontend/src/pages/AlertReportList/index.tsx:335 #: superset-frontend/src/pages/DashboardList/index.tsx:347 -#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:375 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:152 #: superset-frontend/src/pages/SavedQueryList/index.tsx:369 #: superset-frontend/src/pages/Tags/index.tsx:118 -#: superset/connectors/sqla/views.py:367 superset/connectors/sqla/views.py:495 -#: superset/views/dashboard/mixin.py:85 superset/views/dashboard/views.py:186 -#: superset/views/database/mixins.py:199 superset/views/sql_lab/views.py:85 +#: superset/connectors/sqla/views.py:402 superset/views/dashboard/mixin.py:85 +#: superset/views/dashboard/views.py:186 superset/views/database/mixins.py:199 +#: superset/views/sql_lab/views.py:85 msgid "Modified" msgstr "Modificato" @@ -9548,7 +9692,7 @@ msgstr "Ultima Modifica" #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 #: superset-frontend/src/pages/ChartList/index.tsx:431 #: superset-frontend/src/pages/DashboardList/index.tsx:326 -#: superset-frontend/src/pages/DatasetList/index.tsx:374 +#: superset-frontend/src/pages/DatasetList/index.tsx:385 msgid "Modified by" msgstr "Modificato" @@ -9561,7 +9705,7 @@ msgstr "" msgid "Monday" msgstr "" -#: superset/db_engine_specs/base.py:108 +#: superset/db_engine_specs/base.py:109 #, fuzzy msgid "Month" msgstr "mese" @@ -9629,7 +9773,7 @@ msgstr "" msgid "Multiple Line Charts" msgstr "Serie Temporali - Grafico Lineare" -#: superset/views/database/views.py:465 +#: superset/views/database/views.py:468 msgid "" "Multiple file extensions are not allowed for columnar uploads. Please " "make sure all files are of the same extension." @@ -9664,11 +9808,11 @@ msgstr "" msgid "Must choose either a chart or a dashboard" msgstr "Rimuovi il grafico dalla dashboard" -#: superset/viz.py:2346 +#: superset/viz.py:2283 msgid "Must have a [Group By] column to have 'count' as the [Label]" msgstr "" -#: superset/viz.py:1752 +#: superset/viz.py:1666 msgid "Must have at least one numeric column specified" msgstr "Devi specificare una colonna numerica" @@ -9676,7 +9820,7 @@ msgstr "Devi specificare una colonna numerica" msgid "Must provide credentials for the SSH Tunnel" msgstr "" -#: superset/connectors/sqla/models.py:1582 superset/models/helpers.py:1780 +#: superset/models/helpers.py:1848 msgid "Must specify a value for filters with comparison operators" msgstr "" @@ -9718,19 +9862,21 @@ msgid "NUMERIC" msgstr "Metrica" #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:149 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:782 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:212 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:148 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:789 #: superset-frontend/src/pages/AlertReportList/index.tsx:272 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 #: superset-frontend/src/pages/CssTemplateList/index.tsx:131 -#: superset-frontend/src/pages/DatasetList/index.tsx:334 +#: superset-frontend/src/pages/DatasetList/index.tsx:345 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:130 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:248 #: superset-frontend/src/pages/SavedQueryList/index.tsx:283 #: superset-frontend/src/pages/Tags/index.tsx:109 -#: superset/connectors/sqla/views.py:361 superset/views/chart/mixin.py:85 +#: superset/views/chart/mixin.py:85 msgid "Name" msgstr "Nome" @@ -9743,12 +9889,12 @@ msgstr "" msgid "Name must be unique" msgstr "" -#: superset/views/database/forms.py:406 +#: superset/views/database/forms.py:416 #, fuzzy msgid "Name of table to be created from columnar data." msgstr "Nome delle tabella esistente nella sorgente del database" -#: superset/views/database/forms.py:270 +#: superset/views/database/forms.py:280 msgid "Name of table to be created from excel data." msgstr "Nome delle tabella esistente nella sorgente del database" @@ -9770,7 +9916,7 @@ msgstr "Colonna del Tempo" msgid "Name of the source nodes" msgstr "" -#: superset/connectors/sqla/views.py:428 +#: superset/connectors/sqla/views.py:335 msgid "Name of the table that exists in the source database" msgstr "Nome delle tabella esistente nella sorgente del database" @@ -9830,17 +9976,17 @@ msgstr "Abilita il filtro di Select" msgid "New header" msgstr "Grafico a torta" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:329 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:331 msgid "New tab" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:268 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:310 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:278 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:320 msgid "New tab (Ctrl + q)" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:269 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:311 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:279 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:321 msgid "New tab (Ctrl + t)" msgstr "" @@ -9863,9 +10009,9 @@ msgstr "Esplora grafico" #: superset-frontend/src/pages/ChartList/index.tsx:708 #: superset-frontend/src/pages/DashboardList/index.tsx:507 #: superset-frontend/src/pages/DashboardList/index.tsx:589 -#: superset-frontend/src/pages/DatabaseList/index.tsx:468 -#: superset-frontend/src/pages/DatabaseList/index.tsx:488 -#: superset-frontend/src/pages/DatasetList/index.tsx:573 +#: superset-frontend/src/pages/DatabaseList/index.tsx:479 +#: superset-frontend/src/pages/DatabaseList/index.tsx:499 +#: superset-frontend/src/pages/DatasetList/index.tsx:584 msgid "No" msgstr "" @@ -9889,6 +10035,11 @@ msgstr "Metadati JSON" msgid "No Results" msgstr "visualizza risultati" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:235 +#, fuzzy +msgid "No Rules yet" +msgstr "Grafici" + #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:116 #, fuzzy msgid "No annotation layers" @@ -9927,7 +10078,7 @@ msgstr "Grafici" msgid "No columns" msgstr "Colonna" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:242 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 #, fuzzy msgid "No columns found" msgstr "Colonna del Tempo" @@ -9940,7 +10091,7 @@ msgstr "" msgid "No compatible datasets found" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 msgid "No compatible schema found" msgstr "" @@ -9953,14 +10104,14 @@ msgstr "" msgid "No dashboards yet" msgstr "Elenco Dashboard" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:133 -#: superset-frontend/src/components/Table/index.tsx:203 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 +#: superset-frontend/src/components/Table/index.tsx:207 #: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:225 #: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 msgid "No data" msgstr "Metadati JSON" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 msgid "No data after filtering or data is NULL for the latest time record" msgstr "" @@ -9982,10 +10133,6 @@ msgstr "" msgid "No description available." msgstr "descrizione" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:174 -msgid "No dimensions available for drill by" -msgstr "" - #: superset-frontend/src/profile/components/Favorites.tsx:61 msgid "No favorite charts yet, go click on stars!" msgstr "" @@ -10005,7 +10152,7 @@ msgstr "Aggiungi filtro" msgid "No filter is selected." msgstr "" -#: superset-frontend/src/components/Table/index.tsx:200 +#: superset-frontend/src/components/Table/index.tsx:204 #, fuzzy msgid "No filters" msgstr "Aggiungi filtro" @@ -10049,7 +10196,7 @@ msgid "No results" msgstr "visualizza risultati" #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:425 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:428 msgid "No results found" msgstr "Nessun record trovato" @@ -10057,7 +10204,7 @@ msgstr "Nessun record trovato" msgid "No results match your filter criteria" msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:280 +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:289 #: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 msgid "No results were returned for this query" msgstr "" @@ -10077,8 +10224,8 @@ msgstr "" msgid "No samples were returned for this dataset" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:293 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:311 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:299 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:317 #, fuzzy msgid "No saved expressions found" msgstr "Espressione SQL" @@ -10107,9 +10254,9 @@ msgstr "" msgid "No table columns" msgstr "Colonna del Tempo" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:292 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:310 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:345 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:298 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:316 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:351 #, fuzzy msgid "No temporal columns found" msgstr "Colonna del Tempo" @@ -10142,7 +10289,7 @@ msgid "Node size" msgstr "Grandezza della bolla" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:45 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:187 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:270 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:286 @@ -10152,12 +10299,12 @@ msgstr "Grandezza della bolla" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:402 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:182 #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:124 #: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 #: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:196 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:576 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:48 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:51 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:138 #: superset-frontend/src/explore/controlPanels/sections.tsx:134 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:127 @@ -10241,7 +10388,7 @@ msgstr "" msgid "Now" msgstr "" -#: superset/views/database/forms.py:201 +#: superset/views/database/forms.py:211 #, fuzzy msgid "Null Values" msgstr "Valore del filtro" @@ -10256,11 +10403,11 @@ msgstr "Azione" msgid "Null or Empty" msgstr "" -#: superset/views/database/forms.py:392 +#: superset/views/database/forms.py:402 msgid "Null values" msgstr "Valore del filtro" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:191 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 #, fuzzy msgid "Number Format" msgstr "Formato D3" @@ -10276,11 +10423,10 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:60 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:65 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:144 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:117 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:67 #: superset-frontend/plugins/legacy-plugin-chart-treemap/src/controlPanel.ts:67 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:97 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:137 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:276 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:137 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:113 @@ -10323,19 +10469,19 @@ msgstr "" msgid "Number of periods to ratio against" msgstr "" -#: superset/views/database/forms.py:255 +#: superset/views/database/forms.py:265 msgid "Number of rows of file to read" msgstr "" -#: superset/views/database/forms.py:361 +#: superset/views/database/forms.py:371 msgid "Number of rows of file to read." msgstr "" -#: superset/views/database/forms.py:261 +#: superset/views/database/forms.py:271 msgid "Number of rows to skip at start of file" msgstr "" -#: superset/views/database/forms.py:355 +#: superset/views/database/forms.py:365 msgid "Number of rows to skip at start of file." msgstr "" @@ -10359,15 +10505,15 @@ msgstr "" msgid "OCT" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:184 -#: superset-frontend/src/components/Modal/Modal.tsx:231 -#: superset-frontend/src/components/Table/index.tsx:198 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 +#: superset-frontend/src/components/Modal/Modal.tsx:238 +#: superset-frontend/src/components/Table/index.tsx:202 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:865 msgid "OK" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:267 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1379 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1434 msgid "OVERWRITE" msgstr "" @@ -10380,7 +10526,7 @@ msgstr "" msgid "Offline" msgstr "" -#: superset/connectors/sqla/views.py:485 +#: superset/connectors/sqla/views.py:392 msgid "Offset" msgstr "Offset" @@ -10421,27 +10567,27 @@ msgstr "" msgid "One or many metrics to display" msgstr "Una o più metriche da mostrare" -#: superset/datasets/commands/exceptions.py:90 +#: superset/datasets/commands/exceptions.py:107 msgid "One or more columns already exist" msgstr "" -#: superset/datasets/commands/exceptions.py:80 +#: superset/datasets/commands/exceptions.py:97 msgid "One or more columns are duplicated" msgstr "" -#: superset/datasets/commands/exceptions.py:70 +#: superset/datasets/commands/exceptions.py:87 msgid "One or more columns do not exist" msgstr "" -#: superset/datasets/commands/exceptions.py:119 +#: superset/datasets/commands/exceptions.py:136 msgid "One or more metrics already exist" msgstr "Una o più metriche da mostrare" -#: superset/datasets/commands/exceptions.py:109 +#: superset/datasets/commands/exceptions.py:126 msgid "One or more metrics are duplicated" msgstr "Una o più metriche da mostrare" -#: superset/datasets/commands/exceptions.py:99 +#: superset/datasets/commands/exceptions.py:116 msgid "One or more metrics do not exist" msgstr "Una o più metriche da mostrare" @@ -10457,7 +10603,7 @@ msgstr "" msgid "One or more parameters specified in the query are missing." msgstr "" -#: superset/views/core.py:1992 +#: superset/views/core.py:2029 msgid "" "One or more required fields are missing in the request. Please try again," " and if the problem persists contact your administrator." @@ -10467,23 +10613,23 @@ msgstr "" msgid "One ore more annotation layers failed loading." msgstr "" -#: superset/sql_lab.py:230 +#: superset/sql_lab.py:228 msgid "Only SELECT statements are allowed against this database." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:133 msgid "Only Total" msgstr "" -#: superset/connectors/sqla/utils.py:123 +#: superset/connectors/sqla/utils.py:122 msgid "Only `SELECT` statements are allowed" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:29 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 msgid "Only applies when \"Label Type\" is not set to a percentage." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:26 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 msgid "Only applies when \"Label Type\" is set to show values." msgstr "" @@ -10491,18 +10637,18 @@ msgstr "" msgid "Only selected panels will be affected by this filter" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:139 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 msgid "" "Only show the total value on the stacked chart, and not show on the " "selected category" msgstr "" -#: superset/connectors/sqla/utils.py:132 +#: superset/connectors/sqla/utils.py:131 msgid "Only single queries supported" msgstr "" -#: superset/views/database/forms.py:119 superset/views/database/forms.py:288 -#: superset/views/database/forms.py:426 +#: superset/views/database/forms.py:119 superset/views/database/forms.py:298 +#: superset/views/database/forms.py:436 #, python-format msgid "Only the following file extensions are allowed: %(allowed_extensions)s" msgstr "" @@ -10550,7 +10696,7 @@ msgstr "Esponi in SQL Lab" msgid "Open query in SQL Lab" msgstr "Esponi in SQL Lab" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:298 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 #: superset/views/database/mixins.py:104 msgid "" "Operate the database in asynchronous mode, meaning that the queries are " @@ -10559,8 +10705,8 @@ msgid "" " Refer to the installation docs for more information." msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:126 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:130 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 #, fuzzy msgid "Operator" msgstr "Seleziona operatore" @@ -10570,7 +10716,7 @@ msgstr "Seleziona operatore" msgid "Operator undefined for aggregator: %(name)s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:381 msgid "" "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" " certain database engines." @@ -10594,13 +10740,8 @@ msgstr "" msgid "Optional warning about use of this metric" msgstr "" -#: superset/connectors/sqla/views.py:328 -msgid "Optionally add a detailed description" -msgstr "" - #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:39 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:68 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:108 #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:74 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:45 #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:70 @@ -10614,7 +10755,7 @@ msgstr "" msgid "Options" msgstr "Azione" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:918 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:973 msgid "Or choose from a list of other databases we support:" msgstr "" @@ -10632,7 +10773,7 @@ msgstr "" msgid "Ordering" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:83 #, fuzzy msgid "Orientation" msgstr "Azione" @@ -10642,7 +10783,7 @@ msgstr "Azione" msgid "Orientation of bar chart" msgstr "Distribuzione - Grafico Barre" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:158 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 msgid "Orientation of filter bar" msgstr "" @@ -10659,7 +10800,7 @@ msgstr "Login" msgid "Original table column order" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 #: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 #: superset-frontend/src/explore/controls.jsx:79 @@ -10671,10 +10812,10 @@ msgid "Orthogonal" msgstr "" #: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:126 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:938 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:479 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:993 #: superset-frontend/src/features/home/EmptyState.tsx:112 -#: superset/views/database/forms.py:155 superset/views/database/forms.py:161 +#: superset/views/database/forms.py:165 superset/views/database/forms.py:171 #, fuzzy msgid "Other" msgstr "mese" @@ -10730,15 +10871,15 @@ msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:426 #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:493 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:459 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:463 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:464 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:148 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 msgid "Overwrite" msgstr "Sovrascrivi la slice %s" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:249 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:192 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:247 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 msgid "Overwrite & Explore" msgstr "Sovrascrivi la slice %s" @@ -10747,11 +10888,11 @@ msgstr "Sovrascrivi la slice %s" msgid "Overwrite Dashboard [%s]" msgstr "" -#: superset/views/database/forms.py:237 +#: superset/views/database/forms.py:247 msgid "Overwrite Duplicate Columns" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:404 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:412 msgid "Overwrite existing" msgstr "" @@ -10766,11 +10907,11 @@ msgstr "" #: superset-frontend/src/pages/AlertReportList/index.tsx:452 #: superset-frontend/src/pages/ChartList/index.tsx:608 #: superset-frontend/src/pages/DashboardList/index.tsx:523 -#: superset-frontend/src/pages/DatasetList/index.tsx:500 +#: superset-frontend/src/pages/DatasetList/index.tsx:511 msgid "Owner" msgstr "Proprietario" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:235 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:93 #: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:408 @@ -10785,14 +10926,14 @@ msgstr "Proprietario" #: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 #: superset-frontend/src/pages/AlertReportList/index.tsx:324 #: superset-frontend/src/pages/DashboardList/index.tsx:369 -#: superset-frontend/src/pages/DatasetList/index.tsx:389 -#: superset/connectors/sqla/views.py:489 superset/views/chart/mixin.py:82 +#: superset-frontend/src/pages/DatasetList/index.tsx:400 +#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:82 #: superset/views/dashboard/mixin.py:81 msgid "Owners" msgstr "Proprietari" -#: superset/commands/exceptions.py:108 -#: superset/datasets/commands/exceptions.py:144 +#: superset/commands/exceptions.py:112 +#: superset/datasets/commands/exceptions.py:161 msgid "Owners are invalid" msgstr "" @@ -10834,7 +10975,7 @@ msgid "Pandas resample rule" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 -#: superset/viz.py:2219 +#: superset/viz.py:2152 msgid "Parallel Coordinates" msgstr "Coordinate Parallele" @@ -10860,7 +11001,7 @@ msgstr "" msgid "Parent" msgstr "" -#: superset/views/database/forms.py:366 +#: superset/views/database/forms.py:376 msgid "Parse Dates" msgstr "" @@ -10879,7 +11020,7 @@ msgstr "" msgid "Partition Chart" msgstr "Esplora grafico" -#: superset/viz.py:3071 +#: superset/viz.py:3069 msgid "Partition Diagram" msgstr "" @@ -10899,7 +11040,7 @@ msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:154 #: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 -#: superset/db_engine_specs/base.py:1838 +#: superset/db_engine_specs/base.py:1870 #: superset/db_engine_specs/clickhouse.py:202 #, fuzzy msgid "Password" @@ -10955,7 +11096,7 @@ msgstr "Mostra metrica" #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:81 #: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:148 msgid "Percentage threshold" msgstr "" @@ -10973,7 +11114,7 @@ msgstr "" msgid "Percentages" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:219 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:229 msgid "Performance" msgstr "" @@ -11008,8 +11149,8 @@ msgid "Person or group that has certified this metric" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1114 -#: superset-frontend/src/pages/DatasetList/index.tsx:342 -#: superset-frontend/src/pages/DatasetList/index.tsx:560 +#: superset-frontend/src/pages/DatasetList/index.tsx:353 +#: superset-frontend/src/pages/DatasetList/index.tsx:571 msgid "Physical" msgstr "" @@ -11017,7 +11158,7 @@ msgstr "" msgid "Physical (table or view)" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:273 +#: superset-frontend/src/pages/DatasetList/index.tsx:284 msgid "Physical dataset" msgstr "Seleziona una destinazione" @@ -11026,29 +11167,29 @@ msgstr "Seleziona una destinazione" msgid "Pick a dimension from which categorical colors are defined" msgstr "" -#: superset/viz.py:769 +#: superset/viz.py:795 msgid "Pick a granularity in the Time section or uncheck 'Include Time'" msgstr "" "Seleziona una granularità nella sezione tempo e deseleziona 'Includi " "Tempo'" -#: superset/viz.py:1605 +#: superset/viz.py:1514 msgid "Pick a metric for left axis!" msgstr "Seleziona una metrica per l'asse sinistro" -#: superset/viz.py:1607 +#: superset/viz.py:1516 msgid "Pick a metric for right axis!" msgstr "Seleziona una metrica per l'asse destro" -#: superset/viz.py:1195 +#: superset/viz.py:1090 msgid "Pick a metric for x, y and size" msgstr "Seleziona una metrica per x, y e grandezza" -#: superset/viz.py:1234 +#: superset/viz.py:1131 msgid "Pick a metric to display" msgstr "Seleziona una metrica da visualizzare" -#: superset/viz.py:1260 superset/viz.py:1294 +#: superset/viz.py:1159 superset/viz.py:1195 msgid "Pick a metric!" msgstr "Seleziona una metrica!" @@ -11064,7 +11205,7 @@ msgstr "" msgid "Pick a set of deck.gl charts to layer on top of one another" msgstr "" -#: superset/viz.py:1390 superset/viz.py:1653 +#: superset/viz.py:1294 superset/viz.py:1564 msgid "Pick a time granularity for your time series" msgstr "Seleziona una granularità per la serie temporale" @@ -11072,15 +11213,15 @@ msgstr "Seleziona una granularità per la serie temporale" msgid "Pick a title for you annotation." msgstr "" -#: superset/viz.py:1815 +#: superset/viz.py:1732 msgid "Pick at least one field for [Series]" msgstr "Seleziona almeno un campo per [Series]" -#: superset/viz.py:857 superset/viz.py:1813 +#: superset/viz.py:887 superset/viz.py:1730 msgid "Pick at least one metric" msgstr "Seleziona almeno una metrica" -#: superset/viz.py:1943 +#: superset/viz.py:1863 msgid "Pick exactly 2 columns as [Source / Target]" msgstr "Seleziona esattamente 2 colonne come [Sorgente / Destinazione]" @@ -11109,19 +11250,10 @@ msgstr "" msgid "Pin" msgstr "Min" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:45 -msgid "Pivot Options" -msgstr "" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 -#: superset/viz.py:894 msgid "Pivot Table" msgstr "Vista Pivot" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:32 -msgid "Pivot Table (legacy)" -msgstr "" - #: superset/utils/pandas_postprocessing/pivot.py:70 msgid "Pivot operation must include at least one aggregate" msgstr "" @@ -11143,7 +11275,7 @@ msgstr "" msgid "Pixels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 msgid "Plain" msgstr "" @@ -11155,7 +11287,7 @@ msgstr "" msgid "Please apply filter changes" msgstr "" -#: superset/sqllab/query_render.py:120 +#: superset/sqllab/query_render.py:118 msgid "" "Please check your query and confirm that all template parameters are " "surround by double braces, for example, \"{{ ds }}\". Then, try running " @@ -11163,8 +11295,8 @@ msgid "" msgstr "" #: superset/db_engine_specs/athena.py:56 -#: superset/db_engine_specs/bigquery.py:210 -#: superset/db_engine_specs/postgres.py:161 +#: superset/db_engine_specs/bigquery.py:211 +#: superset/db_engine_specs/postgres.py:160 #: superset/db_engine_specs/snowflake.py:117 #, python-format msgid "" @@ -11172,7 +11304,7 @@ msgid "" "\"%(syntax_error)s\". Then, try running your query again." msgstr "" -#: superset/db_engine_specs/gsheets.py:80 superset/db_engine_specs/mysql.py:170 +#: superset/db_engine_specs/gsheets.py:82 superset/db_engine_specs/mysql.py:170 #, python-format msgid "" "Please check your query for syntax errors near \"%(server_error)s\". " @@ -11186,21 +11318,12 @@ msgid "" "your query again." msgstr "" -#: superset/viz.py:911 -#, fuzzy -msgid "Please choose at least one 'Group by' field" -msgstr "Seleziona almeno una metrica" - -#: superset/viz.py:3229 +#: superset/viz.py:3234 #, fuzzy msgid "Please choose at least one groupby" msgstr "Seleziona almeno una metrica" -#: superset/viz.py:923 -msgid "Please choose at least one metric" -msgstr "Seleziona almeno una metrica" - -#: superset/viz.py:1610 +#: superset/viz.py:1519 msgid "Please choose different metrics on left and right axis" msgstr "Seleziona metriche differenti per gli assi destro e sinistro" @@ -11216,18 +11339,20 @@ msgstr "Seleziona metriche differenti per gli assi destro e sinistro" #: superset-frontend/src/pages/DashboardList/index.tsx:415 #: superset-frontend/src/pages/DashboardList/index.tsx:701 #: superset-frontend/src/pages/DashboardList/index.tsx:756 -#: superset-frontend/src/pages/DatasetList/index.tsx:740 +#: superset-frontend/src/pages/DatasetList/index.tsx:762 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:170 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:304 #: superset-frontend/src/pages/SavedQueryList/index.tsx:533 #: superset-frontend/src/pages/Tags/index.tsx:141 #: superset-frontend/src/pages/Tags/index.tsx:281 msgid "Please confirm" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:442 +#: superset-frontend/src/dashboard/actions/dashboardState.js:447 msgid "Please confirm the overwrite values." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:624 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:641 msgid "Please enter a SQLAlchemy URI to test" msgstr "Inserisci un nome per la slice" @@ -11236,11 +11361,11 @@ msgstr "Inserisci un nome per la slice" msgid "Please filter set name" msgstr "Inserisci un nome per la dashboard" -#: superset/db_engine_specs/postgres.py:125 +#: superset/db_engine_specs/postgres.py:124 msgid "Please re-enter the password." msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:435 +#: superset-frontend/src/views/CRUD/hooks.ts:439 msgid "Please re-export your file and try importing again" msgstr "" @@ -11267,7 +11392,7 @@ msgstr "" msgid "Please select both a Dataset and a Chart type to proceed" msgstr "" -#: superset/viz.py:1193 +#: superset/viz.py:1088 msgid "Please use 3 different metric labels" msgstr "Seleziona metriche differenti per gli assi destro e sinistro" @@ -11282,7 +11407,7 @@ msgid "" "multiple metrics across all of the samples or rows in the data." msgstr "" -#: superset/initialization/__init__.py:275 +#: superset/initialization/__init__.py:277 msgid "Plugins" msgstr "" @@ -11380,13 +11505,17 @@ msgid "Port" msgstr "Importa" #: superset/db_engine_specs/mssql.py:98 -#: superset/db_engine_specs/postgres.py:135 -#: superset/db_engine_specs/presto.py:672 -#: superset/db_engine_specs/redshift.py:77 +#: superset/db_engine_specs/postgres.py:134 +#: superset/db_engine_specs/presto.py:699 +#: superset/db_engine_specs/redshift.py:81 #, python-format msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." msgstr "" +#: superset/db_engine_specs/ocient.py:269 +msgid "Port out of range 0-65535" +msgstr "" + #: superset/views/dashboard/mixin.py:86 msgid "Position JSON" msgstr "Posizione del JSON" @@ -11425,7 +11554,7 @@ msgstr "" msgid "Pre-filter is required" msgstr "Sorgente Dati" -#: superset/connectors/sqla/views.py:440 +#: superset/connectors/sqla/views.py:347 msgid "" "Predicate applied when fetching distinct value to populate the filter " "control component. Supports jinja template syntax. Applies only when " @@ -11473,7 +11602,7 @@ msgstr "" msgid "Previous" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:346 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:348 msgid "Previous Line" msgstr "" @@ -11496,6 +11625,10 @@ msgstr "Metrica" msgid "Primary or secondary y-axis" msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 +msgid "Primary y-axis Bounds" +msgstr "" + #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:387 msgid "Primary y-axis format" msgstr "" @@ -11513,7 +11646,7 @@ msgstr "" msgid "Private Key Password" msgstr "Porta Broker" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:269 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 #, fuzzy msgid "Proceed" msgstr "Creato il" @@ -11593,11 +11726,11 @@ msgstr "" msgid "Python datetime string pattern" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1530 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1585 msgid "QUERY DATA IN SQL LAB" msgstr "" -#: superset/db_engine_specs/base.py:109 +#: superset/db_engine_specs/base.py:110 #, fuzzy msgid "Quarter" msgstr "condividi query" @@ -11612,9 +11745,9 @@ msgstr "Opzioni del grafico" msgid "Queries" msgstr "Query salvate" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:51 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:43 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:53 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:30 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:33 #: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:90 @@ -11625,7 +11758,6 @@ msgstr "Query salvate" #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:36 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:32 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:34 #: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:30 @@ -11636,6 +11768,7 @@ msgstr "Query salvate" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:44 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:55 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:43 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:41 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:60 @@ -11649,7 +11782,7 @@ msgstr "Query salvate" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:361 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:34 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:35 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:44 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:43 @@ -11665,7 +11798,7 @@ msgstr "Query salvate" #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:152 #: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:30 #: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:26 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1479 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1471 #: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 #: superset-frontend/src/explore/controlPanels/sections.tsx:94 #: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:34 @@ -11677,7 +11810,7 @@ msgstr "Query salvate" msgid "Query" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:361 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:363 #, python-format msgid "Query %s: %s" msgstr "" @@ -11694,11 +11827,11 @@ msgstr "condividi query" msgid "Query B" msgstr "condividi query" -#: superset/initialization/__init__.py:366 +#: superset/initialization/__init__.py:360 msgid "Query History" msgstr "" -#: superset/commands/exceptions.py:138 +#: superset/commands/exceptions.py:142 #, fuzzy msgid "Query does not exist" msgstr "Sorgente dati e tipo di grafico" @@ -11714,7 +11847,7 @@ msgstr "Ricerca Query" msgid "Query imported" msgstr "Ricerca Query" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:465 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 msgid "Query in a new tab" msgstr "Query in un nuovo tab" @@ -11740,12 +11873,12 @@ msgstr "Ricerca Query" msgid "Query preview" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:415 #, fuzzy msgid "Query was stopped" msgstr "La query è stata fermata." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:498 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:494 msgid "Query was stopped." msgstr "La query è stata fermata." @@ -11758,6 +11891,16 @@ msgstr "" msgid "RGB Color" msgstr "" +#: superset/row_level_security/commands/exceptions.py:29 +#, fuzzy +msgid "RLS Rule could not be deleted." +msgstr "La query non può essere caricata" + +#: superset/row_level_security/commands/exceptions.py:25 +#, fuzzy +msgid "RLS Rule not found." +msgstr "Template CSS" + #: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:159 msgid "Radar" msgstr "" @@ -11896,7 +12039,7 @@ msgstr "" msgid "Rectangle" msgstr "" -#: superset/connectors/sqla/views.py:446 +#: superset/connectors/sqla/views.py:353 msgid "Redirects to this endpoint when clicking on the table from the table list" msgstr "Reinvia a questo endpoint al clic sulla tabella dall'elenco delle tabelle" @@ -11925,7 +12068,7 @@ msgstr "mese" msgid "Referenced columns not available in DataFrame." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:549 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:542 msgid "Refetch results" msgstr "Risultati della ricerca" @@ -11977,10 +12120,15 @@ msgstr "Colonna del Tempo" msgid "Regex" msgstr "" -#: superset/connectors/sqla/views.py:329 +#: superset-frontend/src/features/rls/constants.ts:24 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:262 +msgid "Regular" +msgstr "" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:364 msgid "" "Regular filters add where clauses to queries if a user belongs to a role " -"referenced in the filter. Base filters apply filters to all queries " +"referenced in the filter, base filters apply filters to all queries " "except the roles defined in the filter, and can be used to define what " "users can see if no RLS filters within a filter group apply to them." msgstr "" @@ -12027,7 +12175,7 @@ msgstr "" msgid "Remove" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:164 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:194 #, fuzzy msgid "Remove cross-filter" msgstr "Cerca / Filtra" @@ -12062,8 +12210,8 @@ msgstr "" msgid "Rendering" msgstr "Importa" -#: superset/views/database/forms.py:168 superset/views/database/forms.py:325 -#: superset/views/database/forms.py:456 +#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 +#: superset/views/database/forms.py:466 msgid "Replace" msgstr "" @@ -12077,13 +12225,12 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:593 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:163 #, fuzzy msgid "Report" msgstr "Importa" -#: superset-frontend/src/components/ReportModal/index.tsx:282 +#: superset-frontend/src/components/ReportModal/index.tsx:281 #, fuzzy msgid "Report Name" msgstr "Nome Completo" @@ -12206,7 +12353,7 @@ msgid "Request Permissions" msgstr "Richiesta di Permessi" #: superset/charts/data/api.py:153 superset/charts/data/api.py:243 -#: superset/charts/data/api.py:309 +#: superset/charts/data/api.py:312 #, python-format msgid "Request is incorrect: %(error)s" msgstr "" @@ -12215,7 +12362,7 @@ msgstr "" msgid "Request is not JSON" msgstr "" -#: superset/views/datasource/views.py:75 +#: superset/views/datasource/views.py:77 msgid "Request missing data field." msgstr "" @@ -12224,14 +12371,14 @@ msgstr "" msgid "Request timed out" msgstr "Cache Timeout" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:94 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:98 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:105 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:252 msgid "Required" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:342 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 msgid "Required control values have been removed" msgstr "" @@ -12252,11 +12399,11 @@ msgstr "" msgid "Resample operation requires DatetimeIndex" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:199 +#: superset-frontend/src/components/Table/index.tsx:203 msgid "Reset" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:293 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:280 msgid "Reset state" msgstr "" @@ -12281,14 +12428,15 @@ msgstr "Cerca / Filtra" msgid "Results" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 #: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:212 #: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 #, fuzzy, python-format msgid "Results %s" msgstr "visualizza risultati" -#: superset/sql_lab.py:410 superset/sqllab/commands/results.py:59 -#: superset/views/core.py:2133 +#: superset/sql_lab.py:402 superset/sqllab/commands/results.py:59 +#: superset/views/core.py:2169 msgid "Results backend is not configured." msgstr "" @@ -12314,12 +12462,12 @@ msgstr "" msgid "Rich Tooltip" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:178 msgid "Rich tooltip" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:372 #, fuzzy msgid "Right" @@ -12348,7 +12496,7 @@ msgstr "Metrica asse destro" msgid "Right to Left" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:157 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 msgid "Right value" msgstr "" @@ -12361,7 +12509,7 @@ msgstr "" msgid "Role" msgstr "Profilo" -#: superset/views/core.py:407 +#: superset/views/core.py:408 #, python-format msgid "Role %(r)s was extended to provide the access to the datasource %(ds)s" msgstr "" @@ -12370,8 +12518,10 @@ msgstr "" #: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:389 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:551 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:406 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:415 #: superset-frontend/src/profile/components/Security.tsx:35 -#: superset/connectors/sqla/views.py:364 superset/views/dashboard/mixin.py:82 +#: superset/views/dashboard/mixin.py:82 msgid "Roles" msgstr "Ruoli" @@ -12419,7 +12569,7 @@ msgstr "Testa la Connessione" msgid "Rolling window" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 #: superset/views/database/mixins.py:195 msgid "Root certificate" msgstr "" @@ -12450,31 +12600,29 @@ msgstr "" msgid "Round cap" msgstr "Mappa della Nazione" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 #: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 msgid "Row" msgstr "" -#: superset/initialization/__init__.py:295 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:70 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:302 +#: superset/initialization/__init__.py:436 msgid "Row Level Security" msgstr "" -#: superset/views/database/forms.py:245 +#: superset/views/database/forms.py:255 msgid "" "Row containing the headers to use as column names (0 is first line of " "data). Leave empty if there is no header row" msgstr "" -#: superset/views/database/forms.py:332 +#: superset/views/database/forms.py:342 msgid "" "Row containing the headers to use as column names (0 is first line of " "data). Leave empty if there is no header row." msgstr "" -#: superset/connectors/sqla/views.py:290 -msgid "Row level security filter" -msgstr "" - #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:247 #: superset-frontend/src/explore/controls.jsx:340 msgid "Row limit" @@ -12497,7 +12645,7 @@ msgstr "" msgid "Rows subtotal position" msgstr "" -#: superset/views/database/forms.py:254 superset/views/database/forms.py:360 +#: superset/views/database/forms.py:264 superset/views/database/forms.py:370 msgid "Rows to Read" msgstr "" @@ -12507,10 +12655,20 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:504 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:233 #: superset-frontend/src/explore/controlPanels/sections.tsx:230 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:286 msgid "Rule" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:54 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:355 +#, fuzzy +msgid "Rule Name" +msgstr "Ricerca Query" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:253 +msgid "Rule added" +msgstr "" + +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:53 msgid "Run" msgstr "" @@ -12527,12 +12685,12 @@ msgstr "" msgid "Run in SQL Lab" msgstr "Esponi in SQL Lab" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:309 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:319 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:311 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:321 msgid "Run query" msgstr "condividi query" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:131 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:132 msgid "Run query (Ctrl + Return)" msgstr "" @@ -12540,7 +12698,7 @@ msgstr "" msgid "Run query in a new tab" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:52 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:51 msgid "Run selection" msgstr "Seleziona una colonna" @@ -12549,7 +12707,7 @@ msgstr "Seleziona una colonna" msgid "Running" msgstr "" -#: superset/sql_lab.py:488 +#: superset/sql_lab.py:480 #, python-format msgid "Running statement %(statement_num)s out of %(statement_count)s" msgstr "" @@ -12571,8 +12729,8 @@ msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 #: superset-frontend/src/features/home/commonMenuData.ts:22 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:312 -#: superset/initialization/__init__.py:354 -#: superset/initialization/__init__.py:362 +#: superset/initialization/__init__.py:348 +#: superset/initialization/__init__.py:356 msgid "SQL" msgstr "" @@ -12580,17 +12738,17 @@ msgstr "" msgid "SQL Copied!" msgstr "" -#: superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:253 msgid "SQL Expression" msgstr "Espressione SQL" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:73 -#: superset/initialization/__init__.py:349 -#: superset/initialization/__init__.py:371 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 +#: superset/initialization/__init__.py:343 +#: superset/initialization/__init__.py:365 msgid "SQL Lab" msgstr "" -#: superset/connectors/sqla/views.py:492 +#: superset/connectors/sqla/views.py:399 msgid "SQL Lab View" msgstr "Vista Tabella" @@ -12711,7 +12869,7 @@ msgstr "" msgid "Samples" msgstr "Tabelle" -#: superset/datasets/commands/exceptions.py:177 +#: superset/datasets/commands/exceptions.py:194 #, fuzzy msgid "Samples for dataset could not be retrieved." msgstr "La tua query non può essere salvata" @@ -12721,7 +12879,7 @@ msgstr "La tua query non può essere salvata" msgid "Samples for datasource could not be retrieved." msgstr "La tua query non può essere salvata" -#: superset/viz.py:1935 +#: superset/viz.py:1854 msgid "Sankey" msgstr "Sankey" @@ -12750,25 +12908,26 @@ msgstr "" #: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 #: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:199 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:214 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:246 -#: superset-frontend/src/components/ReportModal/index.tsx:229 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:288 +#: superset-frontend/src/components/ReportModal/index.tsx:228 #: superset-frontend/src/dashboard/components/Header/index.jsx:607 #: superset-frontend/src/dashboard/components/Header/index.jsx:609 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 #: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 #: superset-frontend/src/dashboard/components/SaveModal.tsx:211 #: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:794 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:156 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:492 #: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:268 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:458 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:462 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 -#: superset-frontend/src/explore/components/SaveModal.tsx:415 +#: superset-frontend/src/explore/components/SaveModal.tsx:449 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:418 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:424 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:147 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 @@ -12778,30 +12937,31 @@ msgstr "" #: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 #: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1695 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 #: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 msgid "Save" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:246 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:190 msgid "Save & Explore" msgstr "Salva una slice" -#: superset-frontend/src/explore/components/SaveModal.tsx:396 +#: superset-frontend/src/explore/components/SaveModal.tsx:430 msgid "Save & go to dashboard" msgstr "Salva e vai alla dashboard" -#: superset-frontend/src/explore/components/SaveModal.tsx:395 +#: superset-frontend/src/explore/components/SaveModal.tsx:429 #, fuzzy msgid "Save & go to new dashboard" msgstr "Salva e vai alla dashboard" -#: superset-frontend/src/explore/components/SaveModal.tsx:308 +#: superset-frontend/src/explore/components/SaveModal.tsx:343 msgid "Save (Overwrite)" msgstr "Query salvate" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:199 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:306 msgid "Save as" msgstr "Salva come" @@ -12816,16 +12976,16 @@ msgstr "Seleziona una destinazione" msgid "Save as dataset" msgstr "Seleziona una destinazione" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:394 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:214 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:402 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 msgid "Save as new" msgstr "Salva una slice" -#: superset-frontend/src/explore/components/SaveModal.tsx:412 +#: superset-frontend/src/explore/components/SaveModal.tsx:446 msgid "Save as new chart" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:316 +#: superset-frontend/src/explore/components/SaveModal.tsx:351 #, fuzzy msgid "Save as..." msgstr "Salva come" @@ -12839,7 +12999,7 @@ msgstr "" msgid "Save changes" msgstr "Ultima Modifica" -#: superset-frontend/src/explore/components/SaveModal.tsx:432 +#: superset-frontend/src/explore/components/SaveModal.tsx:466 msgid "Save chart" msgstr "Grafico a torta" @@ -12847,7 +13007,7 @@ msgstr "Grafico a torta" msgid "Save dashboard" msgstr "Salva e vai alla dashboard" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:106 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:105 #, fuzzy msgid "Save dataset" msgstr "Seleziona una destinazione" @@ -12856,11 +13016,11 @@ msgstr "Seleziona una destinazione" msgid "Save for this session" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:350 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:356 msgid "Save or Overwrite Dataset" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:202 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:201 msgid "Save query" msgstr "query condivisa" @@ -12868,28 +13028,28 @@ msgstr "query condivisa" msgid "Save the query to enable this feature" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:250 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:465 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:149 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 msgid "Save this query as a virtual dataset to continue exploring" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:414 +#: superset-frontend/src/explore/components/SaveModal.tsx:448 #, fuzzy msgid "Save to new dashboard" msgstr "Salva e vai alla dashboard" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:265 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:271 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 msgid "Saved" msgstr "Salva come" -#: superset/initialization/__init__.py:358 +#: superset/initialization/__init__.py:352 msgid "Saved Queries" msgstr "Query salvate" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:249 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:255 #, fuzzy msgid "Saved expressions" msgstr "Espressione SQL" @@ -12949,12 +13109,12 @@ msgid "" msgstr "" #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 -#: superset-frontend/src/components/ReportModal/index.tsx:306 +#: superset-frontend/src/components/ReportModal/index.tsx:305 #: superset-frontend/src/pages/AlertReportList/index.tsx:276 msgid "Schedule" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:212 +#: superset-frontend/src/components/ReportModal/index.tsx:211 #, fuzzy msgid "Schedule a new email report" msgstr "Importa" @@ -12971,7 +13131,7 @@ msgstr "Mostra query salvate" msgid "Schedule settings" msgstr "Mostra query salvate" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:518 msgid "Schedule the query periodically" msgstr "" @@ -12989,34 +13149,34 @@ msgstr "" msgid "Scheduled task executor not found" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:299 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:221 -#: superset-frontend/src/pages/DatasetList/index.tsx:354 -#: superset-frontend/src/pages/DatasetList/index.tsx:536 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:298 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 +#: superset-frontend/src/pages/DatasetList/index.tsx:365 +#: superset-frontend/src/pages/DatasetList/index.tsx:547 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:250 #: superset-frontend/src/pages/SavedQueryList/index.tsx:297 #: superset-frontend/src/pages/SavedQueryList/index.tsx:469 -#: superset/connectors/sqla/views.py:483 superset/views/database/forms.py:144 -#: superset/views/database/forms.py:311 superset/views/database/forms.py:442 +#: superset/connectors/sqla/views.py:390 superset/views/database/forms.py:154 +#: superset/views/database/forms.py:321 superset/views/database/forms.py:452 msgid "Schema" msgstr "Schema" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:247 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:257 #, fuzzy msgid "Schema cache timeout" msgstr "Cache Timeout" -#: superset/views/core.py:1164 +#: superset/views/core.py:1186 msgid "Schema undefined" msgstr "" -#: superset/connectors/sqla/views.py:429 +#: superset/connectors/sqla/views.py:336 msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" msgstr "" "Schema, va utilizzato soltanto in alcuni database come Postgres, Redshift" " e DB2" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:419 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:429 msgid "Schemas allowed for File upload" msgstr "" @@ -13028,7 +13188,7 @@ msgstr "" msgid "Scoping" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 msgid "Scroll" msgstr "" @@ -13044,15 +13204,15 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:724 #: superset-frontend/src/pages/CssTemplateList/index.tsx:293 #: superset-frontend/src/pages/DashboardList/index.tsx:516 -#: superset-frontend/src/pages/DatabaseList/index.tsx:492 -#: superset-frontend/src/pages/DatasetList/index.tsx:577 +#: superset-frontend/src/pages/DatabaseList/index.tsx:503 +#: superset-frontend/src/pages/DatasetList/index.tsx:588 #: superset-frontend/src/pages/SavedQueryList/index.tsx:494 #: superset-frontend/src/pages/Tags/index.tsx:204 #: superset/templates/appbuilder/general/widgets/search.html:40 msgid "Search" msgstr "Cerca" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:294 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 msgid "Search / Filter" msgstr "Cerca / Filtra" @@ -13078,12 +13238,12 @@ msgstr "Cerca" msgid "Search by query text" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:207 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 #, fuzzy msgid "Search columns" msgstr "Visualizza colonne" -#: superset-frontend/src/components/Table/index.tsx:202 +#: superset-frontend/src/components/Table/index.tsx:206 #, fuzzy msgid "Search in filters" msgstr "Cerca / Filtra" @@ -13097,7 +13257,7 @@ msgstr "Ruoli Utente" msgid "Search..." msgstr "Cerca" -#: superset/db_engine_specs/base.py:96 +#: superset/db_engine_specs/base.py:97 msgid "Second" msgstr "" @@ -13112,10 +13272,14 @@ msgid "Secondary Metric" msgstr "Mostra metrica" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:408 +msgid "Secondary y-axis Bounds" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:425 msgid "Secondary y-axis format" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:417 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:434 msgid "Secondary y-axis title" msgstr "" @@ -13128,15 +13292,15 @@ msgstr "" msgid "Secure Extra" msgstr "Sicurezza" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:336 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:341 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:346 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 msgid "Secure extra" msgstr "Sicurezza" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:329 -#: superset/initialization/__init__.py:297 -#: superset/initialization/__init__.py:395 -#: superset/initialization/__init__.py:433 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:339 +#: superset/initialization/__init__.py:389 +#: superset/initialization/__init__.py:427 +#: superset/initialization/__init__.py:438 msgid "Security" msgstr "Sicurezza" @@ -13159,16 +13323,16 @@ msgstr "" msgid "See more" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:412 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:405 #, fuzzy msgid "See query details" msgstr "Query salvate" -#: superset-frontend/src/components/TableSelector/index.tsx:288 +#: superset-frontend/src/components/TableSelector/index.tsx:277 msgid "See table schema" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:363 +#: superset-frontend/src/explore/components/SaveModal.tsx:398 #: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 #, fuzzy msgid "Select" @@ -13176,9 +13340,9 @@ msgstr "Seleziona %s" #: superset-frontend/src/components/AsyncSelect/index.jsx:41 #: superset-frontend/src/components/Select/AsyncSelect.tsx:123 -#: superset-frontend/src/components/Select/Select.tsx:103 +#: superset-frontend/src/components/Select/Select.tsx:104 #: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 -#: superset-frontend/src/explore/components/controls/SelectControl.jsx:230 +#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 msgid "Select ..." msgstr "" @@ -13191,11 +13355,11 @@ msgstr "" msgid "Select Viz Type" msgstr "Seleziona un tipo di visualizzazione" -#: superset/views/database/forms.py:415 +#: superset/views/database/forms.py:425 msgid "Select a Columnar file to be uploaded to a database." msgstr "" -#: superset/views/database/forms.py:279 +#: superset/views/database/forms.py:289 msgid "Select a Excel file to be uploaded to a database." msgstr "" @@ -13204,7 +13368,7 @@ msgstr "" msgid "Select a column" msgstr "Seleziona data finale" -#: superset-frontend/src/explore/components/SaveModal.tsx:357 +#: superset-frontend/src/explore/components/SaveModal.tsx:392 #, fuzzy msgid "Select a dashboard" msgstr "Importa dashboard" @@ -13227,7 +13391,7 @@ msgstr "Database" msgid "Select a database to upload the file to" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:744 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:738 msgid "Select a database to write a query" msgstr "" @@ -13240,7 +13404,7 @@ msgstr "Importa dashboard" msgid "Select a file to be uploaded to the database" msgstr "" -#: superset/views/database/forms.py:145 +#: superset/views/database/forms.py:155 msgid "Select a schema if the database supports this" msgstr "" @@ -13252,12 +13416,12 @@ msgstr "Seleziona un tipo di visualizzazione" msgid "Select aggregate options" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:207 +#: superset-frontend/src/components/Table/index.tsx:211 #, fuzzy msgid "Select all data" msgstr "Seleziona data finale" -#: superset-frontend/src/components/Table/index.tsx:201 +#: superset-frontend/src/components/Table/index.tsx:205 #, fuzzy msgid "Select all items" msgstr "Seleziona data finale" @@ -13266,6 +13430,11 @@ msgstr "Seleziona data finale" msgid "Select any columns for metadata inspection" msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +#, fuzzy +msgid "Select chart" +msgstr "Grafico a Proiettile" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:45 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:103 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:138 @@ -13278,14 +13447,14 @@ msgstr "Grafico a Proiettile" msgid "Select color scheme" msgstr "Testa la Connessione" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:208 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 #, fuzzy msgid "Select column" msgstr "Colonna del Tempo" -#: superset-frontend/src/components/Table/index.tsx:204 +#: superset-frontend/src/components/Table/index.tsx:208 #, fuzzy msgid "Select current page" msgstr "Seleziona data finale" @@ -13295,8 +13464,8 @@ msgstr "Seleziona data finale" msgid "Select database & schema" msgstr "Database" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:272 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:280 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:271 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:279 msgid "Select database or type to search databases" msgstr "" @@ -13305,7 +13474,7 @@ msgstr "" msgid "Select database table" msgstr "Database" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1791 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1847 msgid "" "Select databases require additional fields to be completed in the " "Advanced tab to successfully connect the database. Learn what " @@ -13346,7 +13515,7 @@ msgstr "Seleziona operatore" msgid "Select or type a value" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:410 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:418 msgid "Select or type dataset name" msgstr "" @@ -13360,8 +13529,8 @@ msgstr "Seleziona una colonna" msgid "Select saved metrics" msgstr "Seleziona una metrica" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:297 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:304 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:296 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 msgid "Select schema or type to search schemas" msgstr "" @@ -13369,7 +13538,7 @@ msgstr "" msgid "Select scheme" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:304 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:307 msgid "Select start and end date" msgstr "Seleziona data iniziale" @@ -13377,8 +13546,8 @@ msgstr "Seleziona data iniziale" msgid "Select subject" msgstr "" +#: superset-frontend/src/components/TableSelector/index.tsx:284 #: superset-frontend/src/components/TableSelector/index.tsx:295 -#: superset-frontend/src/components/TableSelector/index.tsx:306 msgid "Select table or type to search tables" msgstr "" @@ -13386,6 +13555,23 @@ msgstr "" msgid "Select the Annotation Layer you would like to use." msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +msgid "" +"Select the charts to which you want to apply cross-filters in this " +"dashboard. Deselecting a chart will exclude it from being filtered when " +"applying cross-filters from any chart on the dashboard. You can select " +"\"All charts\" to apply cross-filters to all charts that use the same " +"dataset or contain the same column name in the dashboard." +msgstr "" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +msgid "" +"Select the charts to which you want to apply cross-filters when " +"interacting with this chart. You can select \"All charts\" to apply " +"filters to all charts that use the same dataset or contain the same " +"column name in the dashboard." +msgstr "" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:392 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:37 #, fuzzy @@ -13432,7 +13618,7 @@ msgstr "" msgid "Sequential" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 msgid "Series" msgstr "" @@ -13449,7 +13635,7 @@ msgstr "" msgid "Series Limit Sort Descending" msgstr "Importa" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:255 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:246 #, fuzzy msgid "Series Order" msgstr "Query salvate" @@ -13525,13 +13711,13 @@ msgid "Settings for time series" msgstr "" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:325 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:464 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:467 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 #: superset-frontend/src/features/home/SavedQueries.tsx:211 msgid "Share" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:469 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:472 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:343 #, fuzzy msgid "Share chart by email" @@ -13542,7 +13728,7 @@ msgstr "Esplora grafico" msgid "Share permalink by email" msgstr "Esplora grafico" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1429 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1421 msgid "Shared query" msgstr "query condivisa" @@ -13551,7 +13737,7 @@ msgstr "query condivisa" msgid "Shared query fields" msgstr "Query salvate" -#: superset/views/database/forms.py:298 +#: superset/views/database/forms.py:308 msgid "Sheet Name" msgstr "Nome Completo" @@ -13602,7 +13788,7 @@ msgstr "Template CSS" msgid "Show Chart" msgstr "Mostra grafico" -#: superset/connectors/sqla/views.py:73 +#: superset/connectors/sqla/views.py:72 msgid "Show Column" msgstr "Mostra colonna" @@ -13637,11 +13823,11 @@ msgstr "Mostra colonna" msgid "Show Markers" msgstr "" -#: superset/connectors/sqla/views.py:208 +#: superset/connectors/sqla/views.py:207 msgid "Show Metric" msgstr "Mostra metrica" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:178 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 #, fuzzy msgid "Show Metric Names" msgstr "Mostra metrica" @@ -13651,15 +13837,11 @@ msgstr "Mostra metrica" msgid "Show Range Filter" msgstr "Cerca / Filtra" -#: superset/connectors/sqla/views.py:291 -msgid "Show Row level security filter" -msgstr "" - #: superset/views/sql_lab/views.py:53 msgid "Show Saved Query" msgstr "Mostra query salvate" -#: superset/connectors/sqla/views.py:385 +#: superset/connectors/sqla/views.py:292 msgid "Show Table" msgstr "Mostra Tabelle" @@ -13681,12 +13863,12 @@ msgstr "" msgid "Show Upper Labels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:110 #, fuzzy msgid "Show Value" msgstr "Mostra Tabelle" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:164 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:315 #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:184 #, fuzzy @@ -13721,7 +13903,7 @@ msgstr "" msgid "Show cell bars" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:395 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 #, fuzzy msgid "Show chart description" msgstr "descrizione" @@ -13760,7 +13942,7 @@ msgstr "Mostra Tabelle" msgid "Show labels when the node has children." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:39 msgid "Show legend" msgstr "" @@ -13799,7 +13981,7 @@ msgstr "Elenco Dashboard" msgid "Show rows total" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 msgid "Show series values on the chart" msgstr "" @@ -13827,7 +14009,6 @@ msgid "" " apply to the result." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:76 #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:365 msgid "Show totals" @@ -13872,7 +14053,7 @@ msgstr "" msgid "Showing %s of %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:184 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 msgid "Shows a list of all series available at that point in time" msgstr "" @@ -13892,7 +14073,7 @@ msgstr "" msgid "Significance Level" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:341 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 @@ -13944,23 +14125,23 @@ msgstr "" msgid "Sizes of vehicles" msgstr "" -#: superset/views/database/forms.py:177 +#: superset/views/database/forms.py:187 msgid "Skip Blank Lines" msgstr "" -#: superset/views/database/forms.py:174 +#: superset/views/database/forms.py:184 msgid "Skip Initial Space" msgstr "" -#: superset/views/database/forms.py:260 superset/views/database/forms.py:354 +#: superset/views/database/forms.py:270 superset/views/database/forms.py:364 msgid "Skip Rows" msgstr "" -#: superset/views/database/forms.py:178 +#: superset/views/database/forms.py:188 msgid "Skip blank lines rather than interpreting them as Not A Number values" msgstr "" -#: superset/views/database/forms.py:174 +#: superset/views/database/forms.py:184 msgid "Skip spaces after delimiter" msgstr "" @@ -13996,7 +14177,7 @@ msgstr "" msgid "Solid" msgstr "" -#: superset/commands/exceptions.py:115 +#: superset/commands/exceptions.py:119 #, fuzzy msgid "Some roles do not exist" msgstr "Elenco Dashboard" @@ -14005,7 +14186,7 @@ msgstr "Elenco Dashboard" msgid "Something went wrong." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:864 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:919 #, python-format msgid "Sorry there was an error fetching database information: %s" msgstr "" @@ -14023,7 +14204,7 @@ msgstr "" msgid "Sorry, an error occurred" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:357 +#: superset-frontend/src/dashboard/actions/dashboardState.js:359 msgid "Sorry, an unknown error occurred" msgstr "" @@ -14052,14 +14233,14 @@ msgstr "" msgid "Sorry, there was an error saving this %s: %s" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:360 +#: superset-frontend/src/dashboard/actions/dashboardState.js:362 #, python-format msgid "Sorry, there was an error saving this dashboard: %s" msgstr "" #: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 #: superset-frontend/src/pages/SavedQueryList/index.tsx:229 -#: superset-frontend/src/views/CRUD/hooks.ts:676 +#: superset-frontend/src/views/CRUD/hooks.ts:680 msgid "Sorry, your browser does not support copying." msgstr "" @@ -14069,7 +14250,7 @@ msgstr "" #: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 #: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 -#: superset-frontend/src/components/Table/index.tsx:208 +#: superset-frontend/src/components/Table/index.tsx:212 #, fuzzy msgid "Sort" msgstr "Importa" @@ -14091,12 +14272,12 @@ msgstr "Importa" msgid "Sort Metric" msgstr "Mostra metrica" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:247 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:238 #, fuzzy msgid "Sort Series Ascending" msgstr "Importa" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:227 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:224 #, fuzzy msgid "Sort Series By" msgstr "Query vuota?" @@ -14175,7 +14356,7 @@ msgstr "Mostra metrica" msgid "Sort rows by" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:250 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:241 msgid "Sort series in ascending order" msgstr "" @@ -14207,6 +14388,7 @@ msgstr "" msgid "Sparkline" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:978 msgid "Spatial" msgstr "" @@ -14215,23 +14397,23 @@ msgstr "" msgid "Specific Date/Time" msgstr "" -#: superset/views/database/forms.py:312 superset/views/database/forms.py:443 +#: superset/views/database/forms.py:322 superset/views/database/forms.py:453 msgid "Specify a schema (if database flavor supports this)." msgstr "" -#: superset/views/database/forms.py:351 +#: superset/views/database/forms.py:361 msgid "Specify duplicate columns as \"X.0, X.1\"." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:711 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:705 msgid "Specify name to CREATE TABLE AS schema in: public" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:710 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:704 msgid "Specify name to CREATE VIEW AS schema in: public" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:515 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:551 msgid "" "Specify the database version. This should be used with Presto in order to" " enable query cost estimation." @@ -14257,7 +14439,7 @@ msgstr "Parametri" msgid "Square miles" msgstr "Query salvate" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 msgid "Stack" msgstr "" @@ -14271,7 +14453,7 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:161 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:115 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:128 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:125 msgid "Stack series on top of each other" msgstr "" @@ -14291,7 +14473,7 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:124 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:121 #: superset-frontend/src/explore/fixtures.tsx:58 msgid "Stacked Style" msgstr "" @@ -14362,7 +14544,7 @@ msgstr "Creato il" msgid "State" msgstr "" -#: superset/sql_lab.py:511 +#: superset/sql_lab.py:503 #, python-format msgid "Statement %(statement_num)s out of %(statement_count)s" msgstr "" @@ -14414,20 +14596,20 @@ msgid "" "irregular intervals." msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:47 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:46 #: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 msgid "Stop" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:337 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:339 msgid "Stop query" msgstr "Query vuota?" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:116 msgid "Stop running (Ctrl + e)" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:114 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 msgid "Stop running (Ctrl + x)" msgstr "" @@ -14435,7 +14617,7 @@ msgstr "" msgid "Stopped an unsafe database connection" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 #, fuzzy msgid "Stream" msgstr "Istogramma" @@ -14453,7 +14635,7 @@ msgstr "" msgid "Stretched style" msgstr "" -#: superset/views/database/forms.py:299 +#: superset/views/database/forms.py:309 msgid "Strings used for sheet names (default is the first sheet)." msgstr "" @@ -14485,11 +14667,11 @@ msgstr "" msgid "Style the ends of the progress bar with a round cap" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:56 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 msgid "Subdomain" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 msgid "Subheader" msgstr "" @@ -14501,8 +14683,8 @@ msgstr "" msgid "Submit" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:472 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:678 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 #: superset/charts/post_processing.py:161 #: superset/charts/post_processing.py:178 msgid "Subtotal" @@ -14514,7 +14696,7 @@ msgstr "" msgid "Success" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:193 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 #, fuzzy msgid "Successfully changed dataset!" msgstr "Seleziona una destinazione" @@ -14549,7 +14731,7 @@ msgstr "" msgid "Sum values" msgstr "Valore del filtro" -#: superset/viz.py:1888 +#: superset/viz.py:1805 msgid "Sunburst" msgstr "Sunburst" @@ -14577,7 +14759,7 @@ msgid "Superset Embedded SDK documentation." msgstr "" #: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:470 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:473 msgid "Superset chart" msgstr "Esplora grafico" @@ -14593,7 +14775,7 @@ msgstr "" msgid "Superset encountered an unexpected error." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:920 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 #, fuzzy msgid "Supported databases" msgstr "Database" @@ -14602,11 +14784,7 @@ msgstr "Database" msgid "Survey Responses" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:101 -msgid "Swap Groups and Columns" -msgstr "" - -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:254 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:311 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:435 #, fuzzy @@ -14656,6 +14834,11 @@ msgstr "" msgid "Syntax" msgstr "" +#: superset/db_engine_specs/ocient.py:282 +#, python-format +msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +msgstr "" + #: superset-frontend/src/pages/QueryHistoryList/index.tsx:268 #: superset-frontend/src/pages/SavedQueryList/index.tsx:315 msgid "TABLES" @@ -14689,36 +14872,36 @@ msgstr "Nome" msgid "Tab title" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:26 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 -#: superset-frontend/src/components/TableSelector/index.tsx:290 +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 +#: superset-frontend/src/components/TableSelector/index.tsx:279 #: superset-frontend/src/visualizations/TimeTable/index.ts:26 -#: superset/connectors/sqla/views.py:160 superset/connectors/sqla/views.py:255 -#: superset/connectors/sqla/views.py:477 superset/views/chart/mixin.py:86 +#: superset/connectors/sqla/views.py:159 superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:384 superset/views/chart/mixin.py:86 msgid "Table" msgstr "Tabella" -#: superset/views/core.py:1740 +#: superset/views/core.py:1775 #, python-format msgid "Table %(table)s wasn't found in the database %(db)s" msgstr "" -#: superset/views/database/forms.py:317 superset/views/database/forms.py:448 +#: superset/views/database/forms.py:327 superset/views/database/forms.py:458 msgid "Table Exists" msgstr "" -#: superset/connectors/sqla/views.py:487 superset/views/database/forms.py:128 -#: superset/views/database/forms.py:269 superset/views/database/forms.py:405 +#: superset/connectors/sqla/views.py:394 superset/views/database/forms.py:128 +#: superset/views/database/forms.py:279 superset/views/database/forms.py:415 msgid "Table Name" msgstr "" -#: superset/viz.py:698 +#: superset/viz.py:722 msgid "Table View" msgstr "Vista Tabella" -#: superset/datasets/commands/exceptions.py:130 +#: superset/datasets/commands/exceptions.py:147 #, python-format msgid "" "Table [%(table_name)s] could not be found, please double check your " @@ -14731,7 +14914,7 @@ msgid "" "connection, schema, and table name, error: {}" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:268 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:278 #, fuzzy msgid "Table cache timeout" msgstr "Cache Timeout" @@ -14746,8 +14929,8 @@ msgstr "Colonna del Tempo" msgid "Table loading" msgstr "Importa" -#: superset/views/database/forms.py:132 superset/views/database/forms.py:273 -#: superset/views/database/forms.py:409 +#: superset/views/database/forms.py:132 superset/views/database/forms.py:283 +#: superset/views/database/forms.py:419 msgid "Table name cannot contain a schema" msgstr "" @@ -14755,15 +14938,22 @@ msgstr "" msgid "Table name undefined" msgstr "" +#: superset/db_engine_specs/ocient.py:287 +#, fuzzy, python-format +msgid "Table or View \"%(table)s\" does not exist." +msgstr "Una o più metriche da mostrare" + #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 msgid "" "Table that visualizes paired t-tests, which are used to understand " "statistical differences between groups." msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:384 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:393 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:287 #: superset-frontend/src/pages/SavedQueryList/index.tsx:334 -#: superset/connectors/sqla/views.py:363 superset/connectors/sqla/views.py:384 +#: superset/connectors/sqla/views.py:291 msgid "Tables" msgstr "Tabelle" @@ -14813,7 +15003,7 @@ msgstr "La query non può essere caricata" #: superset-frontend/src/pages/SavedQueryList/index.tsx:382 #: superset-frontend/src/pages/SavedQueryList/index.tsx:487 #: superset-frontend/src/pages/Tags/index.tsx:279 -#: superset/initialization/__init__.py:384 +#: superset/initialization/__init__.py:378 msgid "Tags" msgstr "" @@ -14841,7 +15031,7 @@ msgstr "" msgid "Target category" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:173 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 msgid "Target value" msgstr "" @@ -14851,7 +15041,7 @@ msgstr "" #: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:962 -#: superset/connectors/sqla/views.py:493 +#: superset/connectors/sqla/views.py:400 msgid "Template parameters" msgstr "Parametri" @@ -14861,7 +15051,7 @@ msgid "" "coming from the controls." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:317 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:327 msgid "" "Terminate running queries when browser window closed or navigated to " "another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " @@ -14886,7 +15076,7 @@ msgstr "textarea" msgid "Text align" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:248 +#: superset-frontend/src/components/ReportModal/index.tsx:247 msgid "Text embedded in email" msgstr "" @@ -14933,7 +15123,7 @@ msgid "" " the filters list?" msgstr "" -#: superset/views/core.py:372 +#: superset/views/core.py:373 msgid "The access requests seem to have been deleted" msgstr "" @@ -14953,12 +15143,12 @@ msgid "" "associated with more than one category, only the first will be used." msgstr "" -#: superset/common/query_context_processor.py:586 +#: superset/common/query_context_processor.py:585 #, fuzzy msgid "The chart datasource does not exist" msgstr "Sorgente dati e tipo di grafico" -#: superset/common/query_context_processor.py:584 +#: superset/common/query_context_processor.py:583 #, fuzzy msgid "The chart does not exist" msgstr "Sorgente dati e tipo di grafico" @@ -15011,7 +15201,7 @@ msgstr "" msgid "The data source seems to have been deleted" msgstr "" -#: superset/connectors/sqla/views.py:115 +#: superset/connectors/sqla/views.py:114 msgid "" "The data type that was inferred by the database. It may be necessary to " "input a type manually for expression-defined columns in some cases. In " @@ -15022,7 +15212,7 @@ msgstr "" "dall'espressione. Nella maggior parte dei casi gli utenti non hanno " "bisogno di fare questa modifica." -#: superset-frontend/src/pages/DatabaseList/index.tsx:515 +#: superset-frontend/src/pages/DatabaseList/index.tsx:529 #, python-format msgid "" "The database %s is linked to %s charts that appear on %s dashboards and " @@ -15062,12 +15252,12 @@ msgstr "" msgid "The database was deleted." msgstr "" -#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2002 +#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2039 #, fuzzy msgid "The database was not found." msgstr "Template CSS" -#: superset-frontend/src/pages/DatasetList/index.tsx:710 +#: superset-frontend/src/pages/DatasetList/index.tsx:724 #, python-format msgid "" "The dataset %s is linked to %s charts that appear on %s dashboards. Are " @@ -15076,11 +15266,11 @@ msgid "" msgstr "" #: superset-frontend/src/components/Chart/Chart.jsx:88 -#: superset/views/utils.py:274 +#: superset/views/utils.py:272 msgid "The dataset associated with this chart no longer exists" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:168 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:210 msgid "" "The dataset configuration exposed here\n" " affects all the charts using this dataset.\n" @@ -15089,7 +15279,7 @@ msgid "" " in undesirable ways." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:129 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:164 #: superset-frontend/src/pages/ChartCreation/index.tsx:261 msgid "The dataset has been saved" msgstr "" @@ -15098,7 +15288,7 @@ msgstr "" msgid "The dataset linked to this chart may have been deleted." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1496 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1488 msgid "The datasource couldn't be loaded" msgstr "La query non può essere caricata" @@ -15113,7 +15303,7 @@ msgid "" " Supports markdown." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:104 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 msgid "The distance between cells, in pixels" msgstr "" @@ -15128,7 +15318,7 @@ msgstr "Durata (in secondi) per il timeout della cache per questa slice." msgid "The encoding format of the lines" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:495 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:531 msgid "" "The engine_params object gets unpacked into the sqlalchemy.create_engine " "call." @@ -15141,6 +15331,7 @@ msgid "" "%(columns)s. " msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:111 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:67 msgid "The function to use when aggregating points into groups" msgstr "" @@ -15151,9 +15342,9 @@ msgid "The host \"%(hostname)s\" might be down and can't be reached." msgstr "" #: superset/db_engine_specs/mssql.py:103 -#: superset/db_engine_specs/postgres.py:140 -#: superset/db_engine_specs/presto.py:664 -#: superset/db_engine_specs/redshift.py:82 +#: superset/db_engine_specs/postgres.py:139 +#: superset/db_engine_specs/presto.py:691 +#: superset/db_engine_specs/redshift.py:86 #, python-format msgid "" "The host \"%(hostname)s\" might be down, and can't be reached on port " @@ -15165,9 +15356,9 @@ msgid "The host might be down, and can't be reached on the provided port." msgstr "" #: superset/db_engine_specs/mssql.py:93 -#: superset/db_engine_specs/postgres.py:130 -#: superset/db_engine_specs/presto.py:659 -#: superset/db_engine_specs/redshift.py:72 +#: superset/db_engine_specs/postgres.py:129 +#: superset/db_engine_specs/presto.py:686 +#: superset/db_engine_specs/redshift.py:76 #, python-format msgid "The hostname \"%(hostname)s\" cannot be resolved." msgstr "" @@ -15181,7 +15372,7 @@ msgstr "" msgid "The id of the active chart" msgstr "" -#: superset/connectors/sqla/views.py:418 +#: superset/connectors/sqla/views.py:325 msgid "" "The list of charts associated with this table. By altering this " "datasource, you may change how these associated charts behave. Also note " @@ -15224,7 +15415,7 @@ msgid "" "%{key}s is invalid." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:469 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:505 msgid "" "The metadata_params object gets unpacked into the sqlalchemy.MetaData " "call." @@ -15244,7 +15435,7 @@ msgid "" "periods" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:130 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 msgid "The number color \"steps\"" msgstr "" @@ -15254,7 +15445,7 @@ msgid "" " can be used to move UTC time to local time." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:308 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:301 #, python-format msgid "" "The number of results displayed is limited to %(rows)d by the " @@ -15262,7 +15453,7 @@ msgid "" "download to csv to see more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:314 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:307 #, python-format msgid "" "The number of results displayed is limited to %(rows)d. Please add " @@ -15270,22 +15461,22 @@ msgid "" "more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:365 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:358 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the dropdown." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:334 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:326 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:319 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the query" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:339 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:332 #, python-format msgid "" "The number of rows displayed is limited to %(rows)d by the query and " @@ -15302,13 +15493,13 @@ msgstr "" msgid "The object does not exist in the given database." msgstr "Nome delle tabella esistente nella sorgente del database" -#: superset/sqllab/query_render.py:96 +#: superset/sqllab/query_render.py:94 #, python-format msgid "The parameter %(parameters)s in your query is undefined." msgid_plural "The following parameters in your query are undefined: %(parameters)s." msgstr[0] "" -#: superset/db_engine_specs/postgres.py:120 +#: superset/db_engine_specs/postgres.py:119 #, python-format msgid "The password provided for username \"%(username)s\" is incorrect." msgstr "" @@ -15353,7 +15544,7 @@ msgid "" " they are needed." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1284 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1339 msgid "" "The passwords for the databases below are needed in order to import them." " Please note that the \"Secure Extra\" and \"Certificate\" sections of " @@ -15373,7 +15564,7 @@ msgid "" "\"freq\" expressions." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 msgid "The pixel radius" msgstr "" @@ -15398,7 +15589,7 @@ msgstr "" msgid "The primary metric is used to define the arc segment sizes" msgstr "" -#: superset/views/core.py:2212 +#: superset/views/core.py:2248 msgid "The provided `rows` argument is not a valid integer." msgstr "" @@ -15407,13 +15598,13 @@ msgid "The query associated with the results was deleted." msgstr "" #: superset/sqllab/commands/export.py:63 superset/sqllab/commands/results.py:91 -#: superset/views/core.py:2162 +#: superset/views/core.py:2198 msgid "" "The query associated with these results could not be found. You need to " "re-run the original query." msgstr "" -#: superset/sqllab/query_render.py:117 +#: superset/sqllab/query_render.py:115 msgid "The query contains one or more malformed template parameters." msgstr "" @@ -15432,11 +15623,11 @@ msgstr "" msgid "The query has a syntax error." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:519 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:512 msgid "The query returned no data" msgstr "" -#: superset/sql_lab.py:301 +#: superset/sql_lab.py:297 #, python-format msgid "" "The query was killed after %(sqllab_timeout)s seconds. It might be too " @@ -15477,14 +15668,14 @@ msgstr "" msgid "The rich tooltip shows a list of all series for that point in time" msgstr "" -#: superset/db_engine_specs/bigquery.py:202 +#: superset/db_engine_specs/bigquery.py:203 #, python-format msgid "" "The schema \"%(schema)s\" does not exist. A valid schema must be used to " "run this query." msgstr "" -#: superset/db_engine_specs/presto.py:646 +#: superset/db_engine_specs/presto.py:673 #, python-format msgid "" "The schema \"%(schema_name)s\" does not exist. A valid schema must be " @@ -15495,11 +15686,12 @@ msgstr "" msgid "The schema was deleted or renamed in the database." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:92 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 msgid "The size of the square cell, in pixels" msgstr "" -#: superset/views/datasource/views.py:88 +#: superset/datasets/commands/exceptions.py:72 +#: superset/views/datasource/views.py:90 msgid "" "The submitted URL is not considered safe, only use URLs with the same " "domain as Superset." @@ -15513,21 +15705,21 @@ msgstr "" msgid "The submitted payload has the incorrect schema." msgstr "" -#: superset/db_engine_specs/bigquery.py:189 +#: superset/db_engine_specs/bigquery.py:190 #, python-format msgid "" "The table \"%(table)s\" does not exist. A valid table must be used to run" " this query." msgstr "" -#: superset/db_engine_specs/presto.py:638 +#: superset/db_engine_specs/presto.py:665 #, python-format msgid "" "The table \"%(table_name)s\" does not exist. A valid table must be used " "to run this query." msgstr "" -#: superset/connectors/sqla/views.py:515 +#: superset/connectors/sqla/views.py:422 msgid "" "The table was created. As part of this two-phase configuration process, " "you should now click the edit button by the new table to configure it." @@ -15581,13 +15773,13 @@ msgid "" " the start and/or end time." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 msgid "" "The time unit for each block. Should be a smaller unit than " "domain_granularity. Should be larger or equal to Time Grain" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 msgid "The time unit used for the grouping of blocks" msgstr "" @@ -15605,7 +15797,12 @@ msgstr "" msgid "The user seems to have been deleted" msgstr "" -#: superset/db_engine_specs/postgres.py:115 +#: superset/db_engine_specs/ocient.py:251 +msgid "The user/password combination is not valid (Incorrect password for user)." +msgstr "" + +#: superset/db_engine_specs/ocient.py:246 +#: superset/db_engine_specs/postgres.py:114 #, python-format msgid "The username \"%(username)s\" does not exist." msgstr "" @@ -15632,16 +15829,16 @@ msgstr "" msgid "There are associated alerts or reports" msgstr "" -#: superset/charts/commands/bulk_delete.py:62 -#: superset/charts/commands/delete.py:71 -#: superset/dashboards/commands/bulk_delete.py:63 -#: superset/dashboards/commands/delete.py:64 -#: superset/databases/commands/delete.py:63 +#: superset/charts/commands/bulk_delete.py:61 +#: superset/charts/commands/delete.py:70 +#: superset/dashboards/commands/bulk_delete.py:62 +#: superset/dashboards/commands/delete.py:63 +#: superset/databases/commands/delete.py:62 #, python-format msgid "There are associated alerts or reports: %s," msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:710 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:711 #, fuzzy msgid "There are no charts added to this dashboard" msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." @@ -15697,7 +15894,7 @@ msgstr "Errore nel recupero dei metadati della tabella" msgid "There was an error fetching tables" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:589 +#: superset-frontend/src/views/CRUD/hooks.ts:593 #, python-format msgid "There was an error fetching the favorite status: %s" msgstr "" @@ -15706,19 +15903,24 @@ msgstr "" msgid "There was an error fetching your recent activity:" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:450 +#, fuzzy +msgid "There was an error loading the chart data" +msgstr "Errore nel creare il datasource" + #: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 msgid "There was an error loading the dataset metadata" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:241 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:240 msgid "There was an error loading the schemas" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:194 +#: superset-frontend/src/components/TableSelector/index.tsx:191 msgid "There was an error loading the tables" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:612 +#: superset-frontend/src/views/CRUD/hooks.ts:616 #, python-format msgid "There was an error saving the favorite status: %s" msgstr "" @@ -15732,14 +15934,20 @@ msgstr "" #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 #: superset-frontend/src/pages/AnnotationList/index.tsx:121 #: superset-frontend/src/pages/CssTemplateList/index.tsx:97 -#: superset-frontend/src/pages/DatabaseList/index.tsx:167 -#: superset-frontend/src/pages/DatasetList/index.tsx:657 +#: superset-frontend/src/pages/DatabaseList/index.tsx:178 +#: superset-frontend/src/pages/DatasetList/index.tsx:668 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:97 #: superset-frontend/src/pages/SavedQueryList/index.tsx:245 #: superset-frontend/src/views/CRUD/utils.tsx:315 #, python-format msgid "There was an issue deleting %s: %s" msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:111 +#, fuzzy, python-format +msgid "There was an issue deleting rules: %s" +msgstr "Errore nel recupero dati" + #: superset-frontend/src/pages/AlertReportList/index.tsx:201 #, python-format msgid "There was an issue deleting the selected %s: %s" @@ -15759,7 +15967,7 @@ msgstr "" msgid "There was an issue deleting the selected dashboards: " msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:675 +#: superset-frontend/src/pages/DatasetList/index.tsx:686 #, python-format msgid "There was an issue deleting the selected datasets: %s" msgstr "" @@ -15784,16 +15992,16 @@ msgstr "" msgid "There was an issue deleting: %s" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:683 +#: superset-frontend/src/pages/DatasetList/index.tsx:694 msgid "There was an issue duplicating the dataset." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:699 +#: superset-frontend/src/pages/DatasetList/index.tsx:710 #, python-format msgid "There was an issue duplicating the selected datasets: %s" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:129 +#: superset-frontend/src/dashboard/actions/dashboardState.js:127 msgid "There was an issue favoriting this dashboard." msgstr "" @@ -15801,7 +16009,7 @@ msgstr "" msgid "There was an issue fetching reports attached to this dashboard." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:104 +#: superset-frontend/src/dashboard/actions/dashboardState.js:103 msgid "There was an issue fetching the favorite status of this dashboard." msgstr "" @@ -15835,13 +16043,13 @@ msgstr "" msgid "There was an issue previewing the selected query. %s" msgstr "" -#: superset/viz.py:1992 +#: superset/viz.py:1915 msgid "" "There's a loop in your Sankey, please provide a tree. Here's a faulty " "link: {}" msgstr "" -#: superset/connectors/sqla/views.py:335 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:386 msgid "These are the tables this filter will be applied to." msgstr "" @@ -15898,10 +16106,10 @@ msgid "" "mydatabase.com)." msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:244 +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:245 msgid "" -"This chart emits/applies cross-filters to other charts that use the same " -"dataset" +"This chart applies cross-filters to charts whose datasets contain columns" +" with the same name." msgstr "" #: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 @@ -15916,7 +16124,7 @@ msgstr "" msgid "This chart might be incompatible with the filter (datasets don't match)" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:322 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 msgid "" "This chart type is not supported when using an unsaved query as a chart " "source. " @@ -15928,7 +16136,7 @@ msgid "" " Check the JSON metadata in the Advanced settings" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:121 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:113 msgid "This column might be incompatible with current dataset" msgstr "" @@ -15975,11 +16183,11 @@ msgid "" "dashboards. Click here to publish this dashboard." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:154 +#: superset-frontend/src/dashboard/actions/dashboardState.js:152 msgid "This dashboard is now hidden" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:153 +#: superset-frontend/src/dashboard/actions/dashboardState.js:151 msgid "This dashboard is now published" msgstr "" @@ -15993,18 +16201,18 @@ msgid "" " id to the SDK:" msgstr "" -#: superset/views/core.py:1319 +#: superset/views/core.py:1353 msgid "" "This dashboard was changed recently. Please reload dashboard to get " "latest version." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:311 -#: superset-frontend/src/dashboard/actions/dashboardState.js:350 +#: superset-frontend/src/dashboard/actions/dashboardState.js:313 +#: superset-frontend/src/dashboard/actions/dashboardState.js:352 msgid "This dashboard was saved successfully." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1119 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1174 msgid "This database is managed externally, and can't be edited in Superset" msgstr "" @@ -16014,7 +16222,7 @@ msgid "" "table." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:240 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:282 msgid "This dataset is managed externally, and can't be edited in Superset" msgstr "" @@ -16031,7 +16239,7 @@ msgstr "" msgid "This defines the level of the hierarchy" msgstr "" -#: superset/connectors/sqla/views.py:436 +#: superset/connectors/sqla/views.py:343 msgid "" "This fields acts a Superset view, meaning that Superset will run a query " "against this string as a subquery." @@ -16056,7 +16264,7 @@ msgstr "" msgid "This functionality is disabled in your environment for security reasons." msgstr "" -#: superset/connectors/sqla/views.py:352 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:456 msgid "" "This is the condition that will be added to the WHERE clause. For " "example, to only return rows for a particular client, you might define a " @@ -16089,7 +16297,7 @@ msgstr "" msgid "This may be triggered by:" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:258 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:256 msgid "This metric might be incompatible with current dataset" msgstr "" @@ -16130,15 +16338,15 @@ msgid "" "associate one dataset with a table.\n" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:85 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 msgid "This value should be greater than the left target value" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:80 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 msgid "This value should be smaller than the right target value" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:141 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:171 msgid "This visualization type does not support cross-filtering." msgstr "" @@ -16174,6 +16382,7 @@ msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:38 #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 @@ -16205,7 +16414,7 @@ msgstr "Colonna del Tempo" msgid "Time Comparison" msgstr "Colonna del Tempo" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:141 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 #, fuzzy msgid "Time Format" msgstr "Formato Datetime" @@ -16238,39 +16447,39 @@ msgstr "Formato Datetime" msgid "Time Series" msgstr "Colonna del Tempo" -#: superset/viz.py:1670 +#: superset/viz.py:1581 msgid "Time Series - Bar Chart" msgstr "Serie Temporali - Grafico Barre" -#: superset/viz.py:1596 +#: superset/viz.py:1504 msgid "Time Series - Dual Axis Line Chart" msgstr "Serie Temporali - Grafico Lineare ad Assi Duali" -#: superset/viz.py:1308 +#: superset/viz.py:1209 msgid "Time Series - Line Chart" msgstr "Serie Temporali - Grafico Lineare" -#: superset/viz.py:1518 +#: superset/viz.py:1424 msgid "Time Series - Multiple Line Charts" msgstr "Serie Temporali - Grafico Lineare" -#: superset/viz.py:3036 +#: superset/viz.py:3033 msgid "Time Series - Nightingale Rose Chart" msgstr "" -#: superset/viz.py:2965 +#: superset/viz.py:2961 msgid "Time Series - Paired t-test" msgstr "" -#: superset/viz.py:1725 +#: superset/viz.py:1638 msgid "Time Series - Percent Change" msgstr "Serie Temporali - Cambiamento Percentuale" -#: superset/viz.py:1679 +#: superset/viz.py:1590 msgid "Time Series - Period Pivot" msgstr "" -#: superset/viz.py:1733 +#: superset/viz.py:1646 msgid "Time Series - Stacked" msgstr "Serie Temporali - Stacked" @@ -16287,7 +16496,7 @@ msgstr "Colonna del Tempo" msgid "Time Shift" msgstr "Offset temporale" -#: superset/viz.py:849 +#: superset/viz.py:878 msgid "Time Table View" msgstr "" @@ -16298,7 +16507,7 @@ msgstr "" msgid "Time column" msgstr "Colonna del Tempo" -#: superset/connectors/sqla/models.py:1392 superset/models/helpers.py:1575 +#: superset/models/helpers.py:1659 #, python-format msgid "Time column \"%(col)s\" does not exist in dataset" msgstr "" @@ -16384,6 +16593,7 @@ msgid "Time ratio" msgstr "Formato Datetime" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 #: superset-frontend/src/explore/controlPanels/sections.tsx:66 msgid "Time related form attributes" msgstr "Attributi relativi al tempo" @@ -16515,12 +16725,12 @@ msgstr "" msgid "Timestamp format" msgstr "Formato Datetime" -#: superset-frontend/src/components/ReportModal/index.tsx:326 +#: superset-frontend/src/components/ReportModal/index.tsx:325 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 msgid "Timezone" msgstr "" -#: superset/connectors/sqla/views.py:427 +#: superset/connectors/sqla/views.py:334 msgid "Timezone offset (in hours) for this datasource" msgstr "Timezone offset (in ore) per questa sorgente dati" @@ -16566,33 +16776,30 @@ msgstr "" msgid "To get a readable URL for your dashboard" msgstr "ottenere una URL leggibile per la tua dashboard" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:288 -msgid "Too many columns to filter" -msgstr "" - #: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:27 #, fuzzy msgid "Tools" msgstr "Ruoli" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:216 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:213 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 msgid "Tooltip" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:201 #, fuzzy msgid "Tooltip sort by metric" msgstr "Lista Metriche" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:191 #, fuzzy msgid "Tooltip time format" msgstr "Formato Datetime" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 msgid "Top" msgstr "" @@ -16616,14 +16823,14 @@ msgstr "" msgid "Total (%(aggfunc)s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:497 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:562 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:784 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 #, python-format msgid "Total (%(aggregatorName)s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:230 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:68 #, fuzzy msgid "Total value" msgstr "Valore del filtro" @@ -16638,7 +16845,7 @@ msgstr "" msgid "Totals" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:411 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:404 msgid "Track job" msgstr "" @@ -16658,10 +16865,6 @@ msgstr "" msgid "Transparent" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:99 -msgid "Transpose Pivot" -msgstr "" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:238 msgid "Transpose pivot" msgstr "" @@ -16681,7 +16884,7 @@ msgid "Tree orientation" msgstr "Azione" #: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:60 -#: superset/viz.py:1035 +#: superset/viz.py:925 msgid "Treemap" msgstr "Treemap" @@ -16748,7 +16951,7 @@ msgstr "" msgid "Truncates the specified date to the accuracy specified by the date unit." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 msgid "Try applying different filters or ensuring your datasource has data" msgstr "" @@ -16770,21 +16973,21 @@ msgstr "" msgid "Tukey" msgstr "condividi query" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:216 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:65 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:272 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:276 -#: superset-frontend/src/pages/DatasetList/index.tsx:343 -#: superset-frontend/src/pages/DatasetList/index.tsx:552 -#: superset/connectors/sqla/views.py:164 superset/connectors/sqla/views.py:253 +#: superset-frontend/src/pages/DatasetList/index.tsx:354 +#: superset-frontend/src/pages/DatasetList/index.tsx:563 +#: superset/connectors/sqla/views.py:163 superset/connectors/sqla/views.py:252 msgid "Type" msgstr "Tipo" #: superset-frontend/src/components/DeleteModal/index.tsx:92 #: superset-frontend/src/components/ImportModal/index.tsx:397 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1405 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1460 #, python-format msgid "Type \"%s\" to confirm" msgstr "" @@ -16810,7 +17013,7 @@ msgstr "" msgid "Type of comparison, value difference or percentage" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:404 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:407 #, python-format msgid "Type or Select [%s]" msgstr "Seleziona %s" @@ -16842,22 +17045,23 @@ msgstr "Parametri" msgid "URL slug" msgstr "Slug" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:622 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:618 msgid "Unable to add a new tab to the backend. Please contact your administrator." msgstr "" -#: superset/db_engine_specs/presto.py:677 +#: superset/db_engine_specs/presto.py:704 #, python-format msgid "Unable to connect to catalog named \"%(catalog_name)s\"." msgstr "" #: superset/db_engine_specs/mysql.py:165 -#: superset/db_engine_specs/postgres.py:148 +#: superset/db_engine_specs/postgres.py:147 +#: superset/db_engine_specs/starrocks.py:127 #, python-format msgid "Unable to connect to database \"%(database)s\"." msgstr "" -#: superset/db_engine_specs/bigquery.py:177 +#: superset/db_engine_specs/bigquery.py:178 msgid "" "Unable to connect. Verify that the following roles are set on the service" " account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " @@ -16865,10 +17069,18 @@ msgid "" "\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:218 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:216 msgid "Unable to create chart without a query id." msgstr "" +#: superset/key_value/exceptions.py:66 +msgid "Unable to decode value" +msgstr "" + +#: superset/key_value/exceptions.py:62 +msgid "Unable to encode value" +msgstr "" + #: superset/utils/date_parser.py:393 #, python-format msgid "Unable to find such a holiday: [%(holiday)s]" @@ -16880,19 +17092,19 @@ msgid "" "table." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:589 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:585 msgid "" "Unable to migrate query editor state to backend. Superset will retry " "later. Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:543 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:539 msgid "" "Unable to migrate query state to backend. Superset will retry later. " "Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:525 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:521 msgid "" "Unable to migrate table schema state to backend. Superset will retry " "later. Please contact your administrator if this problem persists." @@ -16902,14 +17114,14 @@ msgstr "" msgid "Unable to retrieve dashboard colors" msgstr "" -#: superset/views/database/views.py:275 +#: superset/views/database/views.py:278 #, python-format msgid "" "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" " database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset/views/database/views.py:553 +#: superset/views/database/views.py:556 #, python-format msgid "" "Unable to upload Columnar file \"%(filename)s\" to table " @@ -16917,14 +17129,14 @@ msgid "" "%(error_msg)s" msgstr "" -#: superset/views/database/views.py:412 +#: superset/views/database/views.py:415 #, python-format msgid "" "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " "in database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:93 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:92 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 msgid "Undefined" msgstr "" @@ -16938,7 +17150,7 @@ msgstr "" msgid "Undo the action" msgstr "Seleziona una colonna" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:131 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:132 msgid "Undo?" msgstr "" @@ -16948,7 +17160,7 @@ msgid "Unexpected error" msgstr "" #: superset/databases/commands/exceptions.py:137 -#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1438 +#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1479 msgid "Unexpected error occurred, please check your logs for details" msgstr "" @@ -16956,7 +17168,7 @@ msgstr "" msgid "Unexpected error: " msgstr "" -#: superset/views/api.py:109 +#: superset/views/api.py:108 #, python-format msgid "Unexpected time range: %s" msgstr "" @@ -16970,7 +17182,7 @@ msgstr "" msgid "Unknown MySQL server host \"%(hostname)s\"." msgstr "" -#: superset/db_engine_specs/presto.py:1319 +#: superset/db_engine_specs/presto.py:1342 msgid "Unknown Presto Error" msgstr "" @@ -16978,13 +17190,13 @@ msgstr "" msgid "Unknown Status" msgstr "" -#: superset/connectors/sqla/models.py:1317 superset/models/helpers.py:1498 +#: superset/models/helpers.py:1582 #, python-format msgid "Unknown column used in orderby: %(col)s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:402 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:480 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:398 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:476 msgid "Unknown error" msgstr "" @@ -17045,7 +17257,7 @@ msgstr "Query senza nome" msgid "Untitled query" msgstr "Query senza nome" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:223 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:222 msgid "Update" msgstr "" @@ -17063,7 +17275,7 @@ msgstr "L'aggiornamento del grafico è stato fermato" msgid "Upload" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:202 +#: superset-frontend/src/pages/DatabaseList/index.tsx:213 msgid "Upload CSV" msgstr "" @@ -17080,7 +17292,7 @@ msgstr "" msgid "Upload Enabled" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:216 +#: superset-frontend/src/pages/DatabaseList/index.tsx:227 msgid "Upload Excel file" msgstr "" @@ -17092,7 +17304,7 @@ msgstr "" msgid "Upload JSON file" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:209 +#: superset-frontend/src/pages/DatabaseList/index.tsx:220 #, fuzzy msgid "Upload columnar file" msgstr "Colonna" @@ -17101,7 +17313,7 @@ msgstr "Colonna" msgid "Upload columnar file to database" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:199 +#: superset-frontend/src/pages/DatabaseList/index.tsx:210 #, fuzzy msgid "Upload file to database" msgstr "Mostra database" @@ -17116,7 +17328,7 @@ msgstr "Gestisci" msgid "Use \"%(menuName)s\" menu instead." msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:36 +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 #, fuzzy, python-format msgid "Use %s to open in a new tab." msgstr "Query in un nuovo tab" @@ -17128,7 +17340,7 @@ msgstr "Query in un nuovo tab" msgid "Use Area Proportions" msgstr "Elenco Dashboard" -#: superset/views/database/forms.py:462 +#: superset/views/database/forms.py:472 #, fuzzy msgid "Use Columns" msgstr "Visualizza colonne" @@ -17145,9 +17357,9 @@ msgstr "" msgid "Use a log scale for the Y-axis" msgstr "" -#: superset/db_engine_specs/base.py:1850 -#: superset/db_engine_specs/clickhouse.py:211 -#: superset/db_engine_specs/databricks.py:57 +#: superset/db_engine_specs/base.py:1889 +#: superset/db_engine_specs/clickhouse.py:216 +#: superset/db_engine_specs/databricks.py:58 msgid "Use an encrypted connection to the database" msgstr "" @@ -17158,12 +17370,12 @@ msgid "" " Your chart must be one of these visualization types: [%s]" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:87 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 msgid "Use date formatting even when metric value is not a timestamp" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:217 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 msgid "Use legacy datasource editor" msgstr "" @@ -17209,16 +17421,6 @@ msgid "" " from the pluginʼs package.json" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:28 -msgid "" -"Used to summarize a set of data by grouping together multiple statistics " -"along two axes. Examples: Sales numbers by region and month, tasks by " -"status and assignee, active users by age and location.\n" -"\n" -" This chart is being deprecated and we recommend checking out Pivot " -"Table V2 instead!" -msgstr "" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 msgid "" "Used to summarize a set of data by grouping together multiple statistics " @@ -17262,12 +17464,18 @@ msgstr "condividi query" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:133 #: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 -#: superset/db_engine_specs/base.py:1837 +#: superset/db_engine_specs/base.py:1868 #: superset/db_engine_specs/clickhouse.py:201 #, fuzzy msgid "Username" msgstr "Ricerca Query" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:27 +msgid "" +"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" +" of data" +msgstr "" + #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:45 msgid "" "Uses a gauge to showcase progress of a metric towards a target. The " @@ -17320,9 +17528,9 @@ msgstr "Formato Datetime" msgid "Value is required" msgstr "Sorgente Dati" -#: superset/reports/schemas.py:186 superset/reports/schemas.py:192 -#: superset/reports/schemas.py:198 superset/reports/schemas.py:280 -#: superset/reports/schemas.py:286 superset/reports/schemas.py:293 +#: superset/reports/schemas.py:190 superset/reports/schemas.py:195 +#: superset/reports/schemas.py:200 superset/reports/schemas.py:291 +#: superset/reports/schemas.py:296 superset/reports/schemas.py:302 #, fuzzy msgid "Value must be greater than 0" msgstr "La data di inizio non può essere dopo la data di fine" @@ -17346,16 +17554,16 @@ msgstr "" msgid "Vehicle Types" msgstr "" -#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:252 +#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:251 msgid "Verbose Name" msgstr "Nome Completo" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:503 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:539 #: superset-frontend/src/features/home/RightMenu.tsx:501 msgid "Version" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:509 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:545 msgid "Version number" msgstr "" @@ -17366,7 +17574,7 @@ msgstr "" msgid "Vertical" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:162 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 msgid "Vertical (Left)" msgstr "" @@ -17395,7 +17603,7 @@ msgstr "Mostra database" msgid "View all charts" msgstr "Grafico a Proiettile" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:434 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 msgid "View as table" msgstr "" @@ -17409,8 +17617,8 @@ msgstr "Esponi in SQL Lab" msgid "View keys & indexes (%s)" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:415 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:417 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:424 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:426 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:394 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:396 msgid "View query" @@ -17432,8 +17640,8 @@ msgstr "Cancella" msgid "Viewport" msgstr "Importa" -#: superset-frontend/src/pages/DatasetList/index.tsx:342 -#: superset-frontend/src/pages/DatasetList/index.tsx:559 +#: superset-frontend/src/pages/DatasetList/index.tsx:353 +#: superset-frontend/src/pages/DatasetList/index.tsx:570 msgid "Virtual" msgstr "" @@ -17441,20 +17649,20 @@ msgstr "" msgid "Virtual (SQL)" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:281 +#: superset-frontend/src/pages/DatasetList/index.tsx:292 msgid "Virtual dataset" msgstr "Mostra database" -#: superset/connectors/sqla/models.py:960 superset/connectors/sqla/utils.py:111 -#: superset/models/helpers.py:1036 +#: superset/connectors/sqla/models.py:921 superset/connectors/sqla/utils.py:110 +#: superset/models/helpers.py:1079 msgid "Virtual dataset query cannot be empty" msgstr "" -#: superset/connectors/sqla/models.py:963 superset/models/helpers.py:1039 +#: superset/connectors/sqla/models.py:924 superset/models/helpers.py:1082 msgid "Virtual dataset query cannot consist of multiple statements" msgstr "" -#: superset/connectors/sqla/models.py:928 superset/models/helpers.py:1062 +#: superset/connectors/sqla/models.py:889 superset/models/helpers.py:1105 msgid "Virtual dataset query must be read-only" msgstr "" @@ -17583,7 +17791,7 @@ msgid "" "corresponds to higher frequency." msgstr "" -#: superset/viz.py:141 +#: superset/viz.py:140 msgid "Viz is missing a datasource" msgstr "Datasource mancante per la visualizzazione" @@ -17595,21 +17803,21 @@ msgstr "Tipo" msgid "WED" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:948 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1003 msgid "Want to add a new database?" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1246 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:216 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:214 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 msgid "Warning" msgstr "" -#: superset/connectors/sqla/views.py:258 +#: superset/connectors/sqla/views.py:257 msgid "Warning Message" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:286 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 msgid "Warning!" msgstr "" @@ -17624,13 +17832,13 @@ msgstr "" msgid "Was unable to check your query" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1468 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1523 msgid "" "We are unable to connect to your database. Click \"See more\" for " "database-provided information that may help troubleshoot the issue." msgstr "" -#: superset/db_engine_specs/bigquery.py:197 +#: superset/db_engine_specs/bigquery.py:198 #, python-format msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." msgstr "" @@ -17640,8 +17848,8 @@ msgstr "" msgid "We can't seem to resolve the column \"%(column_name)s\"" msgstr "" -#: superset/db_engine_specs/postgres.py:153 -#: superset/db_engine_specs/presto.py:630 +#: superset/db_engine_specs/postgres.py:152 +#: superset/db_engine_specs/presto.py:657 #, python-format msgid "" "We can't seem to resolve the column \"%(column_name)s\" at line " @@ -17663,7 +17871,7 @@ msgid "" "dataset." msgstr "" -#: superset/db_engine_specs/redshift.py:90 +#: superset/db_engine_specs/redshift.py:94 #, python-format msgid "" "We were unable to connect to your database named \"%(database)s\". Please" @@ -17680,33 +17888,33 @@ msgstr "" msgid "Wednesday" msgstr "" -#: superset/db_engine_specs/base.py:107 +#: superset/db_engine_specs/base.py:108 #, fuzzy msgid "Week" msgstr "settimana" -#: superset/db_engine_specs/base.py:113 +#: superset/db_engine_specs/base.py:114 msgid "Week ending Saturday" msgstr "" -#: superset/db_engine_specs/base.py:112 +#: superset/db_engine_specs/base.py:113 msgid "Week starting Monday" msgstr "" -#: superset/db_engine_specs/base.py:111 +#: superset/db_engine_specs/base.py:112 msgid "Week starting Sunday" msgstr "" -#: superset/db_engine_specs/base.py:114 +#: superset/db_engine_specs/base.py:115 msgid "Week_ending Sunday" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:123 +#: superset-frontend/src/components/ReportModal/index.tsx:122 #, fuzzy msgid "Weekly Report" msgstr "Importa" -#: superset-frontend/src/components/ReportModal/index.tsx:122 +#: superset-frontend/src/components/ReportModal/index.tsx:121 #, python-format msgid "Weekly Report for %s" msgstr "" @@ -17720,6 +17928,7 @@ msgstr "" msgid "Weeks %s" msgstr "settimana" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:49 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:77 #, fuzzy @@ -17755,7 +17964,7 @@ msgstr[0] "" msgid "What should be shown on the label?" msgstr "" -#: superset/views/database/forms.py:165 +#: superset/views/database/forms.py:175 msgid "What should happen if the table already exists" msgstr "" @@ -17782,7 +17991,7 @@ msgstr "" msgid "When checked, the map will zoom to your data after each query" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:189 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 msgid "When enabled, users are able to visualize SQL Lab results in Explore." msgstr "" @@ -17807,11 +18016,11 @@ msgid "" "relative time filter on a partitioned or indexed time-related field." msgstr "" -#: superset/viz.py:861 +#: superset/viz.py:891 msgid "When using 'Group By' you are limited to use a single metric" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:74 msgid "When using other than adaptive formatting, labels may overlap" msgstr "" @@ -17823,11 +18032,11 @@ msgstr "" msgid "Whether the progress bar overlaps when there are multiple groups of data" msgstr "" -#: superset/connectors/sqla/views.py:455 +#: superset/connectors/sqla/views.py:362 msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" msgstr "" -#: superset/connectors/sqla/views.py:111 +#: superset/connectors/sqla/views.py:110 msgid "" "Whether this column is exposed in the `Filters` section of the explore " "view." @@ -17871,7 +18080,7 @@ msgstr "" msgid "Whether to display a bar chart background in table columns" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 msgid "Whether to display a legend for the chart" msgstr "" @@ -17902,14 +18111,14 @@ msgid "" " 5% threshold." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:157 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:118 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:159 msgid "Whether to display the legend (toggles)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:181 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 msgid "Whether to display the metric name as a title" msgstr "" @@ -17922,7 +18131,7 @@ msgstr "" msgid "Whether to display the min and max values of the Y-axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:167 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:187 msgid "Whether to display the numerical values within the cells" @@ -17986,7 +18195,7 @@ msgstr "" msgid "Whether to make the histogram cumulative" msgstr "" -#: superset/connectors/sqla/views.py:106 +#: superset/connectors/sqla/views.py:105 msgid "" "Whether to make this column available as a [Time Granularity] option, " "column has to be DATETIME or DATETIME-like" @@ -18002,7 +18211,7 @@ msgstr "" msgid "Whether to populate autocomplete filters options" msgstr "" -#: superset/connectors/sqla/views.py:450 +#: superset/connectors/sqla/views.py:357 msgid "" "Whether to populate the filter's dropdown in the explore view's filter " "section with a list of distinct values fetched from the backend on the " @@ -18034,7 +18243,8 @@ msgstr "" msgid "Whether to show the split lines on the axis" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:124 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:143 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:174 msgid "Whether to sort ascending or descending on the base Axis." msgstr "" @@ -18064,7 +18274,7 @@ msgstr "" msgid "Whether to sort results by the selected metric in descending order." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:207 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 msgid "Whether to sort tooltip by the selected metric in descending order." msgstr "" @@ -18130,7 +18340,7 @@ msgid "Working timeout" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 -#: superset/viz.py:2079 +#: superset/viz.py:2006 msgid "World Map" msgstr "Mappa del Mondo" @@ -18142,11 +18352,11 @@ msgstr "" msgid "Write a handlebars template to render the data" msgstr "" -#: superset/views/database/forms.py:219 +#: superset/views/database/forms.py:229 msgid "Write dataframe index as a column" msgstr "" -#: superset/views/database/forms.py:380 superset/views/database/forms.py:471 +#: superset/views/database/forms.py:390 superset/views/database/forms.py:481 msgid "Write dataframe index as a column." msgstr "" @@ -18205,12 +18415,14 @@ msgstr "" msgid "X bounds" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:122 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:141 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:172 #, fuzzy msgid "X-Axis Sort Ascending" msgstr "Importa" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:69 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:156 msgid "X-Axis Sort By" msgstr "" @@ -18269,7 +18481,6 @@ msgid "Y Axis 2 Bounds" msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:260 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:248 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:192 @@ -18308,12 +18519,14 @@ msgstr "" msgid "Y bounds" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:121 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:140 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:171 #, fuzzy msgid "Y-Axis Sort Ascending" msgstr "Importa" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:68 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 msgid "Y-Axis Sort By" msgstr "" @@ -18329,7 +18542,7 @@ msgstr "" msgid "YScale Interval" msgstr "" -#: superset/db_engine_specs/base.py:110 +#: superset/db_engine_specs/base.py:111 #, fuzzy msgid "Year" msgstr "anno" @@ -18355,9 +18568,9 @@ msgstr "anno" #: superset-frontend/src/pages/ChartList/index.tsx:707 #: superset-frontend/src/pages/DashboardList/index.tsx:506 #: superset-frontend/src/pages/DashboardList/index.tsx:588 -#: superset-frontend/src/pages/DatabaseList/index.tsx:467 -#: superset-frontend/src/pages/DatabaseList/index.tsx:487 -#: superset-frontend/src/pages/DatasetList/index.tsx:572 +#: superset-frontend/src/pages/DatabaseList/index.tsx:478 +#: superset-frontend/src/pages/DatabaseList/index.tsx:498 +#: superset-frontend/src/pages/DatasetList/index.tsx:583 msgid "Yes" msgstr "" @@ -18384,7 +18597,7 @@ msgid "" "overwrite?" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1394 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1449 msgid "" "You are importing one or more databases that already exist. Overwriting " "might cause you to lose some of your work. Are you sure you want to " @@ -18405,7 +18618,7 @@ msgid "" "want to overwrite?" msgstr "" -#: superset/views/core.py:2177 +#: superset/views/core.py:2213 msgid "" "You are not authorized to see this query. If you think this is an error, " "please reach out to your administrator." @@ -18424,7 +18637,7 @@ msgstr "" msgid "You can add the components in the edit mode." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:127 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:157 msgid "You can also just click on the chart to apply cross-filter." msgstr "" @@ -18447,7 +18660,7 @@ msgstr "" msgid "You can preview the list of dashboards in the chart settings dropdown." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:148 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:178 msgid "You can't apply cross-filter on this data point." msgstr "" @@ -18461,7 +18674,7 @@ msgstr "" msgid "You cannot use 45° tick layout along with the time range filter" msgstr "" -#: superset/viz.py:723 +#: superset/viz.py:748 msgid "" "You cannot use [Columns] in combination with [Group " "By]/[Metrics]/[Percentage Metrics]. Please choose one or the other." @@ -18477,7 +18690,7 @@ msgid "You do not have permission to edit this chart" msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." #: superset-frontend/src/components/Tags/utils.tsx:69 -#: superset-frontend/src/dashboard/actions/dashboardState.js:366 +#: superset-frontend/src/dashboard/actions/dashboardState.js:368 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:134 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:40 @@ -18489,7 +18702,7 @@ msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." msgid "You do not have permissions to access the datasource(s): %(name)s." msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." -#: superset-frontend/src/dashboard/actions/dashboardState.js:162 +#: superset-frontend/src/dashboard/actions/dashboardState.js:160 msgid "You do not have permissions to edit this dashboard." msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." @@ -18503,7 +18716,7 @@ msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." msgid "You don't have access to this dashboard." msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." -#: superset/datasets/commands/exceptions.py:189 +#: superset/datasets/commands/exceptions.py:206 #, fuzzy msgid "You don't have access to this dataset." msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." @@ -18523,17 +18736,17 @@ msgstr "" msgid "You don't have permission to modify the value." msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." -#: superset/security/manager.py:2267 +#: superset/security/manager.py:2262 #, python-format msgid "You don't have the rights to alter %(resource)s" msgstr "" -#: superset/views/core.py:923 +#: superset/views/core.py:945 #, fuzzy msgid "You don't have the rights to alter this chart" msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." -#: superset/views/core.py:1097 +#: superset/views/core.py:1119 #, fuzzy msgid "You don't have the rights to alter this dashboard" msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." @@ -18542,22 +18755,22 @@ msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." msgid "You don't have the rights to alter this title." msgstr "" -#: superset/views/core.py:929 +#: superset/views/core.py:951 #, fuzzy msgid "You don't have the rights to create a chart" msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." -#: superset/views/core.py:1113 +#: superset/views/core.py:1135 #, fuzzy msgid "You don't have the rights to create a dashboard" msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." -#: superset/views/core.py:644 +#: superset/views/core.py:649 #, fuzzy msgid "You don't have the rights to download as csv" msgstr "Non hai i permessi per accedere alla/e sorgente/i dati: %(name)s." -#: superset/views/core.py:424 +#: superset/views/core.py:425 msgid "You have no permission to approve this request" msgstr "" @@ -18569,7 +18782,7 @@ msgstr "" msgid "You have unsaved changes." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:652 +#: superset-frontend/src/dashboard/actions/dashboardState.js:650 #, python-format msgid "" "You have used all %(historyLength)s undo slots and will not be able to " @@ -18578,7 +18791,7 @@ msgid "" msgstr "" #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:300 -#: superset-frontend/src/pages/DatasetList/index.tsx:453 +#: superset-frontend/src/pages/DatasetList/index.tsx:464 msgid "" "You must be a dataset owner in order to edit. Please reach out to a " "dataset owner to request modifications or edit access." @@ -18588,7 +18801,7 @@ msgstr "" msgid "You must pick a name for the new dashboard" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:525 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:519 msgid "You must run the query successfully first" msgstr "" @@ -18596,7 +18809,7 @@ msgstr "" msgid "You need to configure HTML sanitization to use CSS" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:350 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 msgid "" "You updated the values in the control panel, but the chart was not " "updated automatically. Run the query by clicking on the \"Update chart\" " @@ -18609,7 +18822,7 @@ msgid "" "match this new dataset have been retained." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:343 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 msgid "Your chart is not up to date" msgstr "" @@ -18621,7 +18834,7 @@ msgstr "" msgid "Your dashboard is too large. Please reduce its size before saving it." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1036 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1028 msgid "Your query could not be saved" msgstr "La tua query non può essere salvata" @@ -18629,7 +18842,7 @@ msgstr "La tua query non può essere salvata" msgid "Your query could not be scheduled" msgstr "La tua query non può essere salvata" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1071 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1063 msgid "Your query could not be updated" msgstr "La tua query non può essere salvata" @@ -18639,16 +18852,16 @@ msgid "" "Saved queries" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1051 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 #, fuzzy msgid "Your query was not properly saved" msgstr "La tua query è stata salvata" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1054 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1046 msgid "Your query was saved" msgstr "La tua query è stata salvata" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1067 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1059 msgid "Your query was updated" msgstr "La tua query è stata salvata" @@ -18671,20 +18884,20 @@ msgstr "" msgid "Zoom level of the map" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:262 +#: superset-frontend/src/dashboard/actions/dashboardState.js:260 #, fuzzy msgid "[ untitled dashboard ]" msgstr "Aggiungi ad una nuova dashboard" -#: superset/viz.py:2386 +#: superset/viz.py:2323 msgid "[Longitude] and [Latitude] columns must be present in [Group By]" msgstr "" -#: superset/viz.py:2336 +#: superset/viz.py:2273 msgid "[Longitude] and [Latitude] must be set" msgstr "" -#: superset/explore/commands/get.py:121 superset/views/core.py:870 +#: superset/explore/commands/get.py:121 superset/views/core.py:892 #, fuzzy msgid "[Missing Dataset]" msgstr "Seleziona una destinazione" @@ -18699,7 +18912,7 @@ msgstr "[Superset] Accesso al datasource $(name) concesso" msgid "[Untitled]" msgstr "%s - senza nome" -#: superset/connectors/base/models.py:252 superset/models/sql_lab.py:228 +#: superset/connectors/base/models.py:262 superset/models/sql_lab.py:216 msgid "[asc]" msgstr "" @@ -18711,7 +18924,7 @@ msgstr "" msgid "[dashboard name]" msgstr "" -#: superset/connectors/base/models.py:255 superset/models/sql_lab.py:231 +#: superset/connectors/base/models.py:265 superset/models/sql_lab.py:219 msgid "[desc]" msgstr "" @@ -18736,7 +18949,7 @@ msgstr "" msgid "`compare_type` must be `difference`, `percentage` or `ratio`" msgstr "" -#: superset/charts/schemas.py:573 +#: superset/charts/schemas.py:654 msgid "`confidence_interval` must be between 0 and 1 (exclusive)" msgstr "" @@ -18759,15 +18972,15 @@ msgstr "" msgid "`rename_columns` must have the same length as `columns`." msgstr "" -#: superset/charts/schemas.py:1114 +#: superset/charts/schemas.py:1284 msgid "`row_limit` must be greater than or equal to 0" msgstr "" -#: superset/charts/schemas.py:1121 +#: superset/charts/schemas.py:1291 msgid "`row_offset` must be greater than or equal to 0" msgstr "" -#: superset/charts/schemas.py:972 +#: superset/charts/schemas.py:1108 msgid "`width` must be greater or equal to 0" msgstr "" @@ -18775,10 +18988,16 @@ msgstr "" msgid "aggregate" msgstr "" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 #: superset-frontend/src/pages/AlertReportList/index.tsx:110 msgid "alert" msgstr "" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 +#, fuzzy +msgid "alert dark" +msgstr "Ultima Modifica" + #: superset-frontend/src/pages/AlertReportList/index.tsx:111 msgid "alerts" msgstr "" @@ -18921,7 +19140,7 @@ msgid "clear all filters" msgstr "Cerca / Filtra" #: superset-frontend/src/components/Chart/Chart.jsx:290 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:354 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 msgid "click here" msgstr "" @@ -18952,7 +19171,7 @@ msgstr "" msgid "count" msgstr "Colonna" -#: superset-frontend/src/explore/components/SaveModal.tsx:365 +#: superset-frontend/src/explore/components/SaveModal.tsx:400 #, fuzzy msgid "create" msgstr "Creato il" @@ -19000,16 +19219,16 @@ msgid "dashboards" msgstr "Elenco Dashboard" #: superset-frontend/src/features/databases/DatabaseModal/index.tsx:543 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:712 -#: superset-frontend/src/pages/DatabaseList/index.tsx:91 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:729 +#: superset-frontend/src/pages/DatabaseList/index.tsx:102 msgid "database" msgstr "Database" #: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 #: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 #: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 -#: superset-frontend/src/pages/DatasetList/index.tsx:148 -#: superset-frontend/src/pages/DatasetList/index.tsx:822 +#: superset-frontend/src/pages/DatasetList/index.tsx:159 +#: superset-frontend/src/pages/DatasetList/index.tsx:844 msgid "dataset" msgstr "" @@ -19022,8 +19241,8 @@ msgstr "Database" msgid "date" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 msgid "day" msgstr "giorno" @@ -19052,6 +19271,11 @@ msgstr "" msgid "deck.gl Grid" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:30 +#, fuzzy +msgid "deck.gl Heatmap" +msgstr "Grafico a Proiettile" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:28 msgid "deck.gl Multiple Layers" msgstr "" @@ -19081,6 +19305,7 @@ msgstr "Grafico a Proiettile" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:34 @@ -19167,11 +19392,11 @@ msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:112 #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:657 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:674 msgid "e.g. world_population" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:655 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:672 msgid "e.g. xy12345.us-east-2.aws" msgstr "" @@ -19190,7 +19415,16 @@ msgstr "Ricerca Query" msgid "entries" msgstr "Query salvate" -#: superset/connectors/sqla/models.py:1537 superset/models/helpers.py:1742 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +#, fuzzy +msgid "error" +msgstr "Errore..." + +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 +msgid "error dark" +msgstr "" + +#: superset/models/helpers.py:1803 msgid "error_message" msgstr "" @@ -19273,10 +19507,6 @@ msgstr "" msgid "geohash (square)" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 -msgid "green" -msgstr "" - #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:168 #, fuzzy msgid "heatmap" @@ -19290,13 +19520,13 @@ msgstr "" #: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:125 #: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1800 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1856 msgid "here" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 msgid "hour" msgstr "ora" @@ -19333,7 +19563,7 @@ msgstr "" msgid "joined" msgstr "" -#: superset/views/base.py:595 +#: superset/views/base.py:596 msgid "json isn't valid" msgstr "json non è valido" @@ -19398,14 +19628,13 @@ msgstr "Grafico a torta" msgid "log" msgstr "" -#: superset/charts/schemas.py:645 +#: superset/charts/schemas.py:735 msgid "" "lower percentile must be greater than 0 and less than 100. Must be lower " "than upper percentile." msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:189 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:58 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 #: superset-frontend/src/filters/components/Range/buildQuery.ts:69 #, fuzzy @@ -19415,9 +19644,9 @@ msgstr "Max" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:187 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:254 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:56 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:136 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:119 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:403 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:531 @@ -19435,15 +19664,14 @@ msgstr "" msgid "median" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:60 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:62 #: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 #, fuzzy msgid "metric" msgstr "Metrica" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:188 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:57 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 #: superset-frontend/src/filters/components/Range/buildQuery.ts:58 #, fuzzy @@ -19465,8 +19693,8 @@ msgid "monotone" msgstr "mese" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 #: superset-frontend/src/explore/controls.jsx:267 msgid "month" @@ -19477,7 +19705,7 @@ msgid "more than {max} {name}" msgstr "" #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:53 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:78 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:77 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:116 msgid "must have a value" msgstr "" @@ -19540,7 +19768,7 @@ msgstr "ora" msgid "or use existing ones from the panel on the right" msgstr "" -#: superset/charts/schemas.py:1143 +#: superset/charts/schemas.py:1313 #, fuzzy msgid "orderby column must be populated" msgstr "La tua query non può essere salvata" @@ -19598,7 +19826,7 @@ msgid "" " first is lower than the second value" msgstr "" -#: superset/views/core.py:1921 +#: superset/views/core.py:1958 #, fuzzy msgid "permalink state not found" msgstr "Template CSS" @@ -19654,12 +19882,7 @@ msgstr "" msgid "recents" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 -#, fuzzy -msgid "red" -msgstr "Creato il" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:563 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:566 #: superset-frontend/src/pages/AlertReportList/index.tsx:110 msgid "report" msgstr "Importa" @@ -19671,7 +19894,7 @@ msgstr "Importa" msgid "reports" msgstr "Importa" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:491 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:522 msgid "restore zoom" msgstr "" @@ -19681,6 +19904,10 @@ msgstr "" msgid "right" msgstr "Altezza" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:139 +msgid "rowlevelsecurity" +msgstr "" + #: superset-frontend/src/SqlLab/constants.ts:36 #: superset-frontend/src/SqlLab/constants.ts:52 #, fuzzy @@ -19730,7 +19957,6 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:190 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:59 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:138 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:405 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:185 @@ -19763,16 +19989,22 @@ msgstr "" #: superset-frontend/src/SqlLab/constants.ts:38 #: superset-frontend/src/SqlLab/constants.ts:50 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 #, fuzzy msgid "success" msgstr "Nessun Accesso!" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +#, fuzzy +msgid "success dark" +msgstr "Nessun Accesso!" + #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:186 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:255 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:378 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:55 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:260 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:532 @@ -19815,7 +20047,7 @@ msgstr "" msgid "unknown type icon" msgstr "" -#: superset/charts/schemas.py:660 +#: superset/charts/schemas.py:750 msgid "" "upper percentile must be greater than 0 and less than 100. Must be higher" " than lower percentile." @@ -19838,7 +20070,6 @@ msgid "value descending" msgstr "Importa" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:60 msgid "var" msgstr "" @@ -19860,13 +20091,13 @@ msgstr "" msgid "viz type" msgstr "Tipo" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:451 msgid "was created" msgstr "è stata creata" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:62 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 #: superset-frontend/src/explore/controls.jsx:264 msgid "week" @@ -19899,16 +20130,12 @@ msgid "y: values are normalized within each row" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 #: superset-frontend/src/explore/controls.jsx:269 msgid "year" msgstr "anno" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 -msgid "yellow" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:490 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:521 msgid "zoom area" msgstr "" diff --git a/superset/translations/ja/LC_MESSAGES/messages.json b/superset/translations/ja/LC_MESSAGES/messages.json index 5018a00e07..43150d8899 100644 --- a/superset/translations/ja/LC_MESSAGES/messages.json +++ b/superset/translations/ja/LC_MESSAGES/messages.json @@ -129,6 +129,9 @@ "" ], "A database with the same name already exists.": [""], + "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ + "" + ], "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ "" ], @@ -199,7 +202,6 @@ "Add Database": ["データベースを追加"], "Add Log": ["ログを追加"], "Add Metric": ["指標を追加"], - "Add Row level security filter": [""], "Add Saved Query": ["保存したクエリを追加"], "Add a Plugin": [""], "Add a new tab to create SQL Query": [""], @@ -210,6 +212,7 @@ "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ "" ], + "Add custom scoping": [""], "Add delivery method": [""], "Add filter": ["フィルタを追加"], "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ @@ -292,6 +295,7 @@ "All": [""], "All Text": [""], "All charts": ["すべてのチャート"], + "All charts/global scoping": [""], "All filters": ["すべてのフィルタ"], "All filters (%(filterCount)d)": [""], "All panels with this column will be affected by this filter": [ @@ -549,6 +553,12 @@ "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ "" ], + "Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "" + ], + "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [ + "" + ], "Box Plot": [""], "Bubble Chart": ["バブルチャート"], "Bubble Size": [""], @@ -712,7 +722,6 @@ ], "Choose a dataset": ["データセットを選択"], "Choose a metric for right axis": ["右軸の指標を選択"], - "Choose a unique name": [""], "Choose one of the available databases from the panel on the left.": [""], "Choose the annotation layer type": [ "注釈レイヤーのタイプを選んでください" @@ -751,7 +760,6 @@ ], "Click to cancel sorting": [""], "Click to edit": [""], - "Click to edit %s in a new tab": [""], "Click to edit %s.": [""], "Click to edit chart.": [""], "Click to edit label": [""], @@ -780,6 +788,7 @@ "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ "" ], + "Column Data Types": [""], "Column Label(s)": [""], "Column containing ISO 3166-2 codes of region/province/department in your table.": [ "" @@ -896,6 +905,7 @@ "データベースドライバ: %(driver_name)s 読み込めませんでした" ], "Could not load database driver: {}": [""], + "Could not resolve hostname: \"%(host)s\".": [""], "Count Unique Values": [""], "Count as Fraction of Columns": [""], "Count as Fraction of Rows": [""], @@ -1063,6 +1073,7 @@ "Db engine did not return all queried columns": [""], "December": ["12月"], "Decides which column to sort the base axis by.": [""], + "Decides which measure to sort the base axis by.": [""], "Decimal Character": [""], "Deck.gl - 3D Grid": [""], "Deck.gl - 3D HEX": [""], @@ -1187,7 +1198,6 @@ "" ], "Display row level total": [""], - "Display total row/column": [""], "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ "" ], @@ -1217,7 +1227,6 @@ "" ], "Drill to detail: %s": [""], - "Drop temporal column here": [""], "Duplicate column name(s): %(columns)s": [""], "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ "" @@ -1256,7 +1265,6 @@ "Edit Log": ["ログを編集"], "Edit Metric": ["指標を編集"], "Edit Plugin": [""], - "Edit Row level security filter": [""], "Edit Saved Query": ["保存したクエリの編集"], "Edit Table": ["テーブルを編集"], "Edit annotation": ["注釈を編集する"], @@ -1355,6 +1363,7 @@ ], "Excel to Database configuration": [""], "Exclude selected values": [""], + "Excluded roles": [""], "Executed query": ["実行したクエリ"], "Execution ID": ["実行 ID"], "Execution log": ["実行ログ"], @@ -1402,8 +1411,10 @@ "Failed at stopping query. %s": [""], "Failed to create report": [""], "Failed to execute %(query)s": [""], + "Failed to generate chart edit URL": [""], "Failed to load chart data": [""], "Failed to load chart data.": [""], + "Failed to load dimensions for drill by": [""], "Failed to retrieve advanced type": [""], "Failed to start remote query on a worker.": [""], "Failed to update report": [""], @@ -1422,7 +1433,6 @@ "Fill method": [""], "Filter List": ["フィルタリスト"], "Filter Type": ["フィルタタイプ"], - "Filter box": ["フィルタボックス"], "Filter configuration": ["フィルタ構成"], "Filter configuration for the filter box": [""], "Filter has default value": [""], @@ -1511,10 +1521,8 @@ "Grid Size": [""], "Group By": [""], "Group By filter plugin": [""], - "Group By' and 'Columns' can't overlap": [ - "‘Group by’ と ‘Columns’ は重複できません" - ], "Group By, Metrics or Percentage Metrics must have a value": [""], + "Group Key": [""], "Group by": [""], "Groupable": ["グループ分け可能"], "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap.": [ @@ -1607,11 +1615,20 @@ "Input field supports custom rotation. e.g. 30 for 30°": [""], "Instant filtering": [""], "Intensity": [""], + "Intensity Radius": [""], + "Intensity Radius is the radius at which the weight is distributed": [""], + "Intensity is the value multiplied by the weight to obtain the final weight": [ + "" + ], "Interpret Datetime Format Automatically": [""], "Interpret the datetime format automatically": [""], "Interval End column": [""], "Interval bounds": [""], "Interval start column": [""], + "Intesity": [""], + "Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:port/database'.": [ + "" + ], "Invalid JSON": [""], "Invalid advanced data type: %(advanced_data_type)s": [""], "Invalid certificate": ["無効な証明書"], @@ -1639,6 +1656,7 @@ "Invalid numpy function: %(operator)s": [""], "Invalid options for %(rolling_type)s: %(options)s": [""], "Invalid permalink key": [""], + "Invalid reference to column: \"%(column)s\"": [""], "Invalid result type: %(result_type)s": [""], "Invalid rolling_type: %(type)s": [""], "Invalid spatial point encountered: %s": [""], @@ -1940,7 +1958,6 @@ "No data in file": ["ファイルにデータがありません"], "No databases match your search": [""], "No description available.": [""], - "No dimensions available for drill by": [""], "No favorite charts yet, go click on stars!": [ "お気に入りのチャートはまだありません。星をクリックしてください!" ], @@ -2071,7 +2088,6 @@ ], "Optional name of the data column.": [""], "Optional warning about use of this metric": [""], - "Optionally add a detailed description": [""], "Or choose from a list of other databases we support:": [""], "Order by entity id": [""], "Order results by selected columns": [""], @@ -2161,9 +2177,7 @@ "Pick your favorite markup language": [ "お気に入りのマークアップ言語を選択" ], - "Pivot Options": [""], "Pivot Table": ["ピボットテーブル"], - "Pivot Table (legacy)": [""], "Pivot operation must include at least one aggregate": [""], "Pivot operation requires at least one index": [""], "Pixel height of each series": [""], @@ -2183,9 +2197,6 @@ "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ "" ], - "Please choose at least one metric": [ - "少なくとも1つの指標を選択してください" - ], "Please choose different metrics on left and right axis": [""], "Please confirm": ["確認してください"], "Please confirm the overwrite values.": [""], @@ -2227,6 +2238,7 @@ "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ "" ], + "Port out of range 0-65535": [""], "Position JSON": [""], "Position of child node label on tree": [""], "Position of column level subtotal": [""], @@ -2243,6 +2255,7 @@ "Preview: `%s`": [""], "Previous": ["前"], "Primary or secondary y-axis": [""], + "Primary y-axis Bounds": [""], "Primary y-axis format": [""], "Private Key": [""], "Private Key & Password": [""], @@ -2321,7 +2334,8 @@ "Refresh interval": ["更新間隔"], "Refresh the default values": [""], "Refreshing columns": [""], - "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter. Base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ + "Regular": [""], + "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter, base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ "" ], "Relationships between community channels": [""], @@ -2439,13 +2453,13 @@ "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ "" ], - "Row level security filter": [""], "Row limit": [""], "Rows": [""], "Rows per page, 0 means no pagination": [""], "Rows subtotal position": [""], "Rows to Read": [""], "Rule": [""], + "Rule added": [""], "Run": ["実行"], "Run in SQL Lab": ["SQL Labで実行"], "Run query": ["クエリ実行"], @@ -2543,6 +2557,7 @@ "Search by query text": [""], "Search...": ["検索…"], "Second": ["秒"], + "Secondary y-axis Bounds": [""], "Secondary y-axis format": [""], "Secondary y-axis title": [""], "Secure Extra": [""], @@ -2577,6 +2592,12 @@ "Select start and end date": ["開始日と終了日を選択"], "Select subject": [""], "Select table or type to search tables": [""], + "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" + ], + "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" + ], "Select the number of bins for the histogram": [""], "Select the numeric columns to draw the histogram": [""], "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ @@ -2629,7 +2650,6 @@ "Show Log": ["ログを表示"], "Show Markers": [""], "Show Metric": ["指標を表示"], - "Show Row level security filter": [""], "Show Saved Query": ["保存したクエリを表示"], "Show Table": ["テーブルを表示"], "Show Timestamp": [""], @@ -2811,6 +2831,9 @@ "Symbol size": [""], "Sync columns from source": [""], "Syntax": [""], + "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ + "" + ], "TABLES": [""], "TEMPORAL X-AXIS": [""], "THU": ["木"], @@ -2833,6 +2856,7 @@ "Table cache timeout": [""], "Table name cannot contain a schema": [""], "Table name undefined": [""], + "Table or View \"%(table)s\" does not exist.": [""], "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ "" ], @@ -3080,6 +3104,9 @@ "The type of visualization to display": ["表示する可視化のタイプ"], "The unit of measure for the specified point radius": [""], "The user seems to have been deleted": [""], + "The user/password combination is not valid (Incorrect password for user).": [ + "" + ], "The username \"%(username)s\" does not exist.": [""], "The way the ticks are laid out on the X-axis": [""], "There are associated alerts or reports": [ @@ -3165,7 +3192,7 @@ "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ "" ], - "This chart emits/applies cross-filters to other charts that use the same dataset": [ + "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ "" ], "This chart has been moved to a different filter scope.": [ @@ -3334,7 +3361,6 @@ "To get a readable URL for your dashboard": [ "ダッシュボードの読み取り可能なURLを取得するには" ], - "Too many columns to filter": [""], "Tools": [""], "Tooltip": [""], "Top to Bottom": [""], @@ -3345,7 +3371,6 @@ "Track job": ["ジョブ履歴"], "Transformable": [""], "Transparent": [""], - "Transpose Pivot": [""], "Transpose pivot": [""], "Tree layout": [""], "Treemap": ["ツリーマップ"], @@ -3390,6 +3415,8 @@ "" ], "Unable to create chart without a query id.": [""], + "Unable to decode value": [""], + "Unable to encode value": [""], "Unable to find such a holiday: [%(holiday)s]": [""], "Unable to load columns for the selected table. Please select a different table.": [ "" @@ -3469,9 +3496,6 @@ "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ "" ], - "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location.\n\n This chart is being deprecated and we recommend checking out Pivot Table V2 instead!": [ - "" - ], "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ "" ], @@ -3481,6 +3505,9 @@ "User must select a value for this filter": [""], "User query": ["ユーザークエリ"], "Username": ["ユーザー名"], + "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ + "" + ], "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ "" ], @@ -3943,6 +3970,7 @@ "e.g. world_population": [""], "e.g. xy12345.us-east-2.aws": [""], "e.g., a \"user id\" column": [""], + "error dark": [""], "every": [""], "every day of the month": [""], "every day of the week": [""], @@ -3956,7 +3984,6 @@ "for more information on how to structure your URI.": [""], "function type icon": [""], "geohash (square)": [""], - "green": [""], "heatmap: values are normalized across the entire heatmap": [""], "hour": ["時間"], "id": [""], @@ -4042,7 +4069,6 @@ "y": [""], "y: values are normalized within each row": [""], "year": ["年"], - "yellow": [""], "zoom area": [""] } } diff --git a/superset/translations/ja/LC_MESSAGES/messages.po b/superset/translations/ja/LC_MESSAGES/messages.po index b66d29b7f2..b9f90f449e 100644 --- a/superset/translations/ja/LC_MESSAGES/messages.po +++ b/superset/translations/ja/LC_MESSAGES/messages.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-04-07 19:09+0200\n" +"POT-Creation-Date: 2023-05-23 16:30-0300\n" "PO-Revision-Date: 2021-04-27 01:24+0900\n" "Last-Translator: Yuri Umezaki \n" "Language: ja\n" @@ -37,7 +37,7 @@ msgid "" " " msgstr "" -#: superset/reports/notifications/email.py:88 +#: superset/reports/notifications/email.py:89 #, python-format msgid "" "\n" @@ -56,12 +56,12 @@ msgid "" "in the GeoJSON" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:364 +#: superset-frontend/src/explore/components/SaveModal.tsx:399 #, fuzzy msgid " a dashboard OR " msgstr "ダッシュボードを保存" -#: superset-frontend/src/explore/components/SaveModal.tsx:366 +#: superset-frontend/src/explore/components/SaveModal.tsx:401 #, fuzzy msgid " a new one" msgstr "変更日" @@ -92,7 +92,7 @@ msgid "" " database/column name level via the extra parameter." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:334 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:340 #, fuzzy msgid " to add calculated columns" msgstr "列を削除する" @@ -106,8 +106,8 @@ msgstr "保存した指標" msgid " to edit or add columns and metrics." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:323 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:358 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:364 msgid " to mark a column as a time column" msgstr "" @@ -115,7 +115,7 @@ msgstr "" msgid " to open SQL Lab. From there you can save the query as a dataset." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:333 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 msgid " to visualize your data." msgstr "" @@ -123,7 +123,7 @@ msgstr "" msgid "!= (Is not equal)" msgstr "" -#: superset/security/analytics_db_safety.py:44 +#: superset/security/analytics_db_safety.py:48 #, python-format msgid "%(dialect)s cannot be used as a data source for security reasons." msgstr "" @@ -136,7 +136,7 @@ msgid "" "%(issues)s" msgstr "" -#: superset/reports/notifications/email.py:168 +#: superset/reports/notifications/email.py:171 #, python-format msgid "%(name)s.csv" msgstr "" @@ -166,14 +166,14 @@ msgstr "" msgid "%(other)s saved queries will appear here" msgstr "最近表示したグラフ、ダッシュボード、保存したクエリがここに表示されます" -#: superset/reports/notifications/email.py:177 +#: superset/reports/notifications/email.py:180 #, python-format msgid "%(prefix)s %(title)s" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:345 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:363 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:377 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:338 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:356 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:370 #, fuzzy, python-format msgid "%(rows)d rows returned" msgstr "行を取得" @@ -194,19 +194,19 @@ msgid_plural "" "\"%(undefinedParameter)s\"?" msgstr[0] "" -#: superset/views/core.py:384 +#: superset/views/core.py:385 #, python-format msgid "" "%(user)s was granted the role %(role)s that gives access to the " "%(datasource)s" msgstr "" -#: superset/views/core.py:2672 +#: superset/views/core.py:2709 #, python-format msgid "%(user)s's profile" msgstr "%(user)s' のプロファイル" -#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2327 +#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2369 #, python-format msgid "" "%(validator)s was unable to check your query.\n" @@ -220,25 +220,25 @@ msgid "%s Error" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:298 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1300 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1355 #, fuzzy, python-format msgid "%s PASSWORD" msgstr "パスワード" #: superset-frontend/src/components/ImportModal/index.tsx:318 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1318 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1373 #, python-format msgid "%s SSH TUNNEL PASSWORD" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:341 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1336 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1391 #, python-format msgid "%s SSH TUNNEL PRIVATE KEY" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:363 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1356 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1411 #, python-format msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" msgstr "" @@ -248,17 +248,17 @@ msgstr "" msgid "%s Selected" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:808 +#: superset-frontend/src/pages/DatasetList/index.tsx:830 #, python-format msgid "%s Selected (%s Physical, %s Virtual)" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:801 +#: superset-frontend/src/pages/DatasetList/index.tsx:823 #, python-format msgid "%s Selected (Physical)" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:794 +#: superset-frontend/src/pages/DatasetList/index.tsx:816 #, python-format msgid "%s Selected (Virtual)" msgstr "" @@ -268,8 +268,8 @@ msgstr "" msgid "%s aggregates(s)" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:274 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:371 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:280 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:377 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:346 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 #, python-format @@ -306,8 +306,8 @@ msgstr[0] "行" msgid "%s saved metric(s)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:636 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:652 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:639 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:655 #, fuzzy, python-format msgid "%s updated" msgstr "最終更新 %s" @@ -324,7 +324,7 @@ msgstr "" msgid "%s-%s of %s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:115 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:116 msgid "(Removed)" msgstr "(削除)" @@ -374,22 +374,22 @@ msgstr "" msgid "+ %s more" msgstr "" -#: superset/views/database/forms.py:153 +#: superset/views/database/forms.py:163 msgid "," msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:656 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:652 msgid "" "-- Note: Unless you save your query, these tabs will NOT persist if you " "clear your cookies or change browsers.\n" "\n" msgstr "" -#: superset/views/database/forms.py:154 +#: superset/views/database/forms.py:164 msgid "." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:791 +#: superset-frontend/src/pages/DatasetList/index.tsx:813 msgid "0 Selected" msgstr "" @@ -487,7 +487,7 @@ msgstr "更新頻度" msgid "1 year start frequency" msgstr "更新頻度" -#: superset/db_engine_specs/base.py:101 +#: superset/db_engine_specs/base.py:102 msgid "10 minute" msgstr "10分" @@ -503,7 +503,7 @@ msgstr "週" msgid "104 weeks ago" msgstr "" -#: superset/db_engine_specs/base.py:102 +#: superset/db_engine_specs/base.py:103 msgid "15 minute" msgstr "15分" @@ -623,7 +623,7 @@ msgstr "30日" msgid "30 days ago" msgstr "30日" -#: superset/db_engine_specs/base.py:103 +#: superset/db_engine_specs/base.py:104 #, fuzzy msgid "30 minute" msgstr "30分" @@ -633,7 +633,7 @@ msgstr "30分" msgid "30 minutes" msgstr "30分" -#: superset/db_engine_specs/base.py:98 +#: superset/db_engine_specs/base.py:99 #, fuzzy msgid "30 second" msgstr "30秒" @@ -654,7 +654,7 @@ msgstr "" msgid "4 weeks (freq=4W-MON)" msgstr "" -#: superset/db_engine_specs/base.py:100 +#: superset/db_engine_specs/base.py:101 msgid "5 minute" msgstr "5分" @@ -663,7 +663,7 @@ msgstr "5分" msgid "5 minutes" msgstr "5分" -#: superset/db_engine_specs/base.py:97 +#: superset/db_engine_specs/base.py:98 #, fuzzy msgid "5 second" msgstr "30秒" @@ -692,7 +692,7 @@ msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 #: superset-frontend/src/explore/controls.jsx:261 -#: superset/db_engine_specs/base.py:105 +#: superset/db_engine_specs/base.py:106 #, fuzzy msgid "6 hour" msgstr "6時間" @@ -781,15 +781,15 @@ msgstr "" msgid "A Big Number" msgstr "数値" -#: superset/views/database/forms.py:184 +#: superset/views/database/forms.py:194 msgid "A comma separated list of columns that should be parsed as dates" msgstr "" -#: superset/views/database/forms.py:367 +#: superset/views/database/forms.py:377 msgid "A comma separated list of columns that should be parsed as dates." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:433 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 msgid "A comma-separated list of schemas that files are allowed to upload to." msgstr "" @@ -797,6 +797,12 @@ msgstr "" msgid "A database with the same name already exists." msgstr "" +#: superset/views/database/forms.py:145 +msgid "" +"A dictionary with column names and their data types if you need to change" +" the defaults. Example: {\"user_id\":\"integer\"}" +msgstr "" + #: superset/views/dynamic_plugins.py:52 msgid "" "A full URL pointing to the location of the built plugin (could be hosted " @@ -862,16 +868,16 @@ msgstr "" msgid "A report named \"%(name)s\" already exists" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:333 +#: superset-frontend/src/explore/components/SaveModal.tsx:368 msgid "A reusable dataset will be saved with your chart." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:309 +#: superset-frontend/src/components/ReportModal/index.tsx:308 msgid "A screenshot of the dashboard will be sent to your email at" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 -#: superset/connectors/sqla/views.py:458 +#: superset/connectors/sqla/views.py:365 msgid "" "A set of parameters that become available in the query using Jinja " "templating syntax" @@ -917,8 +923,8 @@ msgstr "適用" msgid "APR" msgstr "4月" -#: superset-frontend/src/pages/DatabaseList/index.tsx:312 -#: superset-frontend/src/pages/DatabaseList/index.tsx:478 +#: superset-frontend/src/pages/DatabaseList/index.tsx:323 +#: superset-frontend/src/pages/DatabaseList/index.tsx:489 msgid "AQE" msgstr "" @@ -946,7 +952,7 @@ msgstr "" msgid "Access" msgstr "アクセス" -#: superset/initialization/__init__.py:431 +#: superset/initialization/__init__.py:425 msgid "Access requests" msgstr "アクセス要求" @@ -958,7 +964,7 @@ msgstr "" msgid "Access token" msgstr "" -#: superset/views/core.py:317 +#: superset/views/core.py:318 msgid "Access was requested" msgstr "" @@ -966,7 +972,7 @@ msgstr "" msgid "Action" msgstr "アクション" -#: superset/initialization/__init__.py:393 +#: superset/initialization/__init__.py:387 msgid "Action Log" msgstr "操作履歴" @@ -977,9 +983,10 @@ msgstr "操作履歴" #: superset-frontend/src/pages/ChartList/index.tsx:569 #: superset-frontend/src/pages/CssTemplateList/index.tsx:229 #: superset-frontend/src/pages/DashboardList/index.tsx:477 -#: superset-frontend/src/pages/DatabaseList/index.tsx:448 -#: superset-frontend/src/pages/DatasetList/index.tsx:488 +#: superset-frontend/src/pages/DatabaseList/index.tsx:459 +#: superset-frontend/src/pages/DatasetList/index.tsx:499 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:327 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:216 #: superset-frontend/src/pages/SavedQueryList/index.tsx:437 #: superset-frontend/src/pages/Tags/index.tsx:171 msgid "Actions" @@ -1012,19 +1019,20 @@ msgstr "デフォルト値" msgid "Actual values" msgstr "デフォルト値" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:35 -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 #: superset-frontend/src/explore/controls.jsx:78 #: superset-frontend/src/explore/controls.jsx:101 #, fuzzy msgid "Adaptive formatting" msgstr "日時フォーマット" -#: superset-frontend/src/components/ReportModal/index.tsx:229 +#: superset-frontend/src/components/ReportModal/index.tsx:228 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 #: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 #: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 msgid "Add" msgstr "追加" @@ -1045,7 +1053,7 @@ msgstr "CSSテンプレートを追加する" msgid "Add Chart" msgstr "チャートを追加" -#: superset/connectors/sqla/views.py:74 +#: superset/connectors/sqla/views.py:73 msgid "Add Column" msgstr "" @@ -1061,7 +1069,7 @@ msgstr "データベースを追加" msgid "Add Log" msgstr "ログを追加" -#: superset/connectors/sqla/views.py:209 +#: superset/connectors/sqla/views.py:208 msgid "Add Metric" msgstr "指標を追加" @@ -1070,9 +1078,10 @@ msgstr "指標を追加" msgid "Add Report" msgstr "レポート" -#: superset/connectors/sqla/views.py:292 -msgid "Add Row level security filter" -msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +#, fuzzy +msgid "Add Rule" +msgstr "日時フォーマット" #: superset/views/sql_lab/views.py:54 msgid "Add Saved Query" @@ -1087,12 +1096,12 @@ msgstr "" msgid "Add a dataset" msgstr "データセットを追加" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:262 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:272 #, fuzzy msgid "Add a new tab" msgstr "新しいチャートとして保存" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:286 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:296 msgid "Add a new tab to create SQL Query" msgstr "" @@ -1125,24 +1134,28 @@ msgstr "注釈を追加" msgid "Add annotation layer" msgstr "注釈レイヤーを追加" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:300 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:306 msgid "Add calculated columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:297 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:303 msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:167 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:197 #, fuzzy msgid "Add cross-filter" msgstr "フィルタを追加" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 +msgid "Add custom scoping" +msgstr "" + #: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 msgid "Add delivery method" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:330 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 #, fuzzy msgid "Add extra connection information." msgstr "基本情報" @@ -1216,7 +1229,7 @@ msgstr "アクティブなチャートのID" msgid "Add the name of the dashboard" msgstr "保存してダッシュボードに移動" -#: superset-frontend/src/explore/components/SaveModal.tsx:351 +#: superset-frontend/src/explore/components/SaveModal.tsx:386 msgid "Add to dashboard" msgstr "新しいダッシュボードに追加" @@ -1242,7 +1255,7 @@ msgstr[0] "新しいダッシュボードに追加" msgid "Additional Parameters" msgstr "追加パラメータ" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1787 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1843 msgid "Additional fields may be required" msgstr "" @@ -1255,18 +1268,18 @@ msgstr "追加情報" msgid "Additional metadata" msgstr "追加情報" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:54 #, fuzzy msgid "Additional padding for legend." msgstr "追加情報" -#: superset/db_engine_specs/base.py:1847 -#: superset/db_engine_specs/clickhouse.py:214 +#: superset/db_engine_specs/base.py:1885 +#: superset/db_engine_specs/clickhouse.py:221 #, fuzzy msgid "Additional parameters" msgstr "追加パラメータ" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:444 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 #, fuzzy msgid "Additional settings." msgstr "追加情報" @@ -1282,17 +1295,18 @@ msgstr "" msgid "Additive" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:75 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 msgid "Adjust how this database will interact with SQL Lab." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:221 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:231 msgid "Adjust performance settings of this database." msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:132 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:91 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:127 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:93 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 @@ -1301,7 +1315,7 @@ msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:939 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:771 #: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1811 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 msgid "Advanced" msgstr "" @@ -1400,7 +1414,6 @@ msgid "" "produce the cluster label." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:63 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:202 msgid "" "Aggregate function to apply when pivoting and computing the total rows " @@ -1413,12 +1426,15 @@ msgid "" " values to a dynamic color scale" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +#, fuzzy +msgid "Aggregation" +msgstr "作成" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 msgid "Aggregation function" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:593 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:162 #, fuzzy msgid "Alert" @@ -1498,7 +1514,7 @@ msgstr "アラートバリデーター設定エラー。" msgid "Alerts" msgstr "アラート" -#: superset/initialization/__init__.py:410 +#: superset/initialization/__init__.py:404 msgid "Alerts & Reports" msgstr "アラートとレポート" @@ -1524,8 +1540,8 @@ msgstr "" #: superset-frontend/src/pages/DashboardList/index.tsx:528 #: superset-frontend/src/pages/DashboardList/index.tsx:550 #: superset-frontend/src/pages/DashboardList/index.tsx:600 -#: superset-frontend/src/pages/DatabaseList/index.tsx:465 -#: superset-frontend/src/pages/DatabaseList/index.tsx:485 +#: superset-frontend/src/pages/DatabaseList/index.tsx:476 +#: superset-frontend/src/pages/DatabaseList/index.tsx:496 #: superset-frontend/src/pages/Home/index.tsx:205 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:354 #: superset-frontend/src/pages/SavedQueryList/index.tsx:453 @@ -1534,7 +1550,7 @@ msgid "All" msgstr "" #: superset-frontend/src/pages/AllEntities/index.tsx:76 -#: superset/initialization/__init__.py:376 +#: superset/initialization/__init__.py:370 #, fuzzy msgid "All Entities" msgstr "すべてのフィルタ" @@ -1546,13 +1562,18 @@ msgstr "すべてのフィルタ" msgid "All Text" msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 #: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:69 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 #: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:85 #: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:128 msgid "All charts" msgstr "すべてのチャート" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 +msgid "All charts/global scoping" +msgstr "" + #: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 msgid "All filters" msgstr "すべてのフィルタ" @@ -1562,7 +1583,7 @@ msgstr "すべてのフィルタ" msgid "All filters (%(filterCount)d)" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:49 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 #, fuzzy msgid "All panels" msgstr "すべてのパネルに適用" @@ -1571,7 +1592,7 @@ msgstr "すべてのパネルに適用" msgid "All panels with this column will be affected by this filter" msgstr "この列のすべてのパネルは、このフィルターの影響を受けます" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:107 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 #: superset/views/database/mixins.py:184 msgid "Allow CREATE TABLE AS" msgstr "" @@ -1580,7 +1601,7 @@ msgstr "" msgid "Allow CREATE TABLE AS option in SQL Lab" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:121 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 #: superset/views/database/mixins.py:185 msgid "Allow CREATE VIEW AS" msgstr "" @@ -1593,7 +1614,7 @@ msgstr "" msgid "Allow Csv Upload" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 #: superset/views/database/mixins.py:186 msgid "Allow DML" msgstr "" @@ -1602,15 +1623,15 @@ msgstr "" msgid "Allow columns to be rearranged" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:110 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 msgid "Allow creation of new tables based on queries" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:124 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 msgid "Allow creation of new views based on queries" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:329 +#: superset-frontend/src/pages/DatabaseList/index.tsx:340 msgid "Allow data manipulation language" msgstr "" @@ -1620,12 +1641,12 @@ msgid "" "their changes won't persist for the next time they open the chart." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:411 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:421 #, fuzzy msgid "Allow file uploads to database" msgstr "データベースにアップロードする CSV ファイルを選択します。" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:157 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 msgid "" "Allow manipulation of the database using non-SELECT statements such as " "UPDATE, DELETE, CREATE, etc." @@ -1644,11 +1665,11 @@ msgstr "複数の選択を許可する" msgid "Allow sending multiple polygons as a filter event" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:186 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 msgid "Allow this database to be explored" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:91 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 msgid "Allow this database to be queried in SQL Lab" msgstr "" @@ -1690,20 +1711,20 @@ msgstr "エラーが発生しました" msgid "An alert named \"%(name)s\" already exists" msgstr "" -#: superset/common/query_context_processor.py:326 superset/viz.py:1447 +#: superset/common/query_context_processor.py:326 superset/viz.py:1352 msgid "" "An enclosed time range (both start and end) must be specified when using " "a Time Comparison." msgstr "時間比較を使用する場合は、期間 (開始と終了の両方) を指定する必要があります。" -#: superset/databases/schemas.py:285 +#: superset/databases/schemas.py:289 msgid "" "An engine must be specified when passing individual parameters to a " "database." msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:791 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:141 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:183 #: superset-frontend/src/components/Tags/utils.tsx:67 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:127 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:109 @@ -1718,7 +1739,7 @@ msgstr "エラーが発生しました" msgid "An error occurred" msgstr "エラーが発生しました" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:317 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:323 msgid "An error occurred saving dataset" msgstr "" @@ -1730,19 +1751,19 @@ msgstr "" msgid "An error occurred while accessing the value." msgstr "データ ソースの作成中にエラーが発生しました" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1368 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1360 msgid "" "An error occurred while collapsing the table schema. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:304 +#: superset-frontend/src/views/CRUD/hooks.ts:308 #, fuzzy, python-format msgid "An error occurred while creating %ss: %s" msgstr "ダッシュボードの取得中にエラーが発生しました: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1529 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1551 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1530 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1552 msgid "An error occurred while creating the data source" msgstr "データ ソースの作成中にエラーが発生しました" @@ -1760,7 +1781,7 @@ msgstr "データ ソースの作成中にエラーが発生しました" msgid "An error occurred while deleting the value." msgstr "データ ソースの作成中にエラーが発生しました" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1344 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1336 msgid "" "An error occurred while expanding the table schema. Please contact your " "administrator." @@ -1772,8 +1793,8 @@ msgid "An error occurred while fetching %s info: %s" msgstr "ダッシュボードの取得中にエラーが発生しました: %s" #: superset-frontend/src/views/CRUD/hooks.ts:174 -#: superset-frontend/src/views/CRUD/hooks.ts:261 -#: superset-frontend/src/views/CRUD/hooks.ts:349 +#: superset-frontend/src/views/CRUD/hooks.ts:265 +#: superset-frontend/src/views/CRUD/hooks.ts:353 #, fuzzy, python-format msgid "An error occurred while fetching %ss: %s" msgstr "ダッシュボードの取得中にエラーが発生しました: %s" @@ -1818,7 +1839,7 @@ msgstr "ダッシュボードの取得中にエラーが発生しました: %s" msgid "An error occurred while fetching dashboards: %s" msgstr "ダッシュボードの取得中にエラーが発生しました: %s" -#: superset-frontend/src/pages/DatabaseList/index.tsx:145 +#: superset-frontend/src/pages/DatabaseList/index.tsx:156 #, python-format msgid "An error occurred while fetching database related data: %s" msgstr "" @@ -1835,26 +1856,26 @@ msgstr "" msgid "An error occurred while fetching dataset datasource values: %s" msgstr "データセット・データソース値の取得中にエラーが発生しました: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:510 +#: superset-frontend/src/pages/DatasetList/index.tsx:521 #, python-format msgid "An error occurred while fetching dataset owner values: %s" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:222 +#: superset-frontend/src/pages/DatasetList/index.tsx:233 msgid "An error occurred while fetching dataset related data" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:242 +#: superset-frontend/src/pages/DatasetList/index.tsx:253 #, python-format msgid "An error occurred while fetching dataset related data: %s" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:530 +#: superset-frontend/src/pages/DatasetList/index.tsx:541 #, python-format msgid "An error occurred while fetching datasets: %s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1581 +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx:120 msgid "An error occurred while fetching function names." msgstr "関数名の取得中にエラーが発生しました。" @@ -1863,23 +1884,23 @@ msgstr "関数名の取得中にエラーが発生しました。" msgid "An error occurred while fetching owners values: %s" msgstr "ダッシュボードの所有者の値の取得中にエラーが発生しました: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:546 +#: superset-frontend/src/pages/DatasetList/index.tsx:557 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:378 #: superset-frontend/src/pages/SavedQueryList/index.tsx:480 #, python-format msgid "An error occurred while fetching schema values: %s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:799 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:795 msgid "An error occurred while fetching tab state" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1199 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1224 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1191 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1216 msgid "An error occurred while fetching table metadata" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1296 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1288 msgid "" "An error occurred while fetching table metadata. Please contact your " "administrator." @@ -1895,23 +1916,28 @@ msgstr "作成したダッシュボードの取得中にエラーが発生しま msgid "An error occurred while fetching user values: %s" msgstr "ダッシュボードの所有者の値の取得中にエラーが発生しました: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:835 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:831 msgid "" "An error occurred while hiding the left bar. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:502 -#: superset-frontend/src/views/CRUD/hooks.ts:518 +#: superset-frontend/src/views/CRUD/hooks.ts:506 +#: superset-frontend/src/views/CRUD/hooks.ts:522 #, fuzzy, python-format msgid "An error occurred while importing %s: %s" msgstr "ログのプルーニング中にエラーが発生しました " +#: superset-frontend/src/explore/components/SaveModal.tsx:135 +#, fuzzy +msgid "An error occurred while loading dashboard information." +msgstr "ダッシュボードの取得中にエラーが発生しました: %s" + #: superset-frontend/src/components/Chart/chartAction.js:579 msgid "An error occurred while loading the SQL" msgstr "SQL のロード中にエラーが発生しました" -#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:332 +#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:325 #, fuzzy msgid "An error occurred while opening Explore" msgstr "ログのプルーニング中にエラーが発生しました " @@ -1925,15 +1951,15 @@ msgstr "データ ソースの作成中にエラーが発生しました" msgid "An error occurred while pruning logs " msgstr "ログのプルーニング中にエラーが発生しました " -#: superset-frontend/src/SqlLab/actions/sqlLab.js:892 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:888 msgid "An error occurred while removing query. Please contact your administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:857 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:853 msgid "An error occurred while removing tab. Please contact your administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1396 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1388 msgid "" "An error occurred while removing the table schema. Please contact your " "administrator." @@ -1944,39 +1970,39 @@ msgstr "" msgid "An error occurred while rendering the visualization: %s" msgstr "データ ソースの作成中にエラーが発生しました" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:710 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:706 msgid "" "An error occurred while setting the active tab. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:975 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:967 msgid "" "An error occurred while setting the tab autorun. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:915 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:911 msgid "" "An error occurred while setting the tab database ID. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1004 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1128 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:996 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1120 #, fuzzy msgid "" "An error occurred while setting the tab name. Please contact your " "administrator." msgstr "データ ソースの作成中にエラーが発生しました" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:946 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:942 msgid "" "An error occurred while setting the tab schema. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1154 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1146 msgid "" "An error occurred while setting the tab template parameters. Please " "contact your administrator." @@ -1987,14 +2013,14 @@ msgstr "" msgid "An error occurred while starring this chart" msgstr "SQL のロード中にエラーが発生しました" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:251 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:297 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:255 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:301 msgid "" "An error occurred while storing the latest query id in the backend. " "Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1095 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1087 msgid "" "An error occurred while storing your query in the backend. To avoid " "losing your changes, please save your query using the \"Save Query\" " @@ -2017,7 +2043,7 @@ msgstr "データ ソースの作成中にエラーが発生しました" msgid "An unexpected error occurred" msgstr "エラーが発生しました" -#: superset/views/core.py:734 +#: superset/views/core.py:745 msgid "An unknown error occurred. Please contact your Superset administrator" msgstr "" @@ -2050,7 +2076,7 @@ msgstr "注釈レイヤー" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:127 -#: superset/initialization/__init__.py:420 +#: superset/initialization/__init__.py:414 msgid "Annotation Layers" msgstr "注釈レイヤー" @@ -2210,7 +2236,8 @@ msgstr "" #: superset-frontend/src/pages/DashboardList/index.tsx:504 #: superset-frontend/src/pages/DashboardList/index.tsx:572 #: superset-frontend/src/pages/DashboardList/index.tsx:586 -#: superset-frontend/src/pages/DatasetList/index.tsx:570 +#: superset-frontend/src/pages/DatasetList/index.tsx:581 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:260 msgid "Any" msgstr "任意" @@ -2225,18 +2252,18 @@ msgid "" "dashboard's individual charts" msgstr "ここで選択したカラーパレットは、このダッシュボードの個々のグラフに適用される色を上書きします" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:953 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1008 msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:967 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1022 msgid "" "Any databases that allow connections via SQL Alchemy URIs can be added. " "Learn about how to connect a database driver " msgstr "" -#: superset/views/database/forms.py:169 superset/views/database/forms.py:326 -#: superset/views/database/forms.py:457 +#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 +#: superset/views/database/forms.py:467 msgid "Append" msgstr "" @@ -2255,7 +2282,7 @@ msgstr "適用したフィルタ (%d)" msgid "Applied filters: %s" msgstr "適用したフィルタ (%d)" -#: superset/viz.py:246 +#: superset/viz.py:250 msgid "" "Applied rolling window did not return any data. Please make sure the " "source query satisfies the minimum periods defined in the rolling window." @@ -2264,11 +2291,16 @@ msgstr "" #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:856 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:228 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:476 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:479 msgid "Apply" msgstr "適用" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:100 +#, fuzzy +msgid "Apply conditional color formatting to metric" +msgstr "追加情報" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:386 msgid "Apply conditional color formatting to metrics" msgstr "" @@ -2318,6 +2350,7 @@ msgstr "キャンセルしてもよろしいですか?" #: superset-frontend/src/pages/ChartList/index.tsx:509 #: superset-frontend/src/pages/DashboardList/index.tsx:418 #: superset-frontend/src/pages/DashboardList/index.tsx:739 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:173 #: superset-frontend/src/pages/Tags/index.tsx:144 msgid "Are you sure you want to delete" msgstr "削除してもよろしいですか" @@ -2344,7 +2377,7 @@ msgstr "選択したチャートを削除してもよろしいですか?" msgid "Are you sure you want to delete the selected dashboards?" msgstr "選択したダッシュボードを削除してもよろしいですか?" -#: superset-frontend/src/pages/DatasetList/index.tsx:741 +#: superset-frontend/src/pages/DatasetList/index.tsx:763 msgid "Are you sure you want to delete the selected datasets?" msgstr "選択したデータセットを削除しますか?" @@ -2356,6 +2389,11 @@ msgstr "選択したレイヤーを削除してもよろしいですか?" msgid "Are you sure you want to delete the selected queries?" msgstr "選択したクエリを削除しますか?" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:305 +#, fuzzy +msgid "Are you sure you want to delete the selected rules?" +msgstr "選択したレイヤーを削除してもよろしいですか?" + #: superset-frontend/src/pages/Tags/index.tsx:282 #, fuzzy msgid "Are you sure you want to delete the selected tags?" @@ -2365,7 +2403,7 @@ msgstr "選択したデータセットを削除しますか?" msgid "Are you sure you want to delete the selected templates?" msgstr "選択したテンプレートを削除してもよろしいですか?" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:426 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:434 #, fuzzy msgid "Are you sure you want to overwrite this dataset?" msgstr "選択したデータセットを削除しますか?" @@ -2374,7 +2412,7 @@ msgstr "選択したデータセットを削除しますか?" msgid "Are you sure you want to proceed?" msgstr "続行してもよろしいですか?" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:174 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:216 msgid "Are you sure you want to save and apply changes?" msgstr "" @@ -2417,7 +2455,7 @@ msgstr "行" msgid "Assign a set of parameters as" msgstr "" -#: superset/connectors/sqla/views.py:476 +#: superset/connectors/sqla/views.py:383 msgid "Associated Charts" msgstr "" @@ -2425,9 +2463,9 @@ msgstr "" msgid "Async Execution" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:295 -#: superset-frontend/src/pages/DatabaseList/index.tsx:309 -#: superset-frontend/src/pages/DatabaseList/index.tsx:475 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:305 +#: superset-frontend/src/pages/DatabaseList/index.tsx:320 +#: superset-frontend/src/pages/DatabaseList/index.tsx:486 msgid "Asynchronous query execution" msgstr "非同期でのクエリ実行" @@ -2445,7 +2483,7 @@ msgstr "期限" msgid "Auto Zoom" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:530 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 msgid "Autocomplete" msgstr "" @@ -2471,7 +2509,7 @@ msgstr "" msgid "Average" msgstr "共有" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:233 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 #, fuzzy msgid "Average value" msgstr "デフォルト値" @@ -2507,10 +2545,10 @@ msgstr "" msgid "BOOLEAN" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:366 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1051 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1068 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1088 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:373 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1123 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1143 msgid "Back" msgstr "" @@ -2520,7 +2558,7 @@ msgstr "" msgid "Back to all" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:300 +#: superset-frontend/src/pages/DatabaseList/index.tsx:311 #: superset/views/database/mixins.py:200 msgid "Backend" msgstr "" @@ -2535,7 +2573,7 @@ msgstr "" msgid "Bad formula." msgstr "日時フォーマット" -#: superset/viz.py:2509 superset/viz.py:2545 +#: superset/viz.py:2452 superset/viz.py:2492 msgid "Bad spatial key" msgstr "" @@ -2570,6 +2608,12 @@ msgstr "" msgid "Bar orientation" msgstr "注釈を削除する" +#: superset-frontend/src/features/rls/constants.ts:28 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:263 +#, fuzzy +msgid "Base" +msgstr "データベース" + #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:239 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 msgid "Base layer map style" @@ -2583,12 +2627,12 @@ msgstr "" msgid "Based on granularity, number of time periods to compare against" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:228 msgid "Based on what should series be ordered on the chart and legend" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:854 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1723 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1779 msgid "Basic" msgstr "" @@ -2620,7 +2664,7 @@ msgid "Before" msgstr "更新" #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:37 -#: superset/viz.py:1286 +#: superset/viz.py:1186 msgid "Big Number" msgstr "数値" @@ -2629,11 +2673,11 @@ msgid "Big Number Font Size" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:36 -#: superset/viz.py:1252 +#: superset/viz.py:1150 msgid "Big Number with Trendline" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 msgid "Bottom" msgstr "" @@ -2662,7 +2706,6 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:261 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:277 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:263 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:251 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:195 @@ -2681,6 +2724,24 @@ msgid "" " the axis range. It won't narrow the data's extent." msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 +msgid "" +"Bounds for the primary Y-axis. When left empty, the bounds are " +"dynamically defined based on the min/max of the data. Note that this " +"feature will only expand the axis range. It won't narrow the data's " +"extent." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:411 +msgid "" +"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" +" bounds are enabled. When left empty, the bounds are " +"dynamically defined\n" +" based on the min/max of the data. Note that this feature " +"will only expand\n" +" the axis range. It won't narrow the data's extent." +msgstr "" + #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:58 #: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/createMetadata.ts:27 @@ -2693,7 +2754,7 @@ msgid "Breakdowns" msgstr "作成日" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:32 -#: superset/viz.py:1171 +#: superset/viz.py:1065 msgid "Bubble Chart" msgstr "バブルチャート" @@ -2725,14 +2786,15 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:789 #: superset-frontend/src/pages/CssTemplateList/index.tsx:262 #: superset-frontend/src/pages/DashboardList/index.tsx:662 -#: superset-frontend/src/pages/DatasetList/index.tsx:596 +#: superset-frontend/src/pages/DatasetList/index.tsx:607 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 #: superset-frontend/src/pages/SavedQueryList/index.tsx:177 #: superset-frontend/src/pages/Tags/index.tsx:267 msgid "Bulk select" msgstr "一括選択" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 -#: superset/viz.py:1222 +#: superset/viz.py:1118 msgid "Bullet Chart" msgstr "" @@ -2748,7 +2810,7 @@ msgstr "" msgid "Business" msgstr "" -#: superset/connectors/sqla/views.py:165 +#: superset/connectors/sqla/views.py:164 msgid "Business Data Type" msgstr "" @@ -2779,16 +2841,16 @@ msgstr "" msgid "CANCEL" msgstr "キャンセル" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1520 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1575 #, fuzzy msgid "CREATE DATASET" msgstr "データセットを変更" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:585 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:579 msgid "CREATE TABLE AS" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:596 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:590 msgid "CREATE VIEW AS" msgstr "" @@ -2814,7 +2876,7 @@ msgstr "" msgid "CSS Styles" msgstr "" -#: superset/initialization/__init__.py:286 superset/views/css_templates.py:38 +#: superset/initialization/__init__.py:288 superset/views/css_templates.py:38 msgid "CSS Templates" msgstr "CSSテンプレート" @@ -2848,26 +2910,26 @@ msgstr "CSSテンプレート" msgid "CSV Upload" msgstr "アップロード" -#: superset/views/database/views.py:287 +#: superset/views/database/views.py:290 #, python-format msgid "" "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " "database \"%(db_name)s\"" msgstr "" -#: superset/views/database/views.py:160 +#: superset/views/database/views.py:161 msgid "CSV to Database configuration" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:344 +#: superset-frontend/src/pages/DatabaseList/index.tsx:355 msgid "CSV upload" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:130 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 msgid "CTAS & CVAS SCHEMA" msgstr "" -#: superset/sql_lab.py:440 +#: superset/sql_lab.py:432 msgid "" "CTAS (create table as select) can only be run with a query where the last" " statement is a SELECT. Please make sure your query has a SELECT as its " @@ -2878,7 +2940,7 @@ msgstr "" msgid "CTAS Schema" msgstr "" -#: superset/sql_lab.py:457 +#: superset/sql_lab.py:449 msgid "" "CVAS (create view as select) can only be run with a query with a single " "SELECT statement. Please make sure your query has only a SELECT " @@ -2893,7 +2955,7 @@ msgstr "" msgid "CVAS (create view as select) query is not a SELECT statement." msgstr "" -#: superset/connectors/sqla/views.py:486 superset/views/chart/mixin.py:76 +#: superset/connectors/sqla/views.py:393 superset/views/chart/mixin.py:76 msgid "Cache Timeout" msgstr "" @@ -2911,16 +2973,16 @@ msgstr "" msgid "Cached" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:349 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:351 #, python-format msgid "Cached %s" msgstr "" -#: superset/viz.py:562 +#: superset/viz.py:578 msgid "Cached value not found" msgstr "キャッシュされた値が見つかりません" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:53 #, fuzzy msgid "Calculate contribution per series or row" msgstr "全体への寄与度を算出" @@ -2943,7 +3005,7 @@ msgid "Calculation type" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 -#: superset/viz.py:1080 +#: superset/viz.py:972 msgid "Calendar Heatmap" msgstr "" @@ -2956,17 +3018,17 @@ msgstr "トップレベルのタブをネストされたタブに移動できま msgid "Can select multiple values" msgstr "" -#: superset/viz.py:1810 +#: superset/viz.py:1727 msgid "Can't have overlap between Series and Breakdowns" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:206 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:759 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:263 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:185 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 -#: superset-frontend/src/components/Modal/Modal.tsx:262 -#: superset-frontend/src/components/ReportModal/index.tsx:220 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:205 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:753 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:227 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:268 +#: superset-frontend/src/components/Modal/Modal.tsx:269 +#: superset-frontend/src/components/ReportModal/index.tsx:219 #: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:72 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:649 #: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 @@ -2974,14 +3036,14 @@ msgstr "" #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:76 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 -#: superset-frontend/src/explore/components/SaveModal.tsx:379 +#: superset-frontend/src/explore/components/SaveModal.tsx:413 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:843 #: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 #: superset/templates/superset/request_access.html:34 msgid "Cancel" msgstr "キャンセル" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:314 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 msgid "Cancel query on window unload event" msgstr "" @@ -2997,7 +3059,7 @@ msgstr "" msgid "Cannot have multiple credentials for the SSH Tunnel" msgstr "" -#: superset/views/core.py:723 +#: superset/views/core.py:734 #, python-format msgid "" "Cannot import dashboard: %(db_error)s.\n" @@ -3063,7 +3125,7 @@ msgstr "" msgid "Category and Value" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:229 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:67 #, fuzzy msgid "Category name" msgstr "クエリ名" @@ -3078,15 +3140,15 @@ msgstr "" msgid "Category, Value and Percentage" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:103 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 msgid "Cell Padding" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:117 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 msgid "Cell Radius" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 msgid "Cell Size" msgstr "" @@ -3095,7 +3157,7 @@ msgstr "" msgid "Cell bars" msgstr "すべてのチャート" -#: superset-frontend/src/components/FilterableTable/index.tsx:431 +#: superset-frontend/src/components/FilterableTable/index.tsx:303 msgid "Cell content" msgstr "" @@ -3109,6 +3171,7 @@ msgstr "区切り文字" msgid "Center" msgstr "最近" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:33 msgid "Centroid (Longitude and Latitude): " msgstr "" @@ -3131,7 +3194,7 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:699 #: superset-frontend/src/pages/DashboardList/index.tsx:580 -#: superset-frontend/src/pages/DatasetList/index.tsx:564 +#: superset-frontend/src/pages/DatasetList/index.tsx:575 #, fuzzy msgid "Certified" msgstr "アラートに失敗しました" @@ -3164,7 +3227,7 @@ msgstr "" msgid "Change order of rows." msgstr "" -#: superset/connectors/sqla/views.py:478 +#: superset/connectors/sqla/views.py:385 msgid "Changed By" msgstr "更新者" @@ -3211,7 +3274,7 @@ msgstr "このチャートの変更は禁止されています" msgid "Changing this control takes effect instantly" msgstr "この変更は即座に反映されます" -#: superset/datasets/commands/exceptions.py:181 +#: superset/datasets/commands/exceptions.py:198 msgid "Changing this dataset is forbidden" msgstr "" @@ -3229,14 +3292,15 @@ msgstr "このデータセットの変更は禁止されています。" msgid "Changing this report is forbidden" msgstr "このレポートの変更は禁止されています" -#: superset/views/database/forms.py:196 +#: superset/views/database/forms.py:206 msgid "Character to interpret as decimal point" msgstr "" -#: superset/views/database/forms.py:375 +#: superset/views/database/forms.py:385 msgid "Character to interpret as decimal point." msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:51 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:449 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:405 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:69 @@ -3244,11 +3308,11 @@ msgstr "" #: superset-frontend/src/features/home/RightMenu.tsx:219 #: superset-frontend/src/pages/ChartList/index.tsx:369 #: superset-frontend/src/pages/ChartList/index.tsx:799 -#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:90 +#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 msgid "Chart" msgstr "チャート" -#: superset/views/core.py:1727 +#: superset/views/core.py:1762 #, python-format msgid "Chart %(id)s not found" msgstr "チャート %(id)s が見つかりません" @@ -3257,7 +3321,7 @@ msgstr "チャート %(id)s が見つかりません" msgid "Chart Cache Timeout" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:437 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:442 #, fuzzy, python-format msgid "Chart Data: %s" msgstr "最終更新 %s" @@ -3267,7 +3331,7 @@ msgstr "最終更新 %s" msgid "Chart ID" msgstr "チャートID" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:53 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:55 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:61 @@ -3289,7 +3353,7 @@ msgstr "チャートID" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:59 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:131 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:107 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:74 @@ -3336,34 +3400,34 @@ msgstr "データソース" msgid "Chart Title" msgstr "チャートタイプ" -#: superset-frontend/src/explore/actions/saveModalActions.js:127 +#: superset-frontend/src/explore/actions/saveModalActions.js:121 #, fuzzy, python-format msgid "Chart [%s] has been overwritten" msgstr "チャート [{}] が上書きされました" -#: superset-frontend/src/explore/actions/saveModalActions.js:124 +#: superset-frontend/src/explore/actions/saveModalActions.js:118 #, fuzzy, python-format msgid "Chart [%s] has been saved" msgstr "チャート [{}] が保存されました" -#: superset-frontend/src/explore/actions/saveModalActions.js:145 +#: superset-frontend/src/explore/actions/saveModalActions.js:139 #, fuzzy, python-format msgid "Chart [%s] was added to dashboard [%s]" msgstr "チャート [{}] はダッシュボード [{}] に追加されました" -#: superset/views/core.py:1077 +#: superset/views/core.py:1099 msgid "Chart [{}] has been overwritten" msgstr "チャート [{}] が上書きされました" -#: superset/views/core.py:1073 +#: superset/views/core.py:1095 msgid "Chart [{}] has been saved" msgstr "チャート [{}] が保存されました" -#: superset/views/core.py:1102 +#: superset/views/core.py:1124 msgid "Chart [{}] was added to dashboard [{}]" msgstr "チャート [{}] はダッシュボード [{}] に追加されました" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:228 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:238 msgid "Chart cache timeout" msgstr "" @@ -3423,7 +3487,7 @@ msgstr "最終更新" msgid "Chart last modified by" msgstr "最終更新者 %s" -#: superset-frontend/src/explore/components/SaveModal.tsx:320 +#: superset-frontend/src/explore/components/SaveModal.tsx:355 msgid "Chart name" msgstr "チャート名" @@ -3456,7 +3520,7 @@ msgstr "チャートタイプ" msgid "Chart type" msgstr "チャートタイプ" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:315 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 msgid "Chart type requires a dataset" msgstr "" @@ -3472,7 +3536,7 @@ msgstr "チャートタイプ" #: superset-frontend/src/pages/Home/index.tsx:399 #: superset-frontend/src/profile/components/CreatedContent.tsx:104 #: superset-frontend/src/profile/components/Favorites.tsx:102 -#: superset/initialization/__init__.py:257 superset/views/chart/mixin.py:25 +#: superset/initialization/__init__.py:259 superset/views/chart/mixin.py:25 #: superset/views/dashboard/mixin.py:80 msgid "Charts" msgstr "チャート" @@ -3504,7 +3568,7 @@ msgstr "" msgid "Check out this chart in dashboard:" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:474 #, fuzzy msgid "Check out this chart: " msgstr "このダッシュボードを確認してください: " @@ -3535,11 +3599,11 @@ msgstr "" msgid "Child label position" msgstr "" -#: superset/viz.py:2370 +#: superset/viz.py:2307 msgid "Choice of [Label] must be present in [Group By]" msgstr "" -#: superset/viz.py:2378 +#: superset/viz.py:2315 msgid "Choice of [Point Radius] must be present in [Group By]" msgstr "" @@ -3552,7 +3616,7 @@ msgstr "ファイルを選択" msgid "Choose a chart or dashboard not both" msgstr "両方ではなくチャートまたはダッシュボードを選択してください" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:924 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:979 #, fuzzy msgid "Choose a database..." msgstr "データセットを選択" @@ -3593,16 +3657,12 @@ msgstr "データセットを選択" msgid "Choose a target" msgstr "データセットを選択" -#: superset/connectors/sqla/views.py:327 -msgid "Choose a unique name" -msgstr "" - #: superset-frontend/src/pages/ChartCreation/index.tsx:404 #, fuzzy msgid "Choose chart type" msgstr "チャートタイプ" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:745 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:739 msgid "Choose one of the available databases from the panel on the left." msgstr "" @@ -3683,7 +3743,8 @@ msgid "" "showcase a view into the underlying data or to show aggregated metrics." msgstr "" -#: superset/connectors/sqla/views.py:365 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:454 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:144 msgid "Clause" msgstr "" @@ -3695,7 +3756,7 @@ msgstr "" msgid "Clear all" msgstr "すべてクリア" -#: superset-frontend/src/components/Table/index.tsx:206 +#: superset-frontend/src/components/Table/index.tsx:210 #, fuzzy msgid "Clear all data" msgstr "すべてクリア" @@ -3722,19 +3783,19 @@ msgstr "" msgid "Click the lock to prevent further changes." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1955 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2012 msgid "" "Click this link to switch to an alternate form that allows you to input " "the SQLAlchemy URL for this database manually." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1771 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1827 msgid "" "Click this link to switch to an alternate form that exposes only the " "required fields needed to connect this database." msgstr "" -#: superset-frontend/src/components/Table/index.tsx:213 +#: superset-frontend/src/components/Table/index.tsx:217 msgid "Click to cancel sorting" msgstr "" @@ -3744,16 +3805,10 @@ msgstr "" #: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 #, python-format -msgid "Click to edit %s in a new tab" -msgstr "" - -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:32 -#, python-format msgid "Click to edit %s." msgstr "" #: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:33 msgid "Click to edit chart." msgstr "" @@ -3774,27 +3829,27 @@ msgstr "" msgid "Click to see difference" msgstr "クリックして差分を確認" -#: superset-frontend/src/components/Table/index.tsx:212 +#: superset-frontend/src/components/Table/index.tsx:216 #, fuzzy msgid "Click to sort ascending" msgstr "レポート送信" -#: superset-frontend/src/components/Table/index.tsx:211 +#: superset-frontend/src/components/Table/index.tsx:215 #, fuzzy msgid "Click to sort descending" msgstr "レポート送信" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:83 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:132 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:52 #: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:209 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:219 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:224 #: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:786 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:408 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:414 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:339 #: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:36 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1109 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1164 msgid "Close" msgstr "閉じる" @@ -3828,16 +3883,16 @@ msgstr "すべて折りたたむ" msgid "Collapse data panel" msgstr "すべて折りたたむ" -#: superset-frontend/src/components/Table/index.tsx:210 +#: superset-frontend/src/components/Table/index.tsx:214 #, fuzzy msgid "Collapse row" msgstr "すべて折りたたむ" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:598 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:599 msgid "Collapse tab content" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:197 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 #, fuzzy msgid "Collapse table preview" msgstr "データプレビュー" @@ -3862,7 +3917,7 @@ msgstr "色の指標" msgid "Color Scheme" msgstr "配色" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:129 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 #, fuzzy msgid "Color Steps" msgstr "配色" @@ -3885,8 +3940,8 @@ msgid "Color of the target location" msgstr "" #: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:214 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:218 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 #: superset-frontend/src/explore/controlPanels/sections.tsx:60 #: superset-frontend/src/explore/controls.jsx:460 msgid "Color scheme" @@ -3906,8 +3961,8 @@ msgstr "色" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 #: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:204 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:250 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:256 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:137 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:140 #: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 @@ -3915,7 +3970,7 @@ msgstr "色" #: superset-frontend/src/filters/components/Range/controlPanel.ts:39 #: superset-frontend/src/filters/components/Select/controlPanel.ts:49 #: superset-frontend/src/filters/components/Time/controlPanel.ts:37 -#: superset/connectors/sqla/views.py:155 +#: superset/connectors/sqla/views.py:154 msgid "Column" msgstr "列" @@ -3931,13 +3986,17 @@ msgstr "" msgid "Column Configuration" msgstr "設定を確認" +#: superset/views/database/forms.py:144 +msgid "Column Data Types" +msgstr "" + #: superset-frontend/src/explore/components/DataTableControl/index.tsx:194 #, fuzzy msgid "Column Formatting" msgstr "追加情報" -#: superset/views/database/forms.py:222 superset/views/database/forms.py:383 -#: superset/views/database/forms.py:474 +#: superset/views/database/forms.py:232 superset/views/database/forms.py:393 +#: superset/views/database/forms.py:484 msgid "Column Label(s)" msgstr "" @@ -3955,6 +4014,11 @@ msgstr "" msgid "Column containing longitude data" msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:69 +#, fuzzy +msgid "Column datatype" +msgstr "列を削除する" + #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 msgid "Column header tooltip" msgstr "" @@ -3964,19 +4028,19 @@ msgstr "" msgid "Column is required" msgstr "名前が必要です" -#: superset/views/database/forms.py:384 superset/views/database/forms.py:475 +#: superset/views/database/forms.py:394 superset/views/database/forms.py:485 msgid "" "Column label for index column(s). If None is given and Dataframe Index is" " True, Index Names are used." msgstr "" -#: superset/views/database/forms.py:223 +#: superset/views/database/forms.py:233 msgid "" "Column label for index column(s). If None is given and Dataframe Index is" " checked, Index Names are used" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:77 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:90 #, fuzzy msgid "Column name" msgstr "列を削除する" @@ -3996,30 +4060,30 @@ msgstr "" msgid "Column select" msgstr "一括選択" -#: superset/views/database/forms.py:211 +#: superset/views/database/forms.py:221 msgid "" "Column to use as the row labels of the dataframe. Leave empty if no index" " column" msgstr "" -#: superset/views/database/forms.py:342 +#: superset/views/database/forms.py:352 msgid "" "Column to use as the row labels of the dataframe. Leave empty if no index" " column." msgstr "" -#: superset/views/database/forms.py:414 +#: superset/views/database/forms.py:424 msgid "Columnar File" msgstr "" -#: superset/views/database/views.py:565 +#: superset/views/database/views.py:568 #, python-format msgid "" "Columnar file \"%(columnar_filename)s\" uploaded to table " "\"%(table_name)s\" in database \"%(db_name)s\"" msgstr "" -#: superset/views/database/views.py:440 +#: superset/views/database/views.py:443 #, fuzzy msgid "Columnar to Database configuration" msgstr "フィルタ構成" @@ -4036,15 +4100,15 @@ msgstr "フィルタ構成" #: superset-frontend/src/explore/controls.jsx:244 #: superset-frontend/src/explore/fixtures.tsx:97 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 -#: superset/connectors/sqla/views.py:72 +#: superset/connectors/sqla/views.py:71 msgid "Columns" msgstr "列" -#: superset/views/database/forms.py:183 +#: superset/views/database/forms.py:193 msgid "Columns To Be Parsed as Dates" msgstr "" -#: superset/views/database/forms.py:231 +#: superset/views/database/forms.py:241 #, fuzzy msgid "Columns To Read" msgstr "列を削除する" @@ -4054,7 +4118,7 @@ msgstr "列を削除する" msgid "Columns missing in dataset: %(invalid_columns)s" msgstr "" -#: superset/viz.py:577 +#: superset/viz.py:593 #, python-format msgid "Columns missing in datasource: %(invalid_columns)s" msgstr "" @@ -4095,11 +4159,6 @@ msgstr "" msgid "Columns to show" msgstr "表示する指標を選択" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:85 -#, fuzzy -msgid "Combine Metrics" -msgstr "列または指標を削除する" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:250 #, fuzzy msgid "Combine metrics" @@ -4158,6 +4217,7 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:35 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:35 @@ -4203,6 +4263,11 @@ msgstr "全体への寄与度を算出" msgid "Condition" msgstr "アラート状態" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 +#, fuzzy +msgid "Conditional Formatting" +msgstr "追加情報" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:385 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:504 #, fuzzy @@ -4259,15 +4324,15 @@ msgstr "" msgid "Confirm overwrite" msgstr "上書き" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:180 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:222 msgid "Confirm save" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1059 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1097 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1656 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1695 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1857 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1152 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1712 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 #, fuzzy msgid "Connect" msgstr "接続のテスト" @@ -4280,9 +4345,9 @@ msgstr "" msgid "Connect Google Sheets as tables to this database" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1660 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1700 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1861 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1716 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1918 #, fuzzy msgid "Connect a database" msgstr "データベースを削除" @@ -4292,25 +4357,25 @@ msgstr "データベースを削除" msgid "Connect database" msgstr "データベースを削除" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1768 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 msgid "Connect this database using the dynamic form instead" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1950 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2007 msgid "Connect this database with a SQLAlchemy URI string instead" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:225 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 #, fuzzy msgid "Connection" msgstr "接続のテスト" #: superset/databases/commands/exceptions.py:107 -#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1430 +#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1471 msgid "Connection failed, please check your connection settings" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:697 +#: superset-frontend/src/views/CRUD/hooks.ts:701 msgid "Connection looks good!" msgstr "" @@ -4335,7 +4400,7 @@ msgstr "" msgid "Contribution" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:42 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 msgid "Contribution Mode" msgstr "" @@ -4389,8 +4454,8 @@ msgstr "" msgid "Copy message" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:683 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1469 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:679 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1461 #: superset-frontend/src/SqlLab/reducers/sqlLab.js:107 #, python-format msgid "Copy of %s" @@ -4401,7 +4466,7 @@ msgid "Copy partition query to clipboard" msgstr "" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:329 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:468 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:340 #, fuzzy msgid "Copy permalink to clipboard" @@ -4427,7 +4492,7 @@ msgstr "" msgid "Copy the name of the database you are trying to connect to." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:273 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:271 msgid "Copy to Clipboard" msgstr "" @@ -4448,7 +4513,12 @@ msgstr "期限" msgid "Cost estimate" msgstr "コストの見積もり" -#: superset/views/utils.py:498 +#: superset/db_engine_specs/ocient.py:259 +#, fuzzy, python-format +msgid "Could not connect to database: \"%(database)s\"" +msgstr "“%(database)s” に接続できません。" + +#: superset/views/utils.py:496 msgid "Could not determine datasource type" msgstr "" @@ -4457,7 +4527,7 @@ msgstr "" msgid "Could not fetch all saved charts" msgstr "保存したすべてのチャートを取得できませんでした" -#: superset/views/utils.py:514 +#: superset/views/utils.py:512 msgid "Could not find viz object" msgstr "" @@ -4465,7 +4535,7 @@ msgstr "" msgid "Could not load database driver" msgstr "" -#: superset/views/core.py:1413 +#: superset/views/core.py:1454 #, python-format msgid "Could not load database driver: %(driver_name)s" msgstr "データベースドライバ: %(driver_name)s 読み込めませんでした" @@ -4474,6 +4544,11 @@ msgstr "データベースドライバ: %(driver_name)s 読み込めませんで msgid "Could not load database driver: {}" msgstr "" +#: superset/db_engine_specs/ocient.py:264 +#, python-format +msgid "Could not resolve hostname: \"%(host)s\"." +msgstr "" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 #, fuzzy msgid "Count" @@ -4517,12 +4592,12 @@ msgid "Country Field Type" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 -#: superset/viz.py:2044 +#: superset/viz.py:1969 msgid "Country Map" msgstr "国別地図" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:767 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:761 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:770 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:96 msgid "Create" msgstr "作成" @@ -4533,10 +4608,10 @@ msgid "Create Chart" msgstr "チャートを保存" #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:331 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:321 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:332 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:356 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:327 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:338 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:362 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 #, fuzzy msgid "Create a dataset" @@ -4583,7 +4658,7 @@ msgstr "新しいチャートを作成" msgid "Create new filter set" msgstr "新しいフィルタ セットの作成" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 msgid "Create or select schema..." msgstr "" @@ -4606,7 +4681,7 @@ msgstr "作成日" #: superset-frontend/src/pages/CssTemplateList/index.tsx:273 #: superset-frontend/src/pages/DashboardList/index.tsx:358 #: superset-frontend/src/pages/DashboardList/index.tsx:545 -#: superset-frontend/src/pages/DatabaseList/index.tsx:365 +#: superset-frontend/src/pages/DatabaseList/index.tsx:376 #: superset-frontend/src/pages/Tags/index.tsx:128 #: superset-frontend/src/pages/Tags/index.tsx:183 msgid "Created by" @@ -4637,9 +4712,8 @@ msgstr "不明な理由でダッシュボードのインポートに失敗しま msgid "Creating a data source and creating a new tab" msgstr "" -#: superset/connectors/sqla/views.py:366 superset/views/chart/mixin.py:77 -#: superset/views/dashboard/mixin.py:84 superset/views/dashboard/views.py:185 -#: superset/views/database/mixins.py:189 +#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 +#: superset/views/dashboard/views.py:185 superset/views/database/mixins.py:189 msgid "Creator" msgstr "作成者" @@ -4648,15 +4722,27 @@ msgstr "作成者" msgid "Crimson" msgstr "アクション" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:122 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:152 msgid "Cross-filter will be applied to all of the charts that use this dataset." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:134 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:164 #, fuzzy msgid "Cross-filtering is not enabled for this dashboard." msgstr "このダッシュボードにはフィルターはありません。" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 +#, fuzzy +msgid "Cross-filtering is not enabled in this dashboard" +msgstr "このダッシュボードにはフィルターはありません。" + +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:414 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 +#, fuzzy +msgid "Cross-filtering scoping" +msgstr "新しいフィルタ" + #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 #, fuzzy msgid "Cross-filters" @@ -4685,7 +4771,7 @@ msgstr "" msgid "Custom Plugins" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:385 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:391 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 @@ -4696,8 +4782,7 @@ msgstr "" msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" msgstr "" -#: superset/connectors/sqla/utils.py:194 superset/errors.py:145 -#: superset/models/helpers.py:129 superset/models/helpers.py:864 +#: superset/errors.py:145 superset/models/helpers.py:138 msgid "Custom SQL fields cannot contain sub-queries." msgstr "" @@ -4723,7 +4808,7 @@ msgstr "列を削除する" msgid "Cyclic dependency detected" msgstr "" -#: superset/connectors/sqla/views.py:256 +#: superset/connectors/sqla/views.py:255 msgid "D3 Format" msgstr "" @@ -4733,7 +4818,7 @@ msgstr "" msgid "D3 format" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:22 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:146 msgid "D3 format syntax: https://github.com/d3/d3-format" msgstr "" @@ -4749,7 +4834,7 @@ msgstr "" msgid "D3 time format for datetime columns" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:53 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 msgid "D3 time format syntax: https://github.com/d3/d3-time-format" msgstr "" @@ -4772,7 +4857,7 @@ msgstr "12月" msgid "DELETE" msgstr "削除" -#: superset-frontend/src/pages/DatabaseList/index.tsx:332 +#: superset-frontend/src/pages/DatabaseList/index.tsx:343 msgid "DML" msgstr "" @@ -4802,12 +4887,12 @@ msgstr "" msgid "Dashboard" msgstr "ダッシュボード" -#: superset-frontend/src/explore/actions/saveModalActions.js:135 +#: superset-frontend/src/explore/actions/saveModalActions.js:129 #, fuzzy, python-format msgid "Dashboard [%s] just got created and chart [%s] was added to it" msgstr "ダッシュボード [{}] が作成されチャート [{}] が追加されました" -#: superset/views/core.py:1122 +#: superset/views/core.py:1144 msgid "Dashboard [{}] just got created and chart [{}] was added to it" msgstr "ダッシュボード [{}] が作成されチャート [{}] が追加されました" @@ -4874,7 +4959,7 @@ msgstr "ダッシュボード" #: superset-frontend/src/pages/Home/index.tsx:385 #: superset-frontend/src/profile/components/CreatedContent.tsx:101 #: superset-frontend/src/profile/components/Favorites.tsx:99 -#: superset/initialization/__init__.py:249 superset/views/chart/mixin.py:78 +#: superset/initialization/__init__.py:251 superset/views/chart/mixin.py:78 #: superset/views/dashboard/mixin.py:24 msgid "Dashboards" msgstr "ダッシュボード" @@ -4900,7 +4985,7 @@ msgstr "ダッシュボード" #: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:708 #: superset-frontend/src/features/home/RightMenu.tsx:169 -#: superset/initialization/__init__.py:244 +#: superset/initialization/__init__.py:246 msgid "Data" msgstr "データ" @@ -4909,7 +4994,7 @@ msgstr "データ" msgid "Data Table" msgstr "テーブルを編集" -#: superset/datasets/commands/exceptions.py:197 +#: superset/datasets/commands/exceptions.py:214 msgid "Data URI is not allowed." msgstr "" @@ -4923,14 +5008,14 @@ msgstr "" msgid "Data Zoom" msgstr "" -#: superset/sqllab/commands/results.py:116 superset/views/core.py:2195 +#: superset/sqllab/commands/results.py:116 superset/views/core.py:2231 msgid "" "Data could not be deserialized from the results backend. The storage " "format might have changed, rendering the old data stake. You need to re-" "run the original query." msgstr "" -#: superset/sqllab/commands/results.py:75 superset/views/core.py:2148 +#: superset/sqllab/commands/results.py:75 superset/views/core.py:2184 msgid "" "Data could not be retrieved from the results backend. You need to re-run " "the original query." @@ -4944,7 +5029,7 @@ msgstr "" msgid "Data preview" msgstr "データプレビュー" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:283 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:278 #, fuzzy msgid "Data refreshed" msgstr "更新しない" @@ -4964,51 +5049,51 @@ msgstr "少なくとも1つの指標を選択してください" msgid "DataFrame must include temporal column" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:275 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:274 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -#: superset-frontend/src/pages/DatabaseList/index.tsx:267 -#: superset-frontend/src/pages/DatabaseList/index.tsx:296 -#: superset-frontend/src/pages/DatasetList/index.tsx:349 -#: superset-frontend/src/pages/DatasetList/index.tsx:520 +#: superset-frontend/src/pages/DatabaseList/index.tsx:278 +#: superset-frontend/src/pages/DatabaseList/index.tsx:307 +#: superset-frontend/src/pages/DatasetList/index.tsx:360 +#: superset-frontend/src/pages/DatasetList/index.tsx:531 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:241 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:349 #: superset-frontend/src/pages/SavedQueryList/index.tsx:287 #: superset-frontend/src/pages/SavedQueryList/index.tsx:448 -#: superset/connectors/sqla/views.py:479 superset/connectors/sqla/views.py:480 +#: superset/connectors/sqla/views.py:386 superset/connectors/sqla/views.py:387 #: superset/templates/superset/import_dashboards.html:53 -#: superset/views/database/forms.py:137 superset/views/database/forms.py:305 -#: superset/views/database/forms.py:436 superset/views/database/mixins.py:188 +#: superset/views/database/forms.py:137 superset/views/database/forms.py:315 +#: superset/views/database/forms.py:446 superset/views/database/mixins.py:188 #: superset/views/sql_lab/views.py:83 msgid "Database" msgstr "データベース" -#: superset/views/database/views.py:478 +#: superset/views/database/views.py:481 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " "for columnar uploads. Please contact your Superset Admin." msgstr "" -#: superset/views/database/views.py:179 +#: superset/views/database/views.py:180 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " "for csv uploads. Please contact your Superset Admin." msgstr "" -#: superset/views/database/views.py:318 +#: superset/views/database/views.py:321 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " "for excel uploads. Please contact your Superset Admin." msgstr "" -#: superset/initialization/__init__.py:241 +#: superset/initialization/__init__.py:243 #, fuzzy msgid "Database Connections" msgstr "接続のテスト" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1467 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1522 #, fuzzy msgid "Database Creation Error" msgstr "データベースエラー" @@ -5018,9 +5103,9 @@ msgid "Database URL" msgstr "データベースURL" #: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:827 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:849 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1150 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:882 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:904 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1205 #, fuzzy msgid "Database connected" msgstr "データベースを作成できませんでした。" @@ -5047,7 +5132,7 @@ msgstr "" msgid "Database does not exist" msgstr "" -#: superset/connectors/sqla/models.py:1793 superset/models/helpers.py:1966 +#: superset/models/helpers.py:2063 msgid "Database does not support subqueries" msgstr "データベースはサブクエリをサポートしていません" @@ -5057,7 +5142,7 @@ msgid "" "documentation page for installation instructions: " msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:429 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 msgid "Database error" msgstr "データベースエラー" @@ -5071,8 +5156,8 @@ msgid "Database is required for alerts" msgstr "アラートにはデータベースが必要です" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:113 -#: superset/db_engine_specs/base.py:1845 -#: superset/db_engine_specs/clickhouse.py:209 +#: superset/db_engine_specs/base.py:1880 +#: superset/db_engine_specs/clickhouse.py:212 msgid "Database name" msgstr "データベース名" @@ -5084,7 +5169,7 @@ msgstr "" msgid "Database not found." msgstr "データベースが見つかりません。" -#: superset/views/core.py:1179 +#: superset/views/core.py:1201 #, fuzzy, python-format msgid "Database not found: %(id)s" msgstr "データセットの指標が見つかりません。" @@ -5098,25 +5183,25 @@ msgstr "データベース パラメータが無効です。" msgid "Database passwords" msgstr "DBポート番号" -#: superset/db_engine_specs/base.py:1842 -#: superset/db_engine_specs/clickhouse.py:206 +#: superset/db_engine_specs/base.py:1876 +#: superset/db_engine_specs/clickhouse.py:208 #: superset/db_engine_specs/databricks.py:52 msgid "Database port" msgstr "DBポート番号" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:811 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:853 #, fuzzy msgid "Database settings updated" msgstr "データベースを更新できませんでした。" -#: superset-frontend/src/pages/DatabaseList/index.tsx:258 +#: superset-frontend/src/pages/DatabaseList/index.tsx:269 #: superset-frontend/src/profile/components/Security.tsx:47 #: superset/views/database/mixins.py:33 msgid "Databases" msgstr "データベース" -#: superset/views/database/forms.py:219 superset/views/database/forms.py:380 -#: superset/views/database/forms.py:471 +#: superset/views/database/forms.py:229 superset/views/database/forms.py:390 +#: superset/views/database/forms.py:481 msgid "Dataframe Index" msgstr "" @@ -5128,7 +5213,7 @@ msgstr "" #: superset-frontend/src/pages/ChartCreation/index.tsx:390 #: superset-frontend/src/pages/ChartList/index.tsx:391 #: superset-frontend/src/pages/ChartList/index.tsx:678 -#: superset-frontend/src/pages/DatasetList/index.tsx:606 +#: superset-frontend/src/pages/DatasetList/index.tsx:617 msgid "Dataset" msgstr "データセット" @@ -5137,7 +5222,7 @@ msgstr "データセット" msgid "Dataset %(name)s already exists" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:331 +#: superset-frontend/src/explore/components/SaveModal.tsx:366 #, fuzzy msgid "Dataset Name" msgstr "データベース名" @@ -5150,29 +5235,29 @@ msgstr "データセット列の削除に失敗しました。" msgid "Dataset column not found." msgstr "データセット列が見つかりません。" -#: superset/datasets/commands/exceptions.py:157 +#: superset/datasets/commands/exceptions.py:174 msgid "Dataset could not be created." msgstr "" -#: superset/datasets/commands/exceptions.py:165 +#: superset/datasets/commands/exceptions.py:182 msgid "Dataset could not be deleted." msgstr "" -#: superset/datasets/commands/exceptions.py:193 +#: superset/datasets/commands/exceptions.py:210 #, fuzzy msgid "Dataset could not be duplicated." msgstr "データベースを更新できませんでした。" -#: superset/datasets/commands/exceptions.py:161 -#: superset/datasets/commands/exceptions.py:173 +#: superset/datasets/commands/exceptions.py:178 +#: superset/datasets/commands/exceptions.py:190 msgid "Dataset could not be updated." msgstr "" -#: superset/datasets/commands/exceptions.py:149 +#: superset/datasets/commands/exceptions.py:166 msgid "Dataset does not exist" msgstr "データセットが存在しません" -#: superset-frontend/src/pages/DatasetList/index.tsx:185 +#: superset-frontend/src/pages/DatasetList/index.tsx:196 #, fuzzy msgid "Dataset imported" msgstr "DBポート番号" @@ -5194,22 +5279,22 @@ msgstr "データセットの指標が見つかりません。" msgid "Dataset name" msgstr "" -#: superset/datasets/commands/exceptions.py:153 +#: superset/datasets/commands/exceptions.py:170 msgid "Dataset parameters are invalid." msgstr "" -#: superset/dashboards/api.py:430 +#: superset/dashboards/api.py:415 #, python-format msgid "Dataset schema is invalid, caused by: %(error)s" msgstr "" -#: superset/datasets/commands/exceptions.py:169 +#: superset/datasets/commands/exceptions.py:186 msgid "Dataset(s) could not be bulk deleted." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:589 +#: superset-frontend/src/pages/DatasetList/index.tsx:600 #: superset-frontend/src/profile/components/Security.tsx:61 -#: superset/initialization/__init__.py:265 +#: superset/initialization/__init__.py:267 msgid "Datasets" msgstr "データセット" @@ -5233,12 +5318,12 @@ msgstr "データソース" msgid "Datasource & Chart Type" msgstr "データソース名" -#: superset/commands/exceptions.py:131 +#: superset/commands/exceptions.py:135 #, fuzzy msgid "Datasource does not exist" msgstr "データセットが存在しません" -#: superset/commands/exceptions.py:123 +#: superset/commands/exceptions.py:127 msgid "Datasource type is invalid" msgstr "" @@ -5256,8 +5341,7 @@ msgstr "日時フォーマット" msgid "Date filter" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:71 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:151 #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:135 @@ -5279,11 +5363,11 @@ msgstr "日時フォーマット" msgid "Date/Time" msgstr "" -#: superset/connectors/sqla/views.py:163 +#: superset/connectors/sqla/views.py:162 msgid "Datetime Format" msgstr "日時フォーマット" -#: superset/connectors/sqla/models.py:1237 superset/models/helpers.py:1427 +#: superset/models/helpers.py:1502 msgid "" "Datetime column not provided as part table configuration and is required " "by this type of chart" @@ -5293,7 +5377,7 @@ msgstr "" msgid "Datetime format" msgstr "日時フォーマット" -#: superset/db_engine_specs/base.py:106 +#: superset/db_engine_specs/base.py:107 msgid "Day" msgstr "日" @@ -5306,7 +5390,7 @@ msgstr "" msgid "Days %s" msgstr "日" -#: superset/connectors/sqla/models.py:1936 superset/models/helpers.py:988 +#: superset/connectors/sqla/models.py:1222 superset/models/helpers.py:1024 msgid "Db engine did not return all queried columns" msgstr "" @@ -5319,47 +5403,56 @@ msgstr "アクティブ" msgid "December" msgstr "12月" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:70 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:89 msgid "Decides which column to sort the base axis by." msgstr "" -#: superset/views/database/forms.py:194 superset/views/database/forms.py:373 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:160 +msgid "Decides which measure to sort the base axis by." +msgstr "" + +#: superset/views/database/forms.py:204 superset/views/database/forms.py:383 msgid "Decimal Character" msgstr "" -#: superset/viz.py:2743 +#: superset/viz.py:2700 msgid "Deck.gl - 3D Grid" msgstr "" -#: superset/viz.py:2859 +#: superset/viz.py:2825 msgid "Deck.gl - 3D HEX" msgstr "" -#: superset/viz.py:2899 +#: superset/viz.py:2890 msgid "Deck.gl - Arc" msgstr "" -#: superset/viz.py:2880 +#: superset/viz.py:2869 msgid "Deck.gl - GeoJSON" msgstr "" -#: superset/viz.py:2468 +#: superset/viz.py:2848 +#, fuzzy +msgid "Deck.gl - Heatmap" +msgstr "すべてのチャート" + +#: superset/viz.py:2406 msgid "Deck.gl - Multiple Layers" msgstr "" -#: superset/viz.py:2775 +#: superset/viz.py:2735 msgid "Deck.gl - Paths" msgstr "" -#: superset/viz.py:2826 +#: superset/viz.py:2789 msgid "Deck.gl - Polygon" msgstr "" -#: superset/viz.py:2662 +#: superset/viz.py:2612 msgid "Deck.gl - Scatter plot" msgstr "" -#: superset/viz.py:2714 +#: superset/viz.py:2668 msgid "Deck.gl - Screen Grid" msgstr "" @@ -5367,7 +5460,7 @@ msgstr "" msgid "Default" msgstr "" -#: superset/connectors/sqla/views.py:484 +#: superset/connectors/sqla/views.py:391 msgid "Default Endpoint" msgstr "" @@ -5500,11 +5593,13 @@ msgstr "" #: superset-frontend/src/pages/CssTemplateList/index.tsx:338 #: superset-frontend/src/pages/DashboardList/index.tsx:427 #: superset-frontend/src/pages/DashboardList/index.tsx:712 -#: superset-frontend/src/pages/DatasetList/index.tsx:418 -#: superset-frontend/src/pages/DatasetList/index.tsx:751 +#: superset-frontend/src/pages/DatasetList/index.tsx:429 +#: superset-frontend/src/pages/DatasetList/index.tsx:773 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:182 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:313 #: superset-frontend/src/pages/SavedQueryList/index.tsx:542 #: superset-frontend/src/pages/Tags/index.tsx:153 -#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:663 +#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:664 msgid "Delete" msgstr "削除" @@ -5517,11 +5612,11 @@ msgstr "%s を削除しますか?" msgid "Delete Annotation?" msgstr "注釈を削除しますか?" -#: superset-frontend/src/pages/DatabaseList/index.tsx:529 +#: superset-frontend/src/pages/DatabaseList/index.tsx:551 msgid "Delete Database?" msgstr "データベースを削除しますか?" -#: superset-frontend/src/pages/DatasetList/index.tsx:723 +#: superset-frontend/src/pages/DatasetList/index.tsx:745 msgid "Delete Dataset?" msgstr "データセットを削除しますか?" @@ -5543,7 +5638,7 @@ msgstr "テンプレートを削除しますか?" msgid "Delete Template?" msgstr "テンプレートを削除しますか?" -#: superset/views/base.py:663 +#: superset/views/base.py:664 msgid "Delete all Really?" msgstr "本当に全部削除しますか?" @@ -5555,7 +5650,7 @@ msgstr "注釈を削除する" msgid "Delete dashboard tab?" msgstr "ダッシュボードタブを削除しますか?" -#: superset-frontend/src/pages/DatabaseList/index.tsx:405 +#: superset-frontend/src/pages/DatabaseList/index.tsx:416 msgid "Delete database" msgstr "データベースを削除" @@ -5578,6 +5673,11 @@ msgstr "テンプレートを削除" msgid "Delete this container and save to remove this message." msgstr "このコンテナを削除し、保存してこのメ​​ッセージを削除します。" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:108 +#, fuzzy +msgid "Deleted" +msgstr "削除" + #: superset/annotation_layers/annotations/api.py:504 #, python-format msgid "Deleted %(num)d annotation" @@ -5590,7 +5690,7 @@ msgid "Deleted %(num)d annotation layer" msgid_plural "Deleted %(num)d annotation layers" msgstr[0] "" -#: superset/charts/api.py:524 +#: superset/charts/api.py:521 #, python-format msgid "Deleted %(num)d chart" msgid_plural "Deleted %(num)d charts" @@ -5602,13 +5702,13 @@ msgid "Deleted %(num)d css template" msgid_plural "Deleted %(num)d css templates" msgstr[0] "" -#: superset/dashboards/api.py:760 +#: superset/dashboards/api.py:745 #, python-format msgid "Deleted %(num)d dashboard" msgid_plural "Deleted %(num)d dashboards" msgstr[0] " %(num)d 件のダッシュボードを削除しました" -#: superset/datasets/api.py:783 +#: superset/datasets/api.py:789 #, python-format msgid "Deleted %(num)d dataset" msgid_plural "Deleted %(num)d datasets" @@ -5620,19 +5720,30 @@ msgid "Deleted %(num)d report schedule" msgid_plural "Deleted %(num)d report schedules" msgstr[0] " %(num)d 件のレポートスケジュールを削除しました" +#: superset/row_level_security/api.py:349 +#, fuzzy, python-format +msgid "Deleted %(num)d rules" +msgid_plural "Deleted %(num)d rules" +msgstr[0] "" + #: superset/queries/saved_queries/api.py:222 #, python-format msgid "Deleted %(num)d saved query" msgid_plural "Deleted %(num)d saved queries" msgstr[0] " %(num)d 件の保存したクエリを削除しました" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:94 +#, fuzzy, python-format +msgid "Deleted %s" +msgstr "削除しました: %s" + #: superset-frontend/src/features/home/SavedQueries.tsx:172 #: superset-frontend/src/pages/AlertReportList/index.tsx:183 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 #: superset-frontend/src/pages/AnnotationList/index.tsx:117 #: superset-frontend/src/pages/CssTemplateList/index.tsx:93 -#: superset-frontend/src/pages/DatabaseList/index.tsx:158 -#: superset-frontend/src/pages/DatasetList/index.tsx:653 +#: superset-frontend/src/pages/DatabaseList/index.tsx:169 +#: superset-frontend/src/pages/DatasetList/index.tsx:664 #: superset-frontend/src/pages/SavedQueryList/index.tsx:242 #: superset-frontend/src/reports/actions/reports.js:158 #: superset-frontend/src/views/CRUD/utils.tsx:272 @@ -5651,7 +5762,7 @@ msgstr "" msgid "Delimited long & lat single column" msgstr "" -#: superset/views/database/forms.py:150 +#: superset/views/database/forms.py:160 msgid "Delimiter" msgstr "区切り文字" @@ -5678,33 +5789,35 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:40 +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 #, fuzzy msgid "Deprecated" msgstr "作成した項目" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:83 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:114 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:96 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:127 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:55 #: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:157 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:156 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:265 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1206 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1210 -#: superset-frontend/src/components/ReportModal/index.tsx:294 +#: superset-frontend/src/components/ReportModal/index.tsx:293 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1158 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:465 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 #: superset-frontend/src/pages/AnnotationList/index.tsx:161 -#: superset/connectors/sqla/views.py:157 superset/connectors/sqla/views.py:251 -#: superset/connectors/sqla/views.py:362 superset/connectors/sqla/views.py:491 -#: superset/views/chart/mixin.py:80 superset/views/sql_lab/views.py:84 +#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:398 superset/views/chart/mixin.py:80 +#: superset/views/sql_lab/views.py:84 msgid "Description" msgstr "" @@ -5718,7 +5831,7 @@ msgstr "説明(これはリストで見ることができます)" msgid "Description Columns" msgstr "列を削除する" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:50 msgid "Description text that shows up below your Big Number" msgstr "" @@ -5786,7 +5899,7 @@ msgstr "" msgid "Dimensions" msgstr "" -#: superset/viz.py:2005 +#: superset/viz.py:1928 msgid "Directed Force Layout" msgstr "" @@ -5796,11 +5909,11 @@ msgstr "" msgid "Directional" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:202 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 msgid "Disable SQL Lab data preview queries" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:205 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 msgid "" "Disable data preview when fetching table metadata in SQL Lab. Useful to " "avoid browser performance issues when using databases with very wide " @@ -5842,7 +5955,6 @@ msgstr "" msgid "Display configuration" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:87 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:252 msgid "" "Display metrics side by side within each column, as opposed to each " @@ -5853,15 +5965,11 @@ msgstr "" msgid "Display row level total" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:39 #, fuzzy msgid "Display settings" msgstr "スケジュール設定" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:78 -msgid "Display total row/column" -msgstr "" - #: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:35 msgid "" "Displays connections between entities in a graph structure. Useful for " @@ -5883,7 +5991,7 @@ msgstr "見積コスト" msgid "Distribution" msgstr "棒グラフ" -#: superset/viz.py:1801 +#: superset/viz.py:1717 msgid "Distribution - Bar Chart" msgstr "棒グラフ" @@ -5902,7 +6010,7 @@ msgstr "" msgid "Documentation" msgstr "注釈" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:40 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 msgid "Domain" msgstr "" @@ -5917,19 +6025,19 @@ msgstr "月" msgid "Dotted" msgstr "編集した項目" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:480 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:482 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:292 #, fuzzy msgid "Download" msgstr "画像としてダウンロード" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:317 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:504 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:512 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:329 msgid "Download as image" msgstr "画像としてダウンロード" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:264 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:262 msgid "Download to CSV" msgstr "" @@ -5981,20 +6089,20 @@ msgstr "" msgid "Draw split lines for minor y-axis ticks" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:181 -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:191 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 msgid "Drill by" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:172 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 msgid "Drill by is not available for this data point" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:170 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 msgid "Drill by is not yet supported for this chart type" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:154 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:420 #, fuzzy, python-format msgid "Drill by: %s" msgstr "並び替え" @@ -6023,66 +6131,40 @@ msgstr "" msgid "Drill to detail: %s" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:206 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:184 #, fuzzy msgid "Drop a column here or click" msgid_plural "Drop columns here or click" msgstr[0] "列または指標を削除する" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:335 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:330 #, fuzzy msgid "Drop a column/metric here or click" msgid_plural "Drop columns/metrics here or click" msgstr[0] "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:248 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 #, fuzzy msgid "Drop a temporal column here or click" msgstr "列または指標を削除する" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:216 -#, fuzzy -msgid "Drop column here" -msgid_plural "Drop columns here" -msgstr[0] "列を削除する" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:340 -#, fuzzy -msgid "Drop column or metric here" -msgid_plural "Drop columns or metrics here" -msgstr[0] "列または指標を削除する" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndSelectLabel.tsx:83 -#, fuzzy -msgid "Drop columns here" -msgstr "列を削除する" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:402 -#, fuzzy -msgid "Drop columns or metrics here" -msgstr "列または指標を削除する" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:401 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:405 #, fuzzy msgid "Drop columns/metrics here or click" msgstr "列または指標を削除する" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 -msgid "Drop temporal column here" -msgstr "" - #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:32 #, fuzzy msgid "Dual Line Chart" msgstr "新しいチャートを作成" #: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 -#: superset-frontend/src/pages/DatasetList/index.tsx:472 +#: superset-frontend/src/pages/DatasetList/index.tsx:483 #, fuzzy msgid "Duplicate" msgstr "日付" -#: superset/views/datasource/views.py:122 +#: superset/views/datasource/views.py:124 #, python-format msgid "Duplicate column name(s): %(columns)s" msgstr "" @@ -6108,7 +6190,7 @@ msgstr "" msgid "Duration" msgstr "期限" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:239 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:249 #, fuzzy msgid "" "Duration (in seconds) of the caching timeout for charts of this database." @@ -6137,28 +6219,28 @@ msgid "" "undefined." msgstr "このデータベースのチャートに対するキャッシュのタイムアウト期間(秒)。タイムアウトが0の場合は、キャッシュが失効しないことを意味します。未定義の場合は、グローバル・タイムアウトがデフォルト値になることに注意してください。" -#: superset/connectors/sqla/views.py:462 +#: superset/connectors/sqla/views.py:369 msgid "" "Duration (in seconds) of the caching timeout for this table. A timeout of" " 0 indicates that the cache never expires. Note this defaults to the " "database timeout if undefined." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:261 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:271 #, fuzzy msgid "" "Duration (in seconds) of the metadata caching timeout for schemas of this" " database. If left unset, the cache never expires." msgstr "このデータベースのチャートに対するキャッシュのタイムアウト期間(秒)。タイムアウトが0の場合は、キャッシュが失効しないことを意味します。未定義の場合は、グローバル・タイムアウトがデフォルト値になることに注意してください。" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:282 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:292 #, fuzzy msgid "" "Duration (in seconds) of the metadata caching timeout for tables of this " "database. If left unset, the cache never expires. " msgstr "このデータベースのチャートに対するキャッシュのタイムアウト期間(秒)。タイムアウトが0の場合は、キャッシュが失効しないことを意味します。未定義の場合は、グローバル・タイムアウトがデフォルト値になることに注意してください。" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:50 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" msgstr "" @@ -6166,7 +6248,7 @@ msgstr "" msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:49 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 #: superset-frontend/src/explore/controls.jsx:89 msgid "Duration in ms (66000 => 1m 6s)" msgstr "" @@ -6205,7 +6287,7 @@ msgstr "" msgid "ECharts" msgstr "チャート" -#: superset/reports/notifications/email.py:130 +#: superset/reports/notifications/email.py:133 #, fuzzy msgid "EMAIL_REPORTS_CTA" msgstr "アラートとレポート" @@ -6216,12 +6298,12 @@ msgstr "アラートとレポート" msgid "END (EXCLUSIVE)" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:171 +#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 #, fuzzy msgid "ERROR" msgstr "作成者" -#: superset-frontend/src/views/CRUD/hooks.ts:700 +#: superset-frontend/src/views/CRUD/hooks.ts:704 #, python-format msgid "ERROR: %s" msgstr "" @@ -6253,8 +6335,9 @@ msgstr "線の幅" #: superset-frontend/src/pages/AlertReportList/index.tsx:385 #: superset-frontend/src/pages/ChartList/index.tsx:553 #: superset-frontend/src/pages/DashboardList/index.tsx:461 -#: superset-frontend/src/pages/DatabaseList/index.tsx:431 -#: superset-frontend/src/pages/DatasetList/index.tsx:452 +#: superset-frontend/src/pages/DatabaseList/index.tsx:442 +#: superset-frontend/src/pages/DatasetList/index.tsx:463 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:200 msgid "Edit" msgstr "編集" @@ -6284,7 +6367,7 @@ msgstr "チャートを編集" msgid "Edit Chart Properties" msgstr "チャートのプロパティを編集" -#: superset/connectors/sqla/views.py:75 +#: superset/connectors/sqla/views.py:74 msgid "Edit Column" msgstr "" @@ -6296,7 +6379,7 @@ msgstr "ダッシュボードを編集" msgid "Edit Database" msgstr "データベースを編集" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:199 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:241 msgid "Edit Dataset " msgstr "" @@ -6304,7 +6387,7 @@ msgstr "" msgid "Edit Log" msgstr "ログを編集" -#: superset/connectors/sqla/views.py:210 +#: superset/connectors/sqla/views.py:209 msgid "Edit Metric" msgstr "指標を編集" @@ -6317,15 +6400,16 @@ msgstr "" msgid "Edit Report" msgstr "レポート" -#: superset/connectors/sqla/views.py:293 -msgid "Edit Row level security filter" -msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +#, fuzzy +msgid "Edit Rule" +msgstr "クエリ名" #: superset/views/sql_lab/views.py:55 msgid "Edit Saved Query" msgstr "保存したクエリの編集" -#: superset/connectors/sqla/views.py:387 +#: superset/connectors/sqla/views.py:294 msgid "Edit Table" msgstr "テーブルを編集" @@ -6342,9 +6426,9 @@ msgstr "注釈レイヤーを編集" msgid "Edit annotation layer properties" msgstr "注釈レイヤーのプロパティを編集" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:74 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:122 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:44 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:212 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:217 #: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:405 #, fuzzy msgid "Edit chart" @@ -6359,7 +6443,7 @@ msgstr "チャートのプロパティを編集" msgid "Edit dashboard" msgstr "ダッシュボードを編集" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1700 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 msgid "Edit database" msgstr "データベースを編集" @@ -6369,7 +6453,7 @@ msgstr "データセットを編集" #: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:243 #: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:264 -#: superset-frontend/src/components/ReportModal/index.tsx:212 +#: superset-frontend/src/components/ReportModal/index.tsx:211 msgid "Edit email report" msgstr "" @@ -6394,7 +6478,7 @@ msgstr "テンプレートを編集" msgid "Edit template parameters" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:717 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:718 #: superset-frontend/src/dashboard/components/DashboardGrid.jsx:242 #, fuzzy msgid "Edit the dashboard" @@ -6421,8 +6505,9 @@ msgstr "フィルタセットを編集:" msgid "Either the database is spelled incorrectly or does not exist." msgstr "Issue 1015 - データベース名が正しくないか、または存在しません。" -#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:654 -#: superset/db_engine_specs/redshift.py:67 +#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:681 +#: superset/db_engine_specs/redshift.py:71 +#: superset/db_engine_specs/starrocks.py:122 #, python-format msgid "Either the username \"%(username)s\" or the password is incorrect." msgstr "" @@ -6494,12 +6579,12 @@ msgstr "空のコレクション" msgid "Empty column" msgstr "列を削除する" -#: superset/charts/data/api.py:363 +#: superset/charts/data/api.py:366 #, fuzzy msgid "Empty query result" msgstr "クエリのインポート" -#: superset/connectors/sqla/models.py:1243 superset/models/helpers.py:1433 +#: superset/models/helpers.py:1508 msgid "Empty query?" msgstr "" @@ -6512,11 +6597,11 @@ msgstr "" msgid "Enable 'Allow file uploads to database' in any database's settings" msgstr "" -#: superset/connectors/sqla/views.py:482 +#: superset/connectors/sqla/views.py:389 msgid "Enable Filter Select" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:139 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 msgid "Enable cross-filtering" msgstr "" @@ -6551,7 +6636,7 @@ msgstr "" msgid "Enable node dragging" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:170 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 msgid "Enable query cost estimation" msgstr "" @@ -6560,7 +6645,7 @@ msgstr "" msgid "Enable server side pagination of results (experimental feature)" msgstr "" -#: superset/viz.py:2567 +#: superset/viz.py:2514 msgid "" "Encountered invalid NULL spatial entry," " please consider filtering those " @@ -6609,19 +6694,19 @@ msgstr "開始日は終了日を超えてはいけません" msgid "Engine \"%(engine)s\" cannot be configured through parameters." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:476 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:512 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:516 #, fuzzy msgid "Engine Parameters" msgstr "テンプレートパラメータ" -#: superset/databases/schemas.py:298 +#: superset/databases/schemas.py:302 msgid "" "Engine spec \"InvalidEngine\" does not support being configured via " "individual parameters." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:366 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:376 msgid "Enter CA_BUNDLE" msgstr "" @@ -6630,7 +6715,7 @@ msgstr "" msgid "Enter Primary Credentials" msgstr "Excelをアップロード" -#: superset/views/database/forms.py:151 +#: superset/views/database/forms.py:161 msgid "Enter a delimiter for this data" msgstr "" @@ -6642,15 +6727,15 @@ msgstr "" msgid "Enter a new title for the tab" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:234 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:255 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:276 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:244 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:286 #, fuzzy msgid "Enter duration in seconds" msgstr "秒単位の時間" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:265 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:367 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:369 #, fuzzy msgid "Enter fullscreen" msgstr "フルスクリーン切り替え" @@ -6678,7 +6763,7 @@ msgstr "" msgid "Equal to (=)" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:140 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:182 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:139 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:298 #: superset-frontend/src/explore/components/EmbedCodeContent.jsx:57 @@ -6687,22 +6772,22 @@ msgstr "" msgid "Error" msgstr "" -#: superset/connectors/sqla/models.py:1650 superset/models/helpers.py:1843 +#: superset/models/helpers.py:1919 #, python-format msgid "Error in jinja expression in HAVING clause: %(msg)s" msgstr "" -#: superset/connectors/sqla/models.py:1145 +#: superset/connectors/sqla/models.py:1105 superset/models/helpers.py:835 #, python-format msgid "Error in jinja expression in RLS filters: %(msg)s" msgstr "" -#: superset/connectors/sqla/models.py:1633 superset/models/helpers.py:1831 +#: superset/models/helpers.py:1901 #, python-format msgid "Error in jinja expression in WHERE clause: %(msg)s" msgstr "" -#: superset/connectors/sqla/models.py:826 +#: superset/connectors/sqla/models.py:789 #, python-format msgid "Error in jinja expression in fetch values predicate: %(msg)s" msgstr "" @@ -6727,7 +6812,7 @@ msgstr "データの取得中にエラーが発生しました" msgid "Error while fetching data: %s" msgstr "データの取得中にエラーが発生しました" -#: superset/connectors/sqla/models.py:953 superset/models/helpers.py:1029 +#: superset/connectors/sqla/models.py:914 superset/models/helpers.py:1072 #, python-format msgid "Error while rendering virtual dataset query: %(msg)s" msgstr "" @@ -6737,12 +6822,12 @@ msgstr "" msgid "Error: %(error)s" msgstr "" -#: superset/views/core.py:820 superset/views/core.py:1918 +#: superset/views/core.py:842 superset/views/core.py:1955 #, python-format msgid "Error: %(msg)s" msgstr "" -#: superset/views/core.py:817 +#: superset/views/core.py:839 #, fuzzy msgid "Error: permalink state not found" msgstr "レポートスケジュールの状態が見つかりません" @@ -6755,7 +6840,7 @@ msgstr "見積コスト" msgid "Estimate selected query cost" msgstr "選択したクエリコストの見積" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:621 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:615 msgid "Estimate the cost before running a query" msgstr "" @@ -6778,7 +6863,7 @@ msgstr "アラート名" msgid "Event definition" msgstr "" -#: superset/viz.py:2933 +#: superset/viz.py:2927 msgid "Event flow" msgstr "" @@ -6826,18 +6911,18 @@ msgstr "例" msgid "Examples" msgstr "例" -#: superset/views/database/forms.py:278 +#: superset/views/database/forms.py:288 msgid "Excel File" msgstr "" -#: superset/views/database/views.py:424 +#: superset/views/database/views.py:427 #, python-format msgid "" "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" " database \"%(db_name)s\"" msgstr "" -#: superset/views/database/views.py:303 +#: superset/views/database/views.py:306 msgid "Excel to Database configuration" msgstr "" @@ -6845,6 +6930,10 @@ msgstr "" msgid "Exclude selected values" msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:405 +msgid "Excluded roles" +msgstr "" + #: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 #, fuzzy msgid "Executed SQL" @@ -6862,18 +6951,18 @@ msgstr "実行 ID" msgid "Execution log" msgstr "実行ログ" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:411 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:419 #, fuzzy msgid "Existing dataset" msgstr "データセットが見つかりません" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:264 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:366 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:368 #, fuzzy msgid "Exit fullscreen" msgstr "フルスクリーン切り替え" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 #, fuzzy msgid "Expand" msgstr "すべて展開" @@ -6886,12 +6975,12 @@ msgstr "すべて展開" msgid "Expand data panel" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:209 +#: superset-frontend/src/components/Table/index.tsx:213 #, fuzzy msgid "Expand row" msgstr "すべて展開" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:197 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 #, fuzzy msgid "Expand table preview" msgstr "データプレビュー" @@ -6909,6 +6998,7 @@ msgid "" msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:38 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:37 @@ -6923,11 +7013,11 @@ msgid "Experimental" msgstr "" #: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 -#: superset/views/core.py:987 +#: superset/views/core.py:1009 msgid "Explore" msgstr "" -#: superset/views/core.py:985 +#: superset/views/core.py:1007 #, python-format msgid "Explore - %(table)s" msgstr "" @@ -6943,9 +7033,9 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:854 #: superset-frontend/src/pages/DashboardList/index.tsx:445 #: superset-frontend/src/pages/DashboardList/index.tsx:720 -#: superset-frontend/src/pages/DatabaseList/index.tsx:415 -#: superset-frontend/src/pages/DatasetList/index.tsx:434 -#: superset-frontend/src/pages/DatasetList/index.tsx:759 +#: superset-frontend/src/pages/DatabaseList/index.tsx:426 +#: superset-frontend/src/pages/DatasetList/index.tsx:445 +#: superset-frontend/src/pages/DatasetList/index.tsx:781 #: superset-frontend/src/pages/SavedQueryList/index.tsx:550 #: superset/views/dashboard/views.py:65 msgid "Export" @@ -6959,7 +7049,7 @@ msgstr "ダッシュボードをエクスポートしますか?" msgid "Export query" msgstr "クエリのエクスポート" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:485 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:487 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:316 #, fuzzy msgid "Export to .CSV" @@ -6970,20 +7060,21 @@ msgstr "YAMLで出力" msgid "Export to .JSON" msgstr "YAMLで出力" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:335 #, fuzzy msgid "Export to Excel" msgstr "YAMLで出力" -#: superset/views/base.py:606 +#: superset/views/base.py:607 msgid "Export to YAML" msgstr "YAMLで出力" -#: superset/views/base.py:606 +#: superset/views/base.py:607 msgid "Export to YAML?" msgstr "YAMLで出力しますか?" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:496 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:498 msgid "Export to full .CSV" msgstr "" @@ -6995,12 +7086,12 @@ msgstr "" msgid "Export to pivoted .CSV" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:88 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 msgid "Expose database in SQL Lab" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:354 -#: superset-frontend/src/pages/DatabaseList/index.tsx:460 +#: superset-frontend/src/pages/DatabaseList/index.tsx:365 +#: superset-frontend/src/pages/DatabaseList/index.tsx:471 #: superset/views/database/mixins.py:183 msgid "Expose in SQL Lab" msgstr "" @@ -7009,12 +7100,12 @@ msgstr "" msgid "Expose this DB in SQL Lab" msgstr "" -#: superset/connectors/sqla/views.py:161 +#: superset/connectors/sqla/views.py:160 msgid "Expression" msgstr "式" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:908 -#: superset/connectors/sqla/views.py:257 superset/connectors/sqla/views.py:494 +#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:401 #: superset/views/database/mixins.py:193 msgid "Extra" msgstr "" @@ -7081,8 +7172,8 @@ msgstr "10月" msgid "Factor to multiply the metric by" msgstr "" -#: superset/views/database/forms.py:167 superset/views/database/forms.py:324 -#: superset/views/database/forms.py:455 +#: superset/views/database/forms.py:177 superset/views/database/forms.py:334 +#: superset/views/database/forms.py:465 msgid "Fail" msgstr "" @@ -7093,16 +7184,16 @@ msgid "Failed" msgstr "失敗" #: superset-frontend/src/SqlLab/actions/sqlLab.js:210 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:346 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:350 msgid "Failed at retrieving results" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:500 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:496 #, python-format msgid "Failed at stopping query. %s" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:343 +#: superset-frontend/src/components/ReportModal/index.tsx:342 msgid "Failed to create report" msgstr "" @@ -7111,23 +7202,37 @@ msgstr "" msgid "Failed to execute %(query)s" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:97 +msgid "Failed to generate chart edit URL" +msgstr "" + #: superset-frontend/src/pages/Chart/index.tsx:57 msgid "Failed to load chart data" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:402 #: superset-frontend/src/pages/Chart/index.tsx:69 msgid "Failed to load chart data." msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 +msgid "Failed to load dimensions for drill by" +msgstr "" + #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 msgid "Failed to retrieve advanced type" msgstr "" +#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +#, fuzzy +msgid "Failed to save cross-filter scoping" +msgstr "新しいフィルタ" + #: superset/errors.py:143 superset/sqllab/sql_json_executer.py:189 msgid "Failed to start remote query on a worker." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:342 +#: superset-frontend/src/components/ReportModal/index.tsx:341 msgid "Failed to update report" msgstr "" @@ -7151,15 +7256,15 @@ msgstr "お気に入り" msgid "February" msgstr "2月" -#: superset/connectors/sqla/views.py:488 +#: superset/connectors/sqla/views.py:395 msgid "Fetch Values Predicate" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:538 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:531 msgid "Fetch data preview" msgstr "データプレビューを読み込み" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:352 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:354 #, python-format msgid "Fetched %s" msgstr "" @@ -7229,12 +7334,18 @@ msgid "Filter Settings" msgstr "新しいフィルタ セット" #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:825 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:362 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:373 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:134 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:255 msgid "Filter Type" msgstr "フィルタタイプ" #: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:28 -msgid "Filter box" -msgstr "フィルタボックス" +#, fuzzy +msgid "Filter box (deprecated)" +msgstr "フィルタは選択されていません。" #: superset-frontend/src/dashboard/components/SliceAdder.jsx:351 #, fuzzy @@ -7253,7 +7364,7 @@ msgstr "" msgid "Filter has default value" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:197 +#: superset-frontend/src/components/Table/index.tsx:201 #, fuzzy msgid "Filter menu" msgstr "フィルタ名" @@ -7270,7 +7381,7 @@ msgstr "フィルタ名" msgid "Filter only displays values relevant to selections made in other filters." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:289 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:283 msgid "Filter results" msgstr "" @@ -7308,7 +7419,7 @@ msgstr "" msgid "Filter value is required" msgstr "データセットが必要です" -#: superset/connectors/sqla/models.py:1549 superset/models/helpers.py:1754 +#: superset/models/helpers.py:1815 msgid "Filter value list cannot be empty" msgstr "" @@ -7316,7 +7427,7 @@ msgstr "" msgid "Filter your charts" msgstr "チャートを検索" -#: superset/connectors/sqla/views.py:159 +#: superset/connectors/sqla/views.py:158 msgid "Filterable" msgstr "フィルタ可能" @@ -7324,7 +7435,7 @@ msgstr "フィルタ可能" #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 #: superset-frontend/src/explore/controls.jsx:446 #: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:35 -#: superset/viz.py:2142 +#: superset/viz.py:2071 msgid "Filters" msgstr "フィルタ" @@ -7350,7 +7461,7 @@ msgstr "フィルタ構成" msgid "Filters out of scope (%d)" msgstr "" -#: superset/connectors/sqla/views.py:342 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:435 msgid "" "Filters with the same group key will be ORed together within the group, " "while different filter groups will be ANDed together. Undefined group " @@ -7362,9 +7473,9 @@ msgid "" " 'Europe')." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1077 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1125 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1857 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1132 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1180 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 msgid "Finish" msgstr "" @@ -7423,7 +7534,7 @@ msgstr "" msgid "Font size for the smallest value in the list" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:173 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 msgid "" "For Bigquery, Presto and Postgres, shows a button to compute cost before " "running a query." @@ -7439,7 +7550,7 @@ msgid "" "function, refer to the" msgstr "" -#: superset/connectors/sqla/views.py:336 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:408 msgid "" "For regular filters, these are the roles this filter will be applied to. " "For base filters, these are the roles that the filter DOES NOT apply to, " @@ -7450,27 +7561,27 @@ msgstr "" msgid "Force" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:141 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 msgid "" "Force all tables and views to be created in this schema when clicking " "CTAS or CVAS in SQL Lab." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:84 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 #, fuzzy msgid "Force date format" msgstr "日時フォーマット" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:381 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 msgid "Force refresh" msgstr "強制更新" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:292 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:291 msgid "Force refresh schema list" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:317 +#: superset-frontend/src/components/TableSelector/index.tsx:307 msgid "Force refresh table list" msgstr "テーブルリストを強制更新" @@ -7488,11 +7599,11 @@ msgstr "" msgid "Forest Green" msgstr "更新頻度" -#: superset/explore/commands/get.py:87 superset/views/core.py:834 +#: superset/explore/commands/get.py:87 superset/views/core.py:856 msgid "Form data not found in cache, reverting to chart metadata." msgstr "" -#: superset/explore/commands/get.py:95 superset/views/core.py:840 +#: superset/explore/commands/get.py:95 superset/views/core.py:862 msgid "Form data not found in cache, reverting to dataset metadata." msgstr "" @@ -7502,7 +7613,7 @@ msgstr "" msgid "Formattable" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:255 +#: superset-frontend/src/components/ReportModal/index.tsx:254 msgid "Formatted CSV attached in email" msgstr "" @@ -7558,7 +7669,7 @@ msgstr "" msgid "Friday" msgstr "金曜日" -#: superset/utils/date_parser.py:267 superset/viz.py:392 +#: superset/utils/date_parser.py:267 superset/viz.py:403 msgid "From date cannot be larger than to date" msgstr "開始日は終了日を超えてはいけません" @@ -7634,7 +7745,7 @@ msgstr "" msgid "Get the specify date for the holiday" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:713 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:714 msgid "Go to the edit mode to configure the dashboard and add charts" msgstr "" @@ -7690,20 +7801,22 @@ msgstr "" msgid "Group By filter plugin" msgstr "" -#: superset/viz.py:927 -msgid "Group By' and 'Columns' can't overlap" -msgstr "‘Group by’ と ‘Columns’ は重複できません" - #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:84 msgid "Group By, Metrics or Percentage Metrics must have a value" msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:433 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:139 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:267 +msgid "Group Key" +msgstr "" + #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 msgid "Group by" msgstr "" -#: superset/connectors/sqla/views.py:158 +#: superset/connectors/sqla/views.py:157 msgid "Groupable" msgstr "グループ分け可能" @@ -7732,12 +7845,12 @@ msgstr "作成されました" msgid "Header" msgstr "見出し" -#: superset/views/database/forms.py:244 superset/views/database/forms.py:331 +#: superset/views/database/forms.py:254 superset/views/database/forms.py:341 msgid "Header Row" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 -#: superset/viz.py:2249 +#: superset/viz.py:2183 msgid "Heatmap" msgstr "ヒートマップ" @@ -7762,7 +7875,7 @@ msgstr "" msgid "Hide Line" msgstr "レイヤーを隠す" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:394 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:396 #, fuzzy msgid "Hide chart description" msgstr "チャートの説明を切り替え" @@ -7791,12 +7904,12 @@ msgid "Hierarchy" msgstr "検索" #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 -#: superset/viz.py:1743 +#: superset/viz.py:1656 msgid "Histogram" msgstr "ヒストグラム" #: superset-frontend/src/pages/Home/index.tsx:333 -#: superset/initialization/__init__.py:233 +#: superset/initialization/__init__.py:235 msgid "Home" msgstr "ホーム" @@ -7805,7 +7918,7 @@ msgstr "ホーム" msgid "Horizon Chart" msgstr "チャートなし" -#: superset/viz.py:2310 +#: superset/viz.py:2246 msgid "Horizon Charts" msgstr "" @@ -7814,7 +7927,7 @@ msgstr "" msgid "Horizontal" msgstr "チャートなし" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:166 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 msgid "Horizontal (Top)" msgstr "" @@ -7826,12 +7939,12 @@ msgstr "" msgid "Host" msgstr "" -#: superset/db_engine_specs/base.py:1839 -#: superset/db_engine_specs/clickhouse.py:203 +#: superset/db_engine_specs/base.py:1872 +#: superset/db_engine_specs/clickhouse.py:204 msgid "Hostname or IP address" msgstr "ホスト名またはIPアドレス" -#: superset/db_engine_specs/base.py:104 +#: superset/db_engine_specs/base.py:105 msgid "Hour" msgstr "時間" @@ -7888,7 +8001,7 @@ msgstr "" msgid "Id of root node of the tree." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:391 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:401 msgid "" "If Presto or Trino, all the queries in SQL Lab are going to be executed " "as the currently logged on user who must have permission to run them. If " @@ -7906,7 +8019,7 @@ msgid "" "hive.server2.proxy.user property." msgstr "" -#: superset/views/database/forms.py:164 +#: superset/views/database/forms.py:174 msgid "If Table Already Exists" msgstr "" @@ -7914,7 +8027,7 @@ msgstr "" msgid "If a metric is specified, sorting will be done based on the metric value" msgstr "" -#: superset/views/database/forms.py:238 +#: superset/views/database/forms.py:248 msgid "" "If duplicate columns are not overridden, they will be presented as \"X.1," " X.2 ...X.x\"" @@ -7924,7 +8037,7 @@ msgstr "" msgid "If selected, please set the schemas allowed for csv upload in Extra." msgstr "" -#: superset/views/database/forms.py:318 superset/views/database/forms.py:449 +#: superset/views/database/forms.py:328 superset/views/database/forms.py:459 msgid "" "If table exists do one of the following: Fail (do nothing), Replace (drop" " and recreate table) or Append (insert data)." @@ -7943,7 +8056,7 @@ msgstr "" msgid "Ignore time" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:252 +#: superset-frontend/src/components/ReportModal/index.tsx:251 msgid "Image (PNG) embedded in email" msgstr "" @@ -7951,7 +8064,7 @@ msgstr "" msgid "Image download failed, please refresh and try again." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:386 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:396 msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" msgstr "" @@ -7972,11 +8085,11 @@ msgstr "インポート %s" msgid "Import Dashboard(s)" msgstr "ダッシュボードをインポート" -#: superset/initialization/__init__.py:337 +#: superset/initialization/__init__.py:331 msgid "Import Dashboards" msgstr "ダッシュボードをインポート" -#: superset/connectors/sqla/views.py:386 +#: superset/connectors/sqla/views.py:293 msgid "Import a table definition" msgstr "テーブル定義のインポート" @@ -8001,16 +8114,16 @@ msgstr "ダッシュボードをインポート" msgid "Import database failed for an unknown reason" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1912 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1969 #, fuzzy msgid "Import database from file" msgstr "データベースのインポート" -#: superset/datasets/commands/exceptions.py:185 +#: superset/datasets/commands/exceptions.py:202 msgid "Import dataset failed for an unknown reason" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:620 +#: superset-frontend/src/pages/DatasetList/index.tsx:631 msgid "Import datasets" msgstr "データセットのインポート" @@ -8037,7 +8150,7 @@ msgstr "最小値" msgid "Include Series" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:295 +#: superset-frontend/src/components/ReportModal/index.tsx:294 msgid "Include a description that will be sent with your report" msgstr "" @@ -8056,7 +8169,7 @@ msgstr "終了時間" msgid "Index" msgstr "個人用" -#: superset/views/database/forms.py:210 superset/views/database/forms.py:341 +#: superset/views/database/forms.py:220 superset/views/database/forms.py:351 msgid "Index Column" msgstr "" @@ -8095,11 +8208,23 @@ msgstr "" msgid "Intensity" msgstr "" -#: superset/views/database/forms.py:190 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:85 +msgid "Intensity Radius" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:86 +msgid "Intensity Radius is the radius at which the weight is distributed" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:69 +msgid "Intensity is the value multiplied by the weight to obtain the final weight" +msgstr "" + +#: superset/views/database/forms.py:200 msgid "Interpret Datetime Format Automatically" msgstr "" -#: superset/views/database/forms.py:191 +#: superset/views/database/forms.py:201 msgid "Interpret the datetime format automatically" msgstr "" @@ -8131,6 +8256,16 @@ msgstr "" msgid "Intervals" msgstr "更新間隔" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:68 +msgid "Intesity" +msgstr "" + +#: superset/db_engine_specs/ocient.py:274 +msgid "" +"Invalid Connection String: Expecting String of the form " +"'ocient://user:pass@host:port/database'." +msgstr "" + #: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 msgid "Invalid JSON" msgstr "" @@ -8144,7 +8279,7 @@ msgstr "" msgid "Invalid certificate" msgstr "無効な証明書" -#: superset/views/core.py:1422 +#: superset/views/core.py:1463 msgid "" "Invalid connection string, a valid string usually follows:\n" "'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" @@ -8173,15 +8308,15 @@ msgstr "" msgid "Invalid cumulative operator: %(operator)s" msgstr "" -#: superset/connectors/sqla/views.py:181 superset/datasets/schemas.py:44 +#: superset/connectors/sqla/views.py:180 superset/datasets/schemas.py:44 msgid "Invalid date/timestamp format" msgstr "無効な日付/タイムスタンプのフォーマット" -#: superset/viz.py:2160 +#: superset/viz.py:2091 msgid "Invalid filter configuration, please select a column" msgstr "" -#: superset/connectors/sqla/models.py:1623 superset/models/helpers.py:1820 +#: superset/models/helpers.py:1891 #, python-format msgid "Invalid filter operation type: %(op)s" msgstr "" @@ -8206,7 +8341,7 @@ msgstr "" msgid "Invalid longitude/latitude" msgstr "" -#: superset/utils/core.py:1364 +#: superset/utils/core.py:1373 #, fuzzy, python-format msgid "Invalid metric object: %(metric)s" msgstr "無効な証明書" @@ -8225,7 +8360,12 @@ msgstr "" msgid "Invalid permalink key" msgstr "" -#: superset/common/query_actions.py:228 +#: superset/db_engine_specs/ocient.py:292 +#, python-format +msgid "Invalid reference to column: \"%(column)s\"" +msgstr "" + +#: superset/common/query_actions.py:227 #, python-format msgid "Invalid result type: %(result_type)s" msgstr "" @@ -8235,7 +8375,7 @@ msgstr "" msgid "Invalid rolling_type: %(type)s" msgstr "" -#: superset/viz.py:2530 +#: superset/viz.py:2474 #, python-format msgid "Invalid spatial point encountered: %s" msgstr "" @@ -8246,7 +8386,7 @@ msgstr "" msgid "Invalid state." msgstr "無効な証明書" -#: superset/reports/commands/create.py:144 +#: superset/reports/commands/create.py:142 #, python-format msgid "Invalid tab ids: %s(tab_ids)" msgstr "" @@ -8255,7 +8395,7 @@ msgstr "" msgid "Inverse selection" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:205 +#: superset-frontend/src/components/Table/index.tsx:209 #, fuzzy msgid "Invert current page" msgstr "チャートの変更点" @@ -8276,7 +8416,7 @@ msgstr "" msgid "Is false" msgstr "テーブルを編集" -#: superset/views/base_api.py:143 +#: superset/views/base_api.py:149 msgid "Is favorite" msgstr "お気に入り" @@ -8293,13 +8433,13 @@ msgstr "" msgid "Is null" msgstr "" -#: superset/views/base_api.py:171 +#: superset/views/base_api.py:177 msgid "Is tagged" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:362 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 -#: superset/connectors/sqla/views.py:162 +#: superset/connectors/sqla/views.py:161 msgid "Is temporal" msgstr "" @@ -8343,7 +8483,7 @@ msgstr "" msgid "JSON metadata is invalid!" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 msgid "" "JSON string containing additional connection configuration. This is used " "to provide connection information for systems like Hive, Presto and " @@ -8380,24 +8520,24 @@ msgstr "" msgid "Jinja templating" msgstr "テンプレートを編集" -#: superset/views/database/forms.py:233 +#: superset/views/database/forms.py:243 msgid "Json list of the column names that should be read" msgstr "" -#: superset/views/database/forms.py:464 +#: superset/views/database/forms.py:474 msgid "" "Json list of the column names that should be read. If not None, only " "these columns will be read from the file." msgstr "" -#: superset/views/database/forms.py:203 +#: superset/views/database/forms.py:213 msgid "" "Json list of the values that should be treated as null. Examples: [\"\"] " "for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " "Hive database supports only a single value" msgstr "" -#: superset/views/database/forms.py:394 +#: superset/views/database/forms.py:404 msgid "" "Json list of the values that should be treated as null. Examples: [\"\"]," " [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " @@ -8447,8 +8587,8 @@ msgstr "フィルタ" msgid "LIMIT" msgstr "区切り文字" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:80 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:109 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:93 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:122 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:251 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:255 @@ -8529,7 +8669,7 @@ msgstr "共有" msgid "Last" msgstr "" -#: superset/connectors/sqla/views.py:481 superset/views/database/mixins.py:190 +#: superset/connectors/sqla/views.py:388 superset/views/database/mixins.py:190 msgid "Last Changed" msgstr "最終更新" @@ -8556,7 +8696,7 @@ msgstr "" #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:177 #: superset-frontend/src/pages/ChartList/index.tsx:445 #: superset-frontend/src/pages/CssTemplateList/index.tsx:158 -#: superset-frontend/src/pages/DatabaseList/index.tsx:380 +#: superset-frontend/src/pages/DatabaseList/index.tsx:391 msgid "Last modified" msgstr "最終更新" @@ -8614,7 +8754,7 @@ msgstr "最終更新" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:28 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:90 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:371 #, fuzzy msgid "Left" @@ -8648,7 +8788,7 @@ msgstr "" msgid "Left to Right" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:144 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 #, fuzzy msgid "Left value" msgstr "デフォルト値" @@ -8662,7 +8802,6 @@ msgstr "デフォルト値" #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:33 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 #: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 #: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 @@ -8678,15 +8817,16 @@ msgstr "デフォルト値" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:35 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 #: superset-frontend/src/visualizations/TimeTable/index.ts:35 msgid "Legacy" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:154 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:289 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:115 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:99 #, fuzzy msgid "Legend" msgstr "変更" @@ -8696,7 +8836,7 @@ msgstr "変更" msgid "Legend Format" msgstr "メールフォーマット" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:95 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:92 #, fuzzy msgid "Legend Orientation" msgstr "注釈を削除する" @@ -8706,7 +8846,7 @@ msgstr "注釈を削除する" msgid "Legend Position" msgstr "アラート状態" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:72 msgid "Legend type" msgstr "" @@ -8851,7 +8991,7 @@ msgid "Lines encoding" msgstr "レポート送信" #: superset-frontend/src/pages/SavedQueryList/index.tsx:226 -#: superset-frontend/src/views/CRUD/hooks.ts:673 +#: superset-frontend/src/views/CRUD/hooks.ts:677 msgid "Link Copied!" msgstr "リンクをコピーしました!" @@ -8879,7 +9019,7 @@ msgstr "" msgid "List of values to mark with triangles" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:187 +#: superset-frontend/src/components/TableSelector/index.tsx:184 #, fuzzy msgid "List updated" msgstr "四半期" @@ -8910,8 +9050,8 @@ msgid "Loading" msgstr "アップロード" #: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:495 -#: superset-frontend/src/components/Select/Select.tsx:470 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:496 +#: superset-frontend/src/components/Select/Select.tsx:477 #: superset-frontend/src/components/Select/utils.tsx:152 #: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 #: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 @@ -8940,13 +9080,13 @@ msgstr "" msgid "Logarithmic scale on primary y-axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:432 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:449 msgid "Logarithmic scale on secondary y-axis" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:396 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:420 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:429 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:437 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:446 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:222 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:225 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:210 @@ -9016,27 +9156,27 @@ msgstr "5月" msgid "MON" msgstr "月" -#: superset/connectors/sqla/views.py:490 +#: superset/connectors/sqla/views.py:397 msgid "Main Datetime Column" msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:283 +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:292 msgid "" "Make sure that the controls are configured properly and the datasource " "contains data for the selected time range" msgstr "" -#: superset/views/core.py:1717 +#: superset/views/core.py:1752 msgid "" "Malformed request. slice_id or table_name and db_name arguments are " "expected" msgstr "不正なリクエスト。 slice_idまたはtable_nameおよびdb_name引数が必要です" -#: superset/initialization/__init__.py:277 -#: superset/initialization/__init__.py:289 -#: superset/initialization/__init__.py:341 -#: superset/initialization/__init__.py:412 -#: superset/initialization/__init__.py:425 +#: superset/initialization/__init__.py:279 +#: superset/initialization/__init__.py:291 +#: superset/initialization/__init__.py:335 +#: superset/initialization/__init__.py:406 +#: superset/initialization/__init__.py:419 msgid "Manage" msgstr "管理" @@ -9056,7 +9196,7 @@ msgstr "データベースのインポート" msgid "Mandatory" msgstr "" -#: superset/views/database/forms.py:350 +#: superset/views/database/forms.py:360 msgid "Mangle Duplicate Columns" msgstr "" @@ -9075,6 +9215,8 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:67 @@ -9098,7 +9240,7 @@ msgstr "" msgid "MapBox" msgstr "" -#: superset/viz.py:2322 +#: superset/viz.py:2258 msgid "Mapbox" msgstr "" @@ -9106,12 +9248,12 @@ msgstr "" msgid "March" msgstr "3月" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:50 #, fuzzy msgid "Margin" msgstr "警告" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:348 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:354 msgid "Mark a column as temporal in \"Edit datasource\" modal" msgstr "" @@ -9192,7 +9334,7 @@ msgid "" "this insures that the circle respects this maximum radius." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:232 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 #, fuzzy msgid "Maximum value" msgstr "デフォルト値" @@ -9245,7 +9387,7 @@ msgstr "" msgid "Menu actions trigger" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:237 +#: superset-frontend/src/components/ReportModal/index.tsx:236 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 msgid "Message content" msgstr "メッセージ内容" @@ -9255,8 +9397,8 @@ msgstr "メッセージ内容" msgid "Metadata" msgstr "JSONメタデータ" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:450 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:454 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:486 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:490 #, fuzzy msgid "Metadata Parameters" msgstr "テンプレートパラメータ" @@ -9282,13 +9424,12 @@ msgstr "" #: superset-frontend/src/explore/controls.jsx:167 #: superset-frontend/src/explore/controls.jsx:168 #: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 -#: superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:249 msgid "Metric" msgstr "指標" -#: superset/connectors/sqla/models.py:1264 -#: superset/connectors/sqla/models.py:1847 superset/models/helpers.py:1192 -#: superset/models/helpers.py:1448 +#: superset/connectors/sqla/models.py:1133 superset/models/helpers.py:1236 +#: superset/models/helpers.py:1529 #, python-format msgid "Metric '%(metric)s' does not exist" msgstr "" @@ -9325,7 +9466,7 @@ msgstr "" msgid "Metric for node values" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:106 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:119 #, fuzzy msgid "Metric name" msgstr "クエリ名" @@ -9352,6 +9493,7 @@ msgstr "表示する指標を選択" msgid "Metric to sort the results by" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:139 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:78 msgid "Metric used as a weight for the grid's coloring" msgstr "" @@ -9390,7 +9532,7 @@ msgstr "" #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 #: superset-frontend/src/explore/controls.jsx:152 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 -#: superset/connectors/sqla/views.py:207 +#: superset/connectors/sqla/views.py:206 msgid "Metrics" msgstr "指標" @@ -9475,11 +9617,11 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:85 #: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:152 msgid "Minimum threshold in percentage points for showing labels." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:231 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:69 #, fuzzy msgid "Minimum value" msgstr "デフォルト値" @@ -9502,7 +9644,7 @@ msgstr "" msgid "Minor Split Line" msgstr "" -#: superset/db_engine_specs/base.py:99 +#: superset/db_engine_specs/base.py:100 msgid "Minute" msgstr "分" @@ -9534,12 +9676,13 @@ msgstr "" #: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:278 #: superset-frontend/src/pages/AlertReportList/index.tsx:335 #: superset-frontend/src/pages/DashboardList/index.tsx:347 -#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:375 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:152 #: superset-frontend/src/pages/SavedQueryList/index.tsx:369 #: superset-frontend/src/pages/Tags/index.tsx:118 -#: superset/connectors/sqla/views.py:367 superset/connectors/sqla/views.py:495 -#: superset/views/dashboard/mixin.py:85 superset/views/dashboard/views.py:186 -#: superset/views/database/mixins.py:199 superset/views/sql_lab/views.py:85 +#: superset/connectors/sqla/views.py:402 superset/views/dashboard/mixin.py:85 +#: superset/views/dashboard/views.py:186 superset/views/database/mixins.py:199 +#: superset/views/sql_lab/views.py:85 msgid "Modified" msgstr "最終更新" @@ -9554,7 +9697,7 @@ msgstr "最終更新 %s" #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 #: superset-frontend/src/pages/ChartList/index.tsx:431 #: superset-frontend/src/pages/DashboardList/index.tsx:326 -#: superset-frontend/src/pages/DatasetList/index.tsx:374 +#: superset-frontend/src/pages/DatasetList/index.tsx:385 msgid "Modified by" msgstr "更新者" @@ -9567,7 +9710,7 @@ msgstr "" msgid "Monday" msgstr "月曜日" -#: superset/db_engine_specs/base.py:108 +#: superset/db_engine_specs/base.py:109 msgid "Month" msgstr "月" @@ -9634,7 +9777,7 @@ msgstr "" msgid "Multiple Line Charts" msgstr "時系列 - 複数の折れ線グラフ" -#: superset/views/database/views.py:465 +#: superset/views/database/views.py:468 msgid "" "Multiple file extensions are not allowed for columnar uploads. Please " "make sure all files are of the same extension." @@ -9669,11 +9812,11 @@ msgstr "一意である必要があります" msgid "Must choose either a chart or a dashboard" msgstr "両方ではなくチャートまたはダッシュボードを選択してください" -#: superset/viz.py:2346 +#: superset/viz.py:2283 msgid "Must have a [Group By] column to have 'count' as the [Label]" msgstr "[Label] として ’count’ を持つには、[Group By] 列が必要です" -#: superset/viz.py:1752 +#: superset/viz.py:1666 msgid "Must have at least one numeric column specified" msgstr "少なくとも 1 つの数値列を指定する必要があります。" @@ -9681,7 +9824,7 @@ msgstr "少なくとも 1 つの数値列を指定する必要があります。 msgid "Must provide credentials for the SSH Tunnel" msgstr "" -#: superset/connectors/sqla/models.py:1582 superset/models/helpers.py:1780 +#: superset/models/helpers.py:1848 msgid "Must specify a value for filters with comparison operators" msgstr "" @@ -9723,19 +9866,21 @@ msgid "NUMERIC" msgstr "指標" #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:149 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:782 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:212 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:148 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:789 #: superset-frontend/src/pages/AlertReportList/index.tsx:272 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 #: superset-frontend/src/pages/CssTemplateList/index.tsx:131 -#: superset-frontend/src/pages/DatasetList/index.tsx:334 +#: superset-frontend/src/pages/DatasetList/index.tsx:345 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:130 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:248 #: superset-frontend/src/pages/SavedQueryList/index.tsx:283 #: superset-frontend/src/pages/Tags/index.tsx:109 -#: superset/connectors/sqla/views.py:361 superset/views/chart/mixin.py:85 +#: superset/views/chart/mixin.py:85 msgid "Name" msgstr "名前" @@ -9748,11 +9893,11 @@ msgstr "名前が必要です" msgid "Name must be unique" msgstr "" -#: superset/views/database/forms.py:406 +#: superset/views/database/forms.py:416 msgid "Name of table to be created from columnar data." msgstr "" -#: superset/views/database/forms.py:270 +#: superset/views/database/forms.py:280 msgid "Name of table to be created from excel data." msgstr "" @@ -9772,7 +9917,7 @@ msgstr "" msgid "Name of the source nodes" msgstr "" -#: superset/connectors/sqla/views.py:428 +#: superset/connectors/sqla/views.py:335 msgid "Name of the table that exists in the source database" msgstr "" @@ -9832,17 +9977,17 @@ msgstr "新しいフィルタ セット" msgid "New header" msgstr "見出し" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:329 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:331 msgid "New tab" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:268 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:310 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:278 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:320 msgid "New tab (Ctrl + q)" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:269 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:311 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:279 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:321 msgid "New tab (Ctrl + t)" msgstr "" @@ -9864,9 +10009,9 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:708 #: superset-frontend/src/pages/DashboardList/index.tsx:507 #: superset-frontend/src/pages/DashboardList/index.tsx:589 -#: superset-frontend/src/pages/DatabaseList/index.tsx:468 -#: superset-frontend/src/pages/DatabaseList/index.tsx:488 -#: superset-frontend/src/pages/DatasetList/index.tsx:573 +#: superset-frontend/src/pages/DatabaseList/index.tsx:479 +#: superset-frontend/src/pages/DatabaseList/index.tsx:499 +#: superset-frontend/src/pages/DatasetList/index.tsx:584 msgid "No" msgstr "" @@ -9889,6 +10034,11 @@ msgstr "" msgid "No Results" msgstr "結果を見る" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:235 +#, fuzzy +msgid "No Rules yet" +msgstr "最近" + #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:116 #, fuzzy msgid "No annotation layers" @@ -9926,7 +10076,7 @@ msgstr "チャートなし" msgid "No columns" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:242 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 #, fuzzy msgid "No columns found" msgstr "互換性のないフィルタ (%d)" @@ -9941,7 +10091,7 @@ msgstr "互換性のないフィルタ (%d)" msgid "No compatible datasets found" msgstr "互換性のないフィルタ (%d)" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 #, fuzzy msgid "No compatible schema found" msgstr "互換性のないフィルタ (%d)" @@ -9955,14 +10105,14 @@ msgstr "ダッシュボードなし" msgid "No dashboards yet" msgstr "ダッシュボードなし" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:133 -#: superset-frontend/src/components/Table/index.tsx:203 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 +#: superset-frontend/src/components/Table/index.tsx:207 #: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:225 #: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 msgid "No data" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 msgid "No data after filtering or data is NULL for the latest time record" msgstr "" @@ -9983,10 +10133,6 @@ msgstr "" msgid "No description available." msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:174 -msgid "No dimensions available for drill by" -msgstr "" - #: superset-frontend/src/profile/components/Favorites.tsx:61 msgid "No favorite charts yet, go click on stars!" msgstr "お気に入りのチャートはまだありません。星をクリックしてください!" @@ -10006,7 +10152,7 @@ msgstr "新しいフィルタ" msgid "No filter is selected." msgstr "フィルタは選択されていません。" -#: superset-frontend/src/components/Table/index.tsx:200 +#: superset-frontend/src/components/Table/index.tsx:204 #, fuzzy msgid "No filters" msgstr "新しいフィルタ" @@ -10050,7 +10196,7 @@ msgid "No results" msgstr "結果を見る" #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:425 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:428 msgid "No results found" msgstr "" @@ -10058,7 +10204,7 @@ msgstr "" msgid "No results match your filter criteria" msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:280 +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:289 #: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 msgid "No results were returned for this query" msgstr "" @@ -10078,8 +10224,8 @@ msgstr "" msgid "No samples were returned for this dataset" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:293 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:311 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:299 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:317 #, fuzzy msgid "No saved expressions found" msgstr "SQL 式" @@ -10108,9 +10254,9 @@ msgstr "" msgid "No table columns" msgstr "列を削除する" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:292 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:310 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:345 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:298 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:316 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:351 #, fuzzy msgid "No temporal columns found" msgstr "互換性のないフィルタ (%d)" @@ -10140,7 +10286,7 @@ msgid "Node size" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:45 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:187 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:270 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:286 @@ -10150,12 +10296,12 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:402 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:182 #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:124 #: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 #: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:196 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:576 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:48 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:51 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:138 #: superset-frontend/src/explore/controlPanels/sections.tsx:134 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:127 @@ -10240,7 +10386,7 @@ msgstr "11月" msgid "Now" msgstr "行" -#: superset/views/database/forms.py:201 +#: superset/views/database/forms.py:211 msgid "Null Values" msgstr "" @@ -10254,11 +10400,11 @@ msgstr "注釈" msgid "Null or Empty" msgstr "" -#: superset/views/database/forms.py:392 +#: superset/views/database/forms.py:402 msgid "Null values" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:191 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 msgid "Number Format" msgstr "" @@ -10273,11 +10419,10 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:60 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:65 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:144 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:117 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:67 #: superset-frontend/plugins/legacy-plugin-chart-treemap/src/controlPanel.ts:67 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:97 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:137 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:276 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:137 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:113 @@ -10319,19 +10464,19 @@ msgstr "" msgid "Number of periods to ratio against" msgstr "" -#: superset/views/database/forms.py:255 +#: superset/views/database/forms.py:265 msgid "Number of rows of file to read" msgstr "" -#: superset/views/database/forms.py:361 +#: superset/views/database/forms.py:371 msgid "Number of rows of file to read." msgstr "" -#: superset/views/database/forms.py:261 +#: superset/views/database/forms.py:271 msgid "Number of rows to skip at start of file" msgstr "" -#: superset/views/database/forms.py:355 +#: superset/views/database/forms.py:365 msgid "Number of rows to skip at start of file." msgstr "" @@ -10356,15 +10501,15 @@ msgstr "期間" msgid "OCT" msgstr "10月" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:184 -#: superset-frontend/src/components/Modal/Modal.tsx:231 -#: superset-frontend/src/components/Table/index.tsx:198 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 +#: superset-frontend/src/components/Modal/Modal.tsx:238 +#: superset-frontend/src/components/Table/index.tsx:202 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:865 msgid "OK" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:267 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1379 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1434 msgid "OVERWRITE" msgstr "上書き" @@ -10377,7 +10522,7 @@ msgstr "10月" msgid "Offline" msgstr "オフライン" -#: superset/connectors/sqla/views.py:485 +#: superset/connectors/sqla/views.py:392 msgid "Offset" msgstr "オフセット" @@ -10418,27 +10563,27 @@ msgstr "" msgid "One or many metrics to display" msgstr "" -#: superset/datasets/commands/exceptions.py:90 +#: superset/datasets/commands/exceptions.py:107 msgid "One or more columns already exist" msgstr "" -#: superset/datasets/commands/exceptions.py:80 +#: superset/datasets/commands/exceptions.py:97 msgid "One or more columns are duplicated" msgstr "" -#: superset/datasets/commands/exceptions.py:70 +#: superset/datasets/commands/exceptions.py:87 msgid "One or more columns do not exist" msgstr "" -#: superset/datasets/commands/exceptions.py:119 +#: superset/datasets/commands/exceptions.py:136 msgid "One or more metrics already exist" msgstr "" -#: superset/datasets/commands/exceptions.py:109 +#: superset/datasets/commands/exceptions.py:126 msgid "One or more metrics are duplicated" msgstr "" -#: superset/datasets/commands/exceptions.py:99 +#: superset/datasets/commands/exceptions.py:116 msgid "One or more metrics do not exist" msgstr "" @@ -10457,7 +10602,7 @@ msgstr "Issue 1006 - クエリで指定された1つ以上のパラメーター msgid "One or more parameters specified in the query are missing." msgstr "Issue 1006 - クエリで指定された1つ以上のパラメーターが見つかりません。" -#: superset/views/core.py:1992 +#: superset/views/core.py:2029 msgid "" "One or more required fields are missing in the request. Please try again," " and if the problem persists contact your administrator." @@ -10467,24 +10612,24 @@ msgstr "" msgid "One ore more annotation layers failed loading." msgstr "1つ以上の注釈レイヤーの読み込みに失敗しました。" -#: superset/sql_lab.py:230 +#: superset/sql_lab.py:228 #, fuzzy msgid "Only SELECT statements are allowed against this database." msgstr "`SELECT` 操作のみがこのDBに対して許可されています" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:133 msgid "Only Total" msgstr "" -#: superset/connectors/sqla/utils.py:123 +#: superset/connectors/sqla/utils.py:122 msgid "Only `SELECT` statements are allowed" msgstr "'SELECT' 操作のみが許可されます" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:29 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 msgid "Only applies when \"Label Type\" is not set to a percentage." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:26 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 msgid "Only applies when \"Label Type\" is set to show values." msgstr "" @@ -10492,18 +10637,18 @@ msgstr "" msgid "Only selected panels will be affected by this filter" msgstr "選択したパネルのみがこのフィルターの影響を受けます" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:139 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 msgid "" "Only show the total value on the stacked chart, and not show on the " "selected category" msgstr "" -#: superset/connectors/sqla/utils.py:132 +#: superset/connectors/sqla/utils.py:131 msgid "Only single queries supported" msgstr "単一のクエリのみがサポートされています" -#: superset/views/database/forms.py:119 superset/views/database/forms.py:288 -#: superset/views/database/forms.py:426 +#: superset/views/database/forms.py:119 superset/views/database/forms.py:298 +#: superset/views/database/forms.py:436 #, python-format msgid "Only the following file extensions are allowed: %(allowed_extensions)s" msgstr "次のファイル拡張子のみが許可されます: %(allowed_extensions)s" @@ -10552,7 +10697,7 @@ msgstr "SQL Labで開く" msgid "Open query in SQL Lab" msgstr "SQL Labでクエリを開く" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:298 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 #: superset/views/database/mixins.py:104 msgid "" "Operate the database in asynchronous mode, meaning that the queries are " @@ -10561,8 +10706,8 @@ msgid "" " Refer to the installation docs for more information." msgstr "データベースを非同期モードで動作させます。Webサーバー自体ではなくリモートワーカーでクエリを実行します。この機能はCeleryワーカーと結果バックエンドがセットアップされていることを前提としています。詳細についてはインストールドキュメントを参照してください。" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:126 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:130 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 #, fuzzy msgid "Operator" msgstr "作成者" @@ -10572,7 +10717,7 @@ msgstr "作成者" msgid "Operator undefined for aggregator: %(name)s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:381 msgid "" "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" " certain database engines." @@ -10596,13 +10741,8 @@ msgstr "" msgid "Optional warning about use of this metric" msgstr "" -#: superset/connectors/sqla/views.py:328 -msgid "Optionally add a detailed description" -msgstr "" - #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:39 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:68 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:108 #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:74 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:45 #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:70 @@ -10616,7 +10756,7 @@ msgstr "" msgid "Options" msgstr "アクション" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:918 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:973 msgid "Or choose from a list of other databases we support:" msgstr "" @@ -10634,7 +10774,7 @@ msgstr "" msgid "Ordering" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:83 #, fuzzy msgid "Orientation" msgstr "注釈を削除する" @@ -10644,7 +10784,7 @@ msgstr "注釈を削除する" msgid "Orientation of bar chart" msgstr "棒グラフ" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:158 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 msgid "Orientation of filter bar" msgstr "" @@ -10661,7 +10801,7 @@ msgstr "ログイン" msgid "Original table column order" msgstr "元のテーブル列順で表示" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 #: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 #: superset-frontend/src/explore/controls.jsx:79 @@ -10673,10 +10813,10 @@ msgid "Orthogonal" msgstr "" #: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:126 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:938 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:479 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:993 #: superset-frontend/src/features/home/EmptyState.tsx:112 -#: superset/views/database/forms.py:155 superset/views/database/forms.py:161 +#: superset/views/database/forms.py:165 superset/views/database/forms.py:171 #, fuzzy msgid "Other" msgstr "月" @@ -10735,15 +10875,15 @@ msgstr "期間を編集" #: superset-frontend/src/components/ImportModal/index.tsx:426 #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:493 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:459 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:463 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:464 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:148 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 msgid "Overwrite" msgstr "上書き" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:249 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:192 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:247 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 msgid "Overwrite & Explore" msgstr "" @@ -10752,11 +10892,11 @@ msgstr "" msgid "Overwrite Dashboard [%s]" msgstr "ダッシュボード [%s] を上書き" -#: superset/views/database/forms.py:237 +#: superset/views/database/forms.py:247 msgid "Overwrite Duplicate Columns" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:404 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:412 #, fuzzy msgid "Overwrite existing" msgstr "編集を続ける" @@ -10772,11 +10912,11 @@ msgstr "" #: superset-frontend/src/pages/AlertReportList/index.tsx:452 #: superset-frontend/src/pages/ChartList/index.tsx:608 #: superset-frontend/src/pages/DashboardList/index.tsx:523 -#: superset-frontend/src/pages/DatasetList/index.tsx:500 +#: superset-frontend/src/pages/DatasetList/index.tsx:511 msgid "Owner" msgstr "所有者" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:235 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:93 #: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:408 @@ -10791,14 +10931,14 @@ msgstr "所有者" #: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 #: superset-frontend/src/pages/AlertReportList/index.tsx:324 #: superset-frontend/src/pages/DashboardList/index.tsx:369 -#: superset-frontend/src/pages/DatasetList/index.tsx:389 -#: superset/connectors/sqla/views.py:489 superset/views/chart/mixin.py:82 +#: superset-frontend/src/pages/DatasetList/index.tsx:400 +#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:82 #: superset/views/dashboard/mixin.py:81 msgid "Owners" msgstr "所有者" -#: superset/commands/exceptions.py:108 -#: superset/datasets/commands/exceptions.py:144 +#: superset/commands/exceptions.py:112 +#: superset/datasets/commands/exceptions.py:161 msgid "Owners are invalid" msgstr "" @@ -10840,7 +10980,7 @@ msgid "Pandas resample rule" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 -#: superset/viz.py:2219 +#: superset/viz.py:2152 msgid "Parallel Coordinates" msgstr "" @@ -10866,7 +11006,7 @@ msgstr "" msgid "Parent" msgstr "" -#: superset/views/database/forms.py:366 +#: superset/views/database/forms.py:376 msgid "Parse Dates" msgstr "" @@ -10885,7 +11025,7 @@ msgstr "" msgid "Partition Chart" msgstr "チャートのインポート" -#: superset/viz.py:3071 +#: superset/viz.py:3069 msgid "Partition Diagram" msgstr "" @@ -10905,7 +11045,7 @@ msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:154 #: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 -#: superset/db_engine_specs/base.py:1838 +#: superset/db_engine_specs/base.py:1870 #: superset/db_engine_specs/clickhouse.py:202 msgid "Password" msgstr "パスワード" @@ -10961,7 +11101,7 @@ msgstr "保存した指標" #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:81 #: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:148 msgid "Percentage threshold" msgstr "" @@ -10980,7 +11120,7 @@ msgstr "" msgid "Percentages" msgstr "最近" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:219 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:229 msgid "Performance" msgstr "" @@ -11016,8 +11156,8 @@ msgid "Person or group that has certified this metric" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1114 -#: superset-frontend/src/pages/DatasetList/index.tsx:342 -#: superset-frontend/src/pages/DatasetList/index.tsx:560 +#: superset-frontend/src/pages/DatasetList/index.tsx:353 +#: superset-frontend/src/pages/DatasetList/index.tsx:571 msgid "Physical" msgstr "" @@ -11025,7 +11165,7 @@ msgstr "" msgid "Physical (table or view)" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:273 +#: superset-frontend/src/pages/DatasetList/index.tsx:284 msgid "Physical dataset" msgstr "" @@ -11034,27 +11174,27 @@ msgstr "" msgid "Pick a dimension from which categorical colors are defined" msgstr "" -#: superset/viz.py:769 +#: superset/viz.py:795 msgid "Pick a granularity in the Time section or uncheck 'Include Time'" msgstr "" -#: superset/viz.py:1605 +#: superset/viz.py:1514 msgid "Pick a metric for left axis!" msgstr "" -#: superset/viz.py:1607 +#: superset/viz.py:1516 msgid "Pick a metric for right axis!" msgstr "" -#: superset/viz.py:1195 +#: superset/viz.py:1090 msgid "Pick a metric for x, y and size" msgstr "" -#: superset/viz.py:1234 +#: superset/viz.py:1131 msgid "Pick a metric to display" msgstr "表示する指標を選択" -#: superset/viz.py:1260 superset/viz.py:1294 +#: superset/viz.py:1159 superset/viz.py:1195 msgid "Pick a metric!" msgstr "指標を選んでください!" @@ -11070,7 +11210,7 @@ msgstr "" msgid "Pick a set of deck.gl charts to layer on top of one another" msgstr "" -#: superset/viz.py:1390 superset/viz.py:1653 +#: superset/viz.py:1294 superset/viz.py:1564 msgid "Pick a time granularity for your time series" msgstr "時系列の時間粒度を選択" @@ -11078,15 +11218,15 @@ msgstr "時系列の時間粒度を選択" msgid "Pick a title for you annotation." msgstr "" -#: superset/viz.py:1815 +#: superset/viz.py:1732 msgid "Pick at least one field for [Series]" msgstr "" -#: superset/viz.py:857 superset/viz.py:1813 +#: superset/viz.py:887 superset/viz.py:1730 msgid "Pick at least one metric" msgstr "少なくとも1つの指標を選択してください" -#: superset/viz.py:1943 +#: superset/viz.py:1863 msgid "Pick exactly 2 columns as [Source / Target]" msgstr "" @@ -11116,19 +11256,10 @@ msgstr "サンプルを表示" msgid "Pin" msgstr "最小値" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:45 -msgid "Pivot Options" -msgstr "" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 -#: superset/viz.py:894 msgid "Pivot Table" msgstr "ピボットテーブル" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:32 -msgid "Pivot Table (legacy)" -msgstr "" - #: superset/utils/pandas_postprocessing/pivot.py:70 msgid "Pivot operation must include at least one aggregate" msgstr "" @@ -11150,7 +11281,7 @@ msgstr "" msgid "Pixels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 msgid "Plain" msgstr "" @@ -11162,7 +11293,7 @@ msgstr "" msgid "Please apply filter changes" msgstr "" -#: superset/sqllab/query_render.py:120 +#: superset/sqllab/query_render.py:118 msgid "" "Please check your query and confirm that all template parameters are " "surround by double braces, for example, \"{{ ds }}\". Then, try running " @@ -11170,8 +11301,8 @@ msgid "" msgstr "" #: superset/db_engine_specs/athena.py:56 -#: superset/db_engine_specs/bigquery.py:210 -#: superset/db_engine_specs/postgres.py:161 +#: superset/db_engine_specs/bigquery.py:211 +#: superset/db_engine_specs/postgres.py:160 #: superset/db_engine_specs/snowflake.py:117 #, python-format msgid "" @@ -11179,7 +11310,7 @@ msgid "" "\"%(syntax_error)s\". Then, try running your query again." msgstr "" -#: superset/db_engine_specs/gsheets.py:80 superset/db_engine_specs/mysql.py:170 +#: superset/db_engine_specs/gsheets.py:82 superset/db_engine_specs/mysql.py:170 #, python-format msgid "" "Please check your query for syntax errors near \"%(server_error)s\". " @@ -11193,21 +11324,12 @@ msgid "" "your query again." msgstr "" -#: superset/viz.py:911 -#, fuzzy -msgid "Please choose at least one 'Group by' field" -msgstr "少なくとも1つの[Group by]フィールドを選択してください " - -#: superset/viz.py:3229 +#: superset/viz.py:3234 #, fuzzy msgid "Please choose at least one groupby" msgstr "少なくとも1つの[Group by]フィールドを選択してください " -#: superset/viz.py:923 -msgid "Please choose at least one metric" -msgstr "少なくとも1つの指標を選択してください" - -#: superset/viz.py:1610 +#: superset/viz.py:1519 msgid "Please choose different metrics on left and right axis" msgstr "" @@ -11223,18 +11345,20 @@ msgstr "" #: superset-frontend/src/pages/DashboardList/index.tsx:415 #: superset-frontend/src/pages/DashboardList/index.tsx:701 #: superset-frontend/src/pages/DashboardList/index.tsx:756 -#: superset-frontend/src/pages/DatasetList/index.tsx:740 +#: superset-frontend/src/pages/DatasetList/index.tsx:762 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:170 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:304 #: superset-frontend/src/pages/SavedQueryList/index.tsx:533 #: superset-frontend/src/pages/Tags/index.tsx:141 #: superset-frontend/src/pages/Tags/index.tsx:281 msgid "Please confirm" msgstr "確認してください" -#: superset-frontend/src/dashboard/actions/dashboardState.js:442 +#: superset-frontend/src/dashboard/actions/dashboardState.js:447 msgid "Please confirm the overwrite values." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:624 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:641 msgid "Please enter a SQLAlchemy URI to test" msgstr "" @@ -11242,11 +11366,11 @@ msgstr "" msgid "Please filter set name" msgstr "" -#: superset/db_engine_specs/postgres.py:125 +#: superset/db_engine_specs/postgres.py:124 msgid "Please re-enter the password." msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:435 +#: superset-frontend/src/views/CRUD/hooks.ts:439 msgid "Please re-export your file and try importing again" msgstr "" @@ -11273,7 +11397,7 @@ msgstr "" msgid "Please select both a Dataset and a Chart type to proceed" msgstr "" -#: superset/viz.py:1193 +#: superset/viz.py:1088 msgid "Please use 3 different metric labels" msgstr "3つの異なる指標ラベルを使用してください" @@ -11288,7 +11412,7 @@ msgid "" "multiple metrics across all of the samples or rows in the data." msgstr "" -#: superset/initialization/__init__.py:275 +#: superset/initialization/__init__.py:277 msgid "Plugins" msgstr "プラグイン" @@ -11387,13 +11511,17 @@ msgid "Port" msgstr "レポート" #: superset/db_engine_specs/mssql.py:98 -#: superset/db_engine_specs/postgres.py:135 -#: superset/db_engine_specs/presto.py:672 -#: superset/db_engine_specs/redshift.py:77 +#: superset/db_engine_specs/postgres.py:134 +#: superset/db_engine_specs/presto.py:699 +#: superset/db_engine_specs/redshift.py:81 #, python-format msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." msgstr "" +#: superset/db_engine_specs/ocient.py:269 +msgid "Port out of range 0-65535" +msgstr "" + #: superset/views/dashboard/mixin.py:86 msgid "Position JSON" msgstr "" @@ -11432,7 +11560,7 @@ msgstr "" msgid "Pre-filter is required" msgstr "タイプが必要です" -#: superset/connectors/sqla/views.py:440 +#: superset/connectors/sqla/views.py:347 msgid "" "Predicate applied when fetching distinct value to populate the filter " "control component. Supports jinja template syntax. Applies only when " @@ -11475,7 +11603,7 @@ msgstr "" msgid "Previous" msgstr "前" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:346 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:348 #, fuzzy msgid "Previous Line" msgstr "前" @@ -11500,6 +11628,10 @@ msgstr "金曜日" msgid "Primary or secondary y-axis" msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 +msgid "Primary y-axis Bounds" +msgstr "" + #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:387 msgid "Primary y-axis format" msgstr "" @@ -11516,7 +11648,7 @@ msgstr "" msgid "Private Key Password" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:269 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 #, fuzzy msgid "Proceed" msgstr "作成した項目" @@ -11596,11 +11728,11 @@ msgstr "" msgid "Python datetime string pattern" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1530 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1585 msgid "QUERY DATA IN SQL LAB" msgstr "" -#: superset/db_engine_specs/base.py:109 +#: superset/db_engine_specs/base.py:110 msgid "Quarter" msgstr "四半期" @@ -11614,9 +11746,9 @@ msgstr "四半期" msgid "Queries" msgstr "クエリ" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:51 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:43 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:53 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:30 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:33 #: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:90 @@ -11627,7 +11759,6 @@ msgstr "クエリ" #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:36 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:32 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:34 #: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:30 @@ -11638,6 +11769,7 @@ msgstr "クエリ" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:44 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:55 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:43 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:41 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:60 @@ -11651,7 +11783,7 @@ msgstr "クエリ" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:361 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:34 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:35 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:44 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:43 @@ -11667,7 +11799,7 @@ msgstr "クエリ" #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:152 #: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:30 #: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:26 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1479 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1471 #: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 #: superset-frontend/src/explore/controlPanels/sections.tsx:94 #: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:34 @@ -11679,7 +11811,7 @@ msgstr "クエリ" msgid "Query" msgstr "クエリ" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:361 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:363 #, python-format msgid "Query %s: %s" msgstr "" @@ -11696,11 +11828,11 @@ msgstr "クエリ" msgid "Query B" msgstr "クエリ" -#: superset/initialization/__init__.py:366 +#: superset/initialization/__init__.py:360 msgid "Query History" msgstr "クエリ履歴" -#: superset/commands/exceptions.py:138 +#: superset/commands/exceptions.py:142 #, fuzzy msgid "Query does not exist" msgstr "チャートが存在しません" @@ -11716,7 +11848,7 @@ msgstr "クエリ履歴" msgid "Query imported" msgstr "クエリ名" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:465 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 msgid "Query in a new tab" msgstr "" @@ -11742,11 +11874,11 @@ msgstr "クエリ名" msgid "Query preview" msgstr "クエリプレビュー" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:415 msgid "Query was stopped" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:498 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:494 msgid "Query was stopped." msgstr "" @@ -11760,6 +11892,16 @@ msgstr "範囲のタイプ" msgid "RGB Color" msgstr "固定の色" +#: superset/row_level_security/commands/exceptions.py:29 +#, fuzzy +msgid "RLS Rule could not be deleted." +msgstr "チャートを削除できませんでした。" + +#: superset/row_level_security/commands/exceptions.py:25 +#, fuzzy +msgid "RLS Rule not found." +msgstr "レポートスケジュールが見つかりません。" + #: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:159 msgid "Radar" msgstr "" @@ -11899,7 +12041,7 @@ msgstr "レコード数" msgid "Rectangle" msgstr "" -#: superset/connectors/sqla/views.py:446 +#: superset/connectors/sqla/views.py:353 msgid "Redirects to this endpoint when clicking on the table from the table list" msgstr "" @@ -11927,7 +12069,7 @@ msgstr "" msgid "Referenced columns not available in DataFrame." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:549 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:542 msgid "Refetch results" msgstr "" @@ -11981,10 +12123,15 @@ msgstr "" msgid "Regex" msgstr "共有" -#: superset/connectors/sqla/views.py:329 +#: superset-frontend/src/features/rls/constants.ts:24 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:262 +msgid "Regular" +msgstr "" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:364 msgid "" "Regular filters add where clauses to queries if a user belongs to a role " -"referenced in the filter. Base filters apply filters to all queries " +"referenced in the filter, base filters apply filters to all queries " "except the roles defined in the filter, and can be used to define what " "users can see if no RLS filters within a filter group apply to them." msgstr "" @@ -12032,7 +12179,7 @@ msgstr "" msgid "Remove" msgstr "削除" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:164 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:194 #, fuzzy msgid "Remove cross-filter" msgstr "新しいフィルタ" @@ -12067,8 +12214,8 @@ msgstr "" msgid "Rendering" msgstr "警告" -#: superset/views/database/forms.py:168 superset/views/database/forms.py:325 -#: superset/views/database/forms.py:456 +#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 +#: superset/views/database/forms.py:466 msgid "Replace" msgstr "" @@ -12082,13 +12229,12 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:593 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:163 #, fuzzy msgid "Report" msgstr "レポート" -#: superset-frontend/src/components/ReportModal/index.tsx:282 +#: superset-frontend/src/components/ReportModal/index.tsx:281 #, fuzzy msgid "Report Name" msgstr "レポート名" @@ -12212,7 +12358,7 @@ msgid "Request Permissions" msgstr "権限のリクエスト" #: superset/charts/data/api.py:153 superset/charts/data/api.py:243 -#: superset/charts/data/api.py:309 +#: superset/charts/data/api.py:312 #, python-format msgid "Request is incorrect: %(error)s" msgstr "" @@ -12221,7 +12367,7 @@ msgstr "" msgid "Request is not JSON" msgstr "" -#: superset/views/datasource/views.py:75 +#: superset/views/datasource/views.py:77 msgid "Request missing data field." msgstr "" @@ -12229,14 +12375,14 @@ msgstr "" msgid "Request timed out" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:94 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:98 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:105 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:252 msgid "Required" msgstr "必須" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:342 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 msgid "Required control values have been removed" msgstr "" @@ -12258,12 +12404,12 @@ msgstr "" msgid "Resample operation requires DatetimeIndex" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:199 +#: superset-frontend/src/components/Table/index.tsx:203 #, fuzzy msgid "Reset" msgstr "最近" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:293 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:280 msgid "Reset state" msgstr "" @@ -12287,14 +12433,15 @@ msgstr "フィルタを復元" msgid "Results" msgstr "結果" +#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 #: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:212 #: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 #, fuzzy, python-format msgid "Results %s" msgstr "結果" -#: superset/sql_lab.py:410 superset/sqllab/commands/results.py:59 -#: superset/views/core.py:2133 +#: superset/sql_lab.py:402 superset/sqllab/commands/results.py:59 +#: superset/views/core.py:2169 msgid "Results backend is not configured." msgstr "" @@ -12320,12 +12467,12 @@ msgstr "" msgid "Rich Tooltip" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:178 msgid "Rich tooltip" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:372 #, fuzzy msgid "Right" @@ -12354,7 +12501,7 @@ msgstr "右軸の指標" msgid "Right to Left" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:157 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 msgid "Right value" msgstr "" @@ -12366,7 +12513,7 @@ msgstr "" msgid "Role" msgstr "" -#: superset/views/core.py:407 +#: superset/views/core.py:408 #, python-format msgid "Role %(r)s was extended to provide the access to the datasource %(ds)s" msgstr "" @@ -12375,8 +12522,10 @@ msgstr "" #: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:389 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:551 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:406 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:415 #: superset-frontend/src/profile/components/Security.tsx:35 -#: superset/connectors/sqla/views.py:364 superset/views/dashboard/mixin.py:82 +#: superset/views/dashboard/mixin.py:82 msgid "Roles" msgstr "" @@ -12422,7 +12571,7 @@ msgstr "" msgid "Rolling window" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 #: superset/views/database/mixins.py:195 msgid "Root certificate" msgstr "" @@ -12453,32 +12602,30 @@ msgstr "" msgid "Round cap" msgstr "国別地図" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 #: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 msgid "Row" msgstr "行" -#: superset/initialization/__init__.py:295 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:70 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:302 +#: superset/initialization/__init__.py:436 #, fuzzy msgid "Row Level Security" msgstr "行レベルセキュリティ" -#: superset/views/database/forms.py:245 +#: superset/views/database/forms.py:255 msgid "" "Row containing the headers to use as column names (0 is first line of " "data). Leave empty if there is no header row" msgstr "" -#: superset/views/database/forms.py:332 +#: superset/views/database/forms.py:342 msgid "" "Row containing the headers to use as column names (0 is first line of " "data). Leave empty if there is no header row." msgstr "" -#: superset/connectors/sqla/views.py:290 -msgid "Row level security filter" -msgstr "" - #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:247 #: superset-frontend/src/explore/controls.jsx:340 msgid "Row limit" @@ -12501,7 +12648,7 @@ msgstr "" msgid "Rows subtotal position" msgstr "" -#: superset/views/database/forms.py:254 superset/views/database/forms.py:360 +#: superset/views/database/forms.py:264 superset/views/database/forms.py:370 msgid "Rows to Read" msgstr "" @@ -12511,10 +12658,20 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:504 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:233 #: superset-frontend/src/explore/controlPanels/sections.tsx:230 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:286 msgid "Rule" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:54 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:355 +#, fuzzy +msgid "Rule Name" +msgstr "クエリ名" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:253 +msgid "Rule added" +msgstr "" + +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:53 msgid "Run" msgstr "実行" @@ -12533,12 +12690,12 @@ msgstr "クエリを実行すると結果がここに表示されます" msgid "Run in SQL Lab" msgstr "SQL Labで実行" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:309 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:319 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:311 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:321 msgid "Run query" msgstr "クエリ実行" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:131 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:132 msgid "Run query (Ctrl + Return)" msgstr "クエリを実行 (Ctrl + Return)" @@ -12546,7 +12703,7 @@ msgstr "クエリを実行 (Ctrl + Return)" msgid "Run query in a new tab" msgstr "新しいタブでクエリを実行" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:52 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:51 msgid "Run selection" msgstr "" @@ -12555,7 +12712,7 @@ msgstr "" msgid "Running" msgstr "実行中" -#: superset/sql_lab.py:488 +#: superset/sql_lab.py:480 #, python-format msgid "Running statement %(statement_num)s out of %(statement_count)s" msgstr "" @@ -12577,8 +12734,8 @@ msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 #: superset-frontend/src/features/home/commonMenuData.ts:22 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:312 -#: superset/initialization/__init__.py:354 -#: superset/initialization/__init__.py:362 +#: superset/initialization/__init__.py:348 +#: superset/initialization/__init__.py:356 msgid "SQL" msgstr "" @@ -12586,17 +12743,17 @@ msgstr "" msgid "SQL Copied!" msgstr "" -#: superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:253 msgid "SQL Expression" msgstr "SQL 式" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:73 -#: superset/initialization/__init__.py:349 -#: superset/initialization/__init__.py:371 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 +#: superset/initialization/__init__.py:343 +#: superset/initialization/__init__.py:365 msgid "SQL Lab" msgstr "SQL Lab" -#: superset/connectors/sqla/views.py:492 +#: superset/connectors/sqla/views.py:399 msgid "SQL Lab View" msgstr "SQL Lab ビュー" @@ -12719,7 +12876,7 @@ msgstr "" msgid "Samples" msgstr "サンプルを表示" -#: superset/datasets/commands/exceptions.py:177 +#: superset/datasets/commands/exceptions.py:194 #, fuzzy msgid "Samples for dataset could not be retrieved." msgstr "データベースを作成できませんでした。" @@ -12729,7 +12886,7 @@ msgstr "データベースを作成できませんでした。" msgid "Samples for datasource could not be retrieved." msgstr "データ ソースを読み込めませんでした" -#: superset/viz.py:1935 +#: superset/viz.py:1854 msgid "Sankey" msgstr "サンキー" @@ -12757,25 +12914,26 @@ msgstr "土曜日" #: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 #: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:199 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:214 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:246 -#: superset-frontend/src/components/ReportModal/index.tsx:229 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:288 +#: superset-frontend/src/components/ReportModal/index.tsx:228 #: superset-frontend/src/dashboard/components/Header/index.jsx:607 #: superset-frontend/src/dashboard/components/Header/index.jsx:609 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 #: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 #: superset-frontend/src/dashboard/components/SaveModal.tsx:211 #: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:794 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:156 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:492 #: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:268 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:458 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:462 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 -#: superset-frontend/src/explore/components/SaveModal.tsx:415 +#: superset-frontend/src/explore/components/SaveModal.tsx:449 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:418 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:424 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:147 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 @@ -12785,30 +12943,31 @@ msgstr "土曜日" #: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 #: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1695 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 #: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 msgid "Save" msgstr "保存" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:246 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:190 msgid "Save & Explore" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:396 +#: superset-frontend/src/explore/components/SaveModal.tsx:430 msgid "Save & go to dashboard" msgstr "保存してダッシュボードに移動" -#: superset-frontend/src/explore/components/SaveModal.tsx:395 +#: superset-frontend/src/explore/components/SaveModal.tsx:429 #, fuzzy msgid "Save & go to new dashboard" msgstr "保存してダッシュボードに移動" -#: superset-frontend/src/explore/components/SaveModal.tsx:308 +#: superset-frontend/src/explore/components/SaveModal.tsx:343 msgid "Save (Overwrite)" msgstr "上書き保存" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:199 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:306 msgid "Save as" msgstr "別名で保存" @@ -12823,16 +12982,16 @@ msgstr "データセットを選択" msgid "Save as dataset" msgstr "データセットを選択" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:394 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:214 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:402 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 msgid "Save as new" msgstr "新規保存" -#: superset-frontend/src/explore/components/SaveModal.tsx:412 +#: superset-frontend/src/explore/components/SaveModal.tsx:446 msgid "Save as new chart" msgstr "新しいチャートとして保存" -#: superset-frontend/src/explore/components/SaveModal.tsx:316 +#: superset-frontend/src/explore/components/SaveModal.tsx:351 #, fuzzy msgid "Save as..." msgstr "別名で保存" @@ -12846,7 +13005,7 @@ msgstr "別名で保存:" msgid "Save changes" msgstr "変更を破棄" -#: superset-frontend/src/explore/components/SaveModal.tsx:432 +#: superset-frontend/src/explore/components/SaveModal.tsx:466 msgid "Save chart" msgstr "チャートを保存" @@ -12854,7 +13013,7 @@ msgstr "チャートを保存" msgid "Save dashboard" msgstr "ダッシュボードを保存" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:106 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:105 #, fuzzy msgid "Save dataset" msgstr "データセットを変更" @@ -12863,11 +13022,11 @@ msgstr "データセットを変更" msgid "Save for this session" msgstr "このセッションのために保存" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:350 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:356 msgid "Save or Overwrite Dataset" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:202 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:201 msgid "Save query" msgstr "クエリを保存" @@ -12875,28 +13034,28 @@ msgstr "クエリを保存" msgid "Save the query to enable this feature" msgstr "この機能を有効にするためクエリを保存する" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:250 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:465 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:149 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 msgid "Save this query as a virtual dataset to continue exploring" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:414 +#: superset-frontend/src/explore/components/SaveModal.tsx:448 #, fuzzy msgid "Save to new dashboard" msgstr "保存してダッシュボードに移動" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:265 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:271 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 msgid "Saved" msgstr "" -#: superset/initialization/__init__.py:358 +#: superset/initialization/__init__.py:352 msgid "Saved Queries" msgstr "保存したクエリ" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:249 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:255 #, fuzzy msgid "Saved expressions" msgstr "SQL 式" @@ -12956,12 +13115,12 @@ msgid "" msgstr "" #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 -#: superset-frontend/src/components/ReportModal/index.tsx:306 +#: superset-frontend/src/components/ReportModal/index.tsx:305 #: superset-frontend/src/pages/AlertReportList/index.tsx:276 msgid "Schedule" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:212 +#: superset-frontend/src/components/ReportModal/index.tsx:211 #, fuzzy msgid "Schedule a new email report" msgstr "チャートのメールレポートのスケジュール" @@ -12979,7 +13138,7 @@ msgstr "" msgid "Schedule settings" msgstr "スケジュール設定" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:518 msgid "Schedule the query periodically" msgstr "" @@ -12998,31 +13157,31 @@ msgstr "スケジュール設定時刻 (UTC)" msgid "Scheduled task executor not found" msgstr "レポートスケジュールの状態が見つかりません" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:299 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:221 -#: superset-frontend/src/pages/DatasetList/index.tsx:354 -#: superset-frontend/src/pages/DatasetList/index.tsx:536 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:298 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 +#: superset-frontend/src/pages/DatasetList/index.tsx:365 +#: superset-frontend/src/pages/DatasetList/index.tsx:547 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:250 #: superset-frontend/src/pages/SavedQueryList/index.tsx:297 #: superset-frontend/src/pages/SavedQueryList/index.tsx:469 -#: superset/connectors/sqla/views.py:483 superset/views/database/forms.py:144 -#: superset/views/database/forms.py:311 superset/views/database/forms.py:442 +#: superset/connectors/sqla/views.py:390 superset/views/database/forms.py:154 +#: superset/views/database/forms.py:321 superset/views/database/forms.py:452 msgid "Schema" msgstr "スキーマ" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:247 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:257 msgid "Schema cache timeout" msgstr "" -#: superset/views/core.py:1164 +#: superset/views/core.py:1186 msgid "Schema undefined" msgstr "" -#: superset/connectors/sqla/views.py:429 +#: superset/connectors/sqla/views.py:336 msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:419 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:429 msgid "Schemas allowed for File upload" msgstr "" @@ -13034,7 +13193,7 @@ msgstr "" msgid "Scoping" msgstr "スコープ" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 msgid "Scroll" msgstr "" @@ -13050,15 +13209,15 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:724 #: superset-frontend/src/pages/CssTemplateList/index.tsx:293 #: superset-frontend/src/pages/DashboardList/index.tsx:516 -#: superset-frontend/src/pages/DatabaseList/index.tsx:492 -#: superset-frontend/src/pages/DatasetList/index.tsx:577 +#: superset-frontend/src/pages/DatabaseList/index.tsx:503 +#: superset-frontend/src/pages/DatasetList/index.tsx:588 #: superset-frontend/src/pages/SavedQueryList/index.tsx:494 #: superset-frontend/src/pages/Tags/index.tsx:204 #: superset/templates/appbuilder/general/widgets/search.html:40 msgid "Search" msgstr "検索" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:294 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 msgid "Search / Filter" msgstr "" @@ -13084,12 +13243,12 @@ msgstr "検索" msgid "Search by query text" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:207 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 #, fuzzy msgid "Search columns" msgstr "列を削除する" -#: superset-frontend/src/components/Table/index.tsx:202 +#: superset-frontend/src/components/Table/index.tsx:206 #, fuzzy msgid "Search in filters" msgstr "親フィルタ" @@ -13103,7 +13262,7 @@ msgstr "ユーザーの役割" msgid "Search..." msgstr "検索…" -#: superset/db_engine_specs/base.py:96 +#: superset/db_engine_specs/base.py:97 msgid "Second" msgstr "秒" @@ -13119,10 +13278,14 @@ msgid "Secondary Metric" msgstr "色の指標" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:408 +msgid "Secondary y-axis Bounds" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:425 msgid "Secondary y-axis format" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:417 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:434 msgid "Secondary y-axis title" msgstr "" @@ -13135,15 +13298,15 @@ msgstr "30秒" msgid "Secure Extra" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:336 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:341 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:346 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 msgid "Secure extra" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:329 -#: superset/initialization/__init__.py:297 -#: superset/initialization/__init__.py:395 -#: superset/initialization/__init__.py:433 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:339 +#: superset/initialization/__init__.py:389 +#: superset/initialization/__init__.py:427 +#: superset/initialization/__init__.py:438 msgid "Security" msgstr "セキュリティ" @@ -13166,16 +13329,16 @@ msgstr "" msgid "See more" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:412 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:405 #, fuzzy msgid "See query details" msgstr "保存したクエリ" -#: superset-frontend/src/components/TableSelector/index.tsx:288 +#: superset-frontend/src/components/TableSelector/index.tsx:277 msgid "See table schema" msgstr "テーブルスキーマを参照" -#: superset-frontend/src/explore/components/SaveModal.tsx:363 +#: superset-frontend/src/explore/components/SaveModal.tsx:398 #: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 #, fuzzy msgid "Select" @@ -13183,9 +13346,9 @@ msgstr "一括選択" #: superset-frontend/src/components/AsyncSelect/index.jsx:41 #: superset-frontend/src/components/Select/AsyncSelect.tsx:123 -#: superset-frontend/src/components/Select/Select.tsx:103 +#: superset-frontend/src/components/Select/Select.tsx:104 #: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 -#: superset-frontend/src/explore/components/controls/SelectControl.jsx:230 +#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 msgid "Select ..." msgstr "" @@ -13198,12 +13361,12 @@ msgstr "" msgid "Select Viz Type" msgstr "可視化方式を選んでください" -#: superset/views/database/forms.py:415 +#: superset/views/database/forms.py:425 #, fuzzy msgid "Select a Columnar file to be uploaded to a database." msgstr "データベースにアップロードする CSV ファイルを選択します。" -#: superset/views/database/forms.py:279 +#: superset/views/database/forms.py:289 msgid "Select a Excel file to be uploaded to a database." msgstr "" @@ -13212,7 +13375,7 @@ msgstr "" msgid "Select a column" msgstr "すべての選択を解除" -#: superset-frontend/src/explore/components/SaveModal.tsx:357 +#: superset-frontend/src/explore/components/SaveModal.tsx:392 #, fuzzy msgid "Select a dashboard" msgstr "Supersetダッシュボード" @@ -13235,7 +13398,7 @@ msgstr "データベースを削除" msgid "Select a database to upload the file to" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:744 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:738 msgid "Select a database to write a query" msgstr "" @@ -13249,7 +13412,7 @@ msgstr "Supersetダッシュボード" msgid "Select a file to be uploaded to the database" msgstr "データベースにアップロードする CSV ファイルを選択します。" -#: superset/views/database/forms.py:145 +#: superset/views/database/forms.py:155 msgid "Select a schema if the database supports this" msgstr "" @@ -13261,12 +13424,12 @@ msgstr "可視化方式を選んでください" msgid "Select aggregate options" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:207 +#: superset-frontend/src/components/Table/index.tsx:211 #, fuzzy msgid "Select all data" msgstr "すべての選択を解除" -#: superset-frontend/src/components/Table/index.tsx:201 +#: superset-frontend/src/components/Table/index.tsx:205 #, fuzzy msgid "Select all items" msgstr "すべての選択を解除" @@ -13275,6 +13438,11 @@ msgstr "すべての選択を解除" msgid "Select any columns for metadata inspection" msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +#, fuzzy +msgid "Select chart" +msgstr "すべてのチャート" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:45 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:103 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:138 @@ -13287,14 +13455,14 @@ msgstr "すべてのチャート" msgid "Select color scheme" msgstr "線形配色" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:208 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 #, fuzzy msgid "Select column" msgstr "すべての選択を解除" -#: superset-frontend/src/components/Table/index.tsx:204 +#: superset-frontend/src/components/Table/index.tsx:208 #, fuzzy msgid "Select current page" msgstr "親フィルタを選択する" @@ -13304,8 +13472,8 @@ msgstr "親フィルタを選択する" msgid "Select database & schema" msgstr "テーブルスキーマを参照" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:272 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:280 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:271 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:279 msgid "Select database or type to search databases" msgstr "" @@ -13314,7 +13482,7 @@ msgstr "" msgid "Select database table" msgstr "データベースを削除" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1791 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1847 msgid "" "Select databases require additional fields to be completed in the " "Advanced tab to successfully connect the database. Learn what " @@ -13354,7 +13522,7 @@ msgstr "" msgid "Select or type a value" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:410 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:418 msgid "Select or type dataset name" msgstr "" @@ -13367,8 +13535,8 @@ msgstr "" msgid "Select saved metrics" msgstr "保存した指標" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:297 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:304 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:296 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 msgid "Select schema or type to search schemas" msgstr "" @@ -13377,7 +13545,7 @@ msgstr "" msgid "Select scheme" msgstr "配色" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:304 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:307 msgid "Select start and end date" msgstr "開始日と終了日を選択" @@ -13385,8 +13553,8 @@ msgstr "開始日と終了日を選択" msgid "Select subject" msgstr "" +#: superset-frontend/src/components/TableSelector/index.tsx:284 #: superset-frontend/src/components/TableSelector/index.tsx:295 -#: superset-frontend/src/components/TableSelector/index.tsx:306 msgid "Select table or type to search tables" msgstr "" @@ -13395,6 +13563,23 @@ msgstr "" msgid "Select the Annotation Layer you would like to use." msgstr "注釈レイヤーのタイプを選んでください" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +msgid "" +"Select the charts to which you want to apply cross-filters in this " +"dashboard. Deselecting a chart will exclude it from being filtered when " +"applying cross-filters from any chart on the dashboard. You can select " +"\"All charts\" to apply cross-filters to all charts that use the same " +"dataset or contain the same column name in the dashboard." +msgstr "" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +msgid "" +"Select the charts to which you want to apply cross-filters when " +"interacting with this chart. You can select \"All charts\" to apply " +"filters to all charts that use the same dataset or contain the same " +"column name in the dashboard." +msgstr "" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:392 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:37 #, fuzzy @@ -13441,7 +13626,7 @@ msgstr "9月" msgid "Sequential" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 msgid "Series" msgstr "" @@ -13458,7 +13643,7 @@ msgstr "" msgid "Series Limit Sort Descending" msgstr "レポート送信" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:255 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:246 #, fuzzy msgid "Series Order" msgstr "クエリ" @@ -13534,13 +13719,13 @@ msgid "Settings for time series" msgstr "" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:325 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:464 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:467 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 #: superset-frontend/src/features/home/SavedQueries.tsx:211 msgid "Share" msgstr "共有" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:469 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:472 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:343 msgid "Share chart by email" msgstr "チャートをメールで共有" @@ -13550,7 +13735,7 @@ msgstr "チャートをメールで共有" msgid "Share permalink by email" msgstr "チャートをメールで共有" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1429 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1421 msgid "Shared query" msgstr "クエリを共有" @@ -13559,7 +13744,7 @@ msgstr "クエリを共有" msgid "Shared query fields" msgstr "保存したクエリ" -#: superset/views/database/forms.py:298 +#: superset/views/database/forms.py:308 msgid "Sheet Name" msgstr "" @@ -13610,7 +13795,7 @@ msgstr "CSSテンプレートを表示" msgid "Show Chart" msgstr "チャートを表示" -#: superset/connectors/sqla/views.py:73 +#: superset/connectors/sqla/views.py:72 msgid "Show Column" msgstr "" @@ -13645,11 +13830,11 @@ msgstr "ログを表示" msgid "Show Markers" msgstr "" -#: superset/connectors/sqla/views.py:208 +#: superset/connectors/sqla/views.py:207 msgid "Show Metric" msgstr "指標を表示" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:178 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 #, fuzzy msgid "Show Metric Names" msgstr "指標を表示" @@ -13659,15 +13844,11 @@ msgstr "指標を表示" msgid "Show Range Filter" msgstr "フィルタを復元" -#: superset/connectors/sqla/views.py:291 -msgid "Show Row level security filter" -msgstr "" - #: superset/views/sql_lab/views.py:53 msgid "Show Saved Query" msgstr "保存したクエリを表示" -#: superset/connectors/sqla/views.py:385 +#: superset/connectors/sqla/views.py:292 msgid "Show Table" msgstr "テーブルを表示" @@ -13689,12 +13870,12 @@ msgstr "" msgid "Show Upper Labels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:110 #, fuzzy msgid "Show Value" msgstr "テーブルを表示" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:164 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:315 #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:184 #, fuzzy @@ -13729,7 +13910,7 @@ msgstr "" msgid "Show cell bars" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:395 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 #, fuzzy msgid "Show chart description" msgstr "チャートの説明を切り替え" @@ -13768,7 +13949,7 @@ msgstr "テーブルを表示" msgid "Show labels when the node has children." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:39 msgid "Show legend" msgstr "" @@ -13807,7 +13988,7 @@ msgstr "ダッシュボードのプロパティ" msgid "Show rows total" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 msgid "Show series values on the chart" msgstr "" @@ -13834,7 +14015,6 @@ msgid "" " apply to the result." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:76 #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:365 msgid "Show totals" @@ -13879,7 +14059,7 @@ msgstr "" msgid "Showing %s of %s" msgstr "Showing %s of %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:184 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 msgid "Shows a list of all series available at that point in time" msgstr "" @@ -13899,7 +14079,7 @@ msgstr "" msgid "Significance Level" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:341 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 @@ -13950,23 +14130,23 @@ msgstr "" msgid "Sizes of vehicles" msgstr "" -#: superset/views/database/forms.py:177 +#: superset/views/database/forms.py:187 msgid "Skip Blank Lines" msgstr "" -#: superset/views/database/forms.py:174 +#: superset/views/database/forms.py:184 msgid "Skip Initial Space" msgstr "" -#: superset/views/database/forms.py:260 superset/views/database/forms.py:354 +#: superset/views/database/forms.py:270 superset/views/database/forms.py:364 msgid "Skip Rows" msgstr "" -#: superset/views/database/forms.py:178 +#: superset/views/database/forms.py:188 msgid "Skip blank lines rather than interpreting them as Not A Number values" msgstr "" -#: superset/views/database/forms.py:174 +#: superset/views/database/forms.py:184 msgid "Skip spaces after delimiter" msgstr "" @@ -14002,7 +14182,7 @@ msgstr "" msgid "Solid" msgstr "" -#: superset/commands/exceptions.py:115 +#: superset/commands/exceptions.py:119 msgid "Some roles do not exist" msgstr "一部のロールが存在しません" @@ -14010,7 +14190,7 @@ msgstr "一部のロールが存在しません" msgid "Something went wrong." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:864 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:919 #, python-format msgid "Sorry there was an error fetching database information: %s" msgstr "" @@ -14029,7 +14209,7 @@ msgstr "エラーが発生しました" msgid "Sorry, an error occurred" msgstr "エラーが発生しました" -#: superset-frontend/src/dashboard/actions/dashboardState.js:357 +#: superset-frontend/src/dashboard/actions/dashboardState.js:359 #, fuzzy msgid "Sorry, an unknown error occurred" msgstr "エラーが発生しました" @@ -14060,14 +14240,14 @@ msgstr "" msgid "Sorry, there was an error saving this %s: %s" msgstr "保存したグラフの取得中にエラーが発生しました: " -#: superset-frontend/src/dashboard/actions/dashboardState.js:360 +#: superset-frontend/src/dashboard/actions/dashboardState.js:362 #, fuzzy, python-format msgid "Sorry, there was an error saving this dashboard: %s" msgstr "保存したグラフの取得中にエラーが発生しました: " #: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 #: superset-frontend/src/pages/SavedQueryList/index.tsx:229 -#: superset-frontend/src/views/CRUD/hooks.ts:676 +#: superset-frontend/src/views/CRUD/hooks.ts:680 msgid "Sorry, your browser does not support copying." msgstr "" @@ -14077,7 +14257,7 @@ msgstr "" #: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 #: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 -#: superset-frontend/src/components/Table/index.tsx:208 +#: superset-frontend/src/components/Table/index.tsx:212 #, fuzzy msgid "Sort" msgstr "レポート" @@ -14099,12 +14279,12 @@ msgstr "レポート送信" msgid "Sort Metric" msgstr "色の指標" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:247 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:238 #, fuzzy msgid "Sort Series Ascending" msgstr "レポート送信" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:227 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:224 #, fuzzy msgid "Sort Series By" msgstr "並び替え" @@ -14183,7 +14363,7 @@ msgstr "" msgid "Sort rows by" msgstr "並び替え" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:250 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:241 msgid "Sort series in ascending order" msgstr "" @@ -14217,6 +14397,7 @@ msgstr "データソース名" msgid "Sparkline" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:978 msgid "Spatial" msgstr "" @@ -14225,23 +14406,23 @@ msgstr "" msgid "Specific Date/Time" msgstr "" -#: superset/views/database/forms.py:312 superset/views/database/forms.py:443 +#: superset/views/database/forms.py:322 superset/views/database/forms.py:453 msgid "Specify a schema (if database flavor supports this)." msgstr "" -#: superset/views/database/forms.py:351 +#: superset/views/database/forms.py:361 msgid "Specify duplicate columns as \"X.0, X.1\"." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:711 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:705 msgid "Specify name to CREATE TABLE AS schema in: public" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:710 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:704 msgid "Specify name to CREATE VIEW AS schema in: public" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:515 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:551 msgid "" "Specify the database version. This should be used with Presto in order to" " enable query cost estimation." @@ -14267,7 +14448,7 @@ msgstr "パラメータ" msgid "Square miles" msgstr "クエリ" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 msgid "Stack" msgstr "" @@ -14281,7 +14462,7 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:161 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:115 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:128 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:125 msgid "Stack series on top of each other" msgstr "" @@ -14301,7 +14482,7 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:124 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:121 #: superset-frontend/src/explore/fixtures.tsx:58 msgid "Stacked Style" msgstr "" @@ -14373,7 +14554,7 @@ msgstr "状態" msgid "State" msgstr "状態" -#: superset/sql_lab.py:511 +#: superset/sql_lab.py:503 #, python-format msgid "Statement %(statement_num)s out of %(statement_count)s" msgstr "" @@ -14425,21 +14606,21 @@ msgid "" "irregular intervals." msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:47 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:46 #: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 msgid "Stop" msgstr "中止" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:337 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:339 msgid "Stop query" msgstr "クエリを中止" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:116 #, fuzzy msgid "Stop running (Ctrl + e)" msgstr "実行を停止 (Ctrl + x)" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:114 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 msgid "Stop running (Ctrl + x)" msgstr "実行を停止 (Ctrl + x)" @@ -14447,7 +14628,7 @@ msgstr "実行を停止 (Ctrl + x)" msgid "Stopped an unsafe database connection" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 #, fuzzy msgid "Stream" msgstr "ヒストグラム" @@ -14466,7 +14647,7 @@ msgstr "" msgid "Stretched style" msgstr "" -#: superset/views/database/forms.py:299 +#: superset/views/database/forms.py:309 msgid "Strings used for sheet names (default is the first sheet)." msgstr "" @@ -14498,11 +14679,11 @@ msgstr "" msgid "Style the ends of the progress bar with a round cap" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:56 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 msgid "Subdomain" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 #, fuzzy msgid "Subheader" msgstr "見出し" @@ -14515,8 +14696,8 @@ msgstr "" msgid "Submit" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:472 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:678 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 #: superset/charts/post_processing.py:161 #: superset/charts/post_processing.py:178 msgid "Subtotal" @@ -14528,7 +14709,7 @@ msgstr "" msgid "Success" msgstr "成功" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:193 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 #, fuzzy msgid "Successfully changed dataset!" msgstr "データセットを変更" @@ -14563,7 +14744,7 @@ msgstr "" msgid "Sum values" msgstr "デフォルト値" -#: superset/viz.py:1888 +#: superset/viz.py:1805 msgid "Sunburst" msgstr "" @@ -14588,7 +14769,7 @@ msgid "Superset Embedded SDK documentation." msgstr "" #: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:470 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:473 msgid "Superset chart" msgstr "" @@ -14606,7 +14787,7 @@ msgstr "Issue 1010 - コマンドの実行中にSuperset内でエラーが発生 msgid "Superset encountered an unexpected error." msgstr "Issue 1011 - Supersetで予期しないエラーが発生しました。" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:920 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 #, fuzzy msgid "Supported databases" msgstr "データベースのインポート" @@ -14615,12 +14796,7 @@ msgstr "データベースのインポート" msgid "Survey Responses" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:101 -#, fuzzy -msgid "Swap Groups and Columns" -msgstr "列を削除する" - -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:254 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:311 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:435 #, fuzzy @@ -14670,6 +14846,11 @@ msgstr "" msgid "Syntax" msgstr "" +#: superset/db_engine_specs/ocient.py:282 +#, python-format +msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +msgstr "" + #: superset-frontend/src/pages/QueryHistoryList/index.tsx:268 #: superset-frontend/src/pages/SavedQueryList/index.tsx:315 msgid "TABLES" @@ -14702,36 +14883,36 @@ msgstr "タブ名" msgid "Tab title" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:26 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 -#: superset-frontend/src/components/TableSelector/index.tsx:290 +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 +#: superset-frontend/src/components/TableSelector/index.tsx:279 #: superset-frontend/src/visualizations/TimeTable/index.ts:26 -#: superset/connectors/sqla/views.py:160 superset/connectors/sqla/views.py:255 -#: superset/connectors/sqla/views.py:477 superset/views/chart/mixin.py:86 +#: superset/connectors/sqla/views.py:159 superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:384 superset/views/chart/mixin.py:86 msgid "Table" msgstr "テーブル" -#: superset/views/core.py:1740 +#: superset/views/core.py:1775 #, python-format msgid "Table %(table)s wasn't found in the database %(db)s" msgstr "テーブル %(table)s はデータベース %(db)s にありません" -#: superset/views/database/forms.py:317 superset/views/database/forms.py:448 +#: superset/views/database/forms.py:327 superset/views/database/forms.py:458 msgid "Table Exists" msgstr "" -#: superset/connectors/sqla/views.py:487 superset/views/database/forms.py:128 -#: superset/views/database/forms.py:269 superset/views/database/forms.py:405 +#: superset/connectors/sqla/views.py:394 superset/views/database/forms.py:128 +#: superset/views/database/forms.py:279 superset/views/database/forms.py:415 msgid "Table Name" msgstr "テーブル名" -#: superset/viz.py:698 +#: superset/viz.py:722 msgid "Table View" msgstr "" -#: superset/datasets/commands/exceptions.py:130 +#: superset/datasets/commands/exceptions.py:147 #, python-format msgid "" "Table [%(table_name)s] could not be found, please double check your " @@ -14744,7 +14925,7 @@ msgid "" "connection, schema, and table name, error: {}" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:268 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:278 msgid "Table cache timeout" msgstr "" @@ -14758,8 +14939,8 @@ msgstr "タイトルまたはスラッグ" msgid "Table loading" msgstr "レポート送信" -#: superset/views/database/forms.py:132 superset/views/database/forms.py:273 -#: superset/views/database/forms.py:409 +#: superset/views/database/forms.py:132 superset/views/database/forms.py:283 +#: superset/views/database/forms.py:419 msgid "Table name cannot contain a schema" msgstr "" @@ -14767,15 +14948,22 @@ msgstr "" msgid "Table name undefined" msgstr "" +#: superset/db_engine_specs/ocient.py:287 +#, python-format +msgid "Table or View \"%(table)s\" does not exist." +msgstr "" + #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 msgid "" "Table that visualizes paired t-tests, which are used to understand " "statistical differences between groups." msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:384 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:393 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:287 #: superset-frontend/src/pages/SavedQueryList/index.tsx:334 -#: superset/connectors/sqla/views.py:363 superset/connectors/sqla/views.py:384 +#: superset/connectors/sqla/views.py:291 msgid "Tables" msgstr "テーブル" @@ -14826,7 +15014,7 @@ msgstr "データベースを削除できませんでした。" #: superset-frontend/src/pages/SavedQueryList/index.tsx:382 #: superset-frontend/src/pages/SavedQueryList/index.tsx:487 #: superset-frontend/src/pages/Tags/index.tsx:279 -#: superset/initialization/__init__.py:384 +#: superset/initialization/__init__.py:378 #, fuzzy msgid "Tags" msgstr "状態" @@ -14856,7 +15044,7 @@ msgstr "" msgid "Target category" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:173 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 msgid "Target value" msgstr "" @@ -14866,7 +15054,7 @@ msgstr "テンプレート名" #: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:962 -#: superset/connectors/sqla/views.py:493 +#: superset/connectors/sqla/views.py:400 msgid "Template parameters" msgstr "テンプレートパラメータ" @@ -14876,7 +15064,7 @@ msgid "" "coming from the controls." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:317 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:327 msgid "" "Terminate running queries when browser window closed or navigated to " "another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " @@ -14901,7 +15089,7 @@ msgstr "次" msgid "Text align" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:248 +#: superset-frontend/src/components/ReportModal/index.tsx:247 msgid "Text embedded in email" msgstr "" @@ -14946,7 +15134,7 @@ msgid "" " the filters list?" msgstr "" -#: superset/views/core.py:372 +#: superset/views/core.py:373 msgid "The access requests seem to have been deleted" msgstr "" @@ -14966,12 +15154,12 @@ msgid "" "associated with more than one category, only the first will be used." msgstr "" -#: superset/common/query_context_processor.py:586 +#: superset/common/query_context_processor.py:585 #, fuzzy msgid "The chart datasource does not exist" msgstr "チャートが存在しません" -#: superset/common/query_context_processor.py:584 +#: superset/common/query_context_processor.py:583 msgid "The chart does not exist" msgstr "チャートが存在しません" @@ -15025,14 +15213,14 @@ msgstr "ダッシュボードが保存されました" msgid "The data source seems to have been deleted" msgstr "" -#: superset/connectors/sqla/views.py:115 +#: superset/connectors/sqla/views.py:114 msgid "" "The data type that was inferred by the database. It may be necessary to " "input a type manually for expression-defined columns in some cases. In " "most case users should not need to alter this." msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:515 +#: superset-frontend/src/pages/DatabaseList/index.tsx:529 #, python-format msgid "" "The database %s is linked to %s charts that appear on %s dashboards and " @@ -15075,12 +15263,12 @@ msgstr "Issue 1002 - データベースが予期しないエラーを返しま msgid "The database was deleted." msgstr "データベースを削除できませんでした。" -#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2002 +#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2039 #, fuzzy msgid "The database was not found." msgstr "データベースが見つかりません。" -#: superset-frontend/src/pages/DatasetList/index.tsx:710 +#: superset-frontend/src/pages/DatasetList/index.tsx:724 #, python-format msgid "" "The dataset %s is linked to %s charts that appear on %s dashboards. Are " @@ -15089,11 +15277,11 @@ msgid "" msgstr "" #: superset-frontend/src/components/Chart/Chart.jsx:88 -#: superset/views/utils.py:274 +#: superset/views/utils.py:272 msgid "The dataset associated with this chart no longer exists" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:168 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:210 msgid "" "The dataset configuration exposed here\n" " affects all the charts using this dataset.\n" @@ -15102,7 +15290,7 @@ msgid "" " in undesirable ways." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:129 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:164 #: superset-frontend/src/pages/ChartCreation/index.tsx:261 msgid "The dataset has been saved" msgstr "" @@ -15111,7 +15299,7 @@ msgstr "" msgid "The dataset linked to this chart may have been deleted." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1496 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1488 msgid "The datasource couldn't be loaded" msgstr "データ ソースを読み込めませんでした" @@ -15126,7 +15314,7 @@ msgid "" " Supports markdown." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:104 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 msgid "The distance between cells, in pixels" msgstr "" @@ -15140,7 +15328,7 @@ msgstr "" msgid "The encoding format of the lines" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:495 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:531 msgid "" "The engine_params object gets unpacked into the sqlalchemy.create_engine " "call." @@ -15153,6 +15341,7 @@ msgid "" "%(columns)s. " msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:111 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:67 msgid "The function to use when aggregating points into groups" msgstr "" @@ -15163,9 +15352,9 @@ msgid "The host \"%(hostname)s\" might be down and can't be reached." msgstr "" #: superset/db_engine_specs/mssql.py:103 -#: superset/db_engine_specs/postgres.py:140 -#: superset/db_engine_specs/presto.py:664 -#: superset/db_engine_specs/redshift.py:82 +#: superset/db_engine_specs/postgres.py:139 +#: superset/db_engine_specs/presto.py:691 +#: superset/db_engine_specs/redshift.py:86 #, python-format msgid "" "The host \"%(hostname)s\" might be down, and can't be reached on port " @@ -15178,9 +15367,9 @@ msgid "The host might be down, and can't be reached on the provided port." msgstr "Issue 1009 - 指定されたポートに到達できません。ホストがダウンしている可能性があります。" #: superset/db_engine_specs/mssql.py:93 -#: superset/db_engine_specs/postgres.py:130 -#: superset/db_engine_specs/presto.py:659 -#: superset/db_engine_specs/redshift.py:72 +#: superset/db_engine_specs/postgres.py:129 +#: superset/db_engine_specs/presto.py:686 +#: superset/db_engine_specs/redshift.py:76 #, python-format msgid "The hostname \"%(hostname)s\" cannot be resolved." msgstr "" @@ -15195,7 +15384,7 @@ msgstr "Issue 1007 - 指定されたホスト名を解決できません。" msgid "The id of the active chart" msgstr "アクティブなチャートのID" -#: superset/connectors/sqla/views.py:418 +#: superset/connectors/sqla/views.py:325 msgid "" "The list of charts associated with this table. By altering this " "datasource, you may change how these associated charts behave. Also note " @@ -15232,7 +15421,7 @@ msgid "" "%{key}s is invalid." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:469 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:505 msgid "" "The metadata_params object gets unpacked into the sqlalchemy.MetaData " "call." @@ -15252,7 +15441,7 @@ msgid "" "periods" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:130 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 msgid "The number color \"steps\"" msgstr "" @@ -15262,7 +15451,7 @@ msgid "" " can be used to move UTC time to local time." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:308 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:301 #, python-format msgid "" "The number of results displayed is limited to %(rows)d by the " @@ -15270,7 +15459,7 @@ msgid "" "download to csv to see more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:314 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:307 #, python-format msgid "" "The number of results displayed is limited to %(rows)d. Please add " @@ -15278,22 +15467,22 @@ msgid "" "more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:365 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:358 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the dropdown." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:334 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:326 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:319 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the query" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:339 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:332 #, python-format msgid "" "The number of rows displayed is limited to %(rows)d by the query and " @@ -15309,13 +15498,13 @@ msgstr "キャッシュを期限切れにするまでの秒数" msgid "The object does not exist in the given database." msgstr "" -#: superset/sqllab/query_render.py:96 +#: superset/sqllab/query_render.py:94 #, python-format msgid "The parameter %(parameters)s in your query is undefined." msgid_plural "The following parameters in your query are undefined: %(parameters)s." msgstr[0] "" -#: superset/db_engine_specs/postgres.py:120 +#: superset/db_engine_specs/postgres.py:119 #, python-format msgid "The password provided for username \"%(username)s\" is incorrect." msgstr "" @@ -15363,7 +15552,7 @@ msgstr "" "保存したクエリと一緒にインポートするには、以下のデータベースのパスワードが必要です。データベース構成の ”Secure Extra” と " "”Certificate” セクションはエクスポートファイルに存在せず、必要に応じてインポート後に手動で追加する必要がある点に注意してください。" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1284 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1339 msgid "" "The passwords for the databases below are needed in order to import them." " Please note that the \"Secure Extra\" and \"Certificate\" sections of " @@ -15383,7 +15572,7 @@ msgid "" "\"freq\" expressions." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 msgid "The pixel radius" msgstr "" @@ -15409,7 +15598,7 @@ msgstr "データベース パラメータが無効です。" msgid "The primary metric is used to define the arc segment sizes" msgstr "" -#: superset/views/core.py:2212 +#: superset/views/core.py:2248 msgid "The provided `rows` argument is not a valid integer." msgstr "" @@ -15418,13 +15607,13 @@ msgid "The query associated with the results was deleted." msgstr "" #: superset/sqllab/commands/export.py:63 superset/sqllab/commands/results.py:91 -#: superset/views/core.py:2162 +#: superset/views/core.py:2198 msgid "" "The query associated with these results could not be found. You need to " "re-run the original query." msgstr "" -#: superset/sqllab/query_render.py:117 +#: superset/sqllab/query_render.py:115 msgid "The query contains one or more malformed template parameters." msgstr "" @@ -15443,11 +15632,11 @@ msgstr "" msgid "The query has a syntax error." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:519 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:512 msgid "The query returned no data" msgstr "" -#: superset/sql_lab.py:301 +#: superset/sql_lab.py:297 #, python-format msgid "" "The query was killed after %(sqllab_timeout)s seconds. It might be too " @@ -15489,14 +15678,14 @@ msgstr "" msgid "The rich tooltip shows a list of all series for that point in time" msgstr "" -#: superset/db_engine_specs/bigquery.py:202 +#: superset/db_engine_specs/bigquery.py:203 #, python-format msgid "" "The schema \"%(schema)s\" does not exist. A valid schema must be used to " "run this query." msgstr "" -#: superset/db_engine_specs/presto.py:646 +#: superset/db_engine_specs/presto.py:673 #, python-format msgid "" "The schema \"%(schema_name)s\" does not exist. A valid schema must be " @@ -15508,11 +15697,12 @@ msgstr "" msgid "The schema was deleted or renamed in the database." msgstr "Issue 1005 - データベースでスキーマが削除または名前変更されました。" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:92 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 msgid "The size of the square cell, in pixels" msgstr "" -#: superset/views/datasource/views.py:88 +#: superset/datasets/commands/exceptions.py:72 +#: superset/views/datasource/views.py:90 msgid "" "The submitted URL is not considered safe, only use URLs with the same " "domain as Superset." @@ -15526,21 +15716,21 @@ msgstr "" msgid "The submitted payload has the incorrect schema." msgstr "" -#: superset/db_engine_specs/bigquery.py:189 +#: superset/db_engine_specs/bigquery.py:190 #, python-format msgid "" "The table \"%(table)s\" does not exist. A valid table must be used to run" " this query." msgstr "" -#: superset/db_engine_specs/presto.py:638 +#: superset/db_engine_specs/presto.py:665 #, python-format msgid "" "The table \"%(table_name)s\" does not exist. A valid table must be used " "to run this query." msgstr "" -#: superset/connectors/sqla/views.py:515 +#: superset/connectors/sqla/views.py:422 msgid "" "The table was created. As part of this two-phase configuration process, " "you should now click the edit button by the new table to configure it." @@ -15597,13 +15787,13 @@ msgstr "" "で表されます。タイムスタンプは、エンジンのローカルタイムゾーンを使用してデータベースによって評価されます。開始時刻や終了時刻を指定する場合は " "ISO 8601 形式に従ってタイムゾーンを明示的に設定できます。" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 msgid "" "The time unit for each block. Should be a smaller unit than " "domain_granularity. Should be larger or equal to Time Grain" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 msgid "The time unit used for the grouping of blocks" msgstr "" @@ -15621,7 +15811,12 @@ msgstr "" msgid "The user seems to have been deleted" msgstr "" -#: superset/db_engine_specs/postgres.py:115 +#: superset/db_engine_specs/ocient.py:251 +msgid "The user/password combination is not valid (Incorrect password for user)." +msgstr "" + +#: superset/db_engine_specs/ocient.py:246 +#: superset/db_engine_specs/postgres.py:114 #, python-format msgid "The username \"%(username)s\" does not exist." msgstr "" @@ -15650,16 +15845,16 @@ msgstr "アクティブなチャートのID" msgid "There are associated alerts or reports" msgstr "関連するアラートまたはレポートがあります" -#: superset/charts/commands/bulk_delete.py:62 -#: superset/charts/commands/delete.py:71 -#: superset/dashboards/commands/bulk_delete.py:63 -#: superset/dashboards/commands/delete.py:64 -#: superset/databases/commands/delete.py:63 +#: superset/charts/commands/bulk_delete.py:61 +#: superset/charts/commands/delete.py:70 +#: superset/dashboards/commands/bulk_delete.py:62 +#: superset/dashboards/commands/delete.py:63 +#: superset/databases/commands/delete.py:62 #, python-format msgid "There are associated alerts or reports: %s," msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:710 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:711 #, fuzzy msgid "There are no charts added to this dashboard" msgstr "このダッシュボードにはフィルターはありません。" @@ -15718,7 +15913,7 @@ msgstr "保存したグラフの取得中にエラーが発生しました: " msgid "There was an error fetching tables" msgstr "保存したグラフの取得中にエラーが発生しました: " -#: superset-frontend/src/views/CRUD/hooks.ts:589 +#: superset-frontend/src/views/CRUD/hooks.ts:593 #, fuzzy, python-format msgid "There was an error fetching the favorite status: %s" msgstr "このダッシュボードのお気に入りのステータスを取得する際に問題が発生しました。" @@ -15727,21 +15922,26 @@ msgstr "このダッシュボードのお気に入りのステータスを取得 msgid "There was an error fetching your recent activity:" msgstr "最近のアクティビティの取得中にエラーが発生しました:" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:450 +#, fuzzy +msgid "There was an error loading the chart data" +msgstr "保存したグラフの取得中にエラーが発生しました: " + #: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 #, fuzzy msgid "There was an error loading the dataset metadata" msgstr "保存したグラフの取得中にエラーが発生しました: " -#: superset-frontend/src/components/DatabaseSelector/index.tsx:241 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:240 #, fuzzy msgid "There was an error loading the schemas" msgstr "保存したグラフの取得中にエラーが発生しました: " -#: superset-frontend/src/components/TableSelector/index.tsx:194 +#: superset-frontend/src/components/TableSelector/index.tsx:191 msgid "There was an error loading the tables" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:612 +#: superset-frontend/src/views/CRUD/hooks.ts:616 #, fuzzy, python-format msgid "There was an error saving the favorite status: %s" msgstr "このダッシュボードのお気に入りのステータスを取得する際に問題が発生しました。" @@ -15755,14 +15955,20 @@ msgstr "" #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 #: superset-frontend/src/pages/AnnotationList/index.tsx:121 #: superset-frontend/src/pages/CssTemplateList/index.tsx:97 -#: superset-frontend/src/pages/DatabaseList/index.tsx:167 -#: superset-frontend/src/pages/DatasetList/index.tsx:657 +#: superset-frontend/src/pages/DatabaseList/index.tsx:178 +#: superset-frontend/src/pages/DatasetList/index.tsx:668 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:97 #: superset-frontend/src/pages/SavedQueryList/index.tsx:245 #: superset-frontend/src/views/CRUD/utils.tsx:315 #, python-format msgid "There was an issue deleting %s: %s" msgstr "%s の削除中に問題が発生しました: %s" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:111 +#, fuzzy, python-format +msgid "There was an issue deleting rules: %s" +msgstr "%s の削除中に問題が発生しました: %s" + #: superset-frontend/src/pages/AlertReportList/index.tsx:201 #, python-format msgid "There was an issue deleting the selected %s: %s" @@ -15782,7 +15988,7 @@ msgstr "" msgid "There was an issue deleting the selected dashboards: " msgstr "選択したダッシュボードの削除で問題が発生しました。: " -#: superset-frontend/src/pages/DatasetList/index.tsx:675 +#: superset-frontend/src/pages/DatasetList/index.tsx:686 #, python-format msgid "There was an issue deleting the selected datasets: %s" msgstr "選択したデータセットの削除に問題が発生しました: %s" @@ -15807,17 +16013,17 @@ msgstr "選択したテンプレートの削除で問題が発生しました: % msgid "There was an issue deleting: %s" msgstr "削除中に問題が発生しました: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:683 +#: superset-frontend/src/pages/DatasetList/index.tsx:694 #, fuzzy msgid "There was an issue duplicating the dataset." msgstr "選択したデータセットの削除に問題が発生しました: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:699 +#: superset-frontend/src/pages/DatasetList/index.tsx:710 #, fuzzy, python-format msgid "There was an issue duplicating the selected datasets: %s" msgstr "選択したデータセットの削除に問題が発生しました: %s" -#: superset-frontend/src/dashboard/actions/dashboardState.js:129 +#: superset-frontend/src/dashboard/actions/dashboardState.js:127 msgid "There was an issue favoriting this dashboard." msgstr "このダッシュボードのお気に入りする際に問題が発生しました。" @@ -15826,7 +16032,7 @@ msgstr "このダッシュボードのお気に入りする際に問題が発生 msgid "There was an issue fetching reports attached to this dashboard." msgstr "このダッシュボードのお気に入りのステータスを取得する際に問題が発生しました。" -#: superset-frontend/src/dashboard/actions/dashboardState.js:104 +#: superset-frontend/src/dashboard/actions/dashboardState.js:103 msgid "There was an issue fetching the favorite status of this dashboard." msgstr "このダッシュボードのお気に入りのステータスを取得する際に問題が発生しました。" @@ -15860,13 +16066,13 @@ msgstr "選択したクエリのプレビュー中に問題が発生しました msgid "There was an issue previewing the selected query. %s" msgstr "選択したクエリのプレビュー中に問題が発生しました。 %s" -#: superset/viz.py:1992 +#: superset/viz.py:1915 msgid "" "There's a loop in your Sankey, please provide a tree. Here's a faulty " "link: {}" msgstr "" -#: superset/connectors/sqla/views.py:335 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:386 msgid "These are the tables this filter will be applied to." msgstr "" @@ -15917,10 +16123,10 @@ msgid "" "mydatabase.com)." msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:244 +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:245 msgid "" -"This chart emits/applies cross-filters to other charts that use the same " -"dataset" +"This chart applies cross-filters to charts whose datasets contain columns" +" with the same name." msgstr "" #: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 @@ -15935,7 +16141,7 @@ msgstr "" msgid "This chart might be incompatible with the filter (datasets don't match)" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:322 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 msgid "" "This chart type is not supported when using an unsaved query as a chart " "source. " @@ -15947,7 +16153,7 @@ msgid "" " Check the JSON metadata in the Advanced settings" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:121 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:113 msgid "This column might be incompatible with current dataset" msgstr "" @@ -15994,12 +16200,12 @@ msgid "" "dashboards. Click here to publish this dashboard." msgstr "このダッシュボードは公開されていないため、ダッシュボードのリストには表示されません。このダッシュボードを公開するには、ここをクリックしてください。" -#: superset-frontend/src/dashboard/actions/dashboardState.js:154 +#: superset-frontend/src/dashboard/actions/dashboardState.js:152 #, fuzzy msgid "This dashboard is now hidden" msgstr "このダッシュボードの変更は禁止されています" -#: superset-frontend/src/dashboard/actions/dashboardState.js:153 +#: superset-frontend/src/dashboard/actions/dashboardState.js:151 #, fuzzy msgid "This dashboard is now published" msgstr "このダッシュボードは現在 ${nowPublished}" @@ -16014,18 +16220,18 @@ msgid "" " id to the SDK:" msgstr "" -#: superset/views/core.py:1319 +#: superset/views/core.py:1353 msgid "" "This dashboard was changed recently. Please reload dashboard to get " "latest version." msgstr "このダッシュボードは最近変更されました。最新の情報を入手するにはダッシュボードをリロードしてください。" -#: superset-frontend/src/dashboard/actions/dashboardState.js:311 -#: superset-frontend/src/dashboard/actions/dashboardState.js:350 +#: superset-frontend/src/dashboard/actions/dashboardState.js:313 +#: superset-frontend/src/dashboard/actions/dashboardState.js:352 msgid "This dashboard was saved successfully." msgstr "このダッシュボードは正常に保存されました。" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1119 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1174 msgid "This database is managed externally, and can't be edited in Superset" msgstr "" @@ -16035,7 +16241,7 @@ msgid "" "table." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:240 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:282 msgid "This dataset is managed externally, and can't be edited in Superset" msgstr "" @@ -16052,7 +16258,7 @@ msgstr "" msgid "This defines the level of the hierarchy" msgstr "" -#: superset/connectors/sqla/views.py:436 +#: superset/connectors/sqla/views.py:343 msgid "" "This fields acts a Superset view, meaning that Superset will run a query " "against this string as a subquery." @@ -16075,7 +16281,7 @@ msgstr "" msgid "This functionality is disabled in your environment for security reasons." msgstr "" -#: superset/connectors/sqla/views.py:352 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:456 msgid "" "This is the condition that will be added to the WHERE clause. For " "example, to only return rows for a particular client, you might define a " @@ -16104,7 +16310,7 @@ msgstr "このマークダウンコンポーネントにエラーがあります msgid "This may be triggered by:" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:258 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:256 msgid "This metric might be incompatible with current dataset" msgstr "" @@ -16145,15 +16351,15 @@ msgid "" "associate one dataset with a table.\n" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:85 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 msgid "This value should be greater than the left target value" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:80 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 msgid "This value should be smaller than the right target value" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:141 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:171 #, fuzzy msgid "This visualization type does not support cross-filtering." msgstr "この可視化方式はサポートされていません。" @@ -16190,6 +16396,7 @@ msgstr "木曜日" #: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:38 #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 @@ -16220,7 +16427,7 @@ msgstr "列を削除する" msgid "Time Comparison" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:141 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 #, fuzzy msgid "Time Format" msgstr "日時フォーマット" @@ -16256,39 +16463,39 @@ msgstr "期間" msgid "Time Series" msgstr "時系列 - 表" -#: superset/viz.py:1670 +#: superset/viz.py:1581 msgid "Time Series - Bar Chart" msgstr "時系列 - 棒グラフ" -#: superset/viz.py:1596 +#: superset/viz.py:1504 msgid "Time Series - Dual Axis Line Chart" msgstr "時系列 - 二重軸折れ線グラフ" -#: superset/viz.py:1308 +#: superset/viz.py:1209 msgid "Time Series - Line Chart" msgstr "時系列 - 折れ線グラフ" -#: superset/viz.py:1518 +#: superset/viz.py:1424 msgid "Time Series - Multiple Line Charts" msgstr "時系列 - 複数の折れ線グラフ" -#: superset/viz.py:3036 +#: superset/viz.py:3033 msgid "Time Series - Nightingale Rose Chart" msgstr "" -#: superset/viz.py:2965 +#: superset/viz.py:2961 msgid "Time Series - Paired t-test" msgstr "" -#: superset/viz.py:1725 +#: superset/viz.py:1638 msgid "Time Series - Percent Change" msgstr "時系列 - 変化率" -#: superset/viz.py:1679 +#: superset/viz.py:1590 msgid "Time Series - Period Pivot" msgstr "時系列 - 期間ピボット" -#: superset/viz.py:1733 +#: superset/viz.py:1646 msgid "Time Series - Stacked" msgstr "時系列 - 積み上げ" @@ -16304,7 +16511,7 @@ msgstr "" msgid "Time Shift" msgstr "見積コスト" -#: superset/viz.py:849 +#: superset/viz.py:878 msgid "Time Table View" msgstr "" @@ -16316,7 +16523,7 @@ msgstr "" msgid "Time column" msgstr "列を削除する" -#: superset/connectors/sqla/models.py:1392 superset/models/helpers.py:1575 +#: superset/models/helpers.py:1659 #, python-format msgid "Time column \"%(col)s\" does not exist in dataset" msgstr "" @@ -16404,6 +16611,7 @@ msgid "Time ratio" msgstr "期間" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 #: superset-frontend/src/explore/controlPanels/sections.tsx:66 msgid "Time related form attributes" msgstr "" @@ -16536,12 +16744,12 @@ msgstr "タイムアウトエラー" msgid "Timestamp format" msgstr "無効な日付/タイムスタンプのフォーマット" -#: superset-frontend/src/components/ReportModal/index.tsx:326 +#: superset-frontend/src/components/ReportModal/index.tsx:325 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 msgid "Timezone" msgstr "" -#: superset/connectors/sqla/views.py:427 +#: superset/connectors/sqla/views.py:334 msgid "Timezone offset (in hours) for this datasource" msgstr "" @@ -16586,32 +16794,29 @@ msgstr "" msgid "To get a readable URL for your dashboard" msgstr "ダッシュボードの読み取り可能なURLを取得するには" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:288 -msgid "Too many columns to filter" -msgstr "" - #: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:27 msgid "Tools" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:216 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:213 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 msgid "Tooltip" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:201 #, fuzzy msgid "Tooltip sort by metric" msgstr "色の指標" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:191 #, fuzzy msgid "Tooltip time format" msgstr "日時フォーマット" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 #, fuzzy msgid "Top" @@ -16636,14 +16841,14 @@ msgstr "" msgid "Total (%(aggfunc)s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:497 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:562 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:784 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 #, python-format msgid "Total (%(aggregatorName)s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:230 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:68 #, fuzzy msgid "Total value" msgstr "デフォルト値" @@ -16658,7 +16863,7 @@ msgstr "" msgid "Totals" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:411 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:404 msgid "Track job" msgstr "ジョブ履歴" @@ -16678,10 +16883,6 @@ msgstr "" msgid "Transparent" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:99 -msgid "Transpose Pivot" -msgstr "" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:238 msgid "Transpose pivot" msgstr "" @@ -16701,7 +16902,7 @@ msgid "Tree orientation" msgstr "注釈を削除する" #: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:60 -#: superset/viz.py:1035 +#: superset/viz.py:925 msgid "Treemap" msgstr "ツリーマップ" @@ -16769,7 +16970,7 @@ msgstr "" msgid "Truncates the specified date to the accuracy specified by the date unit." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 msgid "Try applying different filters or ensuring your datasource has data" msgstr "" @@ -16791,21 +16992,21 @@ msgstr "火曜日" msgid "Tukey" msgstr "クエリ" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:216 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:65 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:272 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:276 -#: superset-frontend/src/pages/DatasetList/index.tsx:343 -#: superset-frontend/src/pages/DatasetList/index.tsx:552 -#: superset/connectors/sqla/views.py:164 superset/connectors/sqla/views.py:253 +#: superset-frontend/src/pages/DatasetList/index.tsx:354 +#: superset-frontend/src/pages/DatasetList/index.tsx:563 +#: superset/connectors/sqla/views.py:163 superset/connectors/sqla/views.py:252 msgid "Type" msgstr "タイプ" #: superset-frontend/src/components/DeleteModal/index.tsx:92 #: superset-frontend/src/components/ImportModal/index.tsx:397 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1405 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1460 #, python-format msgid "Type \"%s\" to confirm" msgstr "" @@ -16831,7 +17032,7 @@ msgstr "" msgid "Type of comparison, value difference or percentage" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:404 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:407 #, python-format msgid "Type or Select [%s]" msgstr "入力または選択 [%s]" @@ -16863,22 +17064,23 @@ msgstr "URLパラメータ" msgid "URL slug" msgstr "URLスラッグ" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:622 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:618 msgid "Unable to add a new tab to the backend. Please contact your administrator." msgstr "" -#: superset/db_engine_specs/presto.py:677 +#: superset/db_engine_specs/presto.py:704 #, python-format msgid "Unable to connect to catalog named \"%(catalog_name)s\"." msgstr "" #: superset/db_engine_specs/mysql.py:165 -#: superset/db_engine_specs/postgres.py:148 +#: superset/db_engine_specs/postgres.py:147 +#: superset/db_engine_specs/starrocks.py:127 #, python-format msgid "Unable to connect to database \"%(database)s\"." msgstr "“%(database)s” に接続できません。" -#: superset/db_engine_specs/bigquery.py:177 +#: superset/db_engine_specs/bigquery.py:178 msgid "" "Unable to connect. Verify that the following roles are set on the service" " account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " @@ -16886,10 +17088,18 @@ msgid "" "\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:218 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:216 msgid "Unable to create chart without a query id." msgstr "" +#: superset/key_value/exceptions.py:66 +msgid "Unable to decode value" +msgstr "" + +#: superset/key_value/exceptions.py:62 +msgid "Unable to encode value" +msgstr "" + #: superset/utils/date_parser.py:393 #, python-format msgid "Unable to find such a holiday: [%(holiday)s]" @@ -16901,19 +17111,19 @@ msgid "" "table." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:589 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:585 msgid "" "Unable to migrate query editor state to backend. Superset will retry " "later. Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:543 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:539 msgid "" "Unable to migrate query state to backend. Superset will retry later. " "Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:525 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:521 msgid "" "Unable to migrate table schema state to backend. Superset will retry " "later. Please contact your administrator if this problem persists." @@ -16923,14 +17133,14 @@ msgstr "" msgid "Unable to retrieve dashboard colors" msgstr "" -#: superset/views/database/views.py:275 +#: superset/views/database/views.py:278 #, python-format msgid "" "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" " database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset/views/database/views.py:553 +#: superset/views/database/views.py:556 #, python-format msgid "" "Unable to upload Columnar file \"%(filename)s\" to table " @@ -16938,14 +17148,14 @@ msgid "" "%(error_msg)s" msgstr "" -#: superset/views/database/views.py:412 +#: superset/views/database/views.py:415 #, python-format msgid "" "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " "in database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:93 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:92 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 msgid "Undefined" msgstr "" @@ -16959,7 +17169,7 @@ msgstr "" msgid "Undo the action" msgstr "注釈" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:131 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:132 msgid "Undo?" msgstr "元に戻しますか?" @@ -16969,7 +17179,7 @@ msgid "Unexpected error" msgstr "" #: superset/databases/commands/exceptions.py:137 -#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1438 +#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1479 msgid "Unexpected error occurred, please check your logs for details" msgstr "" @@ -16978,7 +17188,7 @@ msgstr "" msgid "Unexpected error: " msgstr "レポートスケジュールの予期せぬエラー" -#: superset/views/api.py:109 +#: superset/views/api.py:108 #, fuzzy, python-format msgid "Unexpected time range: %s" msgstr "レポートスケジュールの予期せぬエラー" @@ -16992,7 +17202,7 @@ msgstr "不明" msgid "Unknown MySQL server host \"%(hostname)s\"." msgstr "" -#: superset/db_engine_specs/presto.py:1319 +#: superset/db_engine_specs/presto.py:1342 msgid "Unknown Presto Error" msgstr "" @@ -17000,13 +17210,13 @@ msgstr "" msgid "Unknown Status" msgstr "" -#: superset/connectors/sqla/models.py:1317 superset/models/helpers.py:1498 +#: superset/models/helpers.py:1582 #, python-format msgid "Unknown column used in orderby: %(col)s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:402 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:480 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:398 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:476 msgid "Unknown error" msgstr "不明なエラー" @@ -17068,7 +17278,7 @@ msgstr "実行したクエリ" msgid "Untitled query" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:223 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:222 msgid "Update" msgstr "更新" @@ -17086,7 +17296,7 @@ msgstr "" msgid "Upload" msgstr "アップロード" -#: superset-frontend/src/pages/DatabaseList/index.tsx:202 +#: superset-frontend/src/pages/DatabaseList/index.tsx:213 #, fuzzy msgid "Upload CSV" msgstr "画像としてダウンロード" @@ -17106,7 +17316,7 @@ msgstr "Excelをアップロード" msgid "Upload Enabled" msgstr "Excelをアップロード" -#: superset-frontend/src/pages/DatabaseList/index.tsx:216 +#: superset-frontend/src/pages/DatabaseList/index.tsx:227 #, fuzzy msgid "Upload Excel file" msgstr "Excelをアップロード" @@ -17119,7 +17329,7 @@ msgstr "" msgid "Upload JSON file" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:209 +#: superset-frontend/src/pages/DatabaseList/index.tsx:220 msgid "Upload columnar file" msgstr "" @@ -17128,7 +17338,7 @@ msgstr "" msgid "Upload columnar file to database" msgstr "データベースにアップロードする CSV ファイルを選択します。" -#: superset-frontend/src/pages/DatabaseList/index.tsx:199 +#: superset-frontend/src/pages/DatabaseList/index.tsx:210 #, fuzzy msgid "Upload file to database" msgstr "データベースを編集" @@ -17143,7 +17353,7 @@ msgstr "管理" msgid "Use \"%(menuName)s\" menu instead." msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:36 +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 #, fuzzy, python-format msgid "Use %s to open in a new tab." msgstr "新しいタブでクエリを実行" @@ -17155,7 +17365,7 @@ msgstr "新しいタブでクエリを実行" msgid "Use Area Proportions" msgstr "ダッシュボードのプロパティ" -#: superset/views/database/forms.py:462 +#: superset/views/database/forms.py:472 #, fuzzy msgid "Use Columns" msgstr "列を削除する" @@ -17172,9 +17382,9 @@ msgstr "" msgid "Use a log scale for the Y-axis" msgstr "" -#: superset/db_engine_specs/base.py:1850 -#: superset/db_engine_specs/clickhouse.py:211 -#: superset/db_engine_specs/databricks.py:57 +#: superset/db_engine_specs/base.py:1889 +#: superset/db_engine_specs/clickhouse.py:216 +#: superset/db_engine_specs/databricks.py:58 msgid "Use an encrypted connection to the database" msgstr "" @@ -17185,12 +17395,12 @@ msgid "" " Your chart must be one of these visualization types: [%s]" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:87 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 msgid "Use date formatting even when metric value is not a timestamp" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:217 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 msgid "Use legacy datasource editor" msgstr "" @@ -17237,16 +17447,6 @@ msgid "" " from the pluginʼs package.json" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:28 -msgid "" -"Used to summarize a set of data by grouping together multiple statistics " -"along two axes. Examples: Sales numbers by region and month, tasks by " -"status and assignee, active users by age and location.\n" -"\n" -" This chart is being deprecated and we recommend checking out Pivot " -"Table V2 instead!" -msgstr "" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 msgid "" "Used to summarize a set of data by grouping together multiple statistics " @@ -17291,11 +17491,17 @@ msgstr "ユーザークエリ" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:133 #: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 -#: superset/db_engine_specs/base.py:1837 +#: superset/db_engine_specs/base.py:1868 #: superset/db_engine_specs/clickhouse.py:201 msgid "Username" msgstr "ユーザー名" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:27 +msgid "" +"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" +" of data" +msgstr "" + #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:45 msgid "" "Uses a gauge to showcase progress of a metric towards a target. The " @@ -17348,9 +17554,9 @@ msgstr "メールフォーマット" msgid "Value is required" msgstr "名前が必要です" -#: superset/reports/schemas.py:186 superset/reports/schemas.py:192 -#: superset/reports/schemas.py:198 superset/reports/schemas.py:280 -#: superset/reports/schemas.py:286 superset/reports/schemas.py:293 +#: superset/reports/schemas.py:190 superset/reports/schemas.py:195 +#: superset/reports/schemas.py:200 superset/reports/schemas.py:291 +#: superset/reports/schemas.py:296 superset/reports/schemas.py:302 msgid "Value must be greater than 0" msgstr "値は 0 より大きくする必要があります" @@ -17373,16 +17579,16 @@ msgstr "" msgid "Vehicle Types" msgstr "" -#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:252 +#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:251 msgid "Verbose Name" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:503 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:539 #: superset-frontend/src/features/home/RightMenu.tsx:501 msgid "Version" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:509 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:545 msgid "Version number" msgstr "" @@ -17394,7 +17600,7 @@ msgstr "" msgid "Vertical" msgstr "ABC順" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:162 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 #, fuzzy msgid "Vertical (Left)" msgstr "ABC順" @@ -17425,7 +17631,7 @@ msgstr "データセットを編集" msgid "View all charts" msgstr "すべてのチャート" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:434 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 #, fuzzy msgid "View as table" msgstr "サンプルを表示" @@ -17440,8 +17646,8 @@ msgstr "SQL Labで表示" msgid "View keys & indexes (%s)" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:415 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:417 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:424 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:426 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:394 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:396 msgid "View query" @@ -17463,8 +17669,8 @@ msgstr "表示した項目" msgid "Viewport" msgstr "レポート" -#: superset-frontend/src/pages/DatasetList/index.tsx:342 -#: superset-frontend/src/pages/DatasetList/index.tsx:559 +#: superset-frontend/src/pages/DatasetList/index.tsx:353 +#: superset-frontend/src/pages/DatasetList/index.tsx:570 msgid "Virtual" msgstr "" @@ -17472,20 +17678,20 @@ msgstr "" msgid "Virtual (SQL)" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:281 +#: superset-frontend/src/pages/DatasetList/index.tsx:292 msgid "Virtual dataset" msgstr "" -#: superset/connectors/sqla/models.py:960 superset/connectors/sqla/utils.py:111 -#: superset/models/helpers.py:1036 +#: superset/connectors/sqla/models.py:921 superset/connectors/sqla/utils.py:110 +#: superset/models/helpers.py:1079 msgid "Virtual dataset query cannot be empty" msgstr "" -#: superset/connectors/sqla/models.py:963 superset/models/helpers.py:1039 +#: superset/connectors/sqla/models.py:924 superset/models/helpers.py:1082 msgid "Virtual dataset query cannot consist of multiple statements" msgstr "" -#: superset/connectors/sqla/models.py:928 superset/models/helpers.py:1062 +#: superset/connectors/sqla/models.py:889 superset/models/helpers.py:1105 msgid "Virtual dataset query must be read-only" msgstr "" @@ -17614,7 +17820,7 @@ msgid "" "corresponds to higher frequency." msgstr "" -#: superset/viz.py:141 +#: superset/viz.py:140 msgid "Viz is missing a datasource" msgstr "Viz はデータソースがありません" @@ -17626,21 +17832,21 @@ msgstr "可視化タイプ" msgid "WED" msgstr "水" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:948 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1003 msgid "Want to add a new database?" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1246 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:216 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:214 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 msgid "Warning" msgstr "警告" -#: superset/connectors/sqla/views.py:258 +#: superset/connectors/sqla/views.py:257 msgid "Warning Message" msgstr "警告メッセージ" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:286 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 msgid "Warning!" msgstr "警告!" @@ -17655,13 +17861,13 @@ msgstr "" msgid "Was unable to check your query" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1468 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1523 msgid "" "We are unable to connect to your database. Click \"See more\" for " "database-provided information that may help troubleshoot the issue." msgstr "" -#: superset/db_engine_specs/bigquery.py:197 +#: superset/db_engine_specs/bigquery.py:198 #, python-format msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." msgstr "" @@ -17671,8 +17877,8 @@ msgstr "" msgid "We can't seem to resolve the column \"%(column_name)s\"" msgstr "" -#: superset/db_engine_specs/postgres.py:153 -#: superset/db_engine_specs/presto.py:630 +#: superset/db_engine_specs/postgres.py:152 +#: superset/db_engine_specs/presto.py:657 #, python-format msgid "" "We can't seem to resolve the column \"%(column_name)s\" at line " @@ -17694,7 +17900,7 @@ msgid "" "dataset." msgstr "" -#: superset/db_engine_specs/redshift.py:90 +#: superset/db_engine_specs/redshift.py:94 #, python-format msgid "" "We were unable to connect to your database named \"%(database)s\". Please" @@ -17711,32 +17917,32 @@ msgstr "" msgid "Wednesday" msgstr "水曜日" -#: superset/db_engine_specs/base.py:107 +#: superset/db_engine_specs/base.py:108 msgid "Week" msgstr "週" -#: superset/db_engine_specs/base.py:113 +#: superset/db_engine_specs/base.py:114 msgid "Week ending Saturday" msgstr "" -#: superset/db_engine_specs/base.py:112 +#: superset/db_engine_specs/base.py:113 msgid "Week starting Monday" msgstr "" -#: superset/db_engine_specs/base.py:111 +#: superset/db_engine_specs/base.py:112 msgid "Week starting Sunday" msgstr "" -#: superset/db_engine_specs/base.py:114 +#: superset/db_engine_specs/base.py:115 msgid "Week_ending Sunday" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:123 +#: superset-frontend/src/components/ReportModal/index.tsx:122 #, fuzzy msgid "Weekly Report" msgstr "レポート" -#: superset-frontend/src/components/ReportModal/index.tsx:122 +#: superset-frontend/src/components/ReportModal/index.tsx:121 #, python-format msgid "Weekly Report for %s" msgstr "" @@ -17750,6 +17956,7 @@ msgstr "" msgid "Weeks %s" msgstr "週" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:49 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:77 #, fuzzy @@ -17785,7 +17992,7 @@ msgstr[0] "" msgid "What should be shown on the label?" msgstr "" -#: superset/views/database/forms.py:165 +#: superset/views/database/forms.py:175 msgid "What should happen if the table already exists" msgstr "" @@ -17810,7 +18017,7 @@ msgstr "" msgid "When checked, the map will zoom to your data after each query" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:189 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 msgid "When enabled, users are able to visualize SQL Lab results in Explore." msgstr "" @@ -17835,11 +18042,11 @@ msgid "" "relative time filter on a partitioned or indexed time-related field." msgstr "" -#: superset/viz.py:861 +#: superset/viz.py:891 msgid "When using 'Group By' you are limited to use a single metric" msgstr "‘Group By’ を使用する場合、指標は1つに制限されます。" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:74 msgid "When using other than adaptive formatting, labels may overlap" msgstr "" @@ -17851,11 +18058,11 @@ msgstr "" msgid "Whether the progress bar overlaps when there are multiple groups of data" msgstr "" -#: superset/connectors/sqla/views.py:455 +#: superset/connectors/sqla/views.py:362 msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" msgstr "" -#: superset/connectors/sqla/views.py:111 +#: superset/connectors/sqla/views.py:110 msgid "" "Whether this column is exposed in the `Filters` section of the explore " "view." @@ -17897,7 +18104,7 @@ msgstr "" msgid "Whether to display a bar chart background in table columns" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 msgid "Whether to display a legend for the chart" msgstr "" @@ -17928,14 +18135,14 @@ msgid "" " 5% threshold." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:157 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:118 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:159 msgid "Whether to display the legend (toggles)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:181 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 msgid "Whether to display the metric name as a title" msgstr "" @@ -17948,7 +18155,7 @@ msgstr "" msgid "Whether to display the min and max values of the Y-axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:167 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:187 msgid "Whether to display the numerical values within the cells" @@ -18012,7 +18219,7 @@ msgstr "" msgid "Whether to make the histogram cumulative" msgstr "" -#: superset/connectors/sqla/views.py:106 +#: superset/connectors/sqla/views.py:105 msgid "" "Whether to make this column available as a [Time Granularity] option, " "column has to be DATETIME or DATETIME-like" @@ -18026,7 +18233,7 @@ msgstr "" msgid "Whether to populate autocomplete filters options" msgstr "" -#: superset/connectors/sqla/views.py:450 +#: superset/connectors/sqla/views.py:357 msgid "" "Whether to populate the filter's dropdown in the explore view's filter " "section with a list of distinct values fetched from the backend on the " @@ -18056,7 +18263,8 @@ msgstr "" msgid "Whether to show the split lines on the axis" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:124 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:143 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:174 #, fuzzy msgid "Whether to sort ascending or descending on the base Axis." msgstr "降順または昇順でソートするかどうか" @@ -18088,7 +18296,7 @@ msgstr "降順または昇順でソートするかどうか" msgid "Whether to sort results by the selected metric in descending order." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:207 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 msgid "Whether to sort tooltip by the selected metric in descending order." msgstr "" @@ -18154,7 +18362,7 @@ msgid "Working timeout" msgstr "作業タイムアウト" #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 -#: superset/viz.py:2079 +#: superset/viz.py:2006 msgid "World Map" msgstr "世界地図" @@ -18166,11 +18374,11 @@ msgstr "" msgid "Write a handlebars template to render the data" msgstr "" -#: superset/views/database/forms.py:219 +#: superset/views/database/forms.py:229 msgid "Write dataframe index as a column" msgstr "" -#: superset/views/database/forms.py:380 superset/views/database/forms.py:471 +#: superset/views/database/forms.py:390 superset/views/database/forms.py:481 msgid "Write dataframe index as a column." msgstr "" @@ -18229,12 +18437,14 @@ msgstr "" msgid "X bounds" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:122 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:141 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:172 #, fuzzy msgid "X-Axis Sort Ascending" msgstr "レポート送信" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:69 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:156 msgid "X-Axis Sort By" msgstr "" @@ -18295,7 +18505,6 @@ msgid "Y Axis 2 Bounds" msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:260 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:248 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:192 @@ -18334,12 +18543,14 @@ msgstr "" msgid "Y bounds" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:121 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:140 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:171 #, fuzzy msgid "Y-Axis Sort Ascending" msgstr "レポート送信" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:68 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 msgid "Y-Axis Sort By" msgstr "" @@ -18357,7 +18568,7 @@ msgstr "" msgid "YScale Interval" msgstr "更新間隔" -#: superset/db_engine_specs/base.py:110 +#: superset/db_engine_specs/base.py:111 msgid "Year" msgstr "年" @@ -18382,9 +18593,9 @@ msgstr "年" #: superset-frontend/src/pages/ChartList/index.tsx:707 #: superset-frontend/src/pages/DashboardList/index.tsx:506 #: superset-frontend/src/pages/DashboardList/index.tsx:588 -#: superset-frontend/src/pages/DatabaseList/index.tsx:467 -#: superset-frontend/src/pages/DatabaseList/index.tsx:487 -#: superset-frontend/src/pages/DatasetList/index.tsx:572 +#: superset-frontend/src/pages/DatabaseList/index.tsx:478 +#: superset-frontend/src/pages/DatabaseList/index.tsx:498 +#: superset-frontend/src/pages/DatasetList/index.tsx:583 msgid "Yes" msgstr "" @@ -18411,7 +18622,7 @@ msgid "" "overwrite?" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1394 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1449 msgid "" "You are importing one or more databases that already exist. Overwriting " "might cause you to lose some of your work. Are you sure you want to " @@ -18432,7 +18643,7 @@ msgid "" "want to overwrite?" msgstr "既に存在する 1 つ以上の保存済みクエリをインポートしています。上書きすると、作業の一部が失われる可能性があります。上書きしますか?" -#: superset/views/core.py:2177 +#: superset/views/core.py:2213 msgid "" "You are not authorized to see this query. If you think this is an error, " "please reach out to your administrator." @@ -18451,7 +18662,7 @@ msgstr "" msgid "You can add the components in the edit mode." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:127 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:157 msgid "You can also just click on the chart to apply cross-filter." msgstr "" @@ -18474,7 +18685,7 @@ msgstr "" msgid "You can preview the list of dashboards in the chart settings dropdown." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:148 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:178 msgid "You can't apply cross-filter on this data point." msgstr "" @@ -18488,7 +18699,7 @@ msgstr "" msgid "You cannot use 45° tick layout along with the time range filter" msgstr "" -#: superset/viz.py:723 +#: superset/viz.py:748 msgid "" "You cannot use [Columns] in combination with [Group " "By]/[Metrics]/[Percentage Metrics]. Please choose one or the other." @@ -18506,7 +18717,7 @@ msgid "You do not have permission to edit this chart" msgstr "このチャートを編集する権限がありません" #: superset-frontend/src/components/Tags/utils.tsx:69 -#: superset-frontend/src/dashboard/actions/dashboardState.js:366 +#: superset-frontend/src/dashboard/actions/dashboardState.js:368 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:134 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:40 @@ -18518,7 +18729,7 @@ msgstr "このダッシュボードを編集する権限がありません" msgid "You do not have permissions to access the datasource(s): %(name)s." msgstr "データソースにアクセスするためのアクセス許可がありません: %(name)s." -#: superset-frontend/src/dashboard/actions/dashboardState.js:162 +#: superset-frontend/src/dashboard/actions/dashboardState.js:160 msgid "You do not have permissions to edit this dashboard." msgstr "このダッシュボードを編集する権限がありません。" @@ -18531,7 +18742,7 @@ msgstr "このダッシュボードにアクセスできません。" msgid "You don't have access to this dashboard." msgstr "このダッシュボードにアクセスできません。" -#: superset/datasets/commands/exceptions.py:189 +#: superset/datasets/commands/exceptions.py:206 #, fuzzy msgid "You don't have access to this dataset." msgstr "このダッシュボードにアクセスできません。" @@ -18551,17 +18762,17 @@ msgstr "まだお気に入りはありません!" msgid "You don't have permission to modify the value." msgstr "このチャートを編集する権限がありません" -#: superset/security/manager.py:2267 +#: superset/security/manager.py:2262 #, python-format msgid "You don't have the rights to alter %(resource)s" msgstr "" -#: superset/views/core.py:923 +#: superset/views/core.py:945 #, fuzzy msgid "You don't have the rights to alter this chart" msgstr "このチャートを編集する権限がありません" -#: superset/views/core.py:1097 +#: superset/views/core.py:1119 #, fuzzy msgid "You don't have the rights to alter this dashboard" msgstr "このダッシュボードにアクセスできません。" @@ -18570,22 +18781,22 @@ msgstr "このダッシュボードにアクセスできません。" msgid "You don't have the rights to alter this title." msgstr "" -#: superset/views/core.py:929 +#: superset/views/core.py:951 #, fuzzy msgid "You don't have the rights to create a chart" msgstr "このチャートを編集する権限がありません" -#: superset/views/core.py:1113 +#: superset/views/core.py:1135 #, fuzzy msgid "You don't have the rights to create a dashboard" msgstr "このダッシュボードにアクセスできません。" -#: superset/views/core.py:644 +#: superset/views/core.py:649 #, fuzzy msgid "You don't have the rights to download as csv" msgstr "このチャートを編集する権限がありません" -#: superset/views/core.py:424 +#: superset/views/core.py:425 msgid "You have no permission to approve this request" msgstr "" @@ -18597,7 +18808,7 @@ msgstr "このフィルタを削除しました。" msgid "You have unsaved changes." msgstr "未保存の変更があります。" -#: superset-frontend/src/dashboard/actions/dashboardState.js:652 +#: superset-frontend/src/dashboard/actions/dashboardState.js:650 #, python-format msgid "" "You have used all %(historyLength)s undo slots and will not be able to " @@ -18606,7 +18817,7 @@ msgid "" msgstr "" #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:300 -#: superset-frontend/src/pages/DatasetList/index.tsx:453 +#: superset-frontend/src/pages/DatasetList/index.tsx:464 msgid "" "You must be a dataset owner in order to edit. Please reach out to a " "dataset owner to request modifications or edit access." @@ -18616,7 +18827,7 @@ msgstr "" msgid "You must pick a name for the new dashboard" msgstr "新しいダッシュボードの名前を選択する必要があります" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:525 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:519 msgid "You must run the query successfully first" msgstr "" @@ -18624,7 +18835,7 @@ msgstr "" msgid "You need to configure HTML sanitization to use CSS" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:350 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 msgid "" "You updated the values in the control panel, but the chart was not " "updated automatically. Run the query by clicking on the \"Update chart\" " @@ -18637,7 +18848,7 @@ msgid "" "match this new dataset have been retained." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:343 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 msgid "Your chart is not up to date" msgstr "" @@ -18650,7 +18861,7 @@ msgstr "" msgid "Your dashboard is too large. Please reduce its size before saving it." msgstr "ダッシュボードが大きすぎます。保存する前にサイズを小さくしてください。" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1036 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1028 msgid "Your query could not be saved" msgstr "クエリを保存できませんでした" @@ -18658,7 +18869,7 @@ msgstr "クエリを保存できませんでした" msgid "Your query could not be scheduled" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1071 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1063 msgid "Your query could not be updated" msgstr "クエリを更新できませんでした" @@ -18668,16 +18879,16 @@ msgid "" "Saved queries" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1051 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 #, fuzzy msgid "Your query was not properly saved" msgstr "クエリが保存されました" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1054 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1046 msgid "Your query was saved" msgstr "クエリが保存されました" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1067 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1059 msgid "Your query was updated" msgstr "クエリが更新されました" @@ -18699,20 +18910,20 @@ msgstr "" msgid "Zoom level of the map" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:262 +#: superset-frontend/src/dashboard/actions/dashboardState.js:260 #, fuzzy msgid "[ untitled dashboard ]" msgstr "ダッシュボードを編集" -#: superset/viz.py:2386 +#: superset/viz.py:2323 msgid "[Longitude] and [Latitude] columns must be present in [Group By]" msgstr "" -#: superset/viz.py:2336 +#: superset/viz.py:2273 msgid "[Longitude] and [Latitude] must be set" msgstr "" -#: superset/explore/commands/get.py:121 superset/views/core.py:870 +#: superset/explore/commands/get.py:121 superset/views/core.py:892 msgid "[Missing Dataset]" msgstr "[データセットが見つかりません]" @@ -18725,7 +18936,7 @@ msgstr "[Superset] データソース %(name)s へのアクセスは許可 msgid "[Untitled]" msgstr "" -#: superset/connectors/base/models.py:252 superset/models/sql_lab.py:228 +#: superset/connectors/base/models.py:262 superset/models/sql_lab.py:216 msgid "[asc]" msgstr "" @@ -18737,7 +18948,7 @@ msgstr "" msgid "[dashboard name]" msgstr "[ダッシュボード名]" -#: superset/connectors/base/models.py:255 superset/models/sql_lab.py:231 +#: superset/connectors/base/models.py:265 superset/models/sql_lab.py:219 msgid "[desc]" msgstr "" @@ -18761,7 +18972,7 @@ msgstr "" msgid "`compare_type` must be `difference`, `percentage` or `ratio`" msgstr "" -#: superset/charts/schemas.py:573 +#: superset/charts/schemas.py:654 msgid "`confidence_interval` must be between 0 and 1 (exclusive)" msgstr "" @@ -18784,15 +18995,15 @@ msgstr "" msgid "`rename_columns` must have the same length as `columns`." msgstr "" -#: superset/charts/schemas.py:1114 +#: superset/charts/schemas.py:1284 msgid "`row_limit` must be greater than or equal to 0" msgstr "" -#: superset/charts/schemas.py:1121 +#: superset/charts/schemas.py:1291 msgid "`row_offset` must be greater than or equal to 0" msgstr "" -#: superset/charts/schemas.py:972 +#: superset/charts/schemas.py:1108 msgid "`width` must be greater or equal to 0" msgstr "" @@ -18800,10 +19011,16 @@ msgstr "" msgid "aggregate" msgstr "" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 #: superset-frontend/src/pages/AlertReportList/index.tsx:110 msgid "alert" msgstr "アラート" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 +#, fuzzy +msgid "alert dark" +msgstr "アラート" + #: superset-frontend/src/pages/AlertReportList/index.tsx:111 msgid "alerts" msgstr "アラート" @@ -18945,7 +19162,7 @@ msgid "clear all filters" msgstr "すべてのフィルタ" #: superset-frontend/src/components/Chart/Chart.jsx:290 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:354 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 msgid "click here" msgstr "" @@ -18976,7 +19193,7 @@ msgstr "" msgid "count" msgstr "月" -#: superset-frontend/src/explore/components/SaveModal.tsx:365 +#: superset-frontend/src/explore/components/SaveModal.tsx:400 #, fuzzy msgid "create" msgstr "作成" @@ -19024,16 +19241,16 @@ msgid "dashboards" msgstr "ダッシュボード" #: superset-frontend/src/features/databases/DatabaseModal/index.tsx:543 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:712 -#: superset-frontend/src/pages/DatabaseList/index.tsx:91 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:729 +#: superset-frontend/src/pages/DatabaseList/index.tsx:102 msgid "database" msgstr "データベース" #: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 #: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 #: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 -#: superset-frontend/src/pages/DatasetList/index.tsx:148 -#: superset-frontend/src/pages/DatasetList/index.tsx:822 +#: superset-frontend/src/pages/DatasetList/index.tsx:159 +#: superset-frontend/src/pages/DatasetList/index.tsx:844 msgid "dataset" msgstr "データセット" @@ -19046,8 +19263,8 @@ msgstr "データベース名" msgid "date" msgstr "日付" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 msgid "day" msgstr "日" @@ -19076,6 +19293,11 @@ msgstr "" msgid "deck.gl Grid" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:30 +#, fuzzy +msgid "deck.gl Heatmap" +msgstr "すべてのチャート" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:28 msgid "deck.gl Multiple Layers" msgstr "" @@ -19105,6 +19327,7 @@ msgstr "すべてのチャート" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:34 @@ -19190,11 +19413,11 @@ msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:112 #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:657 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:674 msgid "e.g. world_population" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:655 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:672 msgid "e.g. xy12345.us-east-2.aws" msgstr "" @@ -19212,7 +19435,16 @@ msgstr "クエリ名" msgid "entries" msgstr "クエリ" -#: superset/connectors/sqla/models.py:1537 superset/models/helpers.py:1742 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +#, fuzzy +msgid "error" +msgstr "作成者" + +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 +msgid "error dark" +msgstr "" + +#: superset/models/helpers.py:1803 #, fuzzy msgid "error_message" msgstr "エラーメッセージ" @@ -19298,10 +19530,6 @@ msgstr "" msgid "geohash (square)" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 -msgid "green" -msgstr "" - #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:168 #, fuzzy msgid "heatmap" @@ -19315,14 +19543,14 @@ msgstr "" #: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:125 #: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1800 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1856 #, fuzzy msgid "here" msgstr "共有" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 msgid "hour" msgstr "時間" @@ -19359,7 +19587,7 @@ msgstr "" msgid "joined" msgstr "参加" -#: superset/views/base.py:595 +#: superset/views/base.py:596 msgid "json isn't valid" msgstr "" @@ -19426,14 +19654,13 @@ msgstr "チャートを最小化" msgid "log" msgstr "ログ" -#: superset/charts/schemas.py:645 +#: superset/charts/schemas.py:735 msgid "" "lower percentile must be greater than 0 and less than 100. Must be lower " "than upper percentile." msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:189 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:58 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 #: superset-frontend/src/filters/components/Range/buildQuery.ts:69 #, fuzzy @@ -19443,9 +19670,9 @@ msgstr "最大値" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:187 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:254 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:56 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:136 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:119 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:403 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:531 @@ -19463,15 +19690,14 @@ msgstr "" msgid "median" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:60 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:62 #: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 #, fuzzy msgid "metric" msgstr "指標" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:188 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:57 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 #: superset-frontend/src/filters/components/Range/buildQuery.ts:58 #, fuzzy @@ -19493,8 +19719,8 @@ msgid "monotone" msgstr "月" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 #: superset-frontend/src/explore/controls.jsx:267 msgid "month" @@ -19505,7 +19731,7 @@ msgid "more than {max} {name}" msgstr "" #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:53 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:78 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:77 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:116 msgid "must have a value" msgstr "" @@ -19571,7 +19797,7 @@ msgstr "時間" msgid "or use existing ones from the panel on the right" msgstr "" -#: superset/charts/schemas.py:1143 +#: superset/charts/schemas.py:1313 #, fuzzy msgid "orderby column must be populated" msgstr "クエリを更新できませんでした" @@ -19630,7 +19856,7 @@ msgid "" " first is lower than the second value" msgstr "" -#: superset/views/core.py:1921 +#: superset/views/core.py:1958 #, fuzzy msgid "permalink state not found" msgstr "レポートスケジュールの状態が見つかりません" @@ -19687,12 +19913,7 @@ msgstr "最近" msgid "recents" msgstr "最近" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 -#, fuzzy -msgid "red" -msgstr "作成した項目" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:563 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:566 #: superset-frontend/src/pages/AlertReportList/index.tsx:110 msgid "report" msgstr "レポート" @@ -19704,7 +19925,7 @@ msgstr "レポート" msgid "reports" msgstr "レポート" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:491 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:522 msgid "restore zoom" msgstr "" @@ -19714,6 +19935,11 @@ msgstr "" msgid "right" msgstr "高さ" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:139 +#, fuzzy +msgid "rowlevelsecurity" +msgstr "行レベルセキュリティ" + #: superset-frontend/src/SqlLab/constants.ts:36 #: superset-frontend/src/SqlLab/constants.ts:52 #, fuzzy @@ -19765,7 +19991,6 @@ msgstr "変更" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:190 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:59 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:138 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:405 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:185 @@ -19799,16 +20024,22 @@ msgstr "" #: superset-frontend/src/SqlLab/constants.ts:38 #: superset-frontend/src/SqlLab/constants.ts:50 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 #, fuzzy msgid "success" msgstr "成功" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +#, fuzzy +msgid "success dark" +msgstr "成功" + #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:186 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:255 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:378 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:55 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:260 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:532 @@ -19855,7 +20086,7 @@ msgstr "元に戻しますか?" msgid "unknown type icon" msgstr "不明なエラー" -#: superset/charts/schemas.py:660 +#: superset/charts/schemas.py:750 msgid "" "upper percentile must be greater than 0 and less than 100. Must be higher" " than lower percentile." @@ -19878,7 +20109,6 @@ msgid "value descending" msgstr "レポート送信" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:60 msgid "var" msgstr "" @@ -19900,13 +20130,13 @@ msgstr "" msgid "viz type" msgstr "可視化タイプ" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:451 msgid "was created" msgstr "作成されました" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:62 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 #: superset-frontend/src/explore/controls.jsx:264 msgid "week" @@ -19939,16 +20169,12 @@ msgid "y: values are normalized within each row" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 #: superset-frontend/src/explore/controls.jsx:269 msgid "year" msgstr "年" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 -msgid "yellow" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:490 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:521 msgid "zoom area" msgstr "" diff --git a/superset/translations/ko/LC_MESSAGES/messages.json b/superset/translations/ko/LC_MESSAGES/messages.json index 2a4c79012e..10c75d5f51 100644 --- a/superset/translations/ko/LC_MESSAGES/messages.json +++ b/superset/translations/ko/LC_MESSAGES/messages.json @@ -136,6 +136,9 @@ "A comma-separated list of schemas that files are allowed to upload to.": [ "" ], + "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ + "" + ], "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ "" ], @@ -202,7 +205,6 @@ "Add Log": ["로그 추가"], "Add Metric": ["메트릭 추가"], "Add Report": [""], - "Add Row level security filter": [""], "Add Saved Query": ["저장된 Query 추가"], "Add a Plugin": ["플러그인 추가"], "Add a new tab to create SQL Query": [""], @@ -213,6 +215,7 @@ "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ "" ], + "Add custom scoping": [""], "Add delivery method": [""], "Add filter": ["테이블 추가"], "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ @@ -279,6 +282,7 @@ "All": [""], "All Text": [""], "All charts": ["차트 추가"], + "All charts/global scoping": [""], "All filters": ["필터"], "All filters (%(filterCount)d)": [""], "All panels": [""], @@ -477,6 +481,7 @@ "Are you sure you want to delete the selected datasets?": [""], "Are you sure you want to delete the selected layers?": [""], "Are you sure you want to delete the selected queries?": [""], + "Are you sure you want to delete the selected rules?": [""], "Are you sure you want to delete the selected tags?": [""], "Are you sure you want to delete the selected templates?": [""], "Are you sure you want to overwrite this dataset?": [""], @@ -533,6 +538,12 @@ "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ "" ], + "Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "" + ], + "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [ + "" + ], "Box Plot": [""], "Bubble Chart": ["버블 차트"], "Bubble Color": [""], @@ -692,7 +703,6 @@ "Choose a metric for left axis": [""], "Choose a metric for right axis": [""], "Choose a number format": [""], - "Choose a unique name": [""], "Choose one of the available databases from the panel on the left.": [""], "Choose one or more charts for left axis": [""], "Choose one or more charts for right axis": [""], @@ -872,6 +882,7 @@ "Copy to clipboard": ["클립보드에 복사하기"], "Correlation": [""], "Cost estimate": [""], + "Could not connect to database: \"%(database)s\"": [""], "Could not determine datasource type": [""], "Could not fetch all saved charts": [""], "Could not find viz object": [""], @@ -880,6 +891,7 @@ ], "Could not load database driver: %(driver_name)s": [""], "Could not load database driver: {}": [""], + "Could not resolve hostname: \"%(host)s\".": [""], "Count as Fraction of Columns": [""], "Count as Fraction of Rows": [""], "Count as Fraction of Total": [""], @@ -906,6 +918,7 @@ "" ], "Cross-filtering is not enabled for this dashboard.": [""], + "Cross-filtering is not enabled in this dashboard": [""], "Cumulative": [""], "Currently rendered: %s": [""], "Custom": [""], @@ -1031,6 +1044,7 @@ "Deactivate": [""], "December": [""], "Decides which column to sort the base axis by.": [""], + "Decides which measure to sort the base axis by.": [""], "Decimal Character": [""], "Deck.gl - 3D Grid": [""], "Deck.gl - 3D HEX": [""], @@ -1150,7 +1164,6 @@ "" ], "Display row level total": [""], - "Display total row/column": [""], "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ "" ], @@ -1183,10 +1196,7 @@ ], "Drill to detail: %s": [""], "Drop a temporal column here or click": [""], - "Drop columns here": [""], - "Drop columns or metrics here": [""], "Drop columns/metrics here or click": [""], - "Drop temporal column here": [""], "Duplicate": [""], "Duplicate column name(s): %(columns)s": [""], "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ @@ -1241,7 +1251,6 @@ "Edit Metric": ["메트릭 편집"], "Edit Plugin": ["플러그인 수정"], "Edit Report": [""], - "Edit Row level security filter": [""], "Edit Saved Query": ["저장된 Query 수정"], "Edit Table": ["테이블 수정"], "Edit annotation": ["주석"], @@ -1343,6 +1352,7 @@ ], "Excel to Database configuration": [""], "Exclude selected values": [""], + "Excluded roles": [""], "Executed query": ["저장된 Query 수정"], "Execution ID": [""], "Execution log": [""], @@ -1395,8 +1405,10 @@ "Failed at stopping query. %s": [""], "Failed to create report": [""], "Failed to execute %(query)s": [""], + "Failed to generate chart edit URL": [""], "Failed to load chart data": [""], "Failed to load chart data.": [""], + "Failed to load dimensions for drill by": [""], "Failed to retrieve advanced type": [""], "Failed to start remote query on a worker.": [""], "Failed to update report": [""], @@ -1417,7 +1429,7 @@ "Filter Configuration": [""], "Filter List": ["필터"], "Filter Type": [""], - "Filter box": ["필터"], + "Filter box (deprecated)": [""], "Filter configuration": [""], "Filter configuration for the filter box": [""], "Filter has default value": [""], @@ -1511,10 +1523,8 @@ "Grid Size": [""], "Group By": [""], "Group By filter plugin": [""], - "Group By' and 'Columns' can't overlap": [ - "Group By' 와 'Columns' 겹칠 수 없습니다" - ], "Group By, Metrics or Percentage Metrics must have a value": [""], + "Group Key": [""], "Group by": [""], "Groupable": [""], "Handlebars": [""], @@ -1603,9 +1613,18 @@ "Input field supports custom rotation. e.g. 30 for 30°": [""], "Instant filtering": ["필터"], "Intensity": [""], + "Intensity Radius": [""], + "Intensity Radius is the radius at which the weight is distributed": [""], + "Intensity is the value multiplied by the weight to obtain the final weight": [ + "" + ], "Interpret Datetime Format Automatically": [""], "Interpret the datetime format automatically": [""], "Interval colors": [""], + "Intesity": [""], + "Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:port/database'.": [ + "" + ], "Invalid JSON": [""], "Invalid advanced data type: %(advanced_data_type)s": [""], "Invalid certificate": [""], @@ -1632,6 +1651,7 @@ "Invalid numpy function: %(operator)s": [""], "Invalid options for %(rolling_type)s: %(options)s": [""], "Invalid permalink key": [""], + "Invalid reference to column: \"%(column)s\"": [""], "Invalid result type: %(result_type)s": [""], "Invalid rolling_type: %(type)s": [""], "Invalid spatial point encountered: %s": [""], @@ -1950,7 +1970,6 @@ "No data in file": ["파일에 데이터가 없습니다"], "No databases match your search": [""], "No description available.": [""], - "No dimensions available for drill by": [""], "No favorite charts yet, go click on stars!": [""], "No favorite dashboards yet, go click on stars!": [""], "No filter is selected.": [""], @@ -2092,7 +2111,6 @@ ], "Optional name of the data column.": [""], "Optional warning about use of this metric": [""], - "Optionally add a detailed description": [""], "Or choose from a list of other databases we support:": [""], "Order by entity id": [""], "Order results by selected columns": [""], @@ -2187,9 +2205,7 @@ "Pick your favorite markup language": [""], "Pie shape": [""], "Pin": [""], - "Pivot Options": [""], "Pivot Table": ["피봇 테이블"], - "Pivot Table (legacy)": [""], "Pivot operation must include at least one aggregate": [""], "Pivot operation requires at least one index": [""], "Pixel height of each series": [""], @@ -2209,9 +2225,6 @@ "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ "" ], - "Please choose at least one metric": [ - "적어도 하나의 메트릭을 선택하세요" - ], "Please choose different metrics on left and right axis": [""], "Please confirm": [""], "Please confirm the overwrite values.": [""], @@ -2253,6 +2266,7 @@ "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ "" ], + "Port out of range 0-65535": [""], "Position JSON": [""], "Position of child node label on tree": [""], "Position of column level subtotal": [""], @@ -2272,6 +2286,7 @@ "Previous Line": [""], "Primary": [""], "Primary or secondary y-axis": [""], + "Primary y-axis Bounds": [""], "Primary y-axis format": [""], "Private Key": [""], "Private Key & Password": [""], @@ -2349,7 +2364,8 @@ "Refresh interval": ["새로고침 간격"], "Refresh table list": [""], "Refresh the default values": [""], - "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter. Base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ + "Regular": [""], + "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter, base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ "" ], "Relationships between community channels": [""], @@ -2451,13 +2467,13 @@ "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ "" ], - "Row level security filter": [""], "Row limit": [""], "Rows": [""], "Rows per page, 0 means no pagination": [""], "Rows subtotal position": [""], "Rows to Read": [""], "Rule": [""], + "Rule added": [""], "Run": [""], "Run a query to display query history": [""], "Run a query to display results": [""], @@ -2550,6 +2566,7 @@ "Search by query text": [""], "Search...": ["검색"], "Second": ["초"], + "Secondary y-axis Bounds": [""], "Secondary y-axis format": [""], "Secondary y-axis title": [""], "Secure Extra": ["보안"], @@ -2587,6 +2604,12 @@ "Select start and end date": ["데이터베이스 선택"], "Select subject": [""], "Select table or type to search tables": [""], + "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" + ], + "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" + ], "Select the number of bins for the histogram": [""], "Select the numeric columns to draw the histogram": [""], "Select values in highlighted field(s) in the control panel. Then run the query by clicking on the %s button.": [ @@ -2641,7 +2664,6 @@ "Show Log": ["컬럼 보기"], "Show Markers": [""], "Show Metric": ["메트릭 보기"], - "Show Row level security filter": [""], "Show Saved Query": ["저장된 Query 보기"], "Show Table": ["테이블 보기"], "Show Timestamp": [""], @@ -2819,7 +2841,6 @@ "Superset dashboard": ["대시보드 저장"], "Superset encountered an error while running a command.": [""], "Survey Responses": [""], - "Swap Groups and Columns": [""], "Swap rows and columns": [""], "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ "" @@ -2832,6 +2853,9 @@ "Symbol size": [""], "Sync columns from source": [""], "Syntax": [""], + "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ + "" + ], "TABLES": [""], "TEMPORAL X-AXIS": [""], "TEMPORAL_RANGE": [""], @@ -3107,6 +3131,9 @@ "The type of visualization to display": [""], "The unit of measure for the specified point radius": [""], "The user seems to have been deleted": [""], + "The user/password combination is not valid (Incorrect password for user).": [ + "" + ], "The username provided when connecting to a database is not valid.": [""], "The way the ticks are laid out on the X-axis": [""], "The width of the lines": [""], @@ -3173,7 +3200,7 @@ "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ "" ], - "This chart emits/applies cross-filters to other charts that use the same dataset": [ + "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ "" ], "This chart has been moved to a different filter scope.": [""], @@ -3351,7 +3378,6 @@ "Track job": [""], "Transformable": [""], "Transparent": [""], - "Transpose Pivot": [""], "Transpose pivot": [""], "Tree layout": [""], "Treemap": ["트리맵"], @@ -3397,6 +3423,8 @@ "" ], "Unable to create chart without a query id.": [""], + "Unable to decode value": [""], + "Unable to encode value": [""], "Unable to find such a holiday: [%(holiday)s]": [""], "Unable to load columns for the selected table. Please select a different table.": [ "" @@ -3470,9 +3498,6 @@ "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ "" ], - "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location.\n\n This chart is being deprecated and we recommend checking out Pivot Table V2 instead!": [ - "" - ], "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ "" ], @@ -3482,6 +3507,9 @@ "User must select a value before applying the filter": [""], "User must select a value for this filter": [""], "User query": ["Query 공유"], + "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ + "" + ], "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ "" ], @@ -3961,6 +3989,7 @@ "e.g. sql/protocolv1/o/12345": [""], "e.g. world_population": [""], "e.g. xy12345.us-east-2.aws": [""], + "error dark": [""], "every": [""], "every day of the month": [""], "every day of the week": [""], @@ -3976,7 +4005,6 @@ "for more information on how to structure your URI.": [""], "function type icon": [""], "geohash (square)": [""], - "green": [""], "heatmap: values are normalized across the entire heatmap": [""], "hour": ["시간"], "id": [""], @@ -4054,6 +4082,7 @@ "stream": [""], "string type icon": [""], "success": [""], + "success dark": [""], "sum": [""], "syntax.": [""], "tag": [""], @@ -4078,7 +4107,6 @@ "y": [""], "y: values are normalized within each row": [""], "year": ["년"], - "yellow": [""], "zoom area": [""] } } diff --git a/superset/translations/ko/LC_MESSAGES/messages.po b/superset/translations/ko/LC_MESSAGES/messages.po index aba9463c2e..dcceb28477 100644 --- a/superset/translations/ko/LC_MESSAGES/messages.po +++ b/superset/translations/ko/LC_MESSAGES/messages.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-04-07 19:09+0200\n" +"POT-Creation-Date: 2023-05-23 16:30-0300\n" "PO-Revision-Date: 2019-02-02 22:28+0900\n" "Last-Translator: \n" "Language: ko\n" @@ -37,7 +37,7 @@ msgid "" " " msgstr "" -#: superset/reports/notifications/email.py:88 +#: superset/reports/notifications/email.py:89 #, python-format msgid "" "\n" @@ -56,12 +56,12 @@ msgid "" "in the GeoJSON" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:364 +#: superset-frontend/src/explore/components/SaveModal.tsx:399 #, fuzzy msgid " a dashboard OR " msgstr "대시보드 저장" -#: superset-frontend/src/explore/components/SaveModal.tsx:366 +#: superset-frontend/src/explore/components/SaveModal.tsx:401 msgid " a new one" msgstr "" @@ -91,7 +91,7 @@ msgid "" " database/column name level via the extra parameter." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:334 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:340 #, fuzzy msgid " to add calculated columns" msgstr "컬럼 목록" @@ -105,8 +105,8 @@ msgstr "메트릭" msgid " to edit or add columns and metrics." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:323 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:358 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:364 msgid " to mark a column as a time column" msgstr "" @@ -114,7 +114,7 @@ msgstr "" msgid " to open SQL Lab. From there you can save the query as a dataset." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:333 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 msgid " to visualize your data." msgstr "" @@ -122,7 +122,7 @@ msgstr "" msgid "!= (Is not equal)" msgstr "" -#: superset/security/analytics_db_safety.py:44 +#: superset/security/analytics_db_safety.py:48 #, python-format msgid "%(dialect)s cannot be used as a data source for security reasons." msgstr "" @@ -135,7 +135,7 @@ msgid "" "%(issues)s" msgstr "" -#: superset/reports/notifications/email.py:168 +#: superset/reports/notifications/email.py:171 #, python-format msgid "%(name)s.csv" msgstr "" @@ -165,14 +165,14 @@ msgstr "" msgid "%(other)s saved queries will appear here" msgstr "" -#: superset/reports/notifications/email.py:177 +#: superset/reports/notifications/email.py:180 #, python-format msgid "%(prefix)s %(title)s" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:345 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:363 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:377 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:338 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:356 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:370 #, python-format msgid "%(rows)d rows returned" msgstr "" @@ -193,19 +193,19 @@ msgid_plural "" "\"%(undefinedParameter)s\"?" msgstr[0] "" -#: superset/views/core.py:384 +#: superset/views/core.py:385 #, python-format msgid "" "%(user)s was granted the role %(role)s that gives access to the " "%(datasource)s" msgstr "" -#: superset/views/core.py:2672 +#: superset/views/core.py:2709 #, python-format msgid "%(user)s's profile" msgstr "" -#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2327 +#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2369 #, python-format msgid "" "%(validator)s was unable to check your query.\n" @@ -219,25 +219,25 @@ msgid "%s Error" msgstr "%s 에러" #: superset-frontend/src/components/ImportModal/index.tsx:298 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1300 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1355 #, fuzzy, python-format msgid "%s PASSWORD" msgstr "비밀번호" #: superset-frontend/src/components/ImportModal/index.tsx:318 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1318 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1373 #, python-format msgid "%s SSH TUNNEL PASSWORD" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:341 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1336 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1391 #, python-format msgid "%s SSH TUNNEL PRIVATE KEY" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:363 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1356 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1411 #, python-format msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" msgstr "" @@ -247,17 +247,17 @@ msgstr "" msgid "%s Selected" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:808 +#: superset-frontend/src/pages/DatasetList/index.tsx:830 #, python-format msgid "%s Selected (%s Physical, %s Virtual)" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:801 +#: superset-frontend/src/pages/DatasetList/index.tsx:823 #, python-format msgid "%s Selected (Physical)" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:794 +#: superset-frontend/src/pages/DatasetList/index.tsx:816 #, python-format msgid "%s Selected (Virtual)" msgstr "" @@ -267,8 +267,8 @@ msgstr "" msgid "%s aggregates(s)" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:274 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:371 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:280 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:377 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:346 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 #, python-format @@ -305,8 +305,8 @@ msgstr[0] "%s 에러" msgid "%s saved metric(s)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:636 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:652 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:639 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:655 #, python-format msgid "%s updated" msgstr "" @@ -323,7 +323,7 @@ msgstr "" msgid "%s-%s of %s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:115 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:116 msgid "(Removed)" msgstr "" @@ -373,22 +373,22 @@ msgstr "" msgid "+ %s more" msgstr "" -#: superset/views/database/forms.py:153 +#: superset/views/database/forms.py:163 msgid "," msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:656 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:652 msgid "" "-- Note: Unless you save your query, these tabs will NOT persist if you " "clear your cookies or change browsers.\n" "\n" msgstr "" -#: superset/views/database/forms.py:154 +#: superset/views/database/forms.py:164 msgid "." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:791 +#: superset-frontend/src/pages/DatasetList/index.tsx:813 msgid "0 Selected" msgstr "테이블 선택" @@ -483,7 +483,7 @@ msgstr "" msgid "1 year start frequency" msgstr "" -#: superset/db_engine_specs/base.py:101 +#: superset/db_engine_specs/base.py:102 msgid "10 minute" msgstr "10분" @@ -499,7 +499,7 @@ msgstr "주" msgid "104 weeks ago" msgstr "" -#: superset/db_engine_specs/base.py:102 +#: superset/db_engine_specs/base.py:103 msgid "15 minute" msgstr "15분" @@ -618,7 +618,7 @@ msgstr "" msgid "30 days ago" msgstr "" -#: superset/db_engine_specs/base.py:103 +#: superset/db_engine_specs/base.py:104 #, fuzzy msgid "30 minute" msgstr "30분" @@ -628,7 +628,7 @@ msgstr "30분" msgid "30 minutes" msgstr "30분" -#: superset/db_engine_specs/base.py:98 +#: superset/db_engine_specs/base.py:99 #, fuzzy msgid "30 second" msgstr "30초" @@ -649,7 +649,7 @@ msgstr "" msgid "4 weeks (freq=4W-MON)" msgstr "" -#: superset/db_engine_specs/base.py:100 +#: superset/db_engine_specs/base.py:101 msgid "5 minute" msgstr "5분" @@ -658,7 +658,7 @@ msgstr "5분" msgid "5 minutes" msgstr "5분" -#: superset/db_engine_specs/base.py:97 +#: superset/db_engine_specs/base.py:98 #, fuzzy msgid "5 second" msgstr "30초" @@ -687,7 +687,7 @@ msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 #: superset-frontend/src/explore/controls.jsx:261 -#: superset/db_engine_specs/base.py:105 +#: superset/db_engine_specs/base.py:106 #, fuzzy msgid "6 hour" msgstr "6시간" @@ -776,15 +776,15 @@ msgstr "" msgid "A Big Number" msgstr "테이블 명" -#: superset/views/database/forms.py:184 +#: superset/views/database/forms.py:194 msgid "A comma separated list of columns that should be parsed as dates" msgstr "" -#: superset/views/database/forms.py:367 +#: superset/views/database/forms.py:377 msgid "A comma separated list of columns that should be parsed as dates." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:433 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 msgid "A comma-separated list of schemas that files are allowed to upload to." msgstr "" @@ -793,6 +793,12 @@ msgstr "" msgid "A database with the same name already exists." msgstr "같은 이름의 데이터베이스가 이미 존재합니다" +#: superset/views/database/forms.py:145 +msgid "" +"A dictionary with column names and their data types if you need to change" +" the defaults. Example: {\"user_id\":\"integer\"}" +msgstr "" + #: superset/views/dynamic_plugins.py:52 msgid "" "A full URL pointing to the location of the built plugin (could be hosted " @@ -858,16 +864,16 @@ msgstr "" msgid "A report named \"%(name)s\" already exists" msgstr "데이터셋 %(name)s 은 이미 존재합니다" -#: superset-frontend/src/explore/components/SaveModal.tsx:333 +#: superset-frontend/src/explore/components/SaveModal.tsx:368 msgid "A reusable dataset will be saved with your chart." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:309 +#: superset-frontend/src/components/ReportModal/index.tsx:308 msgid "A screenshot of the dashboard will be sent to your email at" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 -#: superset/connectors/sqla/views.py:458 +#: superset/connectors/sqla/views.py:365 msgid "" "A set of parameters that become available in the query using Jinja " "templating syntax" @@ -913,8 +919,8 @@ msgstr "" msgid "APR" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:312 -#: superset-frontend/src/pages/DatabaseList/index.tsx:478 +#: superset-frontend/src/pages/DatabaseList/index.tsx:323 +#: superset-frontend/src/pages/DatabaseList/index.tsx:489 msgid "AQE" msgstr "" @@ -941,7 +947,7 @@ msgstr "" msgid "Access" msgstr "" -#: superset/initialization/__init__.py:431 +#: superset/initialization/__init__.py:425 msgid "Access requests" msgstr "" @@ -953,7 +959,7 @@ msgstr "" msgid "Access token" msgstr "" -#: superset/views/core.py:317 +#: superset/views/core.py:318 msgid "Access was requested" msgstr "" @@ -961,7 +967,7 @@ msgstr "" msgid "Action" msgstr "활동" -#: superset/initialization/__init__.py:393 +#: superset/initialization/__init__.py:387 msgid "Action Log" msgstr "활동 기록" @@ -972,9 +978,10 @@ msgstr "활동 기록" #: superset-frontend/src/pages/ChartList/index.tsx:569 #: superset-frontend/src/pages/CssTemplateList/index.tsx:229 #: superset-frontend/src/pages/DashboardList/index.tsx:477 -#: superset-frontend/src/pages/DatabaseList/index.tsx:448 -#: superset-frontend/src/pages/DatasetList/index.tsx:488 +#: superset-frontend/src/pages/DatabaseList/index.tsx:459 +#: superset-frontend/src/pages/DatasetList/index.tsx:499 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:327 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:216 #: superset-frontend/src/pages/SavedQueryList/index.tsx:437 #: superset-frontend/src/pages/Tags/index.tsx:171 msgid "Actions" @@ -1007,18 +1014,19 @@ msgstr "원본 값" msgid "Actual values" msgstr "원본 값" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:35 -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 #: superset-frontend/src/explore/controls.jsx:78 #: superset-frontend/src/explore/controls.jsx:101 msgid "Adaptive formatting" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:229 +#: superset-frontend/src/components/ReportModal/index.tsx:228 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 #: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 #: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 msgid "Add" msgstr "" @@ -1039,7 +1047,7 @@ msgstr "CSS 템플릿" msgid "Add Chart" msgstr "차트 추가" -#: superset/connectors/sqla/views.py:74 +#: superset/connectors/sqla/views.py:73 msgid "Add Column" msgstr "컬럼 추가" @@ -1055,7 +1063,7 @@ msgstr "데이터베이스 추가" msgid "Add Log" msgstr "로그 추가" -#: superset/connectors/sqla/views.py:209 +#: superset/connectors/sqla/views.py:208 msgid "Add Metric" msgstr "메트릭 추가" @@ -1063,9 +1071,10 @@ msgstr "메트릭 추가" msgid "Add Report" msgstr "" -#: superset/connectors/sqla/views.py:292 -msgid "Add Row level security filter" -msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +#, fuzzy +msgid "Add Rule" +msgstr "D3 포멧" #: superset/views/sql_lab/views.py:54 msgid "Add Saved Query" @@ -1080,12 +1089,12 @@ msgstr "플러그인 추가" msgid "Add a dataset" msgstr "차트 추가" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:262 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:272 #, fuzzy msgid "Add a new tab" msgstr "새 차트 생성" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:286 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:296 msgid "Add a new tab to create SQL Query" msgstr "" @@ -1118,24 +1127,28 @@ msgstr "주석" msgid "Add annotation layer" msgstr "주석 레이어" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:300 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:306 msgid "Add calculated columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:297 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:303 msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:167 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:197 #, fuzzy msgid "Add cross-filter" msgstr "테이블 추가" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 +msgid "Add custom scoping" +msgstr "" + #: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 msgid "Add delivery method" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:330 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 #, fuzzy msgid "Add extra connection information." msgstr "주석" @@ -1209,7 +1222,7 @@ msgstr "새 차트 생성" msgid "Add the name of the dashboard" msgstr "대시보드 추가" -#: superset-frontend/src/explore/components/SaveModal.tsx:351 +#: superset-frontend/src/explore/components/SaveModal.tsx:386 msgid "Add to dashboard" msgstr "대시보드 추가" @@ -1235,7 +1248,7 @@ msgstr[0] "대시보드 추가" msgid "Additional Parameters" msgstr "주석" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1787 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1843 msgid "Additional fields may be required" msgstr "" @@ -1248,18 +1261,18 @@ msgstr "주석" msgid "Additional metadata" msgstr "주석" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:54 #, fuzzy msgid "Additional padding for legend." msgstr "주석" -#: superset/db_engine_specs/base.py:1847 -#: superset/db_engine_specs/clickhouse.py:214 +#: superset/db_engine_specs/base.py:1885 +#: superset/db_engine_specs/clickhouse.py:221 #, fuzzy msgid "Additional parameters" msgstr "주석" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:444 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 #, fuzzy msgid "Additional settings." msgstr "주석" @@ -1276,17 +1289,18 @@ msgstr "" msgid "Additive" msgstr "테이블 추가" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:75 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 msgid "Adjust how this database will interact with SQL Lab." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:221 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:231 msgid "Adjust performance settings of this database." msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:132 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:91 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:127 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:93 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 @@ -1295,7 +1309,7 @@ msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:939 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:771 #: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1811 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 msgid "Advanced" msgstr "" @@ -1393,7 +1407,6 @@ msgid "" "produce the cluster label." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:63 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:202 msgid "" "Aggregate function to apply when pivoting and computing the total rows " @@ -1406,12 +1419,15 @@ msgid "" " values to a dynamic color scale" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +#, fuzzy +msgid "Aggregation" +msgstr "생성자" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 msgid "Aggregation function" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:593 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:162 #, fuzzy msgid "Alert" @@ -1491,7 +1507,7 @@ msgstr "" msgid "Alerts" msgstr "경고" -#: superset/initialization/__init__.py:410 +#: superset/initialization/__init__.py:404 msgid "Alerts & Reports" msgstr "경고 및 리포트" @@ -1517,8 +1533,8 @@ msgstr "" #: superset-frontend/src/pages/DashboardList/index.tsx:528 #: superset-frontend/src/pages/DashboardList/index.tsx:550 #: superset-frontend/src/pages/DashboardList/index.tsx:600 -#: superset-frontend/src/pages/DatabaseList/index.tsx:465 -#: superset-frontend/src/pages/DatabaseList/index.tsx:485 +#: superset-frontend/src/pages/DatabaseList/index.tsx:476 +#: superset-frontend/src/pages/DatabaseList/index.tsx:496 #: superset-frontend/src/pages/Home/index.tsx:205 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:354 #: superset-frontend/src/pages/SavedQueryList/index.tsx:453 @@ -1527,7 +1543,7 @@ msgid "All" msgstr "" #: superset-frontend/src/pages/AllEntities/index.tsx:76 -#: superset/initialization/__init__.py:376 +#: superset/initialization/__init__.py:370 #, fuzzy msgid "All Entities" msgstr "필터" @@ -1539,13 +1555,18 @@ msgstr "필터" msgid "All Text" msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 #: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:69 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 #: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:85 #: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:128 msgid "All charts" msgstr "차트 추가" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 +msgid "All charts/global scoping" +msgstr "" + #: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 msgid "All filters" msgstr "필터" @@ -1555,7 +1576,7 @@ msgstr "필터" msgid "All filters (%(filterCount)d)" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:49 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 msgid "All panels" msgstr "" @@ -1563,7 +1584,7 @@ msgstr "" msgid "All panels with this column will be affected by this filter" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:107 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 #: superset/views/database/mixins.py:184 msgid "Allow CREATE TABLE AS" msgstr "" @@ -1572,7 +1593,7 @@ msgstr "" msgid "Allow CREATE TABLE AS option in SQL Lab" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:121 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 #: superset/views/database/mixins.py:185 msgid "Allow CREATE VIEW AS" msgstr "" @@ -1585,7 +1606,7 @@ msgstr "" msgid "Allow Csv Upload" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 #: superset/views/database/mixins.py:186 msgid "Allow DML" msgstr "DML 허용" @@ -1594,15 +1615,15 @@ msgstr "DML 허용" msgid "Allow columns to be rearranged" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:110 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 msgid "Allow creation of new tables based on queries" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:124 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 msgid "Allow creation of new views based on queries" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:329 +#: superset-frontend/src/pages/DatabaseList/index.tsx:340 msgid "Allow data manipulation language" msgstr "" @@ -1612,11 +1633,11 @@ msgid "" "their changes won't persist for the next time they open the chart." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:411 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:421 msgid "Allow file uploads to database" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:157 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 msgid "" "Allow manipulation of the database using non-SELECT statements such as " "UPDATE, DELETE, CREATE, etc." @@ -1634,11 +1655,11 @@ msgstr "" msgid "Allow sending multiple polygons as a filter event" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:186 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 msgid "Allow this database to be explored" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:91 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 msgid "Allow this database to be queried in SQL Lab" msgstr "" @@ -1679,20 +1700,20 @@ msgstr "" msgid "An alert named \"%(name)s\" already exists" msgstr "데이터셋 %(name)s 은 이미 존재합니다" -#: superset/common/query_context_processor.py:326 superset/viz.py:1447 +#: superset/common/query_context_processor.py:326 superset/viz.py:1352 msgid "" "An enclosed time range (both start and end) must be specified when using " "a Time Comparison." msgstr "" -#: superset/databases/schemas.py:285 +#: superset/databases/schemas.py:289 msgid "" "An engine must be specified when passing individual parameters to a " "database." msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:791 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:141 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:183 #: superset-frontend/src/components/Tags/utils.tsx:67 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:127 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:109 @@ -1707,7 +1728,7 @@ msgstr "" msgid "An error occurred" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:317 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:323 msgid "An error occurred saving dataset" msgstr "" @@ -1719,19 +1740,19 @@ msgstr "" msgid "An error occurred while accessing the value." msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1368 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1360 msgid "" "An error occurred while collapsing the table schema. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:304 +#: superset-frontend/src/views/CRUD/hooks.ts:308 #, fuzzy, python-format msgid "An error occurred while creating %ss: %s" msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1529 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1551 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1530 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1552 msgid "An error occurred while creating the data source" msgstr "" @@ -1749,7 +1770,7 @@ msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였 msgid "An error occurred while deleting the value." msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1344 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1336 msgid "" "An error occurred while expanding the table schema. Please contact your " "administrator." @@ -1761,8 +1782,8 @@ msgid "An error occurred while fetching %s info: %s" msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." #: superset-frontend/src/views/CRUD/hooks.ts:174 -#: superset-frontend/src/views/CRUD/hooks.ts:261 -#: superset-frontend/src/views/CRUD/hooks.ts:349 +#: superset-frontend/src/views/CRUD/hooks.ts:265 +#: superset-frontend/src/views/CRUD/hooks.ts:353 #, fuzzy, python-format msgid "An error occurred while fetching %ss: %s" msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." @@ -1807,7 +1828,7 @@ msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였 msgid "An error occurred while fetching dashboards: %s" msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/src/pages/DatabaseList/index.tsx:145 +#: superset-frontend/src/pages/DatabaseList/index.tsx:156 #, python-format msgid "An error occurred while fetching database related data: %s" msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." @@ -1824,26 +1845,26 @@ msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였 msgid "An error occurred while fetching dataset datasource values: %s" msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/src/pages/DatasetList/index.tsx:510 +#: superset-frontend/src/pages/DatasetList/index.tsx:521 #, python-format msgid "An error occurred while fetching dataset owner values: %s" msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/src/pages/DatasetList/index.tsx:222 +#: superset-frontend/src/pages/DatasetList/index.tsx:233 msgid "An error occurred while fetching dataset related data" msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/src/pages/DatasetList/index.tsx:242 +#: superset-frontend/src/pages/DatasetList/index.tsx:253 #, python-format msgid "An error occurred while fetching dataset related data: %s" msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/src/pages/DatasetList/index.tsx:530 +#: superset-frontend/src/pages/DatasetList/index.tsx:541 #, python-format msgid "An error occurred while fetching datasets: %s" msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1581 +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx:120 msgid "An error occurred while fetching function names." msgstr "" @@ -1852,23 +1873,23 @@ msgstr "" msgid "An error occurred while fetching owners values: %s" msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/src/pages/DatasetList/index.tsx:546 +#: superset-frontend/src/pages/DatasetList/index.tsx:557 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:378 #: superset-frontend/src/pages/SavedQueryList/index.tsx:480 #, python-format msgid "An error occurred while fetching schema values: %s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:799 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:795 msgid "An error occurred while fetching tab state" msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1199 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1224 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1191 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1216 msgid "An error occurred while fetching table metadata" msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1296 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1288 msgid "" "An error occurred while fetching table metadata. Please contact your " "administrator." @@ -1884,23 +1905,28 @@ msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였 msgid "An error occurred while fetching user values: %s" msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:835 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:831 msgid "" "An error occurred while hiding the left bar. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:502 -#: superset-frontend/src/views/CRUD/hooks.ts:518 +#: superset-frontend/src/views/CRUD/hooks.ts:506 +#: superset-frontend/src/views/CRUD/hooks.ts:522 #, fuzzy, python-format msgid "An error occurred while importing %s: %s" msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." +#: superset-frontend/src/explore/components/SaveModal.tsx:135 +#, fuzzy +msgid "An error occurred while loading dashboard information." +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." + #: superset-frontend/src/components/Chart/chartAction.js:579 msgid "An error occurred while loading the SQL" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:332 +#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:325 #, fuzzy msgid "An error occurred while opening Explore" msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." @@ -1914,15 +1940,15 @@ msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였 msgid "An error occurred while pruning logs " msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:892 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:888 msgid "An error occurred while removing query. Please contact your administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:857 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:853 msgid "An error occurred while removing tab. Please contact your administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1396 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1388 msgid "" "An error occurred while removing the table schema. Please contact your " "administrator." @@ -1933,39 +1959,39 @@ msgstr "" msgid "An error occurred while rendering the visualization: %s" msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:710 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:706 msgid "" "An error occurred while setting the active tab. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:975 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:967 msgid "" "An error occurred while setting the tab autorun. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:915 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:911 msgid "" "An error occurred while setting the tab database ID. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1004 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1128 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:996 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1120 #, fuzzy msgid "" "An error occurred while setting the tab name. Please contact your " "administrator." msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:946 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:942 msgid "" "An error occurred while setting the tab schema. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1154 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1146 msgid "" "An error occurred while setting the tab template parameters. Please " "contact your administrator." @@ -1976,14 +2002,14 @@ msgstr "" msgid "An error occurred while starring this chart" msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:251 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:297 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:255 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:301 msgid "" "An error occurred while storing the latest query id in the backend. " "Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1095 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1087 msgid "" "An error occurred while storing your query in the backend. To avoid " "losing your changes, please save your query using the \"Save Query\" " @@ -2005,7 +2031,7 @@ msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였 msgid "An unexpected error occurred" msgstr "" -#: superset/views/core.py:734 +#: superset/views/core.py:745 msgid "An unknown error occurred. Please contact your Superset administrator" msgstr "" @@ -2038,7 +2064,7 @@ msgstr "주석 레이어" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:127 -#: superset/initialization/__init__.py:420 +#: superset/initialization/__init__.py:414 msgid "Annotation Layers" msgstr "주석 레이어" @@ -2198,7 +2224,8 @@ msgstr "" #: superset-frontend/src/pages/DashboardList/index.tsx:504 #: superset-frontend/src/pages/DashboardList/index.tsx:572 #: superset-frontend/src/pages/DashboardList/index.tsx:586 -#: superset-frontend/src/pages/DatasetList/index.tsx:570 +#: superset-frontend/src/pages/DatasetList/index.tsx:581 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:260 msgid "Any" msgstr "" @@ -2213,18 +2240,18 @@ msgid "" "dashboard's individual charts" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:953 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1008 msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:967 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1022 msgid "" "Any databases that allow connections via SQL Alchemy URIs can be added. " "Learn about how to connect a database driver " msgstr "" -#: superset/views/database/forms.py:169 superset/views/database/forms.py:326 -#: superset/views/database/forms.py:457 +#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 +#: superset/views/database/forms.py:467 msgid "Append" msgstr "" @@ -2243,7 +2270,7 @@ msgstr "" msgid "Applied filters: %s" msgstr "테이블 추가" -#: superset/viz.py:246 +#: superset/viz.py:250 msgid "" "Applied rolling window did not return any data. Please make sure the " "source query satisfies the minimum periods defined in the rolling window." @@ -2252,11 +2279,16 @@ msgstr "" #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:856 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:228 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:476 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:479 msgid "Apply" msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:100 +#, fuzzy +msgid "Apply conditional color formatting to metric" +msgstr "주석" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:386 msgid "Apply conditional color formatting to metrics" msgstr "" @@ -2306,6 +2338,7 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:509 #: superset-frontend/src/pages/DashboardList/index.tsx:418 #: superset-frontend/src/pages/DashboardList/index.tsx:739 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:173 #: superset-frontend/src/pages/Tags/index.tsx:144 msgid "Are you sure you want to delete" msgstr "" @@ -2332,7 +2365,7 @@ msgstr "" msgid "Are you sure you want to delete the selected dashboards?" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:741 +#: superset-frontend/src/pages/DatasetList/index.tsx:763 msgid "Are you sure you want to delete the selected datasets?" msgstr "" @@ -2344,6 +2377,10 @@ msgstr "" msgid "Are you sure you want to delete the selected queries?" msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:305 +msgid "Are you sure you want to delete the selected rules?" +msgstr "" + #: superset-frontend/src/pages/Tags/index.tsx:282 msgid "Are you sure you want to delete the selected tags?" msgstr "" @@ -2352,7 +2389,7 @@ msgstr "" msgid "Are you sure you want to delete the selected templates?" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:426 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:434 msgid "Are you sure you want to overwrite this dataset?" msgstr "" @@ -2360,7 +2397,7 @@ msgstr "" msgid "Are you sure you want to proceed?" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:174 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:216 msgid "Are you sure you want to save and apply changes?" msgstr "" @@ -2402,7 +2439,7 @@ msgstr "" msgid "Assign a set of parameters as" msgstr "" -#: superset/connectors/sqla/views.py:476 +#: superset/connectors/sqla/views.py:383 msgid "Associated Charts" msgstr "" @@ -2410,9 +2447,9 @@ msgstr "" msgid "Async Execution" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:295 -#: superset-frontend/src/pages/DatabaseList/index.tsx:309 -#: superset-frontend/src/pages/DatabaseList/index.tsx:475 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:305 +#: superset-frontend/src/pages/DatabaseList/index.tsx:320 +#: superset-frontend/src/pages/DatabaseList/index.tsx:486 msgid "Asynchronous query execution" msgstr "" @@ -2430,7 +2467,7 @@ msgstr "생성자" msgid "Auto Zoom" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:530 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 msgid "Autocomplete" msgstr "" @@ -2456,7 +2493,7 @@ msgstr "" msgid "Average" msgstr "Query 공유" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:233 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 #, fuzzy msgid "Average value" msgstr "원본 값" @@ -2492,10 +2529,10 @@ msgstr "" msgid "BOOLEAN" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:366 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1051 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1068 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1088 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:373 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1123 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1143 msgid "Back" msgstr "" @@ -2505,7 +2542,7 @@ msgstr "" msgid "Back to all" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:300 +#: superset-frontend/src/pages/DatabaseList/index.tsx:311 #: superset/views/database/mixins.py:200 msgid "Backend" msgstr "" @@ -2520,7 +2557,7 @@ msgstr "" msgid "Bad formula." msgstr "D3 포멧" -#: superset/viz.py:2509 superset/viz.py:2545 +#: superset/viz.py:2452 superset/viz.py:2492 msgid "Bad spatial key" msgstr "" @@ -2555,6 +2592,12 @@ msgstr "" msgid "Bar orientation" msgstr "주석" +#: superset-frontend/src/features/rls/constants.ts:28 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:263 +#, fuzzy +msgid "Base" +msgstr "데이터베이스" + #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:239 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 msgid "Base layer map style" @@ -2568,12 +2611,12 @@ msgstr "" msgid "Based on granularity, number of time periods to compare against" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:228 msgid "Based on what should series be ordered on the chart and legend" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:854 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1723 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1779 msgid "Basic" msgstr "" @@ -2605,7 +2648,7 @@ msgid "Before" msgstr "새로고침 간격" #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:37 -#: superset/viz.py:1286 +#: superset/viz.py:1186 msgid "Big Number" msgstr "" @@ -2614,11 +2657,11 @@ msgid "Big Number Font Size" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:36 -#: superset/viz.py:1252 +#: superset/viz.py:1150 msgid "Big Number with Trendline" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 #, fuzzy msgid "Bottom" @@ -2650,7 +2693,6 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:261 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:277 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:263 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:251 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:195 @@ -2669,6 +2711,24 @@ msgid "" " the axis range. It won't narrow the data's extent." msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 +msgid "" +"Bounds for the primary Y-axis. When left empty, the bounds are " +"dynamically defined based on the min/max of the data. Note that this " +"feature will only expand the axis range. It won't narrow the data's " +"extent." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:411 +msgid "" +"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" +" bounds are enabled. When left empty, the bounds are " +"dynamically defined\n" +" based on the min/max of the data. Note that this feature " +"will only expand\n" +" the axis range. It won't narrow the data's extent." +msgstr "" + #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:58 #: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/createMetadata.ts:27 @@ -2681,7 +2741,7 @@ msgid "Breakdowns" msgstr "생성자" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:32 -#: superset/viz.py:1171 +#: superset/viz.py:1065 msgid "Bubble Chart" msgstr "버블 차트" @@ -2712,14 +2772,15 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:789 #: superset-frontend/src/pages/CssTemplateList/index.tsx:262 #: superset-frontend/src/pages/DashboardList/index.tsx:662 -#: superset-frontend/src/pages/DatasetList/index.tsx:596 +#: superset-frontend/src/pages/DatasetList/index.tsx:607 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 #: superset-frontend/src/pages/SavedQueryList/index.tsx:177 #: superset-frontend/src/pages/Tags/index.tsx:267 msgid "Bulk select" msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 -#: superset/viz.py:1222 +#: superset/viz.py:1118 msgid "Bullet Chart" msgstr "" @@ -2735,7 +2796,7 @@ msgstr "" msgid "Business" msgstr "" -#: superset/connectors/sqla/views.py:165 +#: superset/connectors/sqla/views.py:164 msgid "Business Data Type" msgstr "" @@ -2766,16 +2827,16 @@ msgstr "" msgid "CANCEL" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1520 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1575 #, fuzzy msgid "CREATE DATASET" msgstr "데이터소스 선택" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:585 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:579 msgid "CREATE TABLE AS" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:596 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:590 msgid "CREATE VIEW AS" msgstr "" @@ -2800,7 +2861,7 @@ msgstr "" msgid "CSS Styles" msgstr "" -#: superset/initialization/__init__.py:286 superset/views/css_templates.py:38 +#: superset/initialization/__init__.py:288 superset/views/css_templates.py:38 msgid "CSS Templates" msgstr "CSS 템플릿" @@ -2834,26 +2895,26 @@ msgstr "CSS 템플릿" msgid "CSV Upload" msgstr "CSV 업로드" -#: superset/views/database/views.py:287 +#: superset/views/database/views.py:290 #, python-format msgid "" "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " "database \"%(db_name)s\"" msgstr "" -#: superset/views/database/views.py:160 +#: superset/views/database/views.py:161 msgid "CSV to Database configuration" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:344 +#: superset-frontend/src/pages/DatabaseList/index.tsx:355 msgid "CSV upload" msgstr "CSV 업로드" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:130 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 msgid "CTAS & CVAS SCHEMA" msgstr "" -#: superset/sql_lab.py:440 +#: superset/sql_lab.py:432 msgid "" "CTAS (create table as select) can only be run with a query where the last" " statement is a SELECT. Please make sure your query has a SELECT as its " @@ -2864,7 +2925,7 @@ msgstr "" msgid "CTAS Schema" msgstr "" -#: superset/sql_lab.py:457 +#: superset/sql_lab.py:449 msgid "" "CVAS (create view as select) can only be run with a query with a single " "SELECT statement. Please make sure your query has only a SELECT " @@ -2879,7 +2940,7 @@ msgstr "" msgid "CVAS (create view as select) query is not a SELECT statement." msgstr "" -#: superset/connectors/sqla/views.py:486 superset/views/chart/mixin.py:76 +#: superset/connectors/sqla/views.py:393 superset/views/chart/mixin.py:76 msgid "Cache Timeout" msgstr "" @@ -2897,16 +2958,16 @@ msgstr "" msgid "Cached" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:349 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:351 #, python-format msgid "Cached %s" msgstr "" -#: superset/viz.py:562 +#: superset/viz.py:578 msgid "Cached value not found" msgstr "캐시된 값을 찾을 수 없습니다." -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:53 msgid "Calculate contribution per series or row" msgstr "" @@ -2928,7 +2989,7 @@ msgid "Calculation type" msgstr "시각화 유형 선택" #: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 -#: superset/viz.py:1080 +#: superset/viz.py:972 msgid "Calendar Heatmap" msgstr "달력 히트캡" @@ -2941,17 +3002,17 @@ msgstr "" msgid "Can select multiple values" msgstr "" -#: superset/viz.py:1810 +#: superset/viz.py:1727 msgid "Can't have overlap between Series and Breakdowns" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:206 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:759 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:263 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:185 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 -#: superset-frontend/src/components/Modal/Modal.tsx:262 -#: superset-frontend/src/components/ReportModal/index.tsx:220 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:205 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:753 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:227 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:268 +#: superset-frontend/src/components/Modal/Modal.tsx:269 +#: superset-frontend/src/components/ReportModal/index.tsx:219 #: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:72 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:649 #: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 @@ -2959,14 +3020,14 @@ msgstr "" #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:76 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 -#: superset-frontend/src/explore/components/SaveModal.tsx:379 +#: superset-frontend/src/explore/components/SaveModal.tsx:413 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:843 #: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 #: superset/templates/superset/request_access.html:34 msgid "Cancel" msgstr "취소" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:314 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 msgid "Cancel query on window unload event" msgstr "" @@ -2982,7 +3043,7 @@ msgstr "" msgid "Cannot have multiple credentials for the SSH Tunnel" msgstr "" -#: superset/views/core.py:723 +#: superset/views/core.py:734 #, python-format msgid "" "Cannot import dashboard: %(db_error)s.\n" @@ -3047,7 +3108,7 @@ msgstr "" msgid "Category and Value" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:229 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:67 #, fuzzy msgid "Category name" msgstr "Query 검색" @@ -3062,15 +3123,15 @@ msgstr "" msgid "Category, Value and Percentage" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:103 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 msgid "Cell Padding" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:117 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 msgid "Cell Radius" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 msgid "Cell Size" msgstr "" @@ -3079,7 +3140,7 @@ msgstr "" msgid "Cell bars" msgstr "차트 추가" -#: superset-frontend/src/components/FilterableTable/index.tsx:431 +#: superset-frontend/src/components/FilterableTable/index.tsx:303 msgid "Cell content" msgstr "" @@ -3092,6 +3153,7 @@ msgstr "구분자" msgid "Center" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:33 msgid "Centroid (Longitude and Latitude): " msgstr "" @@ -3114,7 +3176,7 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:699 #: superset-frontend/src/pages/DashboardList/index.tsx:580 -#: superset-frontend/src/pages/DatasetList/index.tsx:564 +#: superset-frontend/src/pages/DatasetList/index.tsx:575 #, fuzzy msgid "Certified" msgstr "수정됨" @@ -3147,7 +3209,7 @@ msgstr "" msgid "Change order of rows." msgstr "" -#: superset/connectors/sqla/views.py:478 +#: superset/connectors/sqla/views.py:385 msgid "Changed By" msgstr "" @@ -3194,7 +3256,7 @@ msgstr "이 차트를 변경하는 것은 불가능합니다" msgid "Changing this control takes effect instantly" msgstr "" -#: superset/datasets/commands/exceptions.py:181 +#: superset/datasets/commands/exceptions.py:198 msgid "Changing this dataset is forbidden" msgstr "" @@ -3212,14 +3274,15 @@ msgstr "이 차트를 변경하는 것은 불가능합니다" msgid "Changing this report is forbidden" msgstr "" -#: superset/views/database/forms.py:196 +#: superset/views/database/forms.py:206 msgid "Character to interpret as decimal point" msgstr "" -#: superset/views/database/forms.py:375 +#: superset/views/database/forms.py:385 msgid "Character to interpret as decimal point." msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:51 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:449 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:405 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:69 @@ -3227,11 +3290,11 @@ msgstr "" #: superset-frontend/src/features/home/RightMenu.tsx:219 #: superset-frontend/src/pages/ChartList/index.tsx:369 #: superset-frontend/src/pages/ChartList/index.tsx:799 -#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:90 +#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 msgid "Chart" msgstr "차트" -#: superset/views/core.py:1727 +#: superset/views/core.py:1762 #, python-format msgid "Chart %(id)s not found" msgstr "" @@ -3240,7 +3303,7 @@ msgstr "" msgid "Chart Cache Timeout" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:437 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:442 #, fuzzy, python-format msgid "Chart Data: %s" msgstr "차트" @@ -3250,7 +3313,7 @@ msgstr "차트" msgid "Chart ID" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:53 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:55 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:61 @@ -3272,7 +3335,7 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:59 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:131 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:107 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:74 @@ -3319,34 +3382,34 @@ msgstr "데이터소스" msgid "Chart Title" msgstr "차트 유형" -#: superset-frontend/src/explore/actions/saveModalActions.js:127 +#: superset-frontend/src/explore/actions/saveModalActions.js:121 #, python-format msgid "Chart [%s] has been overwritten" msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:124 +#: superset-frontend/src/explore/actions/saveModalActions.js:118 #, fuzzy, python-format msgid "Chart [%s] has been saved" msgstr "주석 레이어" -#: superset-frontend/src/explore/actions/saveModalActions.js:145 +#: superset-frontend/src/explore/actions/saveModalActions.js:139 #, python-format msgid "Chart [%s] was added to dashboard [%s]" msgstr "" -#: superset/views/core.py:1077 +#: superset/views/core.py:1099 msgid "Chart [{}] has been overwritten" msgstr "" -#: superset/views/core.py:1073 +#: superset/views/core.py:1095 msgid "Chart [{}] has been saved" msgstr "" -#: superset/views/core.py:1102 +#: superset/views/core.py:1124 msgid "Chart [{}] was added to dashboard [{}]" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:228 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:238 msgid "Chart cache timeout" msgstr "차트 유형" @@ -3406,7 +3469,7 @@ msgstr "마지막 수정" msgid "Chart last modified by" msgstr "마지막 수정" -#: superset-frontend/src/explore/components/SaveModal.tsx:320 +#: superset-frontend/src/explore/components/SaveModal.tsx:355 msgid "Chart name" msgstr "차트 유형" @@ -3439,7 +3502,7 @@ msgstr "차트 유형" msgid "Chart type" msgstr "차트 유형" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:315 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 msgid "Chart type requires a dataset" msgstr "" @@ -3455,7 +3518,7 @@ msgstr "차트 유형" #: superset-frontend/src/pages/Home/index.tsx:399 #: superset-frontend/src/profile/components/CreatedContent.tsx:104 #: superset-frontend/src/profile/components/Favorites.tsx:102 -#: superset/initialization/__init__.py:257 superset/views/chart/mixin.py:25 +#: superset/initialization/__init__.py:259 superset/views/chart/mixin.py:25 #: superset/views/dashboard/mixin.py:80 msgid "Charts" msgstr "차트" @@ -3487,7 +3550,7 @@ msgstr "" msgid "Check out this chart in dashboard:" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:474 msgid "Check out this chart: " msgstr "" @@ -3517,11 +3580,11 @@ msgstr "" msgid "Child label position" msgstr "" -#: superset/viz.py:2370 +#: superset/viz.py:2307 msgid "Choice of [Label] must be present in [Group By]" msgstr "" -#: superset/viz.py:2378 +#: superset/viz.py:2315 msgid "Choice of [Point Radius] must be present in [Group By]" msgstr "" @@ -3534,7 +3597,7 @@ msgstr "CSV 파일" msgid "Choose a chart or dashboard not both" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:924 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:979 #, fuzzy msgid "Choose a database..." msgstr "데이터소스 선택" @@ -3573,16 +3636,12 @@ msgstr "데이터소스 선택" msgid "Choose a target" msgstr "데이터소스 선택" -#: superset/connectors/sqla/views.py:327 -msgid "Choose a unique name" -msgstr "" - #: superset-frontend/src/pages/ChartCreation/index.tsx:404 #, fuzzy msgid "Choose chart type" msgstr "차트 유형" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:745 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:739 msgid "Choose one of the available databases from the panel on the left." msgstr "" @@ -3659,7 +3718,8 @@ msgid "" "showcase a view into the underlying data or to show aggregated metrics." msgstr "" -#: superset/connectors/sqla/views.py:365 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:454 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:144 msgid "Clause" msgstr "" @@ -3671,7 +3731,7 @@ msgstr "" msgid "Clear all" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:206 +#: superset-frontend/src/components/Table/index.tsx:210 #, fuzzy msgid "Clear all data" msgstr "차트 추가" @@ -3698,19 +3758,19 @@ msgstr "" msgid "Click the lock to prevent further changes." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1955 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2012 msgid "" "Click this link to switch to an alternate form that allows you to input " "the SQLAlchemy URL for this database manually." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1771 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1827 msgid "" "Click this link to switch to an alternate form that exposes only the " "required fields needed to connect this database." msgstr "" -#: superset-frontend/src/components/Table/index.tsx:213 +#: superset-frontend/src/components/Table/index.tsx:217 msgid "Click to cancel sorting" msgstr "" @@ -3720,16 +3780,10 @@ msgstr "클릭하여 제목 수정하기" #: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 #, fuzzy, python-format -msgid "Click to edit %s in a new tab" -msgstr "클릭하여 제목 수정하기" - -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:32 -#, fuzzy, python-format msgid "Click to edit %s." msgstr "클릭하여 제목 수정하기" #: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:33 #, fuzzy msgid "Click to edit chart." msgstr "클릭하여 제목 수정하기" @@ -3752,26 +3806,26 @@ msgstr "" msgid "Click to see difference" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:212 +#: superset-frontend/src/components/Table/index.tsx:216 #, fuzzy msgid "Click to sort ascending" msgstr "클릭하여 제목 수정하기" -#: superset-frontend/src/components/Table/index.tsx:211 +#: superset-frontend/src/components/Table/index.tsx:215 msgid "Click to sort descending" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:83 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:132 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:52 #: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:209 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:219 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:224 #: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:786 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:408 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:414 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:339 #: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:36 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1109 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1164 msgid "Close" msgstr "" @@ -3805,15 +3859,15 @@ msgstr "" msgid "Collapse data panel" msgstr "데이터 미리보기" -#: superset-frontend/src/components/Table/index.tsx:210 +#: superset-frontend/src/components/Table/index.tsx:214 msgid "Collapse row" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:598 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:599 msgid "Collapse tab content" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:197 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 #, fuzzy msgid "Collapse table preview" msgstr "데이터 미리보기" @@ -3837,7 +3891,7 @@ msgstr "메트릭" msgid "Color Scheme" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:129 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 msgid "Color Steps" msgstr "" @@ -3858,8 +3912,8 @@ msgid "Color of the target location" msgstr "" #: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:214 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:218 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 #: superset-frontend/src/explore/controlPanels/sections.tsx:60 #: superset-frontend/src/explore/controls.jsx:460 msgid "Color scheme" @@ -3879,8 +3933,8 @@ msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 #: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:204 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:250 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:256 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:137 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:140 #: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 @@ -3888,7 +3942,7 @@ msgstr "" #: superset-frontend/src/filters/components/Range/controlPanel.ts:39 #: superset-frontend/src/filters/components/Select/controlPanel.ts:49 #: superset-frontend/src/filters/components/Time/controlPanel.ts:37 -#: superset/connectors/sqla/views.py:155 +#: superset/connectors/sqla/views.py:154 msgid "Column" msgstr "칼럼" @@ -3903,13 +3957,18 @@ msgstr "" msgid "Column Configuration" msgstr "" +#: superset/views/database/forms.py:144 +#, fuzzy +msgid "Column Data Types" +msgstr "차트 유형" + #: superset-frontend/src/explore/components/DataTableControl/index.tsx:194 #, fuzzy msgid "Column Formatting" msgstr "주석" -#: superset/views/database/forms.py:222 superset/views/database/forms.py:383 -#: superset/views/database/forms.py:474 +#: superset/views/database/forms.py:232 superset/views/database/forms.py:393 +#: superset/views/database/forms.py:484 msgid "Column Label(s)" msgstr "" @@ -3927,6 +3986,11 @@ msgstr "" msgid "Column containing longitude data" msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:69 +#, fuzzy +msgid "Column datatype" +msgstr "컬럼 추가" + #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 msgid "Column header tooltip" msgstr "" @@ -3936,19 +4000,19 @@ msgstr "" msgid "Column is required" msgstr "데이터소스" -#: superset/views/database/forms.py:384 superset/views/database/forms.py:475 +#: superset/views/database/forms.py:394 superset/views/database/forms.py:485 msgid "" "Column label for index column(s). If None is given and Dataframe Index is" " True, Index Names are used." msgstr "" -#: superset/views/database/forms.py:223 +#: superset/views/database/forms.py:233 msgid "" "Column label for index column(s). If None is given and Dataframe Index is" " checked, Index Names are used" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:77 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:90 #, fuzzy msgid "Column name" msgstr "컬럼 추가" @@ -3968,31 +4032,31 @@ msgstr "" msgid "Column select" msgstr "컬럼 추가" -#: superset/views/database/forms.py:211 +#: superset/views/database/forms.py:221 msgid "" "Column to use as the row labels of the dataframe. Leave empty if no index" " column" msgstr "" -#: superset/views/database/forms.py:342 +#: superset/views/database/forms.py:352 msgid "" "Column to use as the row labels of the dataframe. Leave empty if no index" " column." msgstr "" -#: superset/views/database/forms.py:414 +#: superset/views/database/forms.py:424 #, fuzzy msgid "Columnar File" msgstr "컬럼 추가" -#: superset/views/database/views.py:565 +#: superset/views/database/views.py:568 #, python-format msgid "" "Columnar file \"%(columnar_filename)s\" uploaded to table " "\"%(table_name)s\" in database \"%(db_name)s\"" msgstr "" -#: superset/views/database/views.py:440 +#: superset/views/database/views.py:443 msgid "Columnar to Database configuration" msgstr "" @@ -4008,15 +4072,15 @@ msgstr "" #: superset-frontend/src/explore/controls.jsx:244 #: superset-frontend/src/explore/fixtures.tsx:97 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 -#: superset/connectors/sqla/views.py:72 +#: superset/connectors/sqla/views.py:71 msgid "Columns" msgstr "칼럼" -#: superset/views/database/forms.py:183 +#: superset/views/database/forms.py:193 msgid "Columns To Be Parsed as Dates" msgstr "" -#: superset/views/database/forms.py:231 +#: superset/views/database/forms.py:241 #, fuzzy msgid "Columns To Read" msgstr "컬럼 보기" @@ -4026,7 +4090,7 @@ msgstr "컬럼 보기" msgid "Columns missing in dataset: %(invalid_columns)s" msgstr "데이터 소스의 컬럼이 없습니다 : %(invalid_columns)s" -#: superset/viz.py:577 +#: superset/viz.py:593 #, python-format msgid "Columns missing in datasource: %(invalid_columns)s" msgstr "데이터 소스의 컬럼이 없습니다 : %(invalid_columns)s" @@ -4066,11 +4130,6 @@ msgstr "" msgid "Columns to show" msgstr "컬럼 보기" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:85 -#, fuzzy -msgid "Combine Metrics" -msgstr "메트릭" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:250 #, fuzzy msgid "Combine metrics" @@ -4129,6 +4188,7 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:35 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:35 @@ -4176,6 +4236,11 @@ msgstr "" msgid "Condition" msgstr "활동" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 +#, fuzzy +msgid "Conditional Formatting" +msgstr "주석" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:385 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:504 #, fuzzy @@ -4231,15 +4296,15 @@ msgstr "" msgid "Confirm overwrite" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:180 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:222 msgid "Confirm save" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1059 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1097 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1656 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1695 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1857 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1152 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1712 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 msgid "Connect" msgstr "" @@ -4251,9 +4316,9 @@ msgstr "" msgid "Connect Google Sheets as tables to this database" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1660 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1700 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1861 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1716 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1918 #, fuzzy msgid "Connect a database" msgstr "데이터베이스 선택" @@ -4263,24 +4328,24 @@ msgstr "데이터베이스 선택" msgid "Connect database" msgstr "데이터베이스 선택" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1768 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 msgid "Connect this database using the dynamic form instead" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1950 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2007 msgid "Connect this database with a SQLAlchemy URI string instead" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:225 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 msgid "Connection" msgstr "" #: superset/databases/commands/exceptions.py:107 -#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1430 +#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1471 msgid "Connection failed, please check your connection settings" msgstr "연결하는데 실패했습니다. 커넥션 " -#: superset-frontend/src/views/CRUD/hooks.ts:697 +#: superset-frontend/src/views/CRUD/hooks.ts:701 msgid "Connection looks good!" msgstr "" @@ -4305,7 +4370,7 @@ msgstr "" msgid "Contribution" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:42 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 #, fuzzy msgid "Contribution Mode" msgstr "주석 레이어" @@ -4359,8 +4424,8 @@ msgstr "" msgid "Copy message" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:683 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1469 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:679 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1461 #: superset-frontend/src/SqlLab/reducers/sqlLab.js:107 #, python-format msgid "Copy of %s" @@ -4371,7 +4436,7 @@ msgid "Copy partition query to clipboard" msgstr "" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:329 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:468 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:340 #, fuzzy msgid "Copy permalink to clipboard" @@ -4397,7 +4462,7 @@ msgstr "" msgid "Copy the name of the database you are trying to connect to." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:273 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:271 msgid "Copy to Clipboard" msgstr "" @@ -4417,7 +4482,12 @@ msgstr "" msgid "Cost estimate" msgstr "" -#: superset/views/utils.py:498 +#: superset/db_engine_specs/ocient.py:259 +#, python-format +msgid "Could not connect to database: \"%(database)s\"" +msgstr "" + +#: superset/views/utils.py:496 msgid "Could not determine datasource type" msgstr "" @@ -4426,7 +4496,7 @@ msgstr "" msgid "Could not fetch all saved charts" msgstr "" -#: superset/views/utils.py:514 +#: superset/views/utils.py:512 msgid "Could not find viz object" msgstr "" @@ -4434,7 +4504,7 @@ msgstr "" msgid "Could not load database driver" msgstr "데이터베이스 드라이버를 로드할 수 없습니다" -#: superset/views/core.py:1413 +#: superset/views/core.py:1454 #, python-format msgid "Could not load database driver: %(driver_name)s" msgstr "" @@ -4443,6 +4513,11 @@ msgstr "" msgid "Could not load database driver: {}" msgstr "" +#: superset/db_engine_specs/ocient.py:264 +#, python-format +msgid "Could not resolve hostname: \"%(host)s\"." +msgstr "" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 #, fuzzy msgid "Count" @@ -4486,12 +4561,12 @@ msgid "Country Field Type" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 -#: superset/viz.py:2044 +#: superset/viz.py:1969 msgid "Country Map" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:767 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:761 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:770 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:96 msgid "Create" msgstr "" @@ -4502,10 +4577,10 @@ msgid "Create Chart" msgstr "차트 보기" #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:331 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:321 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:332 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:356 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:327 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:338 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:362 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 #, fuzzy msgid "Create a dataset" @@ -4552,7 +4627,7 @@ msgstr "새 차트 생성" msgid "Create new filter set" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 msgid "Create or select schema..." msgstr "" @@ -4575,7 +4650,7 @@ msgstr "" #: superset-frontend/src/pages/CssTemplateList/index.tsx:273 #: superset-frontend/src/pages/DashboardList/index.tsx:358 #: superset-frontend/src/pages/DashboardList/index.tsx:545 -#: superset-frontend/src/pages/DatabaseList/index.tsx:365 +#: superset-frontend/src/pages/DatabaseList/index.tsx:376 #: superset-frontend/src/pages/Tags/index.tsx:128 #: superset-frontend/src/pages/Tags/index.tsx:183 msgid "Created by" @@ -4606,9 +4681,8 @@ msgstr "차트 불러오기는 알 수 없는 이유로 실패했습니다" msgid "Creating a data source and creating a new tab" msgstr "" -#: superset/connectors/sqla/views.py:366 superset/views/chart/mixin.py:77 -#: superset/views/dashboard/mixin.py:84 superset/views/dashboard/views.py:185 -#: superset/views/database/mixins.py:189 +#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 +#: superset/views/dashboard/views.py:185 superset/views/database/mixins.py:189 msgid "Creator" msgstr "생성자" @@ -4617,14 +4691,25 @@ msgstr "생성자" msgid "Crimson" msgstr "활동" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:122 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:152 msgid "Cross-filter will be applied to all of the charts that use this dataset." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:134 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:164 msgid "Cross-filtering is not enabled for this dashboard." msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 +msgid "Cross-filtering is not enabled in this dashboard" +msgstr "" + +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:414 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 +#, fuzzy +msgid "Cross-filtering scoping" +msgstr "필터" + #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 #, fuzzy msgid "Cross-filters" @@ -4651,7 +4736,7 @@ msgstr "커스텀 플러그인" msgid "Custom Plugins" msgstr "커스텀 플러그인" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:385 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:391 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 @@ -4662,8 +4747,7 @@ msgstr "" msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" msgstr "" -#: superset/connectors/sqla/utils.py:194 superset/errors.py:145 -#: superset/models/helpers.py:129 superset/models/helpers.py:864 +#: superset/errors.py:145 superset/models/helpers.py:138 msgid "Custom SQL fields cannot contain sub-queries." msgstr "" @@ -4688,7 +4772,7 @@ msgstr "컬럼 목록" msgid "Cyclic dependency detected" msgstr "" -#: superset/connectors/sqla/views.py:256 +#: superset/connectors/sqla/views.py:255 msgid "D3 Format" msgstr "D3 포멧" @@ -4698,7 +4782,7 @@ msgstr "D3 포멧" msgid "D3 format" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:22 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:146 msgid "D3 format syntax: https://github.com/d3/d3-format" msgstr "" @@ -4714,7 +4798,7 @@ msgstr "" msgid "D3 time format for datetime columns" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:53 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 msgid "D3 time format syntax: https://github.com/d3/d3-time-format" msgstr "" @@ -4737,7 +4821,7 @@ msgstr "" msgid "DELETE" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:332 +#: superset-frontend/src/pages/DatabaseList/index.tsx:343 msgid "DML" msgstr "" @@ -4767,12 +4851,12 @@ msgstr "" msgid "Dashboard" msgstr "대시보드" -#: superset-frontend/src/explore/actions/saveModalActions.js:135 +#: superset-frontend/src/explore/actions/saveModalActions.js:129 #, python-format msgid "Dashboard [%s] just got created and chart [%s] was added to it" msgstr "" -#: superset/views/core.py:1122 +#: superset/views/core.py:1144 msgid "Dashboard [{}] just got created and chart [{}] was added to it" msgstr "" @@ -4839,7 +4923,7 @@ msgstr "대시보드" #: superset-frontend/src/pages/Home/index.tsx:385 #: superset-frontend/src/profile/components/CreatedContent.tsx:101 #: superset-frontend/src/profile/components/Favorites.tsx:99 -#: superset/initialization/__init__.py:249 superset/views/chart/mixin.py:78 +#: superset/initialization/__init__.py:251 superset/views/chart/mixin.py:78 #: superset/views/dashboard/mixin.py:24 msgid "Dashboards" msgstr "대시보드" @@ -4865,7 +4949,7 @@ msgstr "대시보드" #: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:708 #: superset-frontend/src/features/home/RightMenu.tsx:169 -#: superset/initialization/__init__.py:244 +#: superset/initialization/__init__.py:246 msgid "Data" msgstr "데이터베이스" @@ -4874,7 +4958,7 @@ msgstr "데이터베이스" msgid "Data Table" msgstr "테이블 수정" -#: superset/datasets/commands/exceptions.py:197 +#: superset/datasets/commands/exceptions.py:214 msgid "Data URI is not allowed." msgstr "" @@ -4888,14 +4972,14 @@ msgstr "" msgid "Data Zoom" msgstr "" -#: superset/sqllab/commands/results.py:116 superset/views/core.py:2195 +#: superset/sqllab/commands/results.py:116 superset/views/core.py:2231 msgid "" "Data could not be deserialized from the results backend. The storage " "format might have changed, rendering the old data stake. You need to re-" "run the original query." msgstr "" -#: superset/sqllab/commands/results.py:75 superset/views/core.py:2148 +#: superset/sqllab/commands/results.py:75 superset/views/core.py:2184 msgid "" "Data could not be retrieved from the results backend. You need to re-run " "the original query." @@ -4909,7 +4993,7 @@ msgstr "" msgid "Data preview" msgstr "데이터 미리보기" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:283 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:278 msgid "Data refreshed" msgstr "" @@ -4928,51 +5012,51 @@ msgstr "" msgid "DataFrame must include temporal column" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:275 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:274 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -#: superset-frontend/src/pages/DatabaseList/index.tsx:267 -#: superset-frontend/src/pages/DatabaseList/index.tsx:296 -#: superset-frontend/src/pages/DatasetList/index.tsx:349 -#: superset-frontend/src/pages/DatasetList/index.tsx:520 +#: superset-frontend/src/pages/DatabaseList/index.tsx:278 +#: superset-frontend/src/pages/DatabaseList/index.tsx:307 +#: superset-frontend/src/pages/DatasetList/index.tsx:360 +#: superset-frontend/src/pages/DatasetList/index.tsx:531 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:241 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:349 #: superset-frontend/src/pages/SavedQueryList/index.tsx:287 #: superset-frontend/src/pages/SavedQueryList/index.tsx:448 -#: superset/connectors/sqla/views.py:479 superset/connectors/sqla/views.py:480 +#: superset/connectors/sqla/views.py:386 superset/connectors/sqla/views.py:387 #: superset/templates/superset/import_dashboards.html:53 -#: superset/views/database/forms.py:137 superset/views/database/forms.py:305 -#: superset/views/database/forms.py:436 superset/views/database/mixins.py:188 +#: superset/views/database/forms.py:137 superset/views/database/forms.py:315 +#: superset/views/database/forms.py:446 superset/views/database/mixins.py:188 #: superset/views/sql_lab/views.py:83 msgid "Database" msgstr "데이터베이스" -#: superset/views/database/views.py:478 +#: superset/views/database/views.py:481 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " "for columnar uploads. Please contact your Superset Admin." msgstr "" -#: superset/views/database/views.py:179 +#: superset/views/database/views.py:180 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " "for csv uploads. Please contact your Superset Admin." msgstr "" -#: superset/views/database/views.py:318 +#: superset/views/database/views.py:321 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " "for excel uploads. Please contact your Superset Admin." msgstr "" -#: superset/initialization/__init__.py:241 +#: superset/initialization/__init__.py:243 #, fuzzy msgid "Database Connections" msgstr "연결 테스트" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1467 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1522 #, fuzzy msgid "Database Creation Error" msgstr "데이터베이스" @@ -4982,9 +5066,9 @@ msgid "Database URL" msgstr "데이터베이스 URL" #: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:827 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:849 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1150 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:882 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:904 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1205 #, fuzzy msgid "Database connected" msgstr "데이터베이스를 생성할 수 없습니다." @@ -5011,7 +5095,7 @@ msgstr "" msgid "Database does not exist" msgstr "데이터베이스가 존재하지 않습니다" -#: superset/connectors/sqla/models.py:1793 superset/models/helpers.py:1966 +#: superset/models/helpers.py:2063 msgid "Database does not support subqueries" msgstr "" @@ -5021,7 +5105,7 @@ msgid "" "documentation page for installation instructions: " msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:429 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 msgid "Database error" msgstr "데이터베이스" @@ -5035,8 +5119,8 @@ msgid "Database is required for alerts" msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:113 -#: superset/db_engine_specs/base.py:1845 -#: superset/db_engine_specs/clickhouse.py:209 +#: superset/db_engine_specs/base.py:1880 +#: superset/db_engine_specs/clickhouse.py:212 msgid "Database name" msgstr "데이터소스 명" @@ -5048,7 +5132,7 @@ msgstr "" msgid "Database not found." msgstr "데이터베이스를 찾을 수 없습니다." -#: superset/views/core.py:1179 +#: superset/views/core.py:1201 #, fuzzy, python-format msgid "Database not found: %(id)s" msgstr "데이터베이스를 찾을 수 없습니다." @@ -5062,26 +5146,26 @@ msgstr "" msgid "Database passwords" msgstr "데이터베이스" -#: superset/db_engine_specs/base.py:1842 -#: superset/db_engine_specs/clickhouse.py:206 +#: superset/db_engine_specs/base.py:1876 +#: superset/db_engine_specs/clickhouse.py:208 #: superset/db_engine_specs/databricks.py:52 #, fuzzy msgid "Database port" msgstr "데이터베이스" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:811 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:853 #, fuzzy msgid "Database settings updated" msgstr "데이터베이스를 업데이트할 수 없습니다." -#: superset-frontend/src/pages/DatabaseList/index.tsx:258 +#: superset-frontend/src/pages/DatabaseList/index.tsx:269 #: superset-frontend/src/profile/components/Security.tsx:47 #: superset/views/database/mixins.py:33 msgid "Databases" msgstr "데이터베이스" -#: superset/views/database/forms.py:219 superset/views/database/forms.py:380 -#: superset/views/database/forms.py:471 +#: superset/views/database/forms.py:229 superset/views/database/forms.py:390 +#: superset/views/database/forms.py:481 msgid "Dataframe Index" msgstr "" @@ -5093,7 +5177,7 @@ msgstr "" #: superset-frontend/src/pages/ChartCreation/index.tsx:390 #: superset-frontend/src/pages/ChartList/index.tsx:391 #: superset-frontend/src/pages/ChartList/index.tsx:678 -#: superset-frontend/src/pages/DatasetList/index.tsx:606 +#: superset-frontend/src/pages/DatasetList/index.tsx:617 msgid "Dataset" msgstr "데이터베이스" @@ -5102,7 +5186,7 @@ msgstr "데이터베이스" msgid "Dataset %(name)s already exists" msgstr "데이터셋 %(name)s 은 이미 존재합니다" -#: superset-frontend/src/explore/components/SaveModal.tsx:331 +#: superset-frontend/src/explore/components/SaveModal.tsx:366 #, fuzzy msgid "Dataset Name" msgstr "데이터소스 명" @@ -5115,29 +5199,29 @@ msgstr "" msgid "Dataset column not found." msgstr "" -#: superset/datasets/commands/exceptions.py:157 +#: superset/datasets/commands/exceptions.py:174 msgid "Dataset could not be created." msgstr "" -#: superset/datasets/commands/exceptions.py:165 +#: superset/datasets/commands/exceptions.py:182 msgid "Dataset could not be deleted." msgstr "" -#: superset/datasets/commands/exceptions.py:193 +#: superset/datasets/commands/exceptions.py:210 #, fuzzy msgid "Dataset could not be duplicated." msgstr "데이터베이스를 업데이트할 수 없습니다." -#: superset/datasets/commands/exceptions.py:161 -#: superset/datasets/commands/exceptions.py:173 +#: superset/datasets/commands/exceptions.py:178 +#: superset/datasets/commands/exceptions.py:190 msgid "Dataset could not be updated." msgstr "" -#: superset/datasets/commands/exceptions.py:149 +#: superset/datasets/commands/exceptions.py:166 msgid "Dataset does not exist" msgstr "데이터소스가 존재하지 않습니다" -#: superset-frontend/src/pages/DatasetList/index.tsx:185 +#: superset-frontend/src/pages/DatasetList/index.tsx:196 #, fuzzy msgid "Dataset imported" msgstr "데이터베이스" @@ -5160,22 +5244,22 @@ msgstr "" msgid "Dataset name" msgstr "데이터소스 명" -#: superset/datasets/commands/exceptions.py:153 +#: superset/datasets/commands/exceptions.py:170 msgid "Dataset parameters are invalid." msgstr "" -#: superset/dashboards/api.py:430 +#: superset/dashboards/api.py:415 #, python-format msgid "Dataset schema is invalid, caused by: %(error)s" msgstr "" -#: superset/datasets/commands/exceptions.py:169 +#: superset/datasets/commands/exceptions.py:186 msgid "Dataset(s) could not be bulk deleted." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:589 +#: superset-frontend/src/pages/DatasetList/index.tsx:600 #: superset-frontend/src/profile/components/Security.tsx:61 -#: superset/initialization/__init__.py:265 +#: superset/initialization/__init__.py:267 msgid "Datasets" msgstr "데이터베이스" @@ -5199,12 +5283,12 @@ msgstr "데이터소스" msgid "Datasource & Chart Type" msgstr "데이터소스 명" -#: superset/commands/exceptions.py:131 +#: superset/commands/exceptions.py:135 #, fuzzy msgid "Datasource does not exist" msgstr "데이터소스가 존재하지 않습니다" -#: superset/commands/exceptions.py:123 +#: superset/commands/exceptions.py:127 msgid "Datasource type is invalid" msgstr "" @@ -5221,8 +5305,7 @@ msgstr "" msgid "Date filter" msgstr "테이블 추가" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:71 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:151 #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:135 @@ -5244,11 +5327,11 @@ msgstr "D3 포멧" msgid "Date/Time" msgstr "시작 시간" -#: superset/connectors/sqla/views.py:163 +#: superset/connectors/sqla/views.py:162 msgid "Datetime Format" msgstr "" -#: superset/connectors/sqla/models.py:1237 superset/models/helpers.py:1427 +#: superset/models/helpers.py:1502 msgid "" "Datetime column not provided as part table configuration and is required " "by this type of chart" @@ -5258,7 +5341,7 @@ msgstr "" msgid "Datetime format" msgstr "" -#: superset/db_engine_specs/base.py:106 +#: superset/db_engine_specs/base.py:107 msgid "Day" msgstr "일" @@ -5271,7 +5354,7 @@ msgstr "" msgid "Days %s" msgstr "일" -#: superset/connectors/sqla/models.py:1936 superset/models/helpers.py:988 +#: superset/connectors/sqla/models.py:1222 superset/models/helpers.py:1024 msgid "Db engine did not return all queried columns" msgstr "" @@ -5283,47 +5366,56 @@ msgstr "" msgid "December" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:70 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:89 msgid "Decides which column to sort the base axis by." msgstr "" -#: superset/views/database/forms.py:194 superset/views/database/forms.py:373 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:160 +msgid "Decides which measure to sort the base axis by." +msgstr "" + +#: superset/views/database/forms.py:204 superset/views/database/forms.py:383 msgid "Decimal Character" msgstr "" -#: superset/viz.py:2743 +#: superset/viz.py:2700 msgid "Deck.gl - 3D Grid" msgstr "" -#: superset/viz.py:2859 +#: superset/viz.py:2825 msgid "Deck.gl - 3D HEX" msgstr "" -#: superset/viz.py:2899 +#: superset/viz.py:2890 msgid "Deck.gl - Arc" msgstr "" -#: superset/viz.py:2880 +#: superset/viz.py:2869 msgid "Deck.gl - GeoJSON" msgstr "" -#: superset/viz.py:2468 +#: superset/viz.py:2848 +#, fuzzy +msgid "Deck.gl - Heatmap" +msgstr "차트 추가" + +#: superset/viz.py:2406 msgid "Deck.gl - Multiple Layers" msgstr "" -#: superset/viz.py:2775 +#: superset/viz.py:2735 msgid "Deck.gl - Paths" msgstr "" -#: superset/viz.py:2826 +#: superset/viz.py:2789 msgid "Deck.gl - Polygon" msgstr "" -#: superset/viz.py:2662 +#: superset/viz.py:2612 msgid "Deck.gl - Scatter plot" msgstr "" -#: superset/viz.py:2714 +#: superset/viz.py:2668 msgid "Deck.gl - Screen Grid" msgstr "" @@ -5331,7 +5423,7 @@ msgstr "" msgid "Default" msgstr "" -#: superset/connectors/sqla/views.py:484 +#: superset/connectors/sqla/views.py:391 msgid "Default Endpoint" msgstr "" @@ -5461,11 +5553,13 @@ msgstr "" #: superset-frontend/src/pages/CssTemplateList/index.tsx:338 #: superset-frontend/src/pages/DashboardList/index.tsx:427 #: superset-frontend/src/pages/DashboardList/index.tsx:712 -#: superset-frontend/src/pages/DatasetList/index.tsx:418 -#: superset-frontend/src/pages/DatasetList/index.tsx:751 +#: superset-frontend/src/pages/DatasetList/index.tsx:429 +#: superset-frontend/src/pages/DatasetList/index.tsx:773 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:182 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:313 #: superset-frontend/src/pages/SavedQueryList/index.tsx:542 #: superset-frontend/src/pages/Tags/index.tsx:153 -#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:663 +#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:664 msgid "Delete" msgstr "삭제" @@ -5478,11 +5572,11 @@ msgstr "삭제" msgid "Delete Annotation?" msgstr "주석" -#: superset-frontend/src/pages/DatabaseList/index.tsx:529 +#: superset-frontend/src/pages/DatabaseList/index.tsx:551 msgid "Delete Database?" msgstr "데이터베이스 선택" -#: superset-frontend/src/pages/DatasetList/index.tsx:723 +#: superset-frontend/src/pages/DatasetList/index.tsx:745 msgid "Delete Dataset?" msgstr "" @@ -5504,7 +5598,7 @@ msgstr "CSS 템플릿" msgid "Delete Template?" msgstr "CSS 템플릿" -#: superset/views/base.py:663 +#: superset/views/base.py:664 msgid "Delete all Really?" msgstr "" @@ -5516,7 +5610,7 @@ msgstr "주석" msgid "Delete dashboard tab?" msgstr "대시보드" -#: superset-frontend/src/pages/DatabaseList/index.tsx:405 +#: superset-frontend/src/pages/DatabaseList/index.tsx:416 msgid "Delete database" msgstr "데이터베이스 선택" @@ -5538,6 +5632,11 @@ msgstr "템플릿 불러오기" msgid "Delete this container and save to remove this message." msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:108 +#, fuzzy +msgid "Deleted" +msgstr "삭제" + #: superset/annotation_layers/annotations/api.py:504 #, python-format msgid "Deleted %(num)d annotation" @@ -5550,7 +5649,7 @@ msgid "Deleted %(num)d annotation layer" msgid_plural "Deleted %(num)d annotation layers" msgstr[0] "" -#: superset/charts/api.py:524 +#: superset/charts/api.py:521 #, python-format msgid "Deleted %(num)d chart" msgid_plural "Deleted %(num)d charts" @@ -5562,13 +5661,13 @@ msgid "Deleted %(num)d css template" msgid_plural "Deleted %(num)d css templates" msgstr[0] "" -#: superset/dashboards/api.py:760 +#: superset/dashboards/api.py:745 #, python-format msgid "Deleted %(num)d dashboard" msgid_plural "Deleted %(num)d dashboards" msgstr[0] "" -#: superset/datasets/api.py:783 +#: superset/datasets/api.py:789 #, python-format msgid "Deleted %(num)d dataset" msgid_plural "Deleted %(num)d datasets" @@ -5580,19 +5679,30 @@ msgid "Deleted %(num)d report schedule" msgid_plural "Deleted %(num)d report schedules" msgstr[0] "" +#: superset/row_level_security/api.py:349 +#, fuzzy, python-format +msgid "Deleted %(num)d rules" +msgid_plural "Deleted %(num)d rules" +msgstr[0] "" + #: superset/queries/saved_queries/api.py:222 #, python-format msgid "Deleted %(num)d saved query" msgid_plural "Deleted %(num)d saved queries" msgstr[0] "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:94 +#, fuzzy, python-format +msgid "Deleted %s" +msgstr "삭제" + #: superset-frontend/src/features/home/SavedQueries.tsx:172 #: superset-frontend/src/pages/AlertReportList/index.tsx:183 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 #: superset-frontend/src/pages/AnnotationList/index.tsx:117 #: superset-frontend/src/pages/CssTemplateList/index.tsx:93 -#: superset-frontend/src/pages/DatabaseList/index.tsx:158 -#: superset-frontend/src/pages/DatasetList/index.tsx:653 +#: superset-frontend/src/pages/DatabaseList/index.tsx:169 +#: superset-frontend/src/pages/DatasetList/index.tsx:664 #: superset-frontend/src/pages/SavedQueryList/index.tsx:242 #: superset-frontend/src/reports/actions/reports.js:158 #: superset-frontend/src/views/CRUD/utils.tsx:272 @@ -5611,7 +5721,7 @@ msgstr "" msgid "Delimited long & lat single column" msgstr "" -#: superset/views/database/forms.py:150 +#: superset/views/database/forms.py:160 msgid "Delimiter" msgstr "구분자" @@ -5639,33 +5749,35 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:40 +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 #, fuzzy msgid "Deprecated" msgstr "생성자" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:83 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:114 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:96 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:127 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:55 #: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:157 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:156 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:265 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1206 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1210 -#: superset-frontend/src/components/ReportModal/index.tsx:294 +#: superset-frontend/src/components/ReportModal/index.tsx:293 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1158 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:465 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 #: superset-frontend/src/pages/AnnotationList/index.tsx:161 -#: superset/connectors/sqla/views.py:157 superset/connectors/sqla/views.py:251 -#: superset/connectors/sqla/views.py:362 superset/connectors/sqla/views.py:491 -#: superset/views/chart/mixin.py:80 superset/views/sql_lab/views.py:84 +#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:398 superset/views/chart/mixin.py:80 +#: superset/views/sql_lab/views.py:84 msgid "Description" msgstr "설명" @@ -5679,7 +5791,7 @@ msgstr "" msgid "Description Columns" msgstr "설명" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:50 msgid "Description text that shows up below your Big Number" msgstr "" @@ -5745,7 +5857,7 @@ msgstr "" msgid "Dimensions" msgstr "" -#: superset/viz.py:2005 +#: superset/viz.py:1928 msgid "Directed Force Layout" msgstr "" @@ -5755,11 +5867,11 @@ msgstr "" msgid "Directional" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:202 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 msgid "Disable SQL Lab data preview queries" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:205 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 msgid "" "Disable data preview when fetching table metadata in SQL Lab. Useful to " "avoid browser performance issues when using databases with very wide " @@ -5801,7 +5913,6 @@ msgstr "" msgid "Display configuration" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:87 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:252 msgid "" "Display metrics side by side within each column, as opposed to each " @@ -5812,15 +5923,11 @@ msgstr "" msgid "Display row level total" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:39 #, fuzzy msgid "Display settings" msgstr "Query 공유" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:78 -msgid "Display total row/column" -msgstr "" - #: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:35 msgid "" "Displays connections between entities in a graph structure. Useful for " @@ -5841,7 +5948,7 @@ msgstr "" msgid "Distribution" msgstr "설명" -#: superset/viz.py:1801 +#: superset/viz.py:1717 msgid "Distribution - Bar Chart" msgstr "" @@ -5860,7 +5967,7 @@ msgstr "" msgid "Documentation" msgstr "주석" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:40 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 msgid "Domain" msgstr "" @@ -5875,18 +5982,18 @@ msgstr "월" msgid "Dotted" msgstr "테이블 수정" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:480 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:482 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:292 msgid "Download" msgstr "" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:317 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:504 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:512 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:329 msgid "Download as image" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:264 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:262 msgid "Download to CSV" msgstr "" @@ -5938,20 +6045,20 @@ msgstr "" msgid "Draw split lines for minor y-axis ticks" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:181 -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:191 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 msgid "Drill by" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:172 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 msgid "Drill by is not available for this data point" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:170 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 msgid "Drill by is not yet supported for this chart type" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:154 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:420 #, fuzzy, python-format msgid "Drill by: %s" msgstr "대시보드 가져오기" @@ -5980,61 +6087,37 @@ msgstr "" msgid "Drill to detail: %s" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:206 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:184 #, fuzzy msgid "Drop a column here or click" msgid_plural "Drop columns here or click" msgstr[0] "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:335 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:330 #, fuzzy msgid "Drop a column/metric here or click" msgid_plural "Drop columns/metrics here or click" msgstr[0] "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:248 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 msgid "Drop a temporal column here or click" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:216 -#, fuzzy -msgid "Drop column here" -msgid_plural "Drop columns here" -msgstr[0] "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:340 -#, fuzzy -msgid "Drop column or metric here" -msgid_plural "Drop columns or metrics here" -msgstr[0] "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndSelectLabel.tsx:83 -msgid "Drop columns here" -msgstr "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:402 -msgid "Drop columns or metrics here" -msgstr "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:401 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:405 msgid "Drop columns/metrics here or click" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 -msgid "Drop temporal column here" -msgstr "" - #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:32 #, fuzzy msgid "Dual Line Chart" msgstr "새 차트 생성" #: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 -#: superset-frontend/src/pages/DatasetList/index.tsx:472 +#: superset-frontend/src/pages/DatasetList/index.tsx:483 msgid "Duplicate" msgstr "" -#: superset/views/datasource/views.py:122 +#: superset/views/datasource/views.py:124 #, python-format msgid "Duplicate column name(s): %(columns)s" msgstr "" @@ -6060,7 +6143,7 @@ msgstr "" msgid "Duration" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:239 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:249 msgid "" "Duration (in seconds) of the caching timeout for charts of this database." " A timeout of 0 indicates that the cache never expires, and -1 bypasses " @@ -6087,26 +6170,26 @@ msgid "" "undefined." msgstr "" -#: superset/connectors/sqla/views.py:462 +#: superset/connectors/sqla/views.py:369 msgid "" "Duration (in seconds) of the caching timeout for this table. A timeout of" " 0 indicates that the cache never expires. Note this defaults to the " "database timeout if undefined." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:261 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:271 msgid "" "Duration (in seconds) of the metadata caching timeout for schemas of this" " database. If left unset, the cache never expires." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:282 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:292 msgid "" "Duration (in seconds) of the metadata caching timeout for tables of this " "database. If left unset, the cache never expires. " msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:50 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" msgstr "" @@ -6114,7 +6197,7 @@ msgstr "" msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:49 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 #: superset-frontend/src/explore/controls.jsx:89 msgid "Duration in ms (66000 => 1m 6s)" msgstr "" @@ -6153,7 +6236,7 @@ msgstr "" msgid "ECharts" msgstr "차트" -#: superset/reports/notifications/email.py:130 +#: superset/reports/notifications/email.py:133 msgid "EMAIL_REPORTS_CTA" msgstr "" @@ -6163,12 +6246,12 @@ msgstr "" msgid "END (EXCLUSIVE)" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:171 +#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 #, fuzzy msgid "ERROR" msgstr "%s 에러" -#: superset-frontend/src/views/CRUD/hooks.ts:700 +#: superset-frontend/src/views/CRUD/hooks.ts:704 #, python-format msgid "ERROR: %s" msgstr "" @@ -6199,8 +6282,9 @@ msgstr "" #: superset-frontend/src/pages/AlertReportList/index.tsx:385 #: superset-frontend/src/pages/ChartList/index.tsx:553 #: superset-frontend/src/pages/DashboardList/index.tsx:461 -#: superset-frontend/src/pages/DatabaseList/index.tsx:431 -#: superset-frontend/src/pages/DatasetList/index.tsx:452 +#: superset-frontend/src/pages/DatabaseList/index.tsx:442 +#: superset-frontend/src/pages/DatasetList/index.tsx:463 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:200 msgid "Edit" msgstr "" @@ -6230,7 +6314,7 @@ msgstr "차트 수정" msgid "Edit Chart Properties" msgstr "대시보드 수정" -#: superset/connectors/sqla/views.py:75 +#: superset/connectors/sqla/views.py:74 msgid "Edit Column" msgstr "컬럼 수정" @@ -6242,7 +6326,7 @@ msgstr "대시보드 수정" msgid "Edit Database" msgstr "데이터베이스 편집" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:199 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:241 msgid "Edit Dataset " msgstr "차트 수정" @@ -6250,7 +6334,7 @@ msgstr "차트 수정" msgid "Edit Log" msgstr "로그 수정" -#: superset/connectors/sqla/views.py:210 +#: superset/connectors/sqla/views.py:209 msgid "Edit Metric" msgstr "메트릭 편집" @@ -6262,15 +6346,16 @@ msgstr "플러그인 수정" msgid "Edit Report" msgstr "" -#: superset/connectors/sqla/views.py:293 -msgid "Edit Row level security filter" -msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +#, fuzzy +msgid "Edit Rule" +msgstr "Query 검색" #: superset/views/sql_lab/views.py:55 msgid "Edit Saved Query" msgstr "저장된 Query 수정" -#: superset/connectors/sqla/views.py:387 +#: superset/connectors/sqla/views.py:294 msgid "Edit Table" msgstr "테이블 수정" @@ -6287,9 +6372,9 @@ msgstr "주석 레이어" msgid "Edit annotation layer properties" msgstr "주석 레이어" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:74 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:122 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:44 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:212 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:217 #: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:405 #, fuzzy msgid "Edit chart" @@ -6304,7 +6389,7 @@ msgstr "" msgid "Edit dashboard" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1700 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 msgid "Edit database" msgstr "차트 수정" @@ -6314,7 +6399,7 @@ msgstr "차트 수정" #: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:243 #: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:264 -#: superset-frontend/src/components/ReportModal/index.tsx:212 +#: superset-frontend/src/components/ReportModal/index.tsx:211 msgid "Edit email report" msgstr "" @@ -6339,7 +6424,7 @@ msgstr "템플릿 불러오기" msgid "Edit template parameters" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:717 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:718 #: superset-frontend/src/dashboard/components/DashboardGrid.jsx:242 #, fuzzy msgid "Edit the dashboard" @@ -6365,8 +6450,9 @@ msgstr "" msgid "Either the database is spelled incorrectly or does not exist." msgstr "" -#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:654 -#: superset/db_engine_specs/redshift.py:67 +#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:681 +#: superset/db_engine_specs/redshift.py:71 +#: superset/db_engine_specs/starrocks.py:122 #, python-format msgid "Either the username \"%(username)s\" or the password is incorrect." msgstr "" @@ -6437,12 +6523,12 @@ msgstr "연결 테스트" msgid "Empty column" msgstr "컬럼 추가" -#: superset/charts/data/api.py:363 +#: superset/charts/data/api.py:366 #, fuzzy msgid "Empty query result" msgstr "대시보드 가져오기" -#: superset/connectors/sqla/models.py:1243 superset/models/helpers.py:1433 +#: superset/models/helpers.py:1508 msgid "Empty query?" msgstr "" @@ -6455,11 +6541,11 @@ msgstr "" msgid "Enable 'Allow file uploads to database' in any database's settings" msgstr "" -#: superset/connectors/sqla/views.py:482 +#: superset/connectors/sqla/views.py:389 msgid "Enable Filter Select" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:139 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 msgid "Enable cross-filtering" msgstr "" @@ -6494,7 +6580,7 @@ msgstr "" msgid "Enable node dragging" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:170 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 msgid "Enable query cost estimation" msgstr "" @@ -6503,7 +6589,7 @@ msgstr "" msgid "Enable server side pagination of results (experimental feature)" msgstr "" -#: superset/viz.py:2567 +#: superset/viz.py:2514 msgid "" "Encountered invalid NULL spatial entry," " please consider filtering those " @@ -6551,18 +6637,18 @@ msgstr "" msgid "Engine \"%(engine)s\" cannot be configured through parameters." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:476 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:512 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:516 msgid "Engine Parameters" msgstr "" -#: superset/databases/schemas.py:298 +#: superset/databases/schemas.py:302 msgid "" "Engine spec \"InvalidEngine\" does not support being configured via " "individual parameters." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:366 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:376 msgid "Enter CA_BUNDLE" msgstr "" @@ -6571,7 +6657,7 @@ msgstr "" msgid "Enter Primary Credentials" msgstr "엑셀 업로드" -#: superset/views/database/forms.py:151 +#: superset/views/database/forms.py:161 msgid "Enter a delimiter for this data" msgstr "" @@ -6583,15 +6669,15 @@ msgstr "" msgid "Enter a new title for the tab" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:234 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:255 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:276 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:244 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:286 #, fuzzy msgid "Enter duration in seconds" msgstr "10초" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:265 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:367 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:369 msgid "Enter fullscreen" msgstr "" @@ -6618,7 +6704,7 @@ msgstr "" msgid "Equal to (=)" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:140 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:182 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:139 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:298 #: superset-frontend/src/explore/components/EmbedCodeContent.jsx:57 @@ -6628,22 +6714,22 @@ msgstr "" msgid "Error" msgstr "%s 에러" -#: superset/connectors/sqla/models.py:1650 superset/models/helpers.py:1843 +#: superset/models/helpers.py:1919 #, python-format msgid "Error in jinja expression in HAVING clause: %(msg)s" msgstr "" -#: superset/connectors/sqla/models.py:1145 +#: superset/connectors/sqla/models.py:1105 superset/models/helpers.py:835 #, python-format msgid "Error in jinja expression in RLS filters: %(msg)s" msgstr "" -#: superset/connectors/sqla/models.py:1633 superset/models/helpers.py:1831 +#: superset/models/helpers.py:1901 #, python-format msgid "Error in jinja expression in WHERE clause: %(msg)s" msgstr "" -#: superset/connectors/sqla/models.py:826 +#: superset/connectors/sqla/models.py:789 #, python-format msgid "Error in jinja expression in fetch values predicate: %(msg)s" msgstr "" @@ -6668,7 +6754,7 @@ msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였 msgid "Error while fetching data: %s" msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." -#: superset/connectors/sqla/models.py:953 superset/models/helpers.py:1029 +#: superset/connectors/sqla/models.py:914 superset/models/helpers.py:1072 #, python-format msgid "Error while rendering virtual dataset query: %(msg)s" msgstr "" @@ -6678,12 +6764,12 @@ msgstr "" msgid "Error: %(error)s" msgstr "" -#: superset/views/core.py:820 superset/views/core.py:1918 +#: superset/views/core.py:842 superset/views/core.py:1955 #, python-format msgid "Error: %(msg)s" msgstr "" -#: superset/views/core.py:817 +#: superset/views/core.py:839 msgid "Error: permalink state not found" msgstr "" @@ -6695,7 +6781,7 @@ msgstr "" msgid "Estimate selected query cost" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:621 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:615 msgid "Estimate the cost before running a query" msgstr "" @@ -6718,7 +6804,7 @@ msgstr "테이블 명" msgid "Event definition" msgstr "" -#: superset/viz.py:2933 +#: superset/viz.py:2927 msgid "Event flow" msgstr "" @@ -6766,18 +6852,18 @@ msgstr "" msgid "Examples" msgstr "" -#: superset/views/database/forms.py:278 +#: superset/views/database/forms.py:288 msgid "Excel File" msgstr "" -#: superset/views/database/views.py:424 +#: superset/views/database/views.py:427 #, python-format msgid "" "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" " database \"%(db_name)s\"" msgstr "" -#: superset/views/database/views.py:303 +#: superset/views/database/views.py:306 msgid "Excel to Database configuration" msgstr "" @@ -6785,6 +6871,10 @@ msgstr "" msgid "Exclude selected values" msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:405 +msgid "Excluded roles" +msgstr "" + #: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 #, fuzzy msgid "Executed SQL" @@ -6802,17 +6892,17 @@ msgstr "" msgid "Execution log" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:411 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:419 #, fuzzy msgid "Existing dataset" msgstr "차트 수정" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:264 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:366 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:368 msgid "Exit fullscreen" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 msgid "Expand" msgstr "" @@ -6824,11 +6914,11 @@ msgstr "" msgid "Expand data panel" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:209 +#: superset-frontend/src/components/Table/index.tsx:213 msgid "Expand row" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:197 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 #, fuzzy msgid "Expand table preview" msgstr "데이터 미리보기" @@ -6846,6 +6936,7 @@ msgid "" msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:38 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:37 @@ -6860,11 +6951,11 @@ msgid "Experimental" msgstr "" #: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 -#: superset/views/core.py:987 +#: superset/views/core.py:1009 msgid "Explore" msgstr "" -#: superset/views/core.py:985 +#: superset/views/core.py:1007 #, python-format msgid "Explore - %(table)s" msgstr "" @@ -6880,9 +6971,9 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:854 #: superset-frontend/src/pages/DashboardList/index.tsx:445 #: superset-frontend/src/pages/DashboardList/index.tsx:720 -#: superset-frontend/src/pages/DatabaseList/index.tsx:415 -#: superset-frontend/src/pages/DatasetList/index.tsx:434 -#: superset-frontend/src/pages/DatasetList/index.tsx:759 +#: superset-frontend/src/pages/DatabaseList/index.tsx:426 +#: superset-frontend/src/pages/DatasetList/index.tsx:445 +#: superset-frontend/src/pages/DatasetList/index.tsx:781 #: superset-frontend/src/pages/SavedQueryList/index.tsx:550 #: superset/views/dashboard/views.py:65 msgid "Export" @@ -6897,7 +6988,7 @@ msgstr "" msgid "Export query" msgstr "Query 공유" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:485 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:487 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:316 msgid "Export to .CSV" msgstr "" @@ -6907,19 +6998,20 @@ msgstr "" msgid "Export to .JSON" msgstr "대시보드 가져오기" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:335 msgid "Export to Excel" msgstr "" -#: superset/views/base.py:606 +#: superset/views/base.py:607 msgid "Export to YAML" msgstr "" -#: superset/views/base.py:606 +#: superset/views/base.py:607 msgid "Export to YAML?" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:496 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:498 msgid "Export to full .CSV" msgstr "" @@ -6931,12 +7023,12 @@ msgstr "" msgid "Export to pivoted .CSV" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:88 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 msgid "Expose database in SQL Lab" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:354 -#: superset-frontend/src/pages/DatabaseList/index.tsx:460 +#: superset-frontend/src/pages/DatabaseList/index.tsx:365 +#: superset-frontend/src/pages/DatabaseList/index.tsx:471 #: superset/views/database/mixins.py:183 msgid "Expose in SQL Lab" msgstr "" @@ -6945,12 +7037,12 @@ msgstr "" msgid "Expose this DB in SQL Lab" msgstr "" -#: superset/connectors/sqla/views.py:161 +#: superset/connectors/sqla/views.py:160 msgid "Expression" msgstr "표현식" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:908 -#: superset/connectors/sqla/views.py:257 superset/connectors/sqla/views.py:494 +#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:401 #: superset/views/database/mixins.py:193 msgid "Extra" msgstr "" @@ -7016,8 +7108,8 @@ msgstr "생성자" msgid "Factor to multiply the metric by" msgstr "" -#: superset/views/database/forms.py:167 superset/views/database/forms.py:324 -#: superset/views/database/forms.py:455 +#: superset/views/database/forms.py:177 superset/views/database/forms.py:334 +#: superset/views/database/forms.py:465 msgid "Fail" msgstr "실패" @@ -7028,16 +7120,16 @@ msgid "Failed" msgstr "실패" #: superset-frontend/src/SqlLab/actions/sqlLab.js:210 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:346 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:350 msgid "Failed at retrieving results" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:500 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:496 #, python-format msgid "Failed at stopping query. %s" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:343 +#: superset-frontend/src/components/ReportModal/index.tsx:342 msgid "Failed to create report" msgstr "" @@ -7046,23 +7138,37 @@ msgstr "" msgid "Failed to execute %(query)s" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:97 +msgid "Failed to generate chart edit URL" +msgstr "" + #: superset-frontend/src/pages/Chart/index.tsx:57 msgid "Failed to load chart data" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:402 #: superset-frontend/src/pages/Chart/index.tsx:69 msgid "Failed to load chart data." msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 +msgid "Failed to load dimensions for drill by" +msgstr "" + #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 msgid "Failed to retrieve advanced type" msgstr "" +#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +#, fuzzy +msgid "Failed to save cross-filter scoping" +msgstr "필터" + #: superset/errors.py:143 superset/sqllab/sql_json_executer.py:189 msgid "Failed to start remote query on a worker." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:342 +#: superset-frontend/src/components/ReportModal/index.tsx:341 msgid "Failed to update report" msgstr "" @@ -7086,15 +7192,15 @@ msgstr "" msgid "February" msgstr "" -#: superset/connectors/sqla/views.py:488 +#: superset/connectors/sqla/views.py:395 msgid "Fetch Values Predicate" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:538 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:531 msgid "Fetch data preview" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:352 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:354 #, python-format msgid "Fetched %s" msgstr "" @@ -7162,12 +7268,17 @@ msgid "Filter Settings" msgstr "Query 공유" #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:825 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:362 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:373 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:134 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:255 msgid "Filter Type" msgstr "" #: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:28 -msgid "Filter box" -msgstr "필터" +msgid "Filter box (deprecated)" +msgstr "" #: superset-frontend/src/dashboard/components/SliceAdder.jsx:351 #, fuzzy @@ -7186,7 +7297,7 @@ msgstr "" msgid "Filter has default value" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:197 +#: superset-frontend/src/components/Table/index.tsx:201 #, fuzzy msgid "Filter menu" msgstr "필터" @@ -7203,7 +7314,7 @@ msgstr "필터" msgid "Filter only displays values relevant to selections made in other filters." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:289 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:283 msgid "Filter results" msgstr "검색 결과" @@ -7241,7 +7352,7 @@ msgstr "" msgid "Filter value is required" msgstr "데이터소스" -#: superset/connectors/sqla/models.py:1549 superset/models/helpers.py:1754 +#: superset/models/helpers.py:1815 msgid "Filter value list cannot be empty" msgstr "" @@ -7249,7 +7360,7 @@ msgstr "" msgid "Filter your charts" msgstr "" -#: superset/connectors/sqla/views.py:159 +#: superset/connectors/sqla/views.py:158 msgid "Filterable" msgstr "" @@ -7257,7 +7368,7 @@ msgstr "" #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 #: superset-frontend/src/explore/controls.jsx:446 #: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:35 -#: superset/viz.py:2142 +#: superset/viz.py:2071 msgid "Filters" msgstr "필터" @@ -7283,7 +7394,7 @@ msgstr "" msgid "Filters out of scope (%d)" msgstr "" -#: superset/connectors/sqla/views.py:342 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:435 msgid "" "Filters with the same group key will be ORed together within the group, " "while different filter groups will be ANDed together. Undefined group " @@ -7295,9 +7406,9 @@ msgid "" " 'Europe')." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1077 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1125 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1857 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1132 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1180 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 msgid "Finish" msgstr "" @@ -7354,7 +7465,7 @@ msgstr "" msgid "Font size for the smallest value in the list" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:173 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 msgid "" "For Bigquery, Presto and Postgres, shows a button to compute cost before " "running a query." @@ -7370,7 +7481,7 @@ msgid "" "function, refer to the" msgstr "" -#: superset/connectors/sqla/views.py:336 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:408 msgid "" "For regular filters, these are the roles this filter will be applied to. " "For base filters, these are the roles that the filter DOES NOT apply to, " @@ -7381,27 +7492,27 @@ msgstr "" msgid "Force" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:141 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 msgid "" "Force all tables and views to be created in this schema when clicking " "CTAS or CVAS in SQL Lab." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:84 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 #, fuzzy msgid "Force date format" msgstr "D3 포멧" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:381 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 msgid "Force refresh" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:292 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:291 msgid "Force refresh schema list" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:317 +#: superset-frontend/src/components/TableSelector/index.tsx:307 msgid "Force refresh table list" msgstr "" @@ -7418,11 +7529,11 @@ msgstr "" msgid "Forest Green" msgstr "권한 부여" -#: superset/explore/commands/get.py:87 superset/views/core.py:834 +#: superset/explore/commands/get.py:87 superset/views/core.py:856 msgid "Form data not found in cache, reverting to chart metadata." msgstr "" -#: superset/explore/commands/get.py:95 superset/views/core.py:840 +#: superset/explore/commands/get.py:95 superset/views/core.py:862 msgid "Form data not found in cache, reverting to dataset metadata." msgstr "" @@ -7432,7 +7543,7 @@ msgstr "" msgid "Formattable" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:255 +#: superset-frontend/src/components/ReportModal/index.tsx:254 msgid "Formatted CSV attached in email" msgstr "" @@ -7488,7 +7599,7 @@ msgstr "" msgid "Friday" msgstr "" -#: superset/utils/date_parser.py:267 superset/viz.py:392 +#: superset/utils/date_parser.py:267 superset/viz.py:403 msgid "From date cannot be larger than to date" msgstr "시작 날짜가 끝 날짜보다 클 수 없습니다" @@ -7564,7 +7675,7 @@ msgstr "" msgid "Get the specify date for the holiday" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:713 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:714 msgid "Go to the edit mode to configure the dashboard and add charts" msgstr "" @@ -7618,20 +7729,22 @@ msgstr "" msgid "Group By filter plugin" msgstr "" -#: superset/viz.py:927 -msgid "Group By' and 'Columns' can't overlap" -msgstr "Group By' 와 'Columns' 겹칠 수 없습니다" - #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:84 msgid "Group By, Metrics or Percentage Metrics must have a value" msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:433 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:139 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:267 +msgid "Group Key" +msgstr "" + #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 msgid "Group by" msgstr "" -#: superset/connectors/sqla/views.py:158 +#: superset/connectors/sqla/views.py:157 msgid "Groupable" msgstr "" @@ -7659,12 +7772,12 @@ msgstr "생성자" msgid "Header" msgstr "" -#: superset/views/database/forms.py:244 superset/views/database/forms.py:331 +#: superset/views/database/forms.py:254 superset/views/database/forms.py:341 msgid "Header Row" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 -#: superset/viz.py:2249 +#: superset/viz.py:2183 msgid "Heatmap" msgstr "" @@ -7688,7 +7801,7 @@ msgstr "" msgid "Hide Line" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:394 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:396 #, fuzzy msgid "Hide chart description" msgstr "설명" @@ -7717,12 +7830,12 @@ msgid "Hierarchy" msgstr "검색" #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 -#: superset/viz.py:1743 +#: superset/viz.py:1656 msgid "Histogram" msgstr "" #: superset-frontend/src/pages/Home/index.tsx:333 -#: superset/initialization/__init__.py:233 +#: superset/initialization/__init__.py:235 msgid "Home" msgstr "" @@ -7731,7 +7844,7 @@ msgstr "" msgid "Horizon Chart" msgstr "차트 보기" -#: superset/viz.py:2310 +#: superset/viz.py:2246 msgid "Horizon Charts" msgstr "" @@ -7740,7 +7853,7 @@ msgstr "" msgid "Horizontal" msgstr "차트 보기" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:166 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 msgid "Horizontal (Top)" msgstr "" @@ -7752,12 +7865,12 @@ msgstr "" msgid "Host" msgstr "" -#: superset/db_engine_specs/base.py:1839 -#: superset/db_engine_specs/clickhouse.py:203 +#: superset/db_engine_specs/base.py:1872 +#: superset/db_engine_specs/clickhouse.py:204 msgid "Hostname or IP address" msgstr "" -#: superset/db_engine_specs/base.py:104 +#: superset/db_engine_specs/base.py:105 msgid "Hour" msgstr "시" @@ -7814,7 +7927,7 @@ msgstr "" msgid "Id of root node of the tree." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:391 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:401 msgid "" "If Presto or Trino, all the queries in SQL Lab are going to be executed " "as the currently logged on user who must have permission to run them. If " @@ -7832,7 +7945,7 @@ msgid "" "hive.server2.proxy.user property." msgstr "" -#: superset/views/database/forms.py:164 +#: superset/views/database/forms.py:174 #, fuzzy msgid "If Table Already Exists" msgstr "데이터셋 %(name)s 은 이미 존재합니다" @@ -7841,7 +7954,7 @@ msgstr "데이터셋 %(name)s 은 이미 존재합니다" msgid "If a metric is specified, sorting will be done based on the metric value" msgstr "" -#: superset/views/database/forms.py:238 +#: superset/views/database/forms.py:248 msgid "" "If duplicate columns are not overridden, they will be presented as \"X.1," " X.2 ...X.x\"" @@ -7851,7 +7964,7 @@ msgstr "" msgid "If selected, please set the schemas allowed for csv upload in Extra." msgstr "" -#: superset/views/database/forms.py:318 superset/views/database/forms.py:449 +#: superset/views/database/forms.py:328 superset/views/database/forms.py:459 msgid "" "If table exists do one of the following: Fail (do nothing), Replace (drop" " and recreate table) or Append (insert data)." @@ -7869,7 +7982,7 @@ msgstr "" msgid "Ignore time" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:252 +#: superset-frontend/src/components/ReportModal/index.tsx:251 msgid "Image (PNG) embedded in email" msgstr "" @@ -7877,7 +7990,7 @@ msgstr "" msgid "Image download failed, please refresh and try again." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:386 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:396 msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" msgstr "" @@ -7898,11 +8011,11 @@ msgstr "대시보드 가져오기" msgid "Import Dashboard(s)" msgstr "대시보드 가져오기" -#: superset/initialization/__init__.py:337 +#: superset/initialization/__init__.py:331 msgid "Import Dashboards" msgstr "대시보드 가져오기" -#: superset/connectors/sqla/views.py:386 +#: superset/connectors/sqla/views.py:293 msgid "Import a table definition" msgstr "" @@ -7928,16 +8041,16 @@ msgstr "대시보드 가져오기" msgid "Import database failed for an unknown reason" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1912 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1969 #, fuzzy msgid "Import database from file" msgstr "차트 수정" -#: superset/datasets/commands/exceptions.py:185 +#: superset/datasets/commands/exceptions.py:202 msgid "Import dataset failed for an unknown reason" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:620 +#: superset-frontend/src/pages/DatasetList/index.tsx:631 #, fuzzy msgid "Import datasets" msgstr "차트 수정" @@ -7967,7 +8080,7 @@ msgstr "활동" msgid "Include Series" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:295 +#: superset-frontend/src/components/ReportModal/index.tsx:294 msgid "Include a description that will be sent with your report" msgstr "" @@ -7986,7 +8099,7 @@ msgstr "종료 시간" msgid "Index" msgstr "분" -#: superset/views/database/forms.py:210 superset/views/database/forms.py:341 +#: superset/views/database/forms.py:220 superset/views/database/forms.py:351 msgid "Index Column" msgstr "" @@ -8025,11 +8138,23 @@ msgstr "필터" msgid "Intensity" msgstr "" -#: superset/views/database/forms.py:190 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:85 +msgid "Intensity Radius" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:86 +msgid "Intensity Radius is the radius at which the weight is distributed" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:69 +msgid "Intensity is the value multiplied by the weight to obtain the final weight" +msgstr "" + +#: superset/views/database/forms.py:200 msgid "Interpret Datetime Format Automatically" msgstr "" -#: superset/views/database/forms.py:191 +#: superset/views/database/forms.py:201 msgid "Interpret the datetime format automatically" msgstr "" @@ -8063,6 +8188,16 @@ msgstr "컬럼 목록" msgid "Intervals" msgstr "새로고침 간격" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:68 +msgid "Intesity" +msgstr "" + +#: superset/db_engine_specs/ocient.py:274 +msgid "" +"Invalid Connection String: Expecting String of the form " +"'ocient://user:pass@host:port/database'." +msgstr "" + #: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 msgid "Invalid JSON" msgstr "" @@ -8076,7 +8211,7 @@ msgstr "" msgid "Invalid certificate" msgstr "" -#: superset/views/core.py:1422 +#: superset/views/core.py:1463 msgid "" "Invalid connection string, a valid string usually follows:\n" "'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" @@ -8105,15 +8240,15 @@ msgstr "" msgid "Invalid cumulative operator: %(operator)s" msgstr "" -#: superset/connectors/sqla/views.py:181 superset/datasets/schemas.py:44 +#: superset/connectors/sqla/views.py:180 superset/datasets/schemas.py:44 msgid "Invalid date/timestamp format" msgstr "" -#: superset/viz.py:2160 +#: superset/viz.py:2091 msgid "Invalid filter configuration, please select a column" msgstr "" -#: superset/connectors/sqla/models.py:1623 superset/models/helpers.py:1820 +#: superset/models/helpers.py:1891 #, python-format msgid "Invalid filter operation type: %(op)s" msgstr "" @@ -8138,7 +8273,7 @@ msgstr "" msgid "Invalid longitude/latitude" msgstr "" -#: superset/utils/core.py:1364 +#: superset/utils/core.py:1373 #, python-format msgid "Invalid metric object: %(metric)s" msgstr "" @@ -8157,7 +8292,12 @@ msgstr "" msgid "Invalid permalink key" msgstr "" -#: superset/common/query_actions.py:228 +#: superset/db_engine_specs/ocient.py:292 +#, python-format +msgid "Invalid reference to column: \"%(column)s\"" +msgstr "" + +#: superset/common/query_actions.py:227 #, python-format msgid "Invalid result type: %(result_type)s" msgstr "" @@ -8167,7 +8307,7 @@ msgstr "" msgid "Invalid rolling_type: %(type)s" msgstr "" -#: superset/viz.py:2530 +#: superset/viz.py:2474 #, python-format msgid "Invalid spatial point encountered: %s" msgstr "" @@ -8177,7 +8317,7 @@ msgstr "" msgid "Invalid state." msgstr "" -#: superset/reports/commands/create.py:144 +#: superset/reports/commands/create.py:142 #, python-format msgid "Invalid tab ids: %s(tab_ids)" msgstr "" @@ -8186,7 +8326,7 @@ msgstr "" msgid "Inverse selection" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:205 +#: superset-frontend/src/components/Table/index.tsx:209 #, fuzzy msgid "Invert current page" msgstr "Superset 튜토리얼" @@ -8207,7 +8347,7 @@ msgstr "" msgid "Is false" msgstr "테이블 수정" -#: superset/views/base_api.py:143 +#: superset/views/base_api.py:149 msgid "Is favorite" msgstr "" @@ -8224,13 +8364,13 @@ msgstr "" msgid "Is null" msgstr "" -#: superset/views/base_api.py:171 +#: superset/views/base_api.py:177 msgid "Is tagged" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:362 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 -#: superset/connectors/sqla/views.py:162 +#: superset/connectors/sqla/views.py:161 msgid "Is temporal" msgstr "" @@ -8274,7 +8414,7 @@ msgstr "" msgid "JSON metadata is invalid!" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 msgid "" "JSON string containing additional connection configuration. This is used " "to provide connection information for systems like Hive, Presto and " @@ -8311,24 +8451,24 @@ msgstr "" msgid "Jinja templating" msgstr "템플릿 불러오기" -#: superset/views/database/forms.py:233 +#: superset/views/database/forms.py:243 msgid "Json list of the column names that should be read" msgstr "" -#: superset/views/database/forms.py:464 +#: superset/views/database/forms.py:474 msgid "" "Json list of the column names that should be read. If not None, only " "these columns will be read from the file." msgstr "" -#: superset/views/database/forms.py:203 +#: superset/views/database/forms.py:213 msgid "" "Json list of the values that should be treated as null. Examples: [\"\"] " "for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " "Hive database supports only a single value" msgstr "" -#: superset/views/database/forms.py:394 +#: superset/views/database/forms.py:404 msgid "" "Json list of the values that should be treated as null. Examples: [\"\"]," " [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " @@ -8377,8 +8517,8 @@ msgstr "필터" msgid "LIMIT" msgstr "구분자" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:80 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:109 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:93 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:122 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:251 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:255 @@ -8459,7 +8599,7 @@ msgstr "Query 공유" msgid "Last" msgstr "" -#: superset/connectors/sqla/views.py:481 superset/views/database/mixins.py:190 +#: superset/connectors/sqla/views.py:388 superset/views/database/mixins.py:190 msgid "Last Changed" msgstr "" @@ -8486,7 +8626,7 @@ msgstr "" #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:177 #: superset-frontend/src/pages/ChartList/index.tsx:445 #: superset-frontend/src/pages/CssTemplateList/index.tsx:158 -#: superset-frontend/src/pages/DatabaseList/index.tsx:380 +#: superset-frontend/src/pages/DatabaseList/index.tsx:391 msgid "Last modified" msgstr "마지막 수정" @@ -8544,7 +8684,7 @@ msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:28 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:90 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:371 #, fuzzy msgid "Left" @@ -8577,7 +8717,7 @@ msgstr "" msgid "Left to Right" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:144 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 #, fuzzy msgid "Left value" msgstr "테이블 명" @@ -8591,7 +8731,6 @@ msgstr "테이블 명" #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:33 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 #: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 #: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 @@ -8607,15 +8746,16 @@ msgstr "테이블 명" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:35 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 #: superset-frontend/src/visualizations/TimeTable/index.ts:35 msgid "Legacy" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:154 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:289 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:115 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:99 msgid "Legend" msgstr "" @@ -8624,7 +8764,7 @@ msgstr "" msgid "Legend Format" msgstr "D3 포멧" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:95 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:92 #, fuzzy msgid "Legend Orientation" msgstr "주석" @@ -8633,7 +8773,7 @@ msgstr "주석" msgid "Legend Position" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:72 msgid "Legend type" msgstr "" @@ -8775,7 +8915,7 @@ msgid "Lines encoding" msgstr "" #: superset-frontend/src/pages/SavedQueryList/index.tsx:226 -#: superset-frontend/src/views/CRUD/hooks.ts:673 +#: superset-frontend/src/views/CRUD/hooks.ts:677 msgid "Link Copied!" msgstr "복사됨!" @@ -8804,7 +8944,7 @@ msgstr "" msgid "List of values to mark with triangles" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:187 +#: superset-frontend/src/components/TableSelector/index.tsx:184 #, fuzzy msgid "List updated" msgstr "분기" @@ -8835,8 +8975,8 @@ msgid "Loading" msgstr "CSV 업로드" #: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:495 -#: superset-frontend/src/components/Select/Select.tsx:470 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:496 +#: superset-frontend/src/components/Select/Select.tsx:477 #: superset-frontend/src/components/Select/utils.tsx:152 #: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 #: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 @@ -8865,13 +9005,13 @@ msgstr "" msgid "Logarithmic scale on primary y-axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:432 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:449 msgid "Logarithmic scale on secondary y-axis" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:396 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:420 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:429 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:437 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:446 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:222 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:225 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:210 @@ -8940,27 +9080,27 @@ msgstr "" msgid "MON" msgstr "" -#: superset/connectors/sqla/views.py:490 +#: superset/connectors/sqla/views.py:397 msgid "Main Datetime Column" msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:283 +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:292 msgid "" "Make sure that the controls are configured properly and the datasource " "contains data for the selected time range" msgstr "" -#: superset/views/core.py:1717 +#: superset/views/core.py:1752 msgid "" "Malformed request. slice_id or table_name and db_name arguments are " "expected" msgstr "" -#: superset/initialization/__init__.py:277 -#: superset/initialization/__init__.py:289 -#: superset/initialization/__init__.py:341 -#: superset/initialization/__init__.py:412 -#: superset/initialization/__init__.py:425 +#: superset/initialization/__init__.py:279 +#: superset/initialization/__init__.py:291 +#: superset/initialization/__init__.py:335 +#: superset/initialization/__init__.py:406 +#: superset/initialization/__init__.py:419 msgid "Manage" msgstr "관리" @@ -8980,7 +9120,7 @@ msgstr "데이터베이스 선택" msgid "Mandatory" msgstr "" -#: superset/views/database/forms.py:350 +#: superset/views/database/forms.py:360 msgid "Mangle Duplicate Columns" msgstr "" @@ -8999,6 +9139,8 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:67 @@ -9022,7 +9164,7 @@ msgstr "" msgid "MapBox" msgstr "" -#: superset/viz.py:2322 +#: superset/viz.py:2258 msgid "Mapbox" msgstr "" @@ -9030,11 +9172,11 @@ msgstr "" msgid "March" msgstr "검색" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:50 msgid "Margin" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:348 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:354 msgid "Mark a column as temporal in \"Edit datasource\" modal" msgstr "" @@ -9114,7 +9256,7 @@ msgid "" "this insures that the circle respects this maximum radius." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:232 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 #, fuzzy msgid "Maximum value" msgstr "테이블 명" @@ -9167,7 +9309,7 @@ msgstr "" msgid "Menu actions trigger" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:237 +#: superset-frontend/src/components/ReportModal/index.tsx:236 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 msgid "Message content" msgstr "" @@ -9176,8 +9318,8 @@ msgstr "" msgid "Metadata" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:450 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:454 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:486 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:490 msgid "Metadata Parameters" msgstr "" @@ -9202,13 +9344,12 @@ msgstr "" #: superset-frontend/src/explore/controls.jsx:167 #: superset-frontend/src/explore/controls.jsx:168 #: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 -#: superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:249 msgid "Metric" msgstr "메트릭" -#: superset/connectors/sqla/models.py:1264 -#: superset/connectors/sqla/models.py:1847 superset/models/helpers.py:1192 -#: superset/models/helpers.py:1448 +#: superset/connectors/sqla/models.py:1133 superset/models/helpers.py:1236 +#: superset/models/helpers.py:1529 #, python-format msgid "Metric '%(metric)s' does not exist" msgstr "메트릭 '%(metric)s' 이 존재하지 않습니다." @@ -9243,7 +9384,7 @@ msgstr "" msgid "Metric for node values" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:106 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:119 #, fuzzy msgid "Metric name" msgstr "Query 검색" @@ -9269,6 +9410,7 @@ msgstr "" msgid "Metric to sort the results by" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:139 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:78 msgid "Metric used as a weight for the grid's coloring" msgstr "" @@ -9307,7 +9449,7 @@ msgstr "" #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 #: superset-frontend/src/explore/controls.jsx:152 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 -#: superset/connectors/sqla/views.py:207 +#: superset/connectors/sqla/views.py:206 msgid "Metrics" msgstr "메트릭" @@ -9391,11 +9533,11 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:85 #: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:152 msgid "Minimum threshold in percentage points for showing labels." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:231 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:69 #, fuzzy msgid "Minimum value" msgstr "테이블 명" @@ -9418,7 +9560,7 @@ msgstr "" msgid "Minor Split Line" msgstr "" -#: superset/db_engine_specs/base.py:99 +#: superset/db_engine_specs/base.py:100 msgid "Minute" msgstr "분" @@ -9450,12 +9592,13 @@ msgstr "" #: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:278 #: superset-frontend/src/pages/AlertReportList/index.tsx:335 #: superset-frontend/src/pages/DashboardList/index.tsx:347 -#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:375 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:152 #: superset-frontend/src/pages/SavedQueryList/index.tsx:369 #: superset-frontend/src/pages/Tags/index.tsx:118 -#: superset/connectors/sqla/views.py:367 superset/connectors/sqla/views.py:495 -#: superset/views/dashboard/mixin.py:85 superset/views/dashboard/views.py:186 -#: superset/views/database/mixins.py:199 superset/views/sql_lab/views.py:85 +#: superset/connectors/sqla/views.py:402 superset/views/dashboard/mixin.py:85 +#: superset/views/dashboard/views.py:186 superset/views/database/mixins.py:199 +#: superset/views/sql_lab/views.py:85 msgid "Modified" msgstr "수정됨" @@ -9470,7 +9613,7 @@ msgstr "마지막 수정" #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 #: superset-frontend/src/pages/ChartList/index.tsx:431 #: superset-frontend/src/pages/DashboardList/index.tsx:326 -#: superset-frontend/src/pages/DatasetList/index.tsx:374 +#: superset-frontend/src/pages/DatasetList/index.tsx:385 msgid "Modified by" msgstr "수정됨" @@ -9483,7 +9626,7 @@ msgstr "" msgid "Monday" msgstr "" -#: superset/db_engine_specs/base.py:108 +#: superset/db_engine_specs/base.py:109 msgid "Month" msgstr "달" @@ -9550,7 +9693,7 @@ msgstr "" msgid "Multiple Line Charts" msgstr "새 차트 생성" -#: superset/views/database/views.py:465 +#: superset/views/database/views.py:468 msgid "" "Multiple file extensions are not allowed for columnar uploads. Please " "make sure all files are of the same extension." @@ -9583,11 +9726,11 @@ msgstr "" msgid "Must choose either a chart or a dashboard" msgstr "" -#: superset/viz.py:2346 +#: superset/viz.py:2283 msgid "Must have a [Group By] column to have 'count' as the [Label]" msgstr "" -#: superset/viz.py:1752 +#: superset/viz.py:1666 msgid "Must have at least one numeric column specified" msgstr "" @@ -9595,7 +9738,7 @@ msgstr "" msgid "Must provide credentials for the SSH Tunnel" msgstr "" -#: superset/connectors/sqla/models.py:1582 superset/models/helpers.py:1780 +#: superset/models/helpers.py:1848 msgid "Must specify a value for filters with comparison operators" msgstr "" @@ -9636,19 +9779,21 @@ msgid "NUMERIC" msgstr "메트릭" #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:149 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:782 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:212 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:148 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:789 #: superset-frontend/src/pages/AlertReportList/index.tsx:272 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 #: superset-frontend/src/pages/CssTemplateList/index.tsx:131 -#: superset-frontend/src/pages/DatasetList/index.tsx:334 +#: superset-frontend/src/pages/DatasetList/index.tsx:345 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:130 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:248 #: superset-frontend/src/pages/SavedQueryList/index.tsx:283 #: superset-frontend/src/pages/Tags/index.tsx:109 -#: superset/connectors/sqla/views.py:361 superset/views/chart/mixin.py:85 +#: superset/views/chart/mixin.py:85 msgid "Name" msgstr "이름" @@ -9661,11 +9806,11 @@ msgstr "" msgid "Name must be unique" msgstr "" -#: superset/views/database/forms.py:406 +#: superset/views/database/forms.py:416 msgid "Name of table to be created from columnar data." msgstr "" -#: superset/views/database/forms.py:270 +#: superset/views/database/forms.py:280 msgid "Name of table to be created from excel data." msgstr "" @@ -9686,7 +9831,7 @@ msgstr "컬럼 수정" msgid "Name of the source nodes" msgstr "" -#: superset/connectors/sqla/views.py:428 +#: superset/connectors/sqla/views.py:335 msgid "Name of the table that exists in the source database" msgstr "" @@ -9745,17 +9890,17 @@ msgstr "" msgid "New header" msgstr "차트 이동" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:329 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:331 msgid "New tab" msgstr "탭 닫기" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:268 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:310 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:278 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:320 msgid "New tab (Ctrl + q)" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:269 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:311 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:279 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:321 msgid "New tab (Ctrl + t)" msgstr "" @@ -9777,9 +9922,9 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:708 #: superset-frontend/src/pages/DashboardList/index.tsx:507 #: superset-frontend/src/pages/DashboardList/index.tsx:589 -#: superset-frontend/src/pages/DatabaseList/index.tsx:468 -#: superset-frontend/src/pages/DatabaseList/index.tsx:488 -#: superset-frontend/src/pages/DatasetList/index.tsx:573 +#: superset-frontend/src/pages/DatabaseList/index.tsx:479 +#: superset-frontend/src/pages/DatabaseList/index.tsx:499 +#: superset-frontend/src/pages/DatasetList/index.tsx:584 msgid "No" msgstr "" @@ -9802,6 +9947,11 @@ msgstr "" msgid "No Results" msgstr "결과" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:235 +#, fuzzy +msgid "No Rules yet" +msgstr "차트" + #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:116 #, fuzzy msgid "No annotation layers" @@ -9840,7 +9990,7 @@ msgstr "차트" msgid "No columns" msgstr "컬럼 추가" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:242 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 #, fuzzy msgid "No columns found" msgstr "컬럼 추가" @@ -9853,7 +10003,7 @@ msgstr "" msgid "No compatible datasets found" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 msgid "No compatible schema found" msgstr "" @@ -9866,14 +10016,14 @@ msgstr "" msgid "No dashboards yet" msgstr "대시보드" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:133 -#: superset-frontend/src/components/Table/index.tsx:203 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 +#: superset-frontend/src/components/Table/index.tsx:207 #: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:225 #: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 msgid "No data" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 msgid "No data after filtering or data is NULL for the latest time record" msgstr "" @@ -9894,10 +10044,6 @@ msgstr "" msgid "No description available." msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:174 -msgid "No dimensions available for drill by" -msgstr "" - #: superset-frontend/src/profile/components/Favorites.tsx:61 msgid "No favorite charts yet, go click on stars!" msgstr "" @@ -9917,7 +10063,7 @@ msgstr "테이블 추가" msgid "No filter is selected." msgstr "" -#: superset-frontend/src/components/Table/index.tsx:200 +#: superset-frontend/src/components/Table/index.tsx:204 #, fuzzy msgid "No filters" msgstr "테이블 추가" @@ -9958,7 +10104,7 @@ msgid "No results" msgstr "결과" #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:425 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:428 msgid "No results found" msgstr "" @@ -9966,7 +10112,7 @@ msgstr "" msgid "No results match your filter criteria" msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:280 +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:289 #: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 msgid "No results were returned for this query" msgstr "" @@ -9986,8 +10132,8 @@ msgstr "" msgid "No samples were returned for this dataset" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:293 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:311 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:299 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:317 #, fuzzy msgid "No saved expressions found" msgstr "표현식" @@ -10016,9 +10162,9 @@ msgstr "" msgid "No table columns" msgstr "컬럼 보기" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:292 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:310 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:345 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:298 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:316 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:351 msgid "No temporal columns found" msgstr "" @@ -10047,7 +10193,7 @@ msgid "Node size" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:45 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:187 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:270 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:286 @@ -10057,12 +10203,12 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:402 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:182 #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:124 #: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 #: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:196 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:576 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:48 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:51 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:138 #: superset-frontend/src/explore/controlPanels/sections.tsx:134 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:127 @@ -10145,7 +10291,7 @@ msgstr "" msgid "Now" msgstr "" -#: superset/views/database/forms.py:201 +#: superset/views/database/forms.py:211 #, fuzzy msgid "Null Values" msgstr "원본 값" @@ -10160,11 +10306,11 @@ msgstr "주석" msgid "Null or Empty" msgstr "" -#: superset/views/database/forms.py:392 +#: superset/views/database/forms.py:402 msgid "Null values" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:191 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 msgid "Number Format" msgstr "" @@ -10179,11 +10325,10 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:60 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:65 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:144 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:117 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:67 #: superset-frontend/plugins/legacy-plugin-chart-treemap/src/controlPanel.ts:67 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:97 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:137 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:276 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:137 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:113 @@ -10224,19 +10369,19 @@ msgstr "" msgid "Number of periods to ratio against" msgstr "" -#: superset/views/database/forms.py:255 +#: superset/views/database/forms.py:265 msgid "Number of rows of file to read" msgstr "" -#: superset/views/database/forms.py:361 +#: superset/views/database/forms.py:371 msgid "Number of rows of file to read." msgstr "" -#: superset/views/database/forms.py:261 +#: superset/views/database/forms.py:271 msgid "Number of rows to skip at start of file" msgstr "" -#: superset/views/database/forms.py:355 +#: superset/views/database/forms.py:365 msgid "Number of rows to skip at start of file." msgstr "" @@ -10260,15 +10405,15 @@ msgstr "" msgid "OCT" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:184 -#: superset-frontend/src/components/Modal/Modal.tsx:231 -#: superset-frontend/src/components/Table/index.tsx:198 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 +#: superset-frontend/src/components/Modal/Modal.tsx:238 +#: superset-frontend/src/components/Table/index.tsx:202 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:865 msgid "OK" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:267 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1379 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1434 msgid "OVERWRITE" msgstr "" @@ -10281,7 +10426,7 @@ msgstr "" msgid "Offline" msgstr "" -#: superset/connectors/sqla/views.py:485 +#: superset/connectors/sqla/views.py:392 msgid "Offset" msgstr "오프셋" @@ -10323,27 +10468,27 @@ msgstr "" msgid "One or many metrics to display" msgstr "" -#: superset/datasets/commands/exceptions.py:90 +#: superset/datasets/commands/exceptions.py:107 msgid "One or more columns already exist" msgstr "하나 이상의 칼럼이 이미 존재합니다" -#: superset/datasets/commands/exceptions.py:80 +#: superset/datasets/commands/exceptions.py:97 msgid "One or more columns are duplicated" msgstr "하나 이상의 칼럼이 중복됩니다" -#: superset/datasets/commands/exceptions.py:70 +#: superset/datasets/commands/exceptions.py:87 msgid "One or more columns do not exist" msgstr "하나 이상의 칼럼이 존재하지 않습니다" -#: superset/datasets/commands/exceptions.py:119 +#: superset/datasets/commands/exceptions.py:136 msgid "One or more metrics already exist" msgstr "하나 이상의 메트릭이 이미 존재합니다" -#: superset/datasets/commands/exceptions.py:109 +#: superset/datasets/commands/exceptions.py:126 msgid "One or more metrics are duplicated" msgstr "하나 이상의 메트릭이 중복됩니다" -#: superset/datasets/commands/exceptions.py:99 +#: superset/datasets/commands/exceptions.py:116 msgid "One or more metrics do not exist" msgstr "하나 이상의 메트릭이 존재하지 않습니다" @@ -10359,7 +10504,7 @@ msgstr "" msgid "One or more parameters specified in the query are missing." msgstr "" -#: superset/views/core.py:1992 +#: superset/views/core.py:2029 msgid "" "One or more required fields are missing in the request. Please try again," " and if the problem persists contact your administrator." @@ -10369,23 +10514,23 @@ msgstr "" msgid "One ore more annotation layers failed loading." msgstr "" -#: superset/sql_lab.py:230 +#: superset/sql_lab.py:228 msgid "Only SELECT statements are allowed against this database." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:133 msgid "Only Total" msgstr "" -#: superset/connectors/sqla/utils.py:123 +#: superset/connectors/sqla/utils.py:122 msgid "Only `SELECT` statements are allowed" msgstr "오직 `SELECT` 구문만 허용됩니다." -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:29 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 msgid "Only applies when \"Label Type\" is not set to a percentage." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:26 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 msgid "Only applies when \"Label Type\" is set to show values." msgstr "" @@ -10393,18 +10538,18 @@ msgstr "" msgid "Only selected panels will be affected by this filter" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:139 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 msgid "" "Only show the total value on the stacked chart, and not show on the " "selected category" msgstr "" -#: superset/connectors/sqla/utils.py:132 +#: superset/connectors/sqla/utils.py:131 msgid "Only single queries supported" msgstr "오직 하나의 쿼리만 지원됩니다" -#: superset/views/database/forms.py:119 superset/views/database/forms.py:288 -#: superset/views/database/forms.py:426 +#: superset/views/database/forms.py:119 superset/views/database/forms.py:298 +#: superset/views/database/forms.py:436 #, python-format msgid "Only the following file extensions are allowed: %(allowed_extensions)s" msgstr "" @@ -10452,7 +10597,7 @@ msgstr "SQL Lab" msgid "Open query in SQL Lab" msgstr "새로운 탭에서 Query실행" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:298 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 #: superset/views/database/mixins.py:104 msgid "" "Operate the database in asynchronous mode, meaning that the queries are " @@ -10461,8 +10606,8 @@ msgid "" " Refer to the installation docs for more information." msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:126 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:130 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 #, fuzzy msgid "Operator" msgstr "생성자" @@ -10472,7 +10617,7 @@ msgstr "생성자" msgid "Operator undefined for aggregator: %(name)s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:381 msgid "" "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" " certain database engines." @@ -10496,13 +10641,8 @@ msgstr "" msgid "Optional warning about use of this metric" msgstr "" -#: superset/connectors/sqla/views.py:328 -msgid "Optionally add a detailed description" -msgstr "" - #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:39 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:68 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:108 #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:74 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:45 #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:70 @@ -10516,7 +10656,7 @@ msgstr "" msgid "Options" msgstr "주석" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:918 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:973 msgid "Or choose from a list of other databases we support:" msgstr "" @@ -10534,7 +10674,7 @@ msgstr "" msgid "Ordering" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:83 #, fuzzy msgid "Orientation" msgstr "주석" @@ -10543,7 +10683,7 @@ msgstr "주석" msgid "Orientation of bar chart" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:158 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 msgid "Orientation of filter bar" msgstr "" @@ -10560,7 +10700,7 @@ msgstr "원본 값" msgid "Original table column order" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 #: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 #: superset-frontend/src/explore/controls.jsx:79 @@ -10572,10 +10712,10 @@ msgid "Orthogonal" msgstr "" #: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:126 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:938 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:479 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:993 #: superset-frontend/src/features/home/EmptyState.tsx:112 -#: superset/views/database/forms.py:155 superset/views/database/forms.py:161 +#: superset/views/database/forms.py:165 superset/views/database/forms.py:171 #, fuzzy msgid "Other" msgstr "월" @@ -10630,15 +10770,15 @@ msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:426 #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:493 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:459 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:463 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:464 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:148 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 msgid "Overwrite" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:249 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:192 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:247 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 msgid "Overwrite & Explore" msgstr "" @@ -10647,11 +10787,11 @@ msgstr "" msgid "Overwrite Dashboard [%s]" msgstr "" -#: superset/views/database/forms.py:237 +#: superset/views/database/forms.py:247 msgid "Overwrite Duplicate Columns" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:404 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:412 msgid "Overwrite existing" msgstr "" @@ -10666,11 +10806,11 @@ msgstr "" #: superset-frontend/src/pages/AlertReportList/index.tsx:452 #: superset-frontend/src/pages/ChartList/index.tsx:608 #: superset-frontend/src/pages/DashboardList/index.tsx:523 -#: superset-frontend/src/pages/DatasetList/index.tsx:500 +#: superset-frontend/src/pages/DatasetList/index.tsx:511 msgid "Owner" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:235 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:93 #: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:408 @@ -10685,14 +10825,14 @@ msgstr "" #: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 #: superset-frontend/src/pages/AlertReportList/index.tsx:324 #: superset-frontend/src/pages/DashboardList/index.tsx:369 -#: superset-frontend/src/pages/DatasetList/index.tsx:389 -#: superset/connectors/sqla/views.py:489 superset/views/chart/mixin.py:82 +#: superset-frontend/src/pages/DatasetList/index.tsx:400 +#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:82 #: superset/views/dashboard/mixin.py:81 msgid "Owners" msgstr "" -#: superset/commands/exceptions.py:108 -#: superset/datasets/commands/exceptions.py:144 +#: superset/commands/exceptions.py:112 +#: superset/datasets/commands/exceptions.py:161 msgid "Owners are invalid" msgstr "소유자가 부적절합니다" @@ -10734,7 +10874,7 @@ msgid "Pandas resample rule" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 -#: superset/viz.py:2219 +#: superset/viz.py:2152 msgid "Parallel Coordinates" msgstr "" @@ -10759,7 +10899,7 @@ msgstr "" msgid "Parent" msgstr "" -#: superset/views/database/forms.py:366 +#: superset/views/database/forms.py:376 msgid "Parse Dates" msgstr "" @@ -10778,7 +10918,7 @@ msgstr "" msgid "Partition Chart" msgstr "Superset 튜토리얼" -#: superset/viz.py:3071 +#: superset/viz.py:3069 msgid "Partition Diagram" msgstr "" @@ -10798,7 +10938,7 @@ msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:154 #: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 -#: superset/db_engine_specs/base.py:1838 +#: superset/db_engine_specs/base.py:1870 #: superset/db_engine_specs/clickhouse.py:202 #, fuzzy msgid "Password" @@ -10854,7 +10994,7 @@ msgstr "메트릭" #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:81 #: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:148 msgid "Percentage threshold" msgstr "" @@ -10872,7 +11012,7 @@ msgstr "" msgid "Percentages" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:219 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:229 msgid "Performance" msgstr "" @@ -10907,8 +11047,8 @@ msgid "Person or group that has certified this metric" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1114 -#: superset-frontend/src/pages/DatasetList/index.tsx:342 -#: superset-frontend/src/pages/DatasetList/index.tsx:560 +#: superset-frontend/src/pages/DatasetList/index.tsx:353 +#: superset-frontend/src/pages/DatasetList/index.tsx:571 msgid "Physical" msgstr "" @@ -10916,7 +11056,7 @@ msgstr "" msgid "Physical (table or view)" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:273 +#: superset-frontend/src/pages/DatasetList/index.tsx:284 msgid "Physical dataset" msgstr "데이터소스 선택" @@ -10925,27 +11065,27 @@ msgstr "데이터소스 선택" msgid "Pick a dimension from which categorical colors are defined" msgstr "" -#: superset/viz.py:769 +#: superset/viz.py:795 msgid "Pick a granularity in the Time section or uncheck 'Include Time'" msgstr "" -#: superset/viz.py:1605 +#: superset/viz.py:1514 msgid "Pick a metric for left axis!" msgstr "" -#: superset/viz.py:1607 +#: superset/viz.py:1516 msgid "Pick a metric for right axis!" msgstr "" -#: superset/viz.py:1195 +#: superset/viz.py:1090 msgid "Pick a metric for x, y and size" msgstr "" -#: superset/viz.py:1234 +#: superset/viz.py:1131 msgid "Pick a metric to display" msgstr "" -#: superset/viz.py:1260 superset/viz.py:1294 +#: superset/viz.py:1159 superset/viz.py:1195 msgid "Pick a metric!" msgstr "" @@ -10961,7 +11101,7 @@ msgstr "" msgid "Pick a set of deck.gl charts to layer on top of one another" msgstr "" -#: superset/viz.py:1390 superset/viz.py:1653 +#: superset/viz.py:1294 superset/viz.py:1564 msgid "Pick a time granularity for your time series" msgstr "" @@ -10969,15 +11109,15 @@ msgstr "" msgid "Pick a title for you annotation." msgstr "" -#: superset/viz.py:1815 +#: superset/viz.py:1732 msgid "Pick at least one field for [Series]" msgstr "" -#: superset/viz.py:857 superset/viz.py:1813 +#: superset/viz.py:887 superset/viz.py:1730 msgid "Pick at least one metric" msgstr "적어도 하나의 메트릭을 선택하세요" -#: superset/viz.py:1943 +#: superset/viz.py:1863 msgid "Pick exactly 2 columns as [Source / Target]" msgstr "" @@ -11005,19 +11145,10 @@ msgstr "" msgid "Pin" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:45 -msgid "Pivot Options" -msgstr "" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 -#: superset/viz.py:894 msgid "Pivot Table" msgstr "피봇 테이블" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:32 -msgid "Pivot Table (legacy)" -msgstr "" - #: superset/utils/pandas_postprocessing/pivot.py:70 msgid "Pivot operation must include at least one aggregate" msgstr "" @@ -11039,7 +11170,7 @@ msgstr "" msgid "Pixels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 msgid "Plain" msgstr "" @@ -11051,7 +11182,7 @@ msgstr "" msgid "Please apply filter changes" msgstr "" -#: superset/sqllab/query_render.py:120 +#: superset/sqllab/query_render.py:118 msgid "" "Please check your query and confirm that all template parameters are " "surround by double braces, for example, \"{{ ds }}\". Then, try running " @@ -11059,8 +11190,8 @@ msgid "" msgstr "" #: superset/db_engine_specs/athena.py:56 -#: superset/db_engine_specs/bigquery.py:210 -#: superset/db_engine_specs/postgres.py:161 +#: superset/db_engine_specs/bigquery.py:211 +#: superset/db_engine_specs/postgres.py:160 #: superset/db_engine_specs/snowflake.py:117 #, python-format msgid "" @@ -11068,7 +11199,7 @@ msgid "" "\"%(syntax_error)s\". Then, try running your query again." msgstr "" -#: superset/db_engine_specs/gsheets.py:80 superset/db_engine_specs/mysql.py:170 +#: superset/db_engine_specs/gsheets.py:82 superset/db_engine_specs/mysql.py:170 #, python-format msgid "" "Please check your query for syntax errors near \"%(server_error)s\". " @@ -11082,21 +11213,12 @@ msgid "" "your query again." msgstr "" -#: superset/viz.py:911 -#, fuzzy -msgid "Please choose at least one 'Group by' field" -msgstr "적어도 하나의 'Group by'필드를 선택하세요" - -#: superset/viz.py:3229 +#: superset/viz.py:3234 #, fuzzy msgid "Please choose at least one groupby" msgstr "적어도 하나의 'Group by'필드를 선택하세요" -#: superset/viz.py:923 -msgid "Please choose at least one metric" -msgstr "적어도 하나의 메트릭을 선택하세요" - -#: superset/viz.py:1610 +#: superset/viz.py:1519 msgid "Please choose different metrics on left and right axis" msgstr "" @@ -11112,18 +11234,20 @@ msgstr "" #: superset-frontend/src/pages/DashboardList/index.tsx:415 #: superset-frontend/src/pages/DashboardList/index.tsx:701 #: superset-frontend/src/pages/DashboardList/index.tsx:756 -#: superset-frontend/src/pages/DatasetList/index.tsx:740 +#: superset-frontend/src/pages/DatasetList/index.tsx:762 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:170 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:304 #: superset-frontend/src/pages/SavedQueryList/index.tsx:533 #: superset-frontend/src/pages/Tags/index.tsx:141 #: superset-frontend/src/pages/Tags/index.tsx:281 msgid "Please confirm" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:442 +#: superset-frontend/src/dashboard/actions/dashboardState.js:447 msgid "Please confirm the overwrite values." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:624 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:641 msgid "Please enter a SQLAlchemy URI to test" msgstr "" @@ -11131,11 +11255,11 @@ msgstr "" msgid "Please filter set name" msgstr "" -#: superset/db_engine_specs/postgres.py:125 +#: superset/db_engine_specs/postgres.py:124 msgid "Please re-enter the password." msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:435 +#: superset-frontend/src/views/CRUD/hooks.ts:439 msgid "Please re-export your file and try importing again" msgstr "" @@ -11162,7 +11286,7 @@ msgstr "" msgid "Please select both a Dataset and a Chart type to proceed" msgstr "" -#: superset/viz.py:1193 +#: superset/viz.py:1088 msgid "Please use 3 different metric labels" msgstr "" @@ -11177,7 +11301,7 @@ msgid "" "multiple metrics across all of the samples or rows in the data." msgstr "" -#: superset/initialization/__init__.py:275 +#: superset/initialization/__init__.py:277 msgid "Plugins" msgstr "플러그인" @@ -11272,13 +11396,17 @@ msgid "Port" msgstr "생성자" #: superset/db_engine_specs/mssql.py:98 -#: superset/db_engine_specs/postgres.py:135 -#: superset/db_engine_specs/presto.py:672 -#: superset/db_engine_specs/redshift.py:77 +#: superset/db_engine_specs/postgres.py:134 +#: superset/db_engine_specs/presto.py:699 +#: superset/db_engine_specs/redshift.py:81 #, python-format msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." msgstr "" +#: superset/db_engine_specs/ocient.py:269 +msgid "Port out of range 0-65535" +msgstr "" + #: superset/views/dashboard/mixin.py:86 msgid "Position JSON" msgstr "" @@ -11317,7 +11445,7 @@ msgstr "" msgid "Pre-filter is required" msgstr "데이터소스" -#: superset/connectors/sqla/views.py:440 +#: superset/connectors/sqla/views.py:347 msgid "" "Predicate applied when fetching distinct value to populate the filter " "control component. Supports jinja template syntax. Applies only when " @@ -11359,7 +11487,7 @@ msgstr "" msgid "Previous" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:346 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:348 msgid "Previous Line" msgstr "" @@ -11382,6 +11510,10 @@ msgstr "메트릭" msgid "Primary or secondary y-axis" msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 +msgid "Primary y-axis Bounds" +msgstr "" + #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:387 msgid "Primary y-axis format" msgstr "" @@ -11399,7 +11531,7 @@ msgstr "" msgid "Private Key Password" msgstr "비밀번호" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:269 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 #, fuzzy msgid "Proceed" msgstr "생성자" @@ -11479,11 +11611,11 @@ msgstr "" msgid "Python datetime string pattern" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1530 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1585 msgid "QUERY DATA IN SQL LAB" msgstr "" -#: superset/db_engine_specs/base.py:109 +#: superset/db_engine_specs/base.py:110 msgid "Quarter" msgstr "분기" @@ -11497,9 +11629,9 @@ msgstr "분기" msgid "Queries" msgstr "저장된 Query" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:51 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:43 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:53 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:30 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:33 #: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:90 @@ -11510,7 +11642,6 @@ msgstr "저장된 Query" #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:36 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:32 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:34 #: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:30 @@ -11521,6 +11652,7 @@ msgstr "저장된 Query" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:44 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:55 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:43 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:41 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:60 @@ -11534,7 +11666,7 @@ msgstr "저장된 Query" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:361 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:34 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:35 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:44 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:43 @@ -11550,7 +11682,7 @@ msgstr "저장된 Query" #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:152 #: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:30 #: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:26 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1479 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1471 #: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 #: superset-frontend/src/explore/controlPanels/sections.tsx:94 #: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:34 @@ -11562,7 +11694,7 @@ msgstr "저장된 Query" msgid "Query" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:361 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:363 #, python-format msgid "Query %s: %s" msgstr "" @@ -11579,11 +11711,11 @@ msgstr "Query 공유" msgid "Query B" msgstr "Query 공유" -#: superset/initialization/__init__.py:366 +#: superset/initialization/__init__.py:360 msgid "Query History" msgstr "Query 실행 이력" -#: superset/commands/exceptions.py:138 +#: superset/commands/exceptions.py:142 #, fuzzy msgid "Query does not exist" msgstr "차트가 존재하지 않습니다" @@ -11599,7 +11731,7 @@ msgstr "Query 실행 이력" msgid "Query imported" msgstr "Query 검색" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:465 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 msgid "Query in a new tab" msgstr "" @@ -11625,11 +11757,11 @@ msgstr "Query 검색" msgid "Query preview" msgstr "데이터 미리보기" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:415 msgid "Query was stopped" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:498 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:494 msgid "Query was stopped." msgstr "" @@ -11642,6 +11774,16 @@ msgstr "" msgid "RGB Color" msgstr "" +#: superset/row_level_security/commands/exceptions.py:29 +#, fuzzy +msgid "RLS Rule could not be deleted." +msgstr "차트를 삭제할 수 없습니다." + +#: superset/row_level_security/commands/exceptions.py:25 +#, fuzzy +msgid "RLS Rule not found." +msgstr "CSS 템플릿을 찾을수 없습니다." + #: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:159 msgid "Radar" msgstr "" @@ -11779,7 +11921,7 @@ msgstr "레코드 수" msgid "Rectangle" msgstr "" -#: superset/connectors/sqla/views.py:446 +#: superset/connectors/sqla/views.py:353 msgid "Redirects to this endpoint when clicking on the table from the table list" msgstr "" @@ -11808,7 +11950,7 @@ msgstr "월" msgid "Referenced columns not available in DataFrame." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:549 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:542 msgid "Refetch results" msgstr "검색 결과" @@ -11862,10 +12004,15 @@ msgstr "컬럼 수정" msgid "Regex" msgstr "Query 공유" -#: superset/connectors/sqla/views.py:329 +#: superset-frontend/src/features/rls/constants.ts:24 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:262 +msgid "Regular" +msgstr "" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:364 msgid "" "Regular filters add where clauses to queries if a user belongs to a role " -"referenced in the filter. Base filters apply filters to all queries " +"referenced in the filter, base filters apply filters to all queries " "except the roles defined in the filter, and can be used to define what " "users can see if no RLS filters within a filter group apply to them." msgstr "" @@ -11912,7 +12059,7 @@ msgstr "" msgid "Remove" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:164 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:194 #, fuzzy msgid "Remove cross-filter" msgstr "필터" @@ -11946,8 +12093,8 @@ msgstr "" msgid "Rendering" msgstr "" -#: superset/views/database/forms.py:168 superset/views/database/forms.py:325 -#: superset/views/database/forms.py:456 +#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 +#: superset/views/database/forms.py:466 msgid "Replace" msgstr "바꾸기" @@ -11961,13 +12108,12 @@ msgstr "바꾸기" #: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:593 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:163 #, fuzzy msgid "Report" msgstr "생성자" -#: superset-frontend/src/components/ReportModal/index.tsx:282 +#: superset-frontend/src/components/ReportModal/index.tsx:281 #, fuzzy msgid "Report Name" msgstr "차트 유형" @@ -12088,7 +12234,7 @@ msgid "Request Permissions" msgstr "" #: superset/charts/data/api.py:153 superset/charts/data/api.py:243 -#: superset/charts/data/api.py:309 +#: superset/charts/data/api.py:312 #, python-format msgid "Request is incorrect: %(error)s" msgstr "부적절한 요청입니다 : %(error)s" @@ -12097,7 +12243,7 @@ msgstr "부적절한 요청입니다 : %(error)s" msgid "Request is not JSON" msgstr "" -#: superset/views/datasource/views.py:75 +#: superset/views/datasource/views.py:77 msgid "Request missing data field." msgstr "" @@ -12105,14 +12251,14 @@ msgstr "" msgid "Request timed out" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:94 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:98 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:105 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:252 msgid "Required" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:342 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 msgid "Required control values have been removed" msgstr "" @@ -12133,11 +12279,11 @@ msgstr "" msgid "Resample operation requires DatetimeIndex" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:199 +#: superset-frontend/src/components/Table/index.tsx:203 msgid "Reset" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:293 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:280 msgid "Reset state" msgstr "" @@ -12161,14 +12307,15 @@ msgstr "" msgid "Results" msgstr "결과" +#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 #: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:212 #: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 #, fuzzy, python-format msgid "Results %s" msgstr "결과" -#: superset/sql_lab.py:410 superset/sqllab/commands/results.py:59 -#: superset/views/core.py:2133 +#: superset/sql_lab.py:402 superset/sqllab/commands/results.py:59 +#: superset/views/core.py:2169 msgid "Results backend is not configured." msgstr "" @@ -12194,12 +12341,12 @@ msgstr "" msgid "Rich Tooltip" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:178 msgid "Rich tooltip" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:372 msgid "Right" msgstr "" @@ -12225,7 +12372,7 @@ msgstr "" msgid "Right to Left" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:157 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 #, fuzzy msgid "Right value" msgstr "원본 값" @@ -12238,7 +12385,7 @@ msgstr "" msgid "Role" msgstr "역할" -#: superset/views/core.py:407 +#: superset/views/core.py:408 #, python-format msgid "Role %(r)s was extended to provide the access to the datasource %(ds)s" msgstr "" @@ -12247,8 +12394,10 @@ msgstr "" #: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:389 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:551 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:406 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:415 #: superset-frontend/src/profile/components/Security.tsx:35 -#: superset/connectors/sqla/views.py:364 superset/views/dashboard/mixin.py:82 +#: superset/views/dashboard/mixin.py:82 msgid "Roles" msgstr "역할" @@ -12294,7 +12443,7 @@ msgstr "" msgid "Rolling window" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 #: superset/views/database/mixins.py:195 msgid "Root certificate" msgstr "" @@ -12324,32 +12473,30 @@ msgstr "" msgid "Round cap" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 #: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 msgid "Row" msgstr "" -#: superset/initialization/__init__.py:295 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:70 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:302 +#: superset/initialization/__init__.py:436 #, fuzzy msgid "Row Level Security" msgstr "저수준 보안" -#: superset/views/database/forms.py:245 +#: superset/views/database/forms.py:255 msgid "" "Row containing the headers to use as column names (0 is first line of " "data). Leave empty if there is no header row" msgstr "" -#: superset/views/database/forms.py:332 +#: superset/views/database/forms.py:342 msgid "" "Row containing the headers to use as column names (0 is first line of " "data). Leave empty if there is no header row." msgstr "" -#: superset/connectors/sqla/views.py:290 -msgid "Row level security filter" -msgstr "" - #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:247 #: superset-frontend/src/explore/controls.jsx:340 msgid "Row limit" @@ -12372,7 +12519,7 @@ msgstr "" msgid "Rows subtotal position" msgstr "" -#: superset/views/database/forms.py:254 superset/views/database/forms.py:360 +#: superset/views/database/forms.py:264 superset/views/database/forms.py:370 msgid "Rows to Read" msgstr "" @@ -12382,10 +12529,20 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:504 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:233 #: superset-frontend/src/explore/controlPanels/sections.tsx:230 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:286 msgid "Rule" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:54 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:355 +#, fuzzy +msgid "Rule Name" +msgstr "Query 검색" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:253 +msgid "Rule added" +msgstr "" + +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:53 msgid "Run" msgstr "" @@ -12402,12 +12559,12 @@ msgstr "" msgid "Run in SQL Lab" msgstr "SQL Lab" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:309 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:319 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:311 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:321 msgid "Run query" msgstr "Query 실행" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:131 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:132 msgid "Run query (Ctrl + Return)" msgstr "" @@ -12415,7 +12572,7 @@ msgstr "" msgid "Run query in a new tab" msgstr "새로운 탭에서 Query실행" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:52 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:51 msgid "Run selection" msgstr "" @@ -12424,7 +12581,7 @@ msgstr "" msgid "Running" msgstr "" -#: superset/sql_lab.py:488 +#: superset/sql_lab.py:480 #, python-format msgid "Running statement %(statement_num)s out of %(statement_count)s" msgstr "" @@ -12446,8 +12603,8 @@ msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 #: superset-frontend/src/features/home/commonMenuData.ts:22 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:312 -#: superset/initialization/__init__.py:354 -#: superset/initialization/__init__.py:362 +#: superset/initialization/__init__.py:348 +#: superset/initialization/__init__.py:356 msgid "SQL" msgstr "" @@ -12455,17 +12612,17 @@ msgstr "" msgid "SQL Copied!" msgstr "복사됨!" -#: superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:253 msgid "SQL Expression" msgstr "SQL 표현식" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:73 -#: superset/initialization/__init__.py:349 -#: superset/initialization/__init__.py:371 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 +#: superset/initialization/__init__.py:343 +#: superset/initialization/__init__.py:365 msgid "SQL Lab" msgstr "SQL Lab" -#: superset/connectors/sqla/views.py:492 +#: superset/connectors/sqla/views.py:399 msgid "SQL Lab View" msgstr "" @@ -12587,7 +12744,7 @@ msgstr "" msgid "Samples" msgstr "테이블" -#: superset/datasets/commands/exceptions.py:177 +#: superset/datasets/commands/exceptions.py:194 #, fuzzy msgid "Samples for dataset could not be retrieved." msgstr "데이터베이스를 생성할 수 없습니다." @@ -12597,7 +12754,7 @@ msgstr "데이터베이스를 생성할 수 없습니다." msgid "Samples for datasource could not be retrieved." msgstr "데이터베이스를 생성할 수 없습니다." -#: superset/viz.py:1935 +#: superset/viz.py:1854 msgid "Sankey" msgstr "" @@ -12626,25 +12783,26 @@ msgstr "" #: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 #: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:199 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:214 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:246 -#: superset-frontend/src/components/ReportModal/index.tsx:229 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:288 +#: superset-frontend/src/components/ReportModal/index.tsx:228 #: superset-frontend/src/dashboard/components/Header/index.jsx:607 #: superset-frontend/src/dashboard/components/Header/index.jsx:609 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 #: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 #: superset-frontend/src/dashboard/components/SaveModal.tsx:211 #: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:794 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:156 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:492 #: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:268 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:458 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:462 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 -#: superset-frontend/src/explore/components/SaveModal.tsx:415 +#: superset-frontend/src/explore/components/SaveModal.tsx:449 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:418 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:424 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:147 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 @@ -12654,30 +12812,31 @@ msgstr "" #: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 #: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1695 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 #: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 msgid "Save" msgstr "저장" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:246 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:190 msgid "Save & Explore" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:396 +#: superset-frontend/src/explore/components/SaveModal.tsx:430 msgid "Save & go to dashboard" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:395 +#: superset-frontend/src/explore/components/SaveModal.tsx:429 #, fuzzy msgid "Save & go to new dashboard" msgstr "대시보드 저장" -#: superset-frontend/src/explore/components/SaveModal.tsx:308 +#: superset-frontend/src/explore/components/SaveModal.tsx:343 msgid "Save (Overwrite)" msgstr "저장된 Query" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:199 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:306 msgid "Save as" msgstr "" @@ -12692,16 +12851,16 @@ msgstr "데이터소스 선택" msgid "Save as dataset" msgstr "데이터소스 선택" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:394 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:214 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:402 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 msgid "Save as new" msgstr "다른이름으로 저장" -#: superset-frontend/src/explore/components/SaveModal.tsx:412 +#: superset-frontend/src/explore/components/SaveModal.tsx:446 msgid "Save as new chart" msgstr "새 차트 생성" -#: superset-frontend/src/explore/components/SaveModal.tsx:316 +#: superset-frontend/src/explore/components/SaveModal.tsx:351 #, fuzzy msgid "Save as..." msgstr "다른이름으로 저장" @@ -12715,7 +12874,7 @@ msgstr "다른이름으로 저장" msgid "Save changes" msgstr "차트 보기" -#: superset-frontend/src/explore/components/SaveModal.tsx:432 +#: superset-frontend/src/explore/components/SaveModal.tsx:466 msgid "Save chart" msgstr "차트 보기" @@ -12723,7 +12882,7 @@ msgstr "차트 보기" msgid "Save dashboard" msgstr "대시보드 저장" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:106 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:105 #, fuzzy msgid "Save dataset" msgstr "데이터소스 선택" @@ -12732,11 +12891,11 @@ msgstr "데이터소스 선택" msgid "Save for this session" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:350 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:356 msgid "Save or Overwrite Dataset" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:202 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:201 msgid "Save query" msgstr "Query 저장" @@ -12744,28 +12903,28 @@ msgstr "Query 저장" msgid "Save the query to enable this feature" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:250 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:465 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:149 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 msgid "Save this query as a virtual dataset to continue exploring" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:414 +#: superset-frontend/src/explore/components/SaveModal.tsx:448 #, fuzzy msgid "Save to new dashboard" msgstr "대시보드 저장" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:265 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:271 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 msgid "Saved" msgstr "저장" -#: superset/initialization/__init__.py:358 +#: superset/initialization/__init__.py:352 msgid "Saved Queries" msgstr "저장된 Query" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:249 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:255 #, fuzzy msgid "Saved expressions" msgstr "표현식" @@ -12826,12 +12985,12 @@ msgid "" msgstr "" #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 -#: superset-frontend/src/components/ReportModal/index.tsx:306 +#: superset-frontend/src/components/ReportModal/index.tsx:305 #: superset-frontend/src/pages/AlertReportList/index.tsx:276 msgid "Schedule" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:212 +#: superset-frontend/src/components/ReportModal/index.tsx:211 #, fuzzy msgid "Schedule a new email report" msgstr "대시보드에 차트 추가" @@ -12849,7 +13008,7 @@ msgstr "Query 공유" msgid "Schedule settings" msgstr "Query 공유" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:518 msgid "Schedule the query periodically" msgstr "" @@ -12868,33 +13027,33 @@ msgstr "" msgid "Scheduled task executor not found" msgstr "캐시된 값을 찾을 수 없습니다." -#: superset-frontend/src/components/DatabaseSelector/index.tsx:299 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:221 -#: superset-frontend/src/pages/DatasetList/index.tsx:354 -#: superset-frontend/src/pages/DatasetList/index.tsx:536 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:298 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 +#: superset-frontend/src/pages/DatasetList/index.tsx:365 +#: superset-frontend/src/pages/DatasetList/index.tsx:547 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:250 #: superset-frontend/src/pages/SavedQueryList/index.tsx:297 #: superset-frontend/src/pages/SavedQueryList/index.tsx:469 -#: superset/connectors/sqla/views.py:483 superset/views/database/forms.py:144 -#: superset/views/database/forms.py:311 superset/views/database/forms.py:442 +#: superset/connectors/sqla/views.py:390 superset/views/database/forms.py:154 +#: superset/views/database/forms.py:321 superset/views/database/forms.py:452 msgid "Schema" msgstr "스키마" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:247 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:257 #, fuzzy msgid "Schema cache timeout" msgstr "차트 유형" -#: superset/views/core.py:1164 +#: superset/views/core.py:1186 #, fuzzy msgid "Schema undefined" msgstr "테이블 명이 정해지지 않았습니다" -#: superset/connectors/sqla/views.py:429 +#: superset/connectors/sqla/views.py:336 msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:419 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:429 msgid "Schemas allowed for File upload" msgstr "" @@ -12906,7 +13065,7 @@ msgstr "" msgid "Scoping" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 msgid "Scroll" msgstr "" @@ -12922,15 +13081,15 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:724 #: superset-frontend/src/pages/CssTemplateList/index.tsx:293 #: superset-frontend/src/pages/DashboardList/index.tsx:516 -#: superset-frontend/src/pages/DatabaseList/index.tsx:492 -#: superset-frontend/src/pages/DatasetList/index.tsx:577 +#: superset-frontend/src/pages/DatabaseList/index.tsx:503 +#: superset-frontend/src/pages/DatasetList/index.tsx:588 #: superset-frontend/src/pages/SavedQueryList/index.tsx:494 #: superset-frontend/src/pages/Tags/index.tsx:204 #: superset/templates/appbuilder/general/widgets/search.html:40 msgid "Search" msgstr "검색" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:294 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 msgid "Search / Filter" msgstr "" @@ -12956,12 +13115,12 @@ msgstr "검색" msgid "Search by query text" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:207 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 #, fuzzy msgid "Search columns" msgstr "컬럼 추가" -#: superset-frontend/src/components/Table/index.tsx:202 +#: superset-frontend/src/components/Table/index.tsx:206 #, fuzzy msgid "Search in filters" msgstr "필터" @@ -12975,7 +13134,7 @@ msgstr "사용자 권한" msgid "Search..." msgstr "검색" -#: superset/db_engine_specs/base.py:96 +#: superset/db_engine_specs/base.py:97 msgid "Second" msgstr "초" @@ -12991,10 +13150,14 @@ msgid "Secondary Metric" msgstr "메트릭" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:408 +msgid "Secondary y-axis Bounds" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:425 msgid "Secondary y-axis format" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:417 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:434 msgid "Secondary y-axis title" msgstr "" @@ -13007,15 +13170,15 @@ msgstr "30초" msgid "Secure Extra" msgstr "보안" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:336 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:341 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:346 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 msgid "Secure extra" msgstr "보안" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:329 -#: superset/initialization/__init__.py:297 -#: superset/initialization/__init__.py:395 -#: superset/initialization/__init__.py:433 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:339 +#: superset/initialization/__init__.py:389 +#: superset/initialization/__init__.py:427 +#: superset/initialization/__init__.py:438 msgid "Security" msgstr "보안" @@ -13038,16 +13201,16 @@ msgstr "" msgid "See more" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:412 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:405 #, fuzzy msgid "See query details" msgstr "저장된 Query" -#: superset-frontend/src/components/TableSelector/index.tsx:288 +#: superset-frontend/src/components/TableSelector/index.tsx:277 msgid "See table schema" msgstr "테이블 선택" -#: superset-frontend/src/explore/components/SaveModal.tsx:363 +#: superset-frontend/src/explore/components/SaveModal.tsx:398 #: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 #, fuzzy msgid "Select" @@ -13055,9 +13218,9 @@ msgstr "삭제" #: superset-frontend/src/components/AsyncSelect/index.jsx:41 #: superset-frontend/src/components/Select/AsyncSelect.tsx:123 -#: superset-frontend/src/components/Select/Select.tsx:103 +#: superset-frontend/src/components/Select/Select.tsx:104 #: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 -#: superset-frontend/src/explore/components/controls/SelectControl.jsx:230 +#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 msgid "Select ..." msgstr "" @@ -13070,11 +13233,11 @@ msgstr "" msgid "Select Viz Type" msgstr "시각화 유형" -#: superset/views/database/forms.py:415 +#: superset/views/database/forms.py:425 msgid "Select a Columnar file to be uploaded to a database." msgstr "" -#: superset/views/database/forms.py:279 +#: superset/views/database/forms.py:289 msgid "Select a Excel file to be uploaded to a database." msgstr "" @@ -13083,7 +13246,7 @@ msgstr "" msgid "Select a column" msgstr "테이블 선택" -#: superset-frontend/src/explore/components/SaveModal.tsx:357 +#: superset-frontend/src/explore/components/SaveModal.tsx:392 #, fuzzy msgid "Select a dashboard" msgstr "대시보드 저장" @@ -13106,7 +13269,7 @@ msgstr "데이터베이스 선택" msgid "Select a database to upload the file to" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:744 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:738 msgid "Select a database to write a query" msgstr "" @@ -13119,7 +13282,7 @@ msgstr "대시보드 저장" msgid "Select a file to be uploaded to the database" msgstr "" -#: superset/views/database/forms.py:145 +#: superset/views/database/forms.py:155 msgid "Select a schema if the database supports this" msgstr "" @@ -13131,12 +13294,12 @@ msgstr "" msgid "Select aggregate options" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:207 +#: superset-frontend/src/components/Table/index.tsx:211 #, fuzzy msgid "Select all data" msgstr "테이블 선택" -#: superset-frontend/src/components/Table/index.tsx:201 +#: superset-frontend/src/components/Table/index.tsx:205 #, fuzzy msgid "Select all items" msgstr "테이블 선택" @@ -13145,6 +13308,11 @@ msgstr "테이블 선택" msgid "Select any columns for metadata inspection" msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +#, fuzzy +msgid "Select chart" +msgstr "차트 추가" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:45 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:103 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:138 @@ -13156,14 +13324,14 @@ msgstr "차트 추가" msgid "Select color scheme" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:208 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 #, fuzzy msgid "Select column" msgstr "컬럼 목록" -#: superset-frontend/src/components/Table/index.tsx:204 +#: superset-frontend/src/components/Table/index.tsx:208 #, fuzzy msgid "Select current page" msgstr "필터" @@ -13173,8 +13341,8 @@ msgstr "필터" msgid "Select database & schema" msgstr "테이블 선택" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:272 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:280 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:271 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:279 msgid "Select database or type to search databases" msgstr "" @@ -13183,7 +13351,7 @@ msgstr "" msgid "Select database table" msgstr "데이터베이스 선택" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1791 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1847 msgid "" "Select databases require additional fields to be completed in the " "Advanced tab to successfully connect the database. Learn what " @@ -13223,7 +13391,7 @@ msgstr "" msgid "Select or type a value" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:410 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:418 msgid "Select or type dataset name" msgstr "" @@ -13236,8 +13404,8 @@ msgstr "" msgid "Select saved metrics" msgstr "저장된 Query" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:297 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:304 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:296 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 msgid "Select schema or type to search schemas" msgstr "" @@ -13246,7 +13414,7 @@ msgstr "" msgid "Select scheme" msgstr "테이블 선택" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:304 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:307 msgid "Select start and end date" msgstr "데이터베이스 선택" @@ -13254,8 +13422,8 @@ msgstr "데이터베이스 선택" msgid "Select subject" msgstr "" +#: superset-frontend/src/components/TableSelector/index.tsx:284 #: superset-frontend/src/components/TableSelector/index.tsx:295 -#: superset-frontend/src/components/TableSelector/index.tsx:306 msgid "Select table or type to search tables" msgstr "" @@ -13264,6 +13432,23 @@ msgstr "" msgid "Select the Annotation Layer you would like to use." msgstr "주석 레이어" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +msgid "" +"Select the charts to which you want to apply cross-filters in this " +"dashboard. Deselecting a chart will exclude it from being filtered when " +"applying cross-filters from any chart on the dashboard. You can select " +"\"All charts\" to apply cross-filters to all charts that use the same " +"dataset or contain the same column name in the dashboard." +msgstr "" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +msgid "" +"Select the charts to which you want to apply cross-filters when " +"interacting with this chart. You can select \"All charts\" to apply " +"filters to all charts that use the same dataset or contain the same " +"column name in the dashboard." +msgstr "" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:392 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:37 #, fuzzy @@ -13310,7 +13495,7 @@ msgstr "" msgid "Sequential" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 msgid "Series" msgstr "" @@ -13326,7 +13511,7 @@ msgstr "" msgid "Series Limit Sort Descending" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:255 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:246 #, fuzzy msgid "Series Order" msgstr "저장된 Query" @@ -13402,13 +13587,13 @@ msgid "Settings for time series" msgstr "" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:325 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:464 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:467 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 #: superset-frontend/src/features/home/SavedQueries.tsx:211 msgid "Share" msgstr "Query 공유" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:469 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:472 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:343 msgid "Share chart by email" msgstr "" @@ -13417,7 +13602,7 @@ msgstr "" msgid "Share permalink by email" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1429 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1421 msgid "Shared query" msgstr "Query 공유" @@ -13426,7 +13611,7 @@ msgstr "Query 공유" msgid "Shared query fields" msgstr "저장된 Query" -#: superset/views/database/forms.py:298 +#: superset/views/database/forms.py:308 msgid "Sheet Name" msgstr "테이블 명" @@ -13477,7 +13662,7 @@ msgstr "CSS 템플릿 보기" msgid "Show Chart" msgstr "차트 보기" -#: superset/connectors/sqla/views.py:73 +#: superset/connectors/sqla/views.py:72 msgid "Show Column" msgstr "컬럼 보기" @@ -13512,11 +13697,11 @@ msgstr "컬럼 보기" msgid "Show Markers" msgstr "" -#: superset/connectors/sqla/views.py:208 +#: superset/connectors/sqla/views.py:207 msgid "Show Metric" msgstr "메트릭 보기" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:178 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 #, fuzzy msgid "Show Metric Names" msgstr "메트릭 보기" @@ -13526,15 +13711,11 @@ msgstr "메트릭 보기" msgid "Show Range Filter" msgstr "테이블 추가" -#: superset/connectors/sqla/views.py:291 -msgid "Show Row level security filter" -msgstr "" - #: superset/views/sql_lab/views.py:53 msgid "Show Saved Query" msgstr "저장된 Query 보기" -#: superset/connectors/sqla/views.py:385 +#: superset/connectors/sqla/views.py:292 msgid "Show Table" msgstr "테이블 보기" @@ -13556,12 +13737,12 @@ msgstr "" msgid "Show Upper Labels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:110 #, fuzzy msgid "Show Value" msgstr "테이블 보기" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:164 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:315 #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:184 #, fuzzy @@ -13596,7 +13777,7 @@ msgstr "" msgid "Show cell bars" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:395 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 #, fuzzy msgid "Show chart description" msgstr "설명" @@ -13635,7 +13816,7 @@ msgstr "테이블 보기" msgid "Show labels when the node has children." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:39 msgid "Show legend" msgstr "" @@ -13674,7 +13855,7 @@ msgstr "대시보드" msgid "Show rows total" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 msgid "Show series values on the chart" msgstr "" @@ -13702,7 +13883,6 @@ msgid "" " apply to the result." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:76 #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:365 msgid "Show totals" @@ -13747,7 +13927,7 @@ msgstr "" msgid "Showing %s of %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:184 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 msgid "Shows a list of all series available at that point in time" msgstr "" @@ -13767,7 +13947,7 @@ msgstr "" msgid "Significance Level" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:341 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 @@ -13820,23 +14000,23 @@ msgstr "" msgid "Sizes of vehicles" msgstr "" -#: superset/views/database/forms.py:177 +#: superset/views/database/forms.py:187 msgid "Skip Blank Lines" msgstr "" -#: superset/views/database/forms.py:174 +#: superset/views/database/forms.py:184 msgid "Skip Initial Space" msgstr "" -#: superset/views/database/forms.py:260 superset/views/database/forms.py:354 +#: superset/views/database/forms.py:270 superset/views/database/forms.py:364 msgid "Skip Rows" msgstr "" -#: superset/views/database/forms.py:178 +#: superset/views/database/forms.py:188 msgid "Skip blank lines rather than interpreting them as Not A Number values" msgstr "" -#: superset/views/database/forms.py:174 +#: superset/views/database/forms.py:184 msgid "Skip spaces after delimiter" msgstr "" @@ -13872,7 +14052,7 @@ msgstr "" msgid "Solid" msgstr "" -#: superset/commands/exceptions.py:115 +#: superset/commands/exceptions.py:119 msgid "Some roles do not exist" msgstr "몇몇 역할이 존재하지 않습니다" @@ -13880,7 +14060,7 @@ msgstr "몇몇 역할이 존재하지 않습니다" msgid "Something went wrong." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:864 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:919 #, python-format msgid "Sorry there was an error fetching database information: %s" msgstr "" @@ -13898,7 +14078,7 @@ msgstr "" msgid "Sorry, an error occurred" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:357 +#: superset-frontend/src/dashboard/actions/dashboardState.js:359 msgid "Sorry, an unknown error occurred" msgstr "" @@ -13927,14 +14107,14 @@ msgstr "" msgid "Sorry, there was an error saving this %s: %s" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:360 +#: superset-frontend/src/dashboard/actions/dashboardState.js:362 #, python-format msgid "Sorry, there was an error saving this dashboard: %s" msgstr "" #: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 #: superset-frontend/src/pages/SavedQueryList/index.tsx:229 -#: superset-frontend/src/views/CRUD/hooks.ts:676 +#: superset-frontend/src/views/CRUD/hooks.ts:680 msgid "Sorry, your browser does not support copying." msgstr "" @@ -13944,7 +14124,7 @@ msgstr "" #: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 #: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 -#: superset-frontend/src/components/Table/index.tsx:208 +#: superset-frontend/src/components/Table/index.tsx:212 msgid "Sort" msgstr "" @@ -13964,12 +14144,12 @@ msgstr "" msgid "Sort Metric" msgstr "메트릭" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:247 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:238 #, fuzzy msgid "Sort Series Ascending" msgstr "클릭하여 제목 수정하기" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:227 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:224 #, fuzzy msgid "Sort Series By" msgstr "대시보드 가져오기" @@ -14047,7 +14227,7 @@ msgstr "메트릭" msgid "Sort rows by" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:250 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:241 msgid "Sort series in ascending order" msgstr "" @@ -14081,6 +14261,7 @@ msgstr "데이터소스 명" msgid "Sparkline" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:978 msgid "Spatial" msgstr "" @@ -14089,23 +14270,23 @@ msgstr "" msgid "Specific Date/Time" msgstr "" -#: superset/views/database/forms.py:312 superset/views/database/forms.py:443 +#: superset/views/database/forms.py:322 superset/views/database/forms.py:453 msgid "Specify a schema (if database flavor supports this)." msgstr "" -#: superset/views/database/forms.py:351 +#: superset/views/database/forms.py:361 msgid "Specify duplicate columns as \"X.0, X.1\"." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:711 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:705 msgid "Specify name to CREATE TABLE AS schema in: public" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:710 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:704 msgid "Specify name to CREATE VIEW AS schema in: public" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:515 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:551 msgid "" "Specify the database version. This should be used with Presto in order to" " enable query cost estimation." @@ -14130,7 +14311,7 @@ msgstr "분기" msgid "Square miles" msgstr "저장된 Query" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 msgid "Stack" msgstr "" @@ -14144,7 +14325,7 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:161 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:115 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:128 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:125 msgid "Stack series on top of each other" msgstr "" @@ -14164,7 +14345,7 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:124 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:121 #: superset-frontend/src/explore/fixtures.tsx:58 msgid "Stacked Style" msgstr "" @@ -14237,7 +14418,7 @@ msgstr "상태" msgid "State" msgstr "상태" -#: superset/sql_lab.py:511 +#: superset/sql_lab.py:503 #, python-format msgid "Statement %(statement_num)s out of %(statement_count)s" msgstr "" @@ -14289,20 +14470,20 @@ msgid "" "irregular intervals." msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:47 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:46 #: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 msgid "Stop" msgstr "중지" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:337 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:339 msgid "Stop query" msgstr "Query 저장" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:116 msgid "Stop running (Ctrl + e)" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:114 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 msgid "Stop running (Ctrl + x)" msgstr "" @@ -14310,7 +14491,7 @@ msgstr "" msgid "Stopped an unsafe database connection" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 msgid "Stream" msgstr "" @@ -14327,7 +14508,7 @@ msgstr "" msgid "Stretched style" msgstr "" -#: superset/views/database/forms.py:299 +#: superset/views/database/forms.py:309 msgid "Strings used for sheet names (default is the first sheet)." msgstr "" @@ -14358,11 +14539,11 @@ msgstr "" msgid "Style the ends of the progress bar with a round cap" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:56 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 msgid "Subdomain" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 msgid "Subheader" msgstr "" @@ -14374,8 +14555,8 @@ msgstr "" msgid "Submit" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:472 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:678 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 #: superset/charts/post_processing.py:161 #: superset/charts/post_processing.py:178 msgid "Subtotal" @@ -14387,7 +14568,7 @@ msgstr "" msgid "Success" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:193 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 #, fuzzy msgid "Successfully changed dataset!" msgstr "데이터소스 선택" @@ -14422,7 +14603,7 @@ msgstr "" msgid "Sum values" msgstr "테이블 명" -#: superset/viz.py:1888 +#: superset/viz.py:1805 msgid "Sunburst" msgstr "" @@ -14449,7 +14630,7 @@ msgid "Superset Embedded SDK documentation." msgstr "" #: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:470 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:473 msgid "Superset chart" msgstr "Superset 튜토리얼" @@ -14466,7 +14647,7 @@ msgstr "" msgid "Superset encountered an unexpected error." msgstr "이슈 1002 - 데이터베이스에 예상치 못한 에러가 발생했습니다." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:920 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 #, fuzzy msgid "Supported databases" msgstr "데이터베이스 선택" @@ -14475,11 +14656,7 @@ msgstr "데이터베이스 선택" msgid "Survey Responses" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:101 -msgid "Swap Groups and Columns" -msgstr "" - -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:254 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:311 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:435 #, fuzzy @@ -14528,6 +14705,11 @@ msgstr "" msgid "Syntax" msgstr "" +#: superset/db_engine_specs/ocient.py:282 +#, python-format +msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +msgstr "" + #: superset-frontend/src/pages/QueryHistoryList/index.tsx:268 #: superset-frontend/src/pages/SavedQueryList/index.tsx:315 msgid "TABLES" @@ -14559,36 +14741,36 @@ msgstr "테이블 명" msgid "Tab title" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:26 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 -#: superset-frontend/src/components/TableSelector/index.tsx:290 +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 +#: superset-frontend/src/components/TableSelector/index.tsx:279 #: superset-frontend/src/visualizations/TimeTable/index.ts:26 -#: superset/connectors/sqla/views.py:160 superset/connectors/sqla/views.py:255 -#: superset/connectors/sqla/views.py:477 superset/views/chart/mixin.py:86 +#: superset/connectors/sqla/views.py:159 superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:384 superset/views/chart/mixin.py:86 msgid "Table" msgstr "테이블" -#: superset/views/core.py:1740 +#: superset/views/core.py:1775 #, python-format msgid "Table %(table)s wasn't found in the database %(db)s" msgstr "" -#: superset/views/database/forms.py:317 superset/views/database/forms.py:448 +#: superset/views/database/forms.py:327 superset/views/database/forms.py:458 msgid "Table Exists" msgstr "테이블 존재" -#: superset/connectors/sqla/views.py:487 superset/views/database/forms.py:128 -#: superset/views/database/forms.py:269 superset/views/database/forms.py:405 +#: superset/connectors/sqla/views.py:394 superset/views/database/forms.py:128 +#: superset/views/database/forms.py:279 superset/views/database/forms.py:415 msgid "Table Name" msgstr "테이블 명" -#: superset/viz.py:698 +#: superset/viz.py:722 msgid "Table View" msgstr "테이블 뷰" -#: superset/datasets/commands/exceptions.py:130 +#: superset/datasets/commands/exceptions.py:147 #, python-format msgid "" "Table [%(table_name)s] could not be found, please double check your " @@ -14601,7 +14783,7 @@ msgid "" "connection, schema, and table name, error: {}" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:268 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:278 #, fuzzy msgid "Table cache timeout" msgstr "차트 유형" @@ -14615,8 +14797,8 @@ msgstr "컬럼 수정" msgid "Table loading" msgstr "" -#: superset/views/database/forms.py:132 superset/views/database/forms.py:273 -#: superset/views/database/forms.py:409 +#: superset/views/database/forms.py:132 superset/views/database/forms.py:283 +#: superset/views/database/forms.py:419 msgid "Table name cannot contain a schema" msgstr "" @@ -14624,15 +14806,22 @@ msgstr "" msgid "Table name undefined" msgstr "테이블 명이 정해지지 않았습니다" +#: superset/db_engine_specs/ocient.py:287 +#, fuzzy, python-format +msgid "Table or View \"%(table)s\" does not exist." +msgstr "메트릭 '%(metric)s' 이 존재하지 않습니다." + #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 msgid "" "Table that visualizes paired t-tests, which are used to understand " "statistical differences between groups." msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:384 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:393 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:287 #: superset-frontend/src/pages/SavedQueryList/index.tsx:334 -#: superset/connectors/sqla/views.py:363 superset/connectors/sqla/views.py:384 +#: superset/connectors/sqla/views.py:291 msgid "Tables" msgstr "테이블" @@ -14683,7 +14872,7 @@ msgstr "데이터베이스를 삭제할 수 없습니다." #: superset-frontend/src/pages/SavedQueryList/index.tsx:382 #: superset-frontend/src/pages/SavedQueryList/index.tsx:487 #: superset-frontend/src/pages/Tags/index.tsx:279 -#: superset/initialization/__init__.py:384 +#: superset/initialization/__init__.py:378 #, fuzzy msgid "Tags" msgstr "상태" @@ -14714,7 +14903,7 @@ msgstr "" msgid "Target category" msgstr "시작 시간" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:173 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 #, fuzzy msgid "Target value" msgstr "원본 값" @@ -14725,7 +14914,7 @@ msgstr "템플릿 명" #: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:962 -#: superset/connectors/sqla/views.py:493 +#: superset/connectors/sqla/views.py:400 msgid "Template parameters" msgstr "" @@ -14735,7 +14924,7 @@ msgid "" "coming from the controls." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:317 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:327 msgid "" "Terminate running queries when browser window closed or navigated to " "another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " @@ -14759,7 +14948,7 @@ msgstr "" msgid "Text align" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:248 +#: superset-frontend/src/components/ReportModal/index.tsx:247 msgid "Text embedded in email" msgstr "" @@ -14804,7 +14993,7 @@ msgid "" " the filters list?" msgstr "" -#: superset/views/core.py:372 +#: superset/views/core.py:373 msgid "The access requests seem to have been deleted" msgstr "" @@ -14824,12 +15013,12 @@ msgid "" "associated with more than one category, only the first will be used." msgstr "" -#: superset/common/query_context_processor.py:586 +#: superset/common/query_context_processor.py:585 #, fuzzy msgid "The chart datasource does not exist" msgstr "차트가 존재하지 않습니다" -#: superset/common/query_context_processor.py:584 +#: superset/common/query_context_processor.py:583 msgid "The chart does not exist" msgstr "차트가 존재하지 않습니다" @@ -14881,14 +15070,14 @@ msgstr "" msgid "The data source seems to have been deleted" msgstr "" -#: superset/connectors/sqla/views.py:115 +#: superset/connectors/sqla/views.py:114 msgid "" "The data type that was inferred by the database. It may be necessary to " "input a type manually for expression-defined columns in some cases. In " "most case users should not need to alter this." msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:515 +#: superset-frontend/src/pages/DatabaseList/index.tsx:529 #, python-format msgid "" "The database %s is linked to %s charts that appear on %s dashboards and " @@ -14930,12 +15119,12 @@ msgstr "이슈 1002 - 데이터베이스에 예상치 못한 에러가 발생했 msgid "The database was deleted." msgstr "데이터베이스를 삭제할 수 없습니다." -#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2002 +#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2039 #, fuzzy msgid "The database was not found." msgstr "데이터베이스를 찾을 수 없습니다." -#: superset-frontend/src/pages/DatasetList/index.tsx:710 +#: superset-frontend/src/pages/DatasetList/index.tsx:724 #, python-format msgid "" "The dataset %s is linked to %s charts that appear on %s dashboards. Are " @@ -14944,11 +15133,11 @@ msgid "" msgstr "" #: superset-frontend/src/components/Chart/Chart.jsx:88 -#: superset/views/utils.py:274 +#: superset/views/utils.py:272 msgid "The dataset associated with this chart no longer exists" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:168 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:210 msgid "" "The dataset configuration exposed here\n" " affects all the charts using this dataset.\n" @@ -14957,7 +15146,7 @@ msgid "" " in undesirable ways." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:129 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:164 #: superset-frontend/src/pages/ChartCreation/index.tsx:261 msgid "The dataset has been saved" msgstr "" @@ -14966,7 +15155,7 @@ msgstr "" msgid "The dataset linked to this chart may have been deleted." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1496 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1488 msgid "The datasource couldn't be loaded" msgstr "" @@ -14981,7 +15170,7 @@ msgid "" " Supports markdown." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:104 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 msgid "The distance between cells, in pixels" msgstr "" @@ -14995,7 +15184,7 @@ msgstr "" msgid "The encoding format of the lines" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:495 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:531 msgid "" "The engine_params object gets unpacked into the sqlalchemy.create_engine " "call." @@ -15008,6 +15197,7 @@ msgid "" "%(columns)s. " msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:111 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:67 msgid "The function to use when aggregating points into groups" msgstr "" @@ -15018,9 +15208,9 @@ msgid "The host \"%(hostname)s\" might be down and can't be reached." msgstr "" #: superset/db_engine_specs/mssql.py:103 -#: superset/db_engine_specs/postgres.py:140 -#: superset/db_engine_specs/presto.py:664 -#: superset/db_engine_specs/redshift.py:82 +#: superset/db_engine_specs/postgres.py:139 +#: superset/db_engine_specs/presto.py:691 +#: superset/db_engine_specs/redshift.py:86 #, python-format msgid "" "The host \"%(hostname)s\" might be down, and can't be reached on port " @@ -15032,9 +15222,9 @@ msgid "The host might be down, and can't be reached on the provided port." msgstr "" #: superset/db_engine_specs/mssql.py:93 -#: superset/db_engine_specs/postgres.py:130 -#: superset/db_engine_specs/presto.py:659 -#: superset/db_engine_specs/redshift.py:72 +#: superset/db_engine_specs/postgres.py:129 +#: superset/db_engine_specs/presto.py:686 +#: superset/db_engine_specs/redshift.py:76 #, python-format msgid "The hostname \"%(hostname)s\" cannot be resolved." msgstr "" @@ -15048,7 +15238,7 @@ msgstr "" msgid "The id of the active chart" msgstr "" -#: superset/connectors/sqla/views.py:418 +#: superset/connectors/sqla/views.py:325 msgid "" "The list of charts associated with this table. By altering this " "datasource, you may change how these associated charts behave. Also note " @@ -15085,7 +15275,7 @@ msgid "" "%{key}s is invalid." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:469 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:505 msgid "" "The metadata_params object gets unpacked into the sqlalchemy.MetaData " "call." @@ -15105,7 +15295,7 @@ msgid "" "periods" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:130 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 msgid "The number color \"steps\"" msgstr "" @@ -15115,7 +15305,7 @@ msgid "" " can be used to move UTC time to local time." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:308 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:301 #, python-format msgid "" "The number of results displayed is limited to %(rows)d by the " @@ -15123,7 +15313,7 @@ msgid "" "download to csv to see more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:314 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:307 #, python-format msgid "" "The number of results displayed is limited to %(rows)d. Please add " @@ -15131,22 +15321,22 @@ msgid "" "more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:365 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:358 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the dropdown." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:334 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:326 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:319 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the query" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:339 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:332 #, python-format msgid "" "The number of rows displayed is limited to %(rows)d by the query and " @@ -15162,13 +15352,13 @@ msgstr "" msgid "The object does not exist in the given database." msgstr "" -#: superset/sqllab/query_render.py:96 +#: superset/sqllab/query_render.py:94 #, python-format msgid "The parameter %(parameters)s in your query is undefined." msgid_plural "The following parameters in your query are undefined: %(parameters)s." msgstr[0] "" -#: superset/db_engine_specs/postgres.py:120 +#: superset/db_engine_specs/postgres.py:119 #, python-format msgid "The password provided for username \"%(username)s\" is incorrect." msgstr "" @@ -15213,7 +15403,7 @@ msgid "" " they are needed." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1284 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1339 msgid "" "The passwords for the databases below are needed in order to import them." " Please note that the \"Secure Extra\" and \"Certificate\" sections of " @@ -15233,7 +15423,7 @@ msgid "" "\"freq\" expressions." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 msgid "The pixel radius" msgstr "" @@ -15258,7 +15448,7 @@ msgstr "차트의 파라미터가 부적절합니다." msgid "The primary metric is used to define the arc segment sizes" msgstr "" -#: superset/views/core.py:2212 +#: superset/views/core.py:2248 msgid "The provided `rows` argument is not a valid integer." msgstr "" @@ -15267,13 +15457,13 @@ msgid "The query associated with the results was deleted." msgstr "" #: superset/sqllab/commands/export.py:63 superset/sqllab/commands/results.py:91 -#: superset/views/core.py:2162 +#: superset/views/core.py:2198 msgid "" "The query associated with these results could not be found. You need to " "re-run the original query." msgstr "" -#: superset/sqllab/query_render.py:117 +#: superset/sqllab/query_render.py:115 msgid "The query contains one or more malformed template parameters." msgstr "" @@ -15292,11 +15482,11 @@ msgstr "" msgid "The query has a syntax error." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:519 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:512 msgid "The query returned no data" msgstr "" -#: superset/sql_lab.py:301 +#: superset/sql_lab.py:297 #, python-format msgid "" "The query was killed after %(sqllab_timeout)s seconds. It might be too " @@ -15337,14 +15527,14 @@ msgstr "" msgid "The rich tooltip shows a list of all series for that point in time" msgstr "" -#: superset/db_engine_specs/bigquery.py:202 +#: superset/db_engine_specs/bigquery.py:203 #, python-format msgid "" "The schema \"%(schema)s\" does not exist. A valid schema must be used to " "run this query." msgstr "" -#: superset/db_engine_specs/presto.py:646 +#: superset/db_engine_specs/presto.py:673 #, python-format msgid "" "The schema \"%(schema_name)s\" does not exist. A valid schema must be " @@ -15355,11 +15545,12 @@ msgstr "" msgid "The schema was deleted or renamed in the database." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:92 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 msgid "The size of the square cell, in pixels" msgstr "" -#: superset/views/datasource/views.py:88 +#: superset/datasets/commands/exceptions.py:72 +#: superset/views/datasource/views.py:90 msgid "" "The submitted URL is not considered safe, only use URLs with the same " "domain as Superset." @@ -15373,21 +15564,21 @@ msgstr "" msgid "The submitted payload has the incorrect schema." msgstr "" -#: superset/db_engine_specs/bigquery.py:189 +#: superset/db_engine_specs/bigquery.py:190 #, python-format msgid "" "The table \"%(table)s\" does not exist. A valid table must be used to run" " this query." msgstr "" -#: superset/db_engine_specs/presto.py:638 +#: superset/db_engine_specs/presto.py:665 #, python-format msgid "" "The table \"%(table_name)s\" does not exist. A valid table must be used " "to run this query." msgstr "" -#: superset/connectors/sqla/views.py:515 +#: superset/connectors/sqla/views.py:422 msgid "" "The table was created. As part of this two-phase configuration process, " "you should now click the edit button by the new table to configure it." @@ -15438,13 +15629,13 @@ msgid "" " the start and/or end time." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 msgid "" "The time unit for each block. Should be a smaller unit than " "domain_granularity. Should be larger or equal to Time Grain" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 msgid "The time unit used for the grouping of blocks" msgstr "" @@ -15462,7 +15653,12 @@ msgstr "" msgid "The user seems to have been deleted" msgstr "" -#: superset/db_engine_specs/postgres.py:115 +#: superset/db_engine_specs/ocient.py:251 +msgid "The user/password combination is not valid (Incorrect password for user)." +msgstr "" + +#: superset/db_engine_specs/ocient.py:246 +#: superset/db_engine_specs/postgres.py:114 #, fuzzy, python-format msgid "The username \"%(username)s\" does not exist." msgstr "메트릭 '%(metric)s' 이 존재하지 않습니다." @@ -15489,16 +15685,16 @@ msgstr "" msgid "There are associated alerts or reports" msgstr "관련된 알람이나 리포트가 있습니다" -#: superset/charts/commands/bulk_delete.py:62 -#: superset/charts/commands/delete.py:71 -#: superset/dashboards/commands/bulk_delete.py:63 -#: superset/dashboards/commands/delete.py:64 -#: superset/databases/commands/delete.py:63 +#: superset/charts/commands/bulk_delete.py:61 +#: superset/charts/commands/delete.py:70 +#: superset/dashboards/commands/bulk_delete.py:62 +#: superset/dashboards/commands/delete.py:63 +#: superset/databases/commands/delete.py:62 #, python-format msgid "There are associated alerts or reports: %s," msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:710 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:711 msgid "There are no charts added to this dashboard" msgstr "" @@ -15554,7 +15750,7 @@ msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였 msgid "There was an error fetching tables" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:589 +#: superset-frontend/src/views/CRUD/hooks.ts:593 #, python-format msgid "There was an error fetching the favorite status: %s" msgstr "" @@ -15563,19 +15759,24 @@ msgstr "" msgid "There was an error fetching your recent activity:" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:450 +#, fuzzy +msgid "There was an error loading the chart data" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." + #: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 msgid "There was an error loading the dataset metadata" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:241 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:240 msgid "There was an error loading the schemas" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:194 +#: superset-frontend/src/components/TableSelector/index.tsx:191 msgid "There was an error loading the tables" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:612 +#: superset-frontend/src/views/CRUD/hooks.ts:616 #, python-format msgid "There was an error saving the favorite status: %s" msgstr "" @@ -15589,14 +15790,20 @@ msgstr "" #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 #: superset-frontend/src/pages/AnnotationList/index.tsx:121 #: superset-frontend/src/pages/CssTemplateList/index.tsx:97 -#: superset-frontend/src/pages/DatabaseList/index.tsx:167 -#: superset-frontend/src/pages/DatasetList/index.tsx:657 +#: superset-frontend/src/pages/DatabaseList/index.tsx:178 +#: superset-frontend/src/pages/DatasetList/index.tsx:668 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:97 #: superset-frontend/src/pages/SavedQueryList/index.tsx:245 #: superset-frontend/src/views/CRUD/utils.tsx:315 #, python-format msgid "There was an issue deleting %s: %s" msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:111 +#, fuzzy, python-format +msgid "There was an issue deleting rules: %s" +msgstr "데이터 베이스 목록을 가져오는 도중 에러가 발생하였습니다." + #: superset-frontend/src/pages/AlertReportList/index.tsx:201 #, python-format msgid "There was an issue deleting the selected %s: %s" @@ -15616,7 +15823,7 @@ msgstr "" msgid "There was an issue deleting the selected dashboards: " msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:675 +#: superset-frontend/src/pages/DatasetList/index.tsx:686 #, python-format msgid "There was an issue deleting the selected datasets: %s" msgstr "" @@ -15641,16 +15848,16 @@ msgstr "" msgid "There was an issue deleting: %s" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:683 +#: superset-frontend/src/pages/DatasetList/index.tsx:694 msgid "There was an issue duplicating the dataset." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:699 +#: superset-frontend/src/pages/DatasetList/index.tsx:710 #, python-format msgid "There was an issue duplicating the selected datasets: %s" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:129 +#: superset-frontend/src/dashboard/actions/dashboardState.js:127 msgid "There was an issue favoriting this dashboard." msgstr "" @@ -15658,7 +15865,7 @@ msgstr "" msgid "There was an issue fetching reports attached to this dashboard." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:104 +#: superset-frontend/src/dashboard/actions/dashboardState.js:103 msgid "There was an issue fetching the favorite status of this dashboard." msgstr "" @@ -15692,13 +15899,13 @@ msgstr "" msgid "There was an issue previewing the selected query. %s" msgstr "" -#: superset/viz.py:1992 +#: superset/viz.py:1915 msgid "" "There's a loop in your Sankey, please provide a tree. Here's a faulty " "link: {}" msgstr "" -#: superset/connectors/sqla/views.py:335 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:386 msgid "These are the tables this filter will be applied to." msgstr "" @@ -15747,10 +15954,10 @@ msgid "" "mydatabase.com)." msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:244 +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:245 msgid "" -"This chart emits/applies cross-filters to other charts that use the same " -"dataset" +"This chart applies cross-filters to charts whose datasets contain columns" +" with the same name." msgstr "" #: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 @@ -15765,7 +15972,7 @@ msgstr "" msgid "This chart might be incompatible with the filter (datasets don't match)" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:322 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 msgid "" "This chart type is not supported when using an unsaved query as a chart " "source. " @@ -15777,7 +15984,7 @@ msgid "" " Check the JSON metadata in the Advanced settings" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:121 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:113 msgid "This column might be incompatible with current dataset" msgstr "" @@ -15824,12 +16031,12 @@ msgid "" "dashboards. Click here to publish this dashboard." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:154 +#: superset-frontend/src/dashboard/actions/dashboardState.js:152 #, fuzzy msgid "This dashboard is now hidden" msgstr "이 차트를 변경하는 것은 불가능합니다" -#: superset-frontend/src/dashboard/actions/dashboardState.js:153 +#: superset-frontend/src/dashboard/actions/dashboardState.js:151 msgid "This dashboard is now published" msgstr "" @@ -15843,18 +16050,18 @@ msgid "" " id to the SDK:" msgstr "" -#: superset/views/core.py:1319 +#: superset/views/core.py:1353 msgid "" "This dashboard was changed recently. Please reload dashboard to get " "latest version." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:311 -#: superset-frontend/src/dashboard/actions/dashboardState.js:350 +#: superset-frontend/src/dashboard/actions/dashboardState.js:313 +#: superset-frontend/src/dashboard/actions/dashboardState.js:352 msgid "This dashboard was saved successfully." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1119 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1174 msgid "This database is managed externally, and can't be edited in Superset" msgstr "" @@ -15864,7 +16071,7 @@ msgid "" "table." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:240 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:282 msgid "This dataset is managed externally, and can't be edited in Superset" msgstr "" @@ -15881,7 +16088,7 @@ msgstr "" msgid "This defines the level of the hierarchy" msgstr "" -#: superset/connectors/sqla/views.py:436 +#: superset/connectors/sqla/views.py:343 msgid "" "This fields acts a Superset view, meaning that Superset will run a query " "against this string as a subquery." @@ -15904,7 +16111,7 @@ msgstr "" msgid "This functionality is disabled in your environment for security reasons." msgstr "" -#: superset/connectors/sqla/views.py:352 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:456 msgid "" "This is the condition that will be added to the WHERE clause. For " "example, to only return rows for a particular client, you might define a " @@ -15933,7 +16140,7 @@ msgstr "" msgid "This may be triggered by:" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:258 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:256 msgid "This metric might be incompatible with current dataset" msgstr "" @@ -15974,15 +16181,15 @@ msgid "" "associate one dataset with a table.\n" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:85 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 msgid "This value should be greater than the left target value" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:80 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 msgid "This value should be smaller than the right target value" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:141 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:171 #, fuzzy msgid "This visualization type does not support cross-filtering." msgstr "시각화 유형 선택" @@ -16019,6 +16226,7 @@ msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:38 #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 @@ -16050,7 +16258,7 @@ msgstr "컬럼 수정" msgid "Time Comparison" msgstr "컬럼 수정" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:141 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 #, fuzzy msgid "Time Format" msgstr "D3 포멧" @@ -16083,39 +16291,39 @@ msgstr "D3 포멧" msgid "Time Series" msgstr "컬럼 수정" -#: superset/viz.py:1670 +#: superset/viz.py:1581 msgid "Time Series - Bar Chart" msgstr "" -#: superset/viz.py:1596 +#: superset/viz.py:1504 msgid "Time Series - Dual Axis Line Chart" msgstr "" -#: superset/viz.py:1308 +#: superset/viz.py:1209 msgid "Time Series - Line Chart" msgstr "" -#: superset/viz.py:1518 +#: superset/viz.py:1424 msgid "Time Series - Multiple Line Charts" msgstr "" -#: superset/viz.py:3036 +#: superset/viz.py:3033 msgid "Time Series - Nightingale Rose Chart" msgstr "" -#: superset/viz.py:2965 +#: superset/viz.py:2961 msgid "Time Series - Paired t-test" msgstr "" -#: superset/viz.py:1725 +#: superset/viz.py:1638 msgid "Time Series - Percent Change" msgstr "" -#: superset/viz.py:1679 +#: superset/viz.py:1590 msgid "Time Series - Period Pivot" msgstr "" -#: superset/viz.py:1733 +#: superset/viz.py:1646 msgid "Time Series - Stacked" msgstr "" @@ -16131,7 +16339,7 @@ msgstr "컬럼 수정" msgid "Time Shift" msgstr "" -#: superset/viz.py:849 +#: superset/viz.py:878 msgid "Time Table View" msgstr "시간 테이블 뷰" @@ -16143,7 +16351,7 @@ msgstr "시간 테이블 뷰" msgid "Time column" msgstr "컬럼 수정" -#: superset/connectors/sqla/models.py:1392 superset/models/helpers.py:1575 +#: superset/models/helpers.py:1659 #, python-format msgid "Time column \"%(col)s\" does not exist in dataset" msgstr "" @@ -16229,6 +16437,7 @@ msgid "Time ratio" msgstr "D3 포멧" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 #: superset-frontend/src/explore/controlPanels/sections.tsx:66 msgid "Time related form attributes" msgstr "" @@ -16359,12 +16568,12 @@ msgstr "" msgid "Timestamp format" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:326 +#: superset-frontend/src/components/ReportModal/index.tsx:325 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 msgid "Timezone" msgstr "" -#: superset/connectors/sqla/views.py:427 +#: superset/connectors/sqla/views.py:334 msgid "Timezone offset (in hours) for this datasource" msgstr "" @@ -16409,33 +16618,29 @@ msgstr "" msgid "To get a readable URL for your dashboard" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:288 -#, fuzzy -msgid "Too many columns to filter" -msgstr "하나 이상의 칼럼이 존재하지 않습니다" - #: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:27 #, fuzzy msgid "Tools" msgstr "역할" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:216 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:213 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 msgid "Tooltip" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:201 #, fuzzy msgid "Tooltip sort by metric" msgstr "필터" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:191 msgid "Tooltip time format" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 #, fuzzy msgid "Top" @@ -16459,14 +16664,14 @@ msgstr "" msgid "Total (%(aggfunc)s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:497 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:562 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:784 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 #, python-format msgid "Total (%(aggregatorName)s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:230 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:68 #, fuzzy msgid "Total value" msgstr "원본 값" @@ -16481,7 +16686,7 @@ msgstr "" msgid "Totals" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:411 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:404 msgid "Track job" msgstr "" @@ -16501,10 +16706,6 @@ msgstr "" msgid "Transparent" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:99 -msgid "Transpose Pivot" -msgstr "" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:238 msgid "Transpose pivot" msgstr "" @@ -16524,7 +16725,7 @@ msgid "Tree orientation" msgstr "주석" #: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:60 -#: superset/viz.py:1035 +#: superset/viz.py:925 msgid "Treemap" msgstr "트리맵" @@ -16591,7 +16792,7 @@ msgstr "" msgid "Truncates the specified date to the accuracy specified by the date unit." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 msgid "Try applying different filters or ensuring your datasource has data" msgstr "" @@ -16613,21 +16814,21 @@ msgstr "" msgid "Tukey" msgstr "Query 공유" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:216 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:65 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:272 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:276 -#: superset-frontend/src/pages/DatasetList/index.tsx:343 -#: superset-frontend/src/pages/DatasetList/index.tsx:552 -#: superset/connectors/sqla/views.py:164 superset/connectors/sqla/views.py:253 +#: superset-frontend/src/pages/DatasetList/index.tsx:354 +#: superset-frontend/src/pages/DatasetList/index.tsx:563 +#: superset/connectors/sqla/views.py:163 superset/connectors/sqla/views.py:252 msgid "Type" msgstr "타입" #: superset-frontend/src/components/DeleteModal/index.tsx:92 #: superset-frontend/src/components/ImportModal/index.tsx:397 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1405 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1460 #, python-format msgid "Type \"%s\" to confirm" msgstr "" @@ -16653,7 +16854,7 @@ msgstr "" msgid "Type of comparison, value difference or percentage" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:404 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:407 #, python-format msgid "Type or Select [%s]" msgstr "" @@ -16683,22 +16884,23 @@ msgstr "" msgid "URL slug" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:622 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:618 msgid "Unable to add a new tab to the backend. Please contact your administrator." msgstr "" -#: superset/db_engine_specs/presto.py:677 +#: superset/db_engine_specs/presto.py:704 #, python-format msgid "Unable to connect to catalog named \"%(catalog_name)s\"." msgstr "" #: superset/db_engine_specs/mysql.py:165 -#: superset/db_engine_specs/postgres.py:148 +#: superset/db_engine_specs/postgres.py:147 +#: superset/db_engine_specs/starrocks.py:127 #, python-format msgid "Unable to connect to database \"%(database)s\"." msgstr "" -#: superset/db_engine_specs/bigquery.py:177 +#: superset/db_engine_specs/bigquery.py:178 msgid "" "Unable to connect. Verify that the following roles are set on the service" " account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " @@ -16706,10 +16908,18 @@ msgid "" "\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:218 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:216 msgid "Unable to create chart without a query id." msgstr "" +#: superset/key_value/exceptions.py:66 +msgid "Unable to decode value" +msgstr "" + +#: superset/key_value/exceptions.py:62 +msgid "Unable to encode value" +msgstr "" + #: superset/utils/date_parser.py:393 #, python-format msgid "Unable to find such a holiday: [%(holiday)s]" @@ -16721,19 +16931,19 @@ msgid "" "table." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:589 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:585 msgid "" "Unable to migrate query editor state to backend. Superset will retry " "later. Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:543 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:539 msgid "" "Unable to migrate query state to backend. Superset will retry later. " "Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:525 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:521 msgid "" "Unable to migrate table schema state to backend. Superset will retry " "later. Please contact your administrator if this problem persists." @@ -16743,14 +16953,14 @@ msgstr "" msgid "Unable to retrieve dashboard colors" msgstr "" -#: superset/views/database/views.py:275 +#: superset/views/database/views.py:278 #, python-format msgid "" "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" " database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset/views/database/views.py:553 +#: superset/views/database/views.py:556 #, python-format msgid "" "Unable to upload Columnar file \"%(filename)s\" to table " @@ -16758,14 +16968,14 @@ msgid "" "%(error_msg)s" msgstr "" -#: superset/views/database/views.py:412 +#: superset/views/database/views.py:415 #, python-format msgid "" "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " "in database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:93 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:92 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 msgid "Undefined" msgstr "" @@ -16779,7 +16989,7 @@ msgstr "" msgid "Undo the action" msgstr "주석" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:131 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:132 msgid "Undo?" msgstr "" @@ -16789,7 +16999,7 @@ msgid "Unexpected error" msgstr "" #: superset/databases/commands/exceptions.py:137 -#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1438 +#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1479 msgid "Unexpected error occurred, please check your logs for details" msgstr "" @@ -16797,7 +17007,7 @@ msgstr "" msgid "Unexpected error: " msgstr "" -#: superset/views/api.py:109 +#: superset/views/api.py:108 #, python-format msgid "Unexpected time range: %s" msgstr "" @@ -16811,7 +17021,7 @@ msgstr "" msgid "Unknown MySQL server host \"%(hostname)s\"." msgstr "" -#: superset/db_engine_specs/presto.py:1319 +#: superset/db_engine_specs/presto.py:1342 msgid "Unknown Presto Error" msgstr "" @@ -16819,13 +17029,13 @@ msgstr "" msgid "Unknown Status" msgstr "" -#: superset/connectors/sqla/models.py:1317 superset/models/helpers.py:1498 +#: superset/models/helpers.py:1582 #, fuzzy, python-format msgid "Unknown column used in orderby: %(col)s" msgstr "알 수 없는 칼럼이 orderby에 사용되었습니다: %(col)" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:402 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:480 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:398 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:476 msgid "Unknown error" msgstr "알 수 없는 에러" @@ -16887,7 +17097,7 @@ msgstr "Query 공유" msgid "Untitled query" msgstr "Query 공유" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:223 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:222 msgid "Update" msgstr "" @@ -16905,7 +17115,7 @@ msgstr "" msgid "Upload" msgstr "CSV 업로드" -#: superset-frontend/src/pages/DatabaseList/index.tsx:202 +#: superset-frontend/src/pages/DatabaseList/index.tsx:213 #, fuzzy msgid "Upload CSV" msgstr "엑셀 업로드" @@ -16925,7 +17135,7 @@ msgstr "엑셀 업로드" msgid "Upload Enabled" msgstr "엑셀 업로드" -#: superset-frontend/src/pages/DatabaseList/index.tsx:216 +#: superset-frontend/src/pages/DatabaseList/index.tsx:227 #, fuzzy msgid "Upload Excel file" msgstr "엑셀 업로드" @@ -16938,7 +17148,7 @@ msgstr "" msgid "Upload JSON file" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:209 +#: superset-frontend/src/pages/DatabaseList/index.tsx:220 #, fuzzy msgid "Upload columnar file" msgstr "컬럼 추가" @@ -16947,7 +17157,7 @@ msgstr "컬럼 추가" msgid "Upload columnar file to database" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:199 +#: superset-frontend/src/pages/DatabaseList/index.tsx:210 #, fuzzy msgid "Upload file to database" msgstr "차트 수정" @@ -16962,7 +17172,7 @@ msgstr "관리" msgid "Use \"%(menuName)s\" menu instead." msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:36 +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 #, fuzzy, python-format msgid "Use %s to open in a new tab." msgstr "새로운 탭에서 Query실행" @@ -16974,7 +17184,7 @@ msgstr "새로운 탭에서 Query실행" msgid "Use Area Proportions" msgstr "대시보드" -#: superset/views/database/forms.py:462 +#: superset/views/database/forms.py:472 #, fuzzy msgid "Use Columns" msgstr "컬럼 추가" @@ -16991,9 +17201,9 @@ msgstr "" msgid "Use a log scale for the Y-axis" msgstr "" -#: superset/db_engine_specs/base.py:1850 -#: superset/db_engine_specs/clickhouse.py:211 -#: superset/db_engine_specs/databricks.py:57 +#: superset/db_engine_specs/base.py:1889 +#: superset/db_engine_specs/clickhouse.py:216 +#: superset/db_engine_specs/databricks.py:58 msgid "Use an encrypted connection to the database" msgstr "" @@ -17004,12 +17214,12 @@ msgid "" " Your chart must be one of these visualization types: [%s]" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:87 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 msgid "Use date formatting even when metric value is not a timestamp" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:217 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 msgid "Use legacy datasource editor" msgstr "" @@ -17055,16 +17265,6 @@ msgid "" " from the pluginʼs package.json" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:28 -msgid "" -"Used to summarize a set of data by grouping together multiple statistics " -"along two axes. Examples: Sales numbers by region and month, tasks by " -"status and assignee, active users by age and location.\n" -"\n" -" This chart is being deprecated and we recommend checking out Pivot " -"Table V2 instead!" -msgstr "" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 msgid "" "Used to summarize a set of data by grouping together multiple statistics " @@ -17108,12 +17308,18 @@ msgstr "Query 공유" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:133 #: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 -#: superset/db_engine_specs/base.py:1837 +#: superset/db_engine_specs/base.py:1868 #: superset/db_engine_specs/clickhouse.py:201 #, fuzzy msgid "Username" msgstr "Query 검색" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:27 +msgid "" +"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" +" of data" +msgstr "" + #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:45 msgid "" "Uses a gauge to showcase progress of a metric towards a target. The " @@ -17164,9 +17370,9 @@ msgstr "" msgid "Value is required" msgstr "데이터소스" -#: superset/reports/schemas.py:186 superset/reports/schemas.py:192 -#: superset/reports/schemas.py:198 superset/reports/schemas.py:280 -#: superset/reports/schemas.py:286 superset/reports/schemas.py:293 +#: superset/reports/schemas.py:190 superset/reports/schemas.py:195 +#: superset/reports/schemas.py:200 superset/reports/schemas.py:291 +#: superset/reports/schemas.py:296 superset/reports/schemas.py:302 msgid "Value must be greater than 0" msgstr "값은 0보다 커야합니다" @@ -17188,16 +17394,16 @@ msgstr "" msgid "Vehicle Types" msgstr "" -#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:252 +#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:251 msgid "Verbose Name" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:503 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:539 #: superset-frontend/src/features/home/RightMenu.tsx:501 msgid "Version" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:509 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:545 msgid "Version number" msgstr "" @@ -17208,7 +17414,7 @@ msgstr "" msgid "Vertical" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:162 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 msgid "Vertical (Left)" msgstr "" @@ -17238,7 +17444,7 @@ msgstr "차트 수정" msgid "View all charts" msgstr "차트 추가" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:434 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 #, fuzzy msgid "View as table" msgstr "탭 닫기" @@ -17253,8 +17459,8 @@ msgstr "SQL Lab" msgid "View keys & indexes (%s)" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:415 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:417 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:424 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:426 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:394 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:396 msgid "View query" @@ -17275,8 +17481,8 @@ msgstr "삭제" msgid "Viewport" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:342 -#: superset-frontend/src/pages/DatasetList/index.tsx:559 +#: superset-frontend/src/pages/DatasetList/index.tsx:353 +#: superset-frontend/src/pages/DatasetList/index.tsx:570 msgid "Virtual" msgstr "" @@ -17284,20 +17490,20 @@ msgstr "" msgid "Virtual (SQL)" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:281 +#: superset-frontend/src/pages/DatasetList/index.tsx:292 msgid "Virtual dataset" msgstr "차트 수정" -#: superset/connectors/sqla/models.py:960 superset/connectors/sqla/utils.py:111 -#: superset/models/helpers.py:1036 +#: superset/connectors/sqla/models.py:921 superset/connectors/sqla/utils.py:110 +#: superset/models/helpers.py:1079 msgid "Virtual dataset query cannot be empty" msgstr "" -#: superset/connectors/sqla/models.py:963 superset/models/helpers.py:1039 +#: superset/connectors/sqla/models.py:924 superset/models/helpers.py:1082 msgid "Virtual dataset query cannot consist of multiple statements" msgstr "" -#: superset/connectors/sqla/models.py:928 superset/models/helpers.py:1062 +#: superset/connectors/sqla/models.py:889 superset/models/helpers.py:1105 msgid "Virtual dataset query must be read-only" msgstr "가상 데이터셋 쿼리는 읽기 전용이어야 합니다" @@ -17426,7 +17632,7 @@ msgid "" "corresponds to higher frequency." msgstr "" -#: superset/viz.py:141 +#: superset/viz.py:140 msgid "Viz is missing a datasource" msgstr "" @@ -17438,21 +17644,21 @@ msgstr "시각화 유형" msgid "WED" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:948 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1003 msgid "Want to add a new database?" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1246 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:216 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:214 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 msgid "Warning" msgstr "" -#: superset/connectors/sqla/views.py:258 +#: superset/connectors/sqla/views.py:257 msgid "Warning Message" msgstr "경고 메시지" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:286 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 msgid "Warning!" msgstr "" @@ -17467,13 +17673,13 @@ msgstr "" msgid "Was unable to check your query" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1468 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1523 msgid "" "We are unable to connect to your database. Click \"See more\" for " "database-provided information that may help troubleshoot the issue." msgstr "" -#: superset/db_engine_specs/bigquery.py:197 +#: superset/db_engine_specs/bigquery.py:198 #, python-format msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." msgstr "" @@ -17483,8 +17689,8 @@ msgstr "" msgid "We can't seem to resolve the column \"%(column_name)s\"" msgstr "" -#: superset/db_engine_specs/postgres.py:153 -#: superset/db_engine_specs/presto.py:630 +#: superset/db_engine_specs/postgres.py:152 +#: superset/db_engine_specs/presto.py:657 #, python-format msgid "" "We can't seem to resolve the column \"%(column_name)s\" at line " @@ -17506,7 +17712,7 @@ msgid "" "dataset." msgstr "" -#: superset/db_engine_specs/redshift.py:90 +#: superset/db_engine_specs/redshift.py:94 #, python-format msgid "" "We were unable to connect to your database named \"%(database)s\". Please" @@ -17523,31 +17729,31 @@ msgstr "" msgid "Wednesday" msgstr "" -#: superset/db_engine_specs/base.py:107 +#: superset/db_engine_specs/base.py:108 msgid "Week" msgstr "주" -#: superset/db_engine_specs/base.py:113 +#: superset/db_engine_specs/base.py:114 msgid "Week ending Saturday" msgstr "" -#: superset/db_engine_specs/base.py:112 +#: superset/db_engine_specs/base.py:113 msgid "Week starting Monday" msgstr "" -#: superset/db_engine_specs/base.py:111 +#: superset/db_engine_specs/base.py:112 msgid "Week starting Sunday" msgstr "" -#: superset/db_engine_specs/base.py:114 +#: superset/db_engine_specs/base.py:115 msgid "Week_ending Sunday" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:123 +#: superset-frontend/src/components/ReportModal/index.tsx:122 msgid "Weekly Report" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:122 +#: superset-frontend/src/components/ReportModal/index.tsx:121 #, python-format msgid "Weekly Report for %s" msgstr "" @@ -17561,6 +17767,7 @@ msgstr "" msgid "Weeks %s" msgstr "주" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:49 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:77 msgid "Weight" @@ -17595,7 +17802,7 @@ msgstr[0] "" msgid "What should be shown on the label?" msgstr "" -#: superset/views/database/forms.py:165 +#: superset/views/database/forms.py:175 #, fuzzy msgid "What should happen if the table already exists" msgstr "같은 이름의 데이터베이스가 이미 존재합니다" @@ -17621,7 +17828,7 @@ msgstr "" msgid "When checked, the map will zoom to your data after each query" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:189 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 msgid "When enabled, users are able to visualize SQL Lab results in Explore." msgstr "" @@ -17646,11 +17853,11 @@ msgid "" "relative time filter on a partitioned or indexed time-related field." msgstr "" -#: superset/viz.py:861 +#: superset/viz.py:891 msgid "When using 'Group By' you are limited to use a single metric" msgstr "'Group By'를 사용 할 때 오직 하나의 메트릭만 사용 가능합니다" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:74 msgid "When using other than adaptive formatting, labels may overlap" msgstr "" @@ -17662,11 +17869,11 @@ msgstr "" msgid "Whether the progress bar overlaps when there are multiple groups of data" msgstr "" -#: superset/connectors/sqla/views.py:455 +#: superset/connectors/sqla/views.py:362 msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" msgstr "" -#: superset/connectors/sqla/views.py:111 +#: superset/connectors/sqla/views.py:110 msgid "" "Whether this column is exposed in the `Filters` section of the explore " "view." @@ -17708,7 +17915,7 @@ msgstr "" msgid "Whether to display a bar chart background in table columns" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 msgid "Whether to display a legend for the chart" msgstr "" @@ -17739,14 +17946,14 @@ msgid "" " 5% threshold." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:157 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:118 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:159 msgid "Whether to display the legend (toggles)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:181 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 msgid "Whether to display the metric name as a title" msgstr "" @@ -17759,7 +17966,7 @@ msgstr "" msgid "Whether to display the min and max values of the Y-axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:167 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:187 msgid "Whether to display the numerical values within the cells" @@ -17823,7 +18030,7 @@ msgstr "" msgid "Whether to make the histogram cumulative" msgstr "" -#: superset/connectors/sqla/views.py:106 +#: superset/connectors/sqla/views.py:105 msgid "" "Whether to make this column available as a [Time Granularity] option, " "column has to be DATETIME or DATETIME-like" @@ -17837,7 +18044,7 @@ msgstr "" msgid "Whether to populate autocomplete filters options" msgstr "" -#: superset/connectors/sqla/views.py:450 +#: superset/connectors/sqla/views.py:357 msgid "" "Whether to populate the filter's dropdown in the explore view's filter " "section with a list of distinct values fetched from the backend on the " @@ -17867,7 +18074,8 @@ msgstr "" msgid "Whether to show the split lines on the axis" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:124 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:143 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:174 msgid "Whether to sort ascending or descending on the base Axis." msgstr "" @@ -17897,7 +18105,7 @@ msgstr "" msgid "Whether to sort results by the selected metric in descending order." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:207 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 msgid "Whether to sort tooltip by the selected metric in descending order." msgstr "" @@ -17963,7 +18171,7 @@ msgid "Working timeout" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 -#: superset/viz.py:2079 +#: superset/viz.py:2006 msgid "World Map" msgstr "" @@ -17975,11 +18183,11 @@ msgstr "" msgid "Write a handlebars template to render the data" msgstr "" -#: superset/views/database/forms.py:219 +#: superset/views/database/forms.py:229 msgid "Write dataframe index as a column" msgstr "" -#: superset/views/database/forms.py:380 superset/views/database/forms.py:471 +#: superset/views/database/forms.py:390 superset/views/database/forms.py:481 msgid "Write dataframe index as a column." msgstr "" @@ -18037,11 +18245,13 @@ msgstr "" msgid "X bounds" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:122 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:141 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:172 msgid "X-Axis Sort Ascending" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:69 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:156 msgid "X-Axis Sort By" msgstr "" @@ -18101,7 +18311,6 @@ msgid "Y Axis 2 Bounds" msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:260 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:248 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:192 @@ -18140,11 +18349,13 @@ msgstr "" msgid "Y bounds" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:121 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:140 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:171 msgid "Y-Axis Sort Ascending" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:68 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 msgid "Y-Axis Sort By" msgstr "" @@ -18161,7 +18372,7 @@ msgstr "" msgid "YScale Interval" msgstr "새로고침 간격" -#: superset/db_engine_specs/base.py:110 +#: superset/db_engine_specs/base.py:111 msgid "Year" msgstr "년" @@ -18186,9 +18397,9 @@ msgstr "년" #: superset-frontend/src/pages/ChartList/index.tsx:707 #: superset-frontend/src/pages/DashboardList/index.tsx:506 #: superset-frontend/src/pages/DashboardList/index.tsx:588 -#: superset-frontend/src/pages/DatabaseList/index.tsx:467 -#: superset-frontend/src/pages/DatabaseList/index.tsx:487 -#: superset-frontend/src/pages/DatasetList/index.tsx:572 +#: superset-frontend/src/pages/DatabaseList/index.tsx:478 +#: superset-frontend/src/pages/DatabaseList/index.tsx:498 +#: superset-frontend/src/pages/DatasetList/index.tsx:583 msgid "Yes" msgstr "" @@ -18215,7 +18426,7 @@ msgid "" "overwrite?" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1394 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1449 msgid "" "You are importing one or more databases that already exist. Overwriting " "might cause you to lose some of your work. Are you sure you want to " @@ -18236,7 +18447,7 @@ msgid "" "want to overwrite?" msgstr "" -#: superset/views/core.py:2177 +#: superset/views/core.py:2213 msgid "" "You are not authorized to see this query. If you think this is an error, " "please reach out to your administrator." @@ -18254,7 +18465,7 @@ msgstr "" msgid "You can add the components in the edit mode." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:127 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:157 msgid "You can also just click on the chart to apply cross-filter." msgstr "" @@ -18277,7 +18488,7 @@ msgstr "" msgid "You can preview the list of dashboards in the chart settings dropdown." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:148 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:178 msgid "You can't apply cross-filter on this data point." msgstr "" @@ -18291,7 +18502,7 @@ msgstr "" msgid "You cannot use 45° tick layout along with the time range filter" msgstr "" -#: superset/viz.py:723 +#: superset/viz.py:748 msgid "" "You cannot use [Columns] in combination with [Group " "By]/[Metrics]/[Percentage Metrics]. Please choose one or the other." @@ -18307,7 +18518,7 @@ msgid "You do not have permission to edit this chart" msgstr "" #: superset-frontend/src/components/Tags/utils.tsx:69 -#: superset-frontend/src/dashboard/actions/dashboardState.js:366 +#: superset-frontend/src/dashboard/actions/dashboardState.js:368 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:134 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:40 @@ -18319,7 +18530,7 @@ msgstr "" msgid "You do not have permissions to access the datasource(s): %(name)s." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:162 +#: superset-frontend/src/dashboard/actions/dashboardState.js:160 msgid "You do not have permissions to edit this dashboard." msgstr "" @@ -18331,7 +18542,7 @@ msgstr "" msgid "You don't have access to this dashboard." msgstr "" -#: superset/datasets/commands/exceptions.py:189 +#: superset/datasets/commands/exceptions.py:206 msgid "You don't have access to this dataset." msgstr "" @@ -18348,16 +18559,16 @@ msgstr "" msgid "You don't have permission to modify the value." msgstr "" -#: superset/security/manager.py:2267 +#: superset/security/manager.py:2262 #, python-format msgid "You don't have the rights to alter %(resource)s" msgstr "" -#: superset/views/core.py:923 +#: superset/views/core.py:945 msgid "You don't have the rights to alter this chart" msgstr "" -#: superset/views/core.py:1097 +#: superset/views/core.py:1119 msgid "You don't have the rights to alter this dashboard" msgstr "" @@ -18365,19 +18576,19 @@ msgstr "" msgid "You don't have the rights to alter this title." msgstr "" -#: superset/views/core.py:929 +#: superset/views/core.py:951 msgid "You don't have the rights to create a chart" msgstr "" -#: superset/views/core.py:1113 +#: superset/views/core.py:1135 msgid "You don't have the rights to create a dashboard" msgstr "" -#: superset/views/core.py:644 +#: superset/views/core.py:649 msgid "You don't have the rights to download as csv" msgstr "" -#: superset/views/core.py:424 +#: superset/views/core.py:425 msgid "You have no permission to approve this request" msgstr "" @@ -18389,7 +18600,7 @@ msgstr "" msgid "You have unsaved changes." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:652 +#: superset-frontend/src/dashboard/actions/dashboardState.js:650 #, python-format msgid "" "You have used all %(historyLength)s undo slots and will not be able to " @@ -18398,7 +18609,7 @@ msgid "" msgstr "" #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:300 -#: superset-frontend/src/pages/DatasetList/index.tsx:453 +#: superset-frontend/src/pages/DatasetList/index.tsx:464 msgid "" "You must be a dataset owner in order to edit. Please reach out to a " "dataset owner to request modifications or edit access." @@ -18408,7 +18619,7 @@ msgstr "" msgid "You must pick a name for the new dashboard" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:525 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:519 msgid "You must run the query successfully first" msgstr "" @@ -18416,7 +18627,7 @@ msgstr "" msgid "You need to configure HTML sanitization to use CSS" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:350 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 msgid "" "You updated the values in the control panel, but the chart was not " "updated automatically. Run the query by clicking on the \"Update chart\" " @@ -18429,7 +18640,7 @@ msgid "" "match this new dataset have been retained." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:343 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 msgid "Your chart is not up to date" msgstr "" @@ -18441,7 +18652,7 @@ msgstr "" msgid "Your dashboard is too large. Please reduce its size before saving it." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1036 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1028 msgid "Your query could not be saved" msgstr "" @@ -18449,7 +18660,7 @@ msgstr "" msgid "Your query could not be scheduled" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1071 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1063 msgid "Your query could not be updated" msgstr "" @@ -18459,15 +18670,15 @@ msgid "" "Saved queries" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1051 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 msgid "Your query was not properly saved" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1054 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1046 msgid "Your query was saved" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1067 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1059 msgid "Your query was updated" msgstr "" @@ -18490,20 +18701,20 @@ msgstr "" msgid "Zoom level of the map" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:262 +#: superset-frontend/src/dashboard/actions/dashboardState.js:260 #, fuzzy msgid "[ untitled dashboard ]" msgstr "대시보드 저장" -#: superset/viz.py:2386 +#: superset/viz.py:2323 msgid "[Longitude] and [Latitude] columns must be present in [Group By]" msgstr "" -#: superset/viz.py:2336 +#: superset/viz.py:2273 msgid "[Longitude] and [Latitude] must be set" msgstr "" -#: superset/explore/commands/get.py:121 superset/views/core.py:870 +#: superset/explore/commands/get.py:121 superset/views/core.py:892 msgid "[Missing Dataset]" msgstr "" @@ -18516,7 +18727,7 @@ msgstr "" msgid "[Untitled]" msgstr "" -#: superset/connectors/base/models.py:252 superset/models/sql_lab.py:228 +#: superset/connectors/base/models.py:262 superset/models/sql_lab.py:216 msgid "[asc]" msgstr "" @@ -18528,7 +18739,7 @@ msgstr "" msgid "[dashboard name]" msgstr "" -#: superset/connectors/base/models.py:255 superset/models/sql_lab.py:231 +#: superset/connectors/base/models.py:265 superset/models/sql_lab.py:219 msgid "[desc]" msgstr "" @@ -18552,7 +18763,7 @@ msgstr "" msgid "`compare_type` must be `difference`, `percentage` or `ratio`" msgstr "" -#: superset/charts/schemas.py:573 +#: superset/charts/schemas.py:654 msgid "`confidence_interval` must be between 0 and 1 (exclusive)" msgstr "" @@ -18575,15 +18786,15 @@ msgstr "" msgid "`rename_columns` must have the same length as `columns`." msgstr "" -#: superset/charts/schemas.py:1114 +#: superset/charts/schemas.py:1284 msgid "`row_limit` must be greater than or equal to 0" msgstr "" -#: superset/charts/schemas.py:1121 +#: superset/charts/schemas.py:1291 msgid "`row_offset` must be greater than or equal to 0" msgstr "" -#: superset/charts/schemas.py:972 +#: superset/charts/schemas.py:1108 msgid "`width` must be greater or equal to 0" msgstr "" @@ -18591,10 +18802,16 @@ msgstr "" msgid "aggregate" msgstr "" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 #: superset-frontend/src/pages/AlertReportList/index.tsx:110 msgid "alert" msgstr "" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 +#, fuzzy +msgid "alert dark" +msgstr "시작 시간" + #: superset-frontend/src/pages/AlertReportList/index.tsx:111 msgid "alerts" msgstr "" @@ -18737,7 +18954,7 @@ msgid "clear all filters" msgstr "필터" #: superset-frontend/src/components/Chart/Chart.jsx:290 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:354 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 msgid "click here" msgstr "" @@ -18768,7 +18985,7 @@ msgstr "" msgid "count" msgstr "컬럼 추가" -#: superset-frontend/src/explore/components/SaveModal.tsx:365 +#: superset-frontend/src/explore/components/SaveModal.tsx:400 #, fuzzy msgid "create" msgstr "생성자" @@ -18815,16 +19032,16 @@ msgid "dashboards" msgstr "대시보드" #: superset-frontend/src/features/databases/DatabaseModal/index.tsx:543 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:712 -#: superset-frontend/src/pages/DatabaseList/index.tsx:91 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:729 +#: superset-frontend/src/pages/DatabaseList/index.tsx:102 msgid "database" msgstr "데이터베이스" #: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 #: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 #: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 -#: superset-frontend/src/pages/DatasetList/index.tsx:148 -#: superset-frontend/src/pages/DatasetList/index.tsx:822 +#: superset-frontend/src/pages/DatasetList/index.tsx:159 +#: superset-frontend/src/pages/DatasetList/index.tsx:844 msgid "dataset" msgstr "" @@ -18837,8 +19054,8 @@ msgstr "데이터소스 명" msgid "date" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 msgid "day" msgstr "일" @@ -18867,6 +19084,11 @@ msgstr "" msgid "deck.gl Grid" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:30 +#, fuzzy +msgid "deck.gl Heatmap" +msgstr "차트 추가" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:28 msgid "deck.gl Multiple Layers" msgstr "" @@ -18896,6 +19118,7 @@ msgstr "차트 추가" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:34 @@ -18981,11 +19204,11 @@ msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:112 #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:657 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:674 msgid "e.g. world_population" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:655 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:672 msgid "e.g. xy12345.us-east-2.aws" msgstr "" @@ -19004,7 +19227,16 @@ msgstr "Query 검색" msgid "entries" msgstr "저장된 Query" -#: superset/connectors/sqla/models.py:1537 superset/models/helpers.py:1742 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +#, fuzzy +msgid "error" +msgstr "%s 에러" + +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 +msgid "error dark" +msgstr "" + +#: superset/models/helpers.py:1803 #, fuzzy msgid "error_message" msgstr "에러 메시지" @@ -19088,10 +19320,6 @@ msgstr "" msgid "geohash (square)" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 -msgid "green" -msgstr "" - #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:168 #, fuzzy msgid "heatmap" @@ -19105,14 +19333,14 @@ msgstr "" #: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:125 #: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1800 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1856 #, fuzzy msgid "here" msgstr "Query 공유" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 msgid "hour" msgstr "시간" @@ -19149,7 +19377,7 @@ msgstr "" msgid "joined" msgstr "" -#: superset/views/base.py:595 +#: superset/views/base.py:596 msgid "json isn't valid" msgstr "" @@ -19215,14 +19443,13 @@ msgstr "차트 이동" msgid "log" msgstr "" -#: superset/charts/schemas.py:645 +#: superset/charts/schemas.py:735 msgid "" "lower percentile must be greater than 0 and less than 100. Must be lower " "than upper percentile." msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:189 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:58 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 #: superset-frontend/src/filters/components/Range/buildQuery.ts:69 msgid "max" @@ -19231,9 +19458,9 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:187 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:254 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:56 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:136 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:119 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:403 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:531 @@ -19251,15 +19478,14 @@ msgstr "" msgid "median" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:60 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:62 #: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 #, fuzzy msgid "metric" msgstr "메트릭" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:188 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:57 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 #: superset-frontend/src/filters/components/Range/buildQuery.ts:58 #, fuzzy @@ -19281,8 +19507,8 @@ msgid "monotone" msgstr "월" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 #: superset-frontend/src/explore/controls.jsx:267 msgid "month" @@ -19293,7 +19519,7 @@ msgid "more than {max} {name}" msgstr "" #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:53 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:78 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:77 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:116 msgid "must have a value" msgstr "" @@ -19356,7 +19582,7 @@ msgstr "시간" msgid "or use existing ones from the panel on the right" msgstr "" -#: superset/charts/schemas.py:1143 +#: superset/charts/schemas.py:1313 #, fuzzy msgid "orderby column must be populated" msgstr "하나 이상의 칼럼이 중복됩니다" @@ -19413,7 +19639,7 @@ msgid "" " first is lower than the second value" msgstr "" -#: superset/views/core.py:1921 +#: superset/views/core.py:1958 #, fuzzy msgid "permalink state not found" msgstr "CSS 템플릿을 찾을수 없습니다." @@ -19469,12 +19695,7 @@ msgstr "" msgid "recents" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 -#, fuzzy -msgid "red" -msgstr "생성자" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:563 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:566 #: superset-frontend/src/pages/AlertReportList/index.tsx:110 msgid "report" msgstr "" @@ -19486,7 +19707,7 @@ msgstr "" msgid "reports" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:491 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:522 msgid "restore zoom" msgstr "" @@ -19495,6 +19716,11 @@ msgstr "" msgid "right" msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:139 +#, fuzzy +msgid "rowlevelsecurity" +msgstr "저수준 보안" + #: superset-frontend/src/SqlLab/constants.ts:36 #: superset-frontend/src/SqlLab/constants.ts:52 msgid "running" @@ -19544,7 +19770,6 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:190 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:59 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:138 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:405 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:185 @@ -19577,15 +19802,20 @@ msgstr "" #: superset-frontend/src/SqlLab/constants.ts:38 #: superset-frontend/src/SqlLab/constants.ts:50 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 msgid "success" msgstr "" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +msgid "success dark" +msgstr "" + #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:186 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:255 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:378 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:55 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:260 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:532 @@ -19631,7 +19861,7 @@ msgstr "" msgid "unknown type icon" msgstr "알 수 없는 에러" -#: superset/charts/schemas.py:660 +#: superset/charts/schemas.py:750 msgid "" "upper percentile must be greater than 0 and less than 100. Must be higher" " than lower percentile." @@ -19652,7 +19882,6 @@ msgid "value descending" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:60 msgid "var" msgstr "" @@ -19674,13 +19903,13 @@ msgstr "" msgid "viz type" msgstr "시각화 유형" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:451 msgid "was created" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:62 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 #: superset-frontend/src/explore/controls.jsx:264 msgid "week" @@ -19713,16 +19942,12 @@ msgid "y: values are normalized within each row" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 #: superset-frontend/src/explore/controls.jsx:269 msgid "year" msgstr "년" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 -msgid "yellow" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:490 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:521 msgid "zoom area" msgstr "" diff --git a/superset/translations/messages.pot b/superset/translations/messages.pot index cdd46eccfe..435f38b7f3 100644 --- a/superset/translations/messages.pot +++ b/superset/translations/messages.pot @@ -25,7 +25,7 @@ msgid "" msgstr "" "Project-Id-Version: Superset VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-04-07 19:09+0200\n" +"POT-Creation-Date: 2023-05-23 16:30-0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -43,7 +43,7 @@ msgid "" " " msgstr "" -#: superset/reports/notifications/email.py:88 +#: superset/reports/notifications/email.py:89 #, python-format msgid "" "\n" @@ -62,11 +62,11 @@ msgid "" "in the GeoJSON" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:364 +#: superset-frontend/src/explore/components/SaveModal.tsx:399 msgid " a dashboard OR " msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:366 +#: superset-frontend/src/explore/components/SaveModal.tsx:401 msgid " a new one" msgstr "" @@ -96,7 +96,7 @@ msgid "" " database/column name level via the extra parameter." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:334 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:340 msgid " to add calculated columns" msgstr "" @@ -108,8 +108,8 @@ msgstr "" msgid " to edit or add columns and metrics." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:323 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:358 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:364 msgid " to mark a column as a time column" msgstr "" @@ -117,7 +117,7 @@ msgstr "" msgid " to open SQL Lab. From there you can save the query as a dataset." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:333 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 msgid " to visualize your data." msgstr "" @@ -125,7 +125,7 @@ msgstr "" msgid "!= (Is not equal)" msgstr "" -#: superset/security/analytics_db_safety.py:44 +#: superset/security/analytics_db_safety.py:48 #, python-format msgid "%(dialect)s cannot be used as a data source for security reasons." msgstr "" @@ -138,7 +138,7 @@ msgid "" "%(issues)s" msgstr "" -#: superset/reports/notifications/email.py:168 +#: superset/reports/notifications/email.py:171 #, python-format msgid "%(name)s.csv" msgstr "" @@ -168,14 +168,14 @@ msgstr "" msgid "%(other)s saved queries will appear here" msgstr "" -#: superset/reports/notifications/email.py:177 +#: superset/reports/notifications/email.py:180 #, python-format msgid "%(prefix)s %(title)s" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:345 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:363 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:377 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:338 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:356 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:370 #, python-format msgid "%(rows)d rows returned" msgstr "" @@ -197,19 +197,19 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: superset/views/core.py:384 +#: superset/views/core.py:385 #, python-format msgid "" "%(user)s was granted the role %(role)s that gives access to the " "%(datasource)s" msgstr "" -#: superset/views/core.py:2672 +#: superset/views/core.py:2709 #, python-format msgid "%(user)s's profile" msgstr "" -#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2327 +#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2369 #, python-format msgid "" "%(validator)s was unable to check your query.\n" @@ -223,25 +223,25 @@ msgid "%s Error" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:298 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1300 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1355 #, python-format msgid "%s PASSWORD" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:318 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1318 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1373 #, python-format msgid "%s SSH TUNNEL PASSWORD" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:341 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1336 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1391 #, python-format msgid "%s SSH TUNNEL PRIVATE KEY" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:363 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1356 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1411 #, python-format msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" msgstr "" @@ -251,17 +251,17 @@ msgstr "" msgid "%s Selected" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:808 +#: superset-frontend/src/pages/DatasetList/index.tsx:830 #, python-format msgid "%s Selected (%s Physical, %s Virtual)" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:801 +#: superset-frontend/src/pages/DatasetList/index.tsx:823 #, python-format msgid "%s Selected (Physical)" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:794 +#: superset-frontend/src/pages/DatasetList/index.tsx:816 #, python-format msgid "%s Selected (Virtual)" msgstr "" @@ -271,8 +271,8 @@ msgstr "" msgid "%s aggregates(s)" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:274 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:371 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:280 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:377 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:346 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 #, python-format @@ -311,8 +311,8 @@ msgstr[1] "" msgid "%s saved metric(s)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:636 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:652 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:639 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:655 #, python-format msgid "%s updated" msgstr "" @@ -329,7 +329,7 @@ msgstr "" msgid "%s-%s of %s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:115 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:116 msgid "(Removed)" msgstr "" @@ -379,22 +379,22 @@ msgstr "" msgid "+ %s more" msgstr "" -#: superset/views/database/forms.py:153 +#: superset/views/database/forms.py:163 msgid "," msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:656 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:652 msgid "" "-- Note: Unless you save your query, these tabs will NOT persist if you " "clear your cookies or change browsers.\n" "\n" msgstr "" -#: superset/views/database/forms.py:154 +#: superset/views/database/forms.py:164 msgid "." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:791 +#: superset-frontend/src/pages/DatasetList/index.tsx:813 msgid "0 Selected" msgstr "" @@ -486,7 +486,7 @@ msgstr "" msgid "1 year start frequency" msgstr "" -#: superset/db_engine_specs/base.py:101 +#: superset/db_engine_specs/base.py:102 msgid "10 minute" msgstr "" @@ -501,7 +501,7 @@ msgstr "" msgid "104 weeks ago" msgstr "" -#: superset/db_engine_specs/base.py:102 +#: superset/db_engine_specs/base.py:103 msgid "15 minute" msgstr "" @@ -616,7 +616,7 @@ msgstr "" msgid "30 days ago" msgstr "" -#: superset/db_engine_specs/base.py:103 +#: superset/db_engine_specs/base.py:104 msgid "30 minute" msgstr "" @@ -625,7 +625,7 @@ msgstr "" msgid "30 minutes" msgstr "" -#: superset/db_engine_specs/base.py:98 +#: superset/db_engine_specs/base.py:99 msgid "30 second" msgstr "" @@ -645,7 +645,7 @@ msgstr "" msgid "4 weeks (freq=4W-MON)" msgstr "" -#: superset/db_engine_specs/base.py:100 +#: superset/db_engine_specs/base.py:101 msgid "5 minute" msgstr "" @@ -654,7 +654,7 @@ msgstr "" msgid "5 minutes" msgstr "" -#: superset/db_engine_specs/base.py:97 +#: superset/db_engine_specs/base.py:98 msgid "5 second" msgstr "" @@ -680,7 +680,7 @@ msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 #: superset-frontend/src/explore/controls.jsx:261 -#: superset/db_engine_specs/base.py:105 +#: superset/db_engine_specs/base.py:106 msgid "6 hour" msgstr "" @@ -763,15 +763,15 @@ msgstr "" msgid "A Big Number" msgstr "" -#: superset/views/database/forms.py:184 +#: superset/views/database/forms.py:194 msgid "A comma separated list of columns that should be parsed as dates" msgstr "" -#: superset/views/database/forms.py:367 +#: superset/views/database/forms.py:377 msgid "A comma separated list of columns that should be parsed as dates." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:433 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 msgid "A comma-separated list of schemas that files are allowed to upload to." msgstr "" @@ -779,6 +779,12 @@ msgstr "" msgid "A database with the same name already exists." msgstr "" +#: superset/views/database/forms.py:145 +msgid "" +"A dictionary with column names and their data types if you need to change" +" the defaults. Example: {\"user_id\":\"integer\"}" +msgstr "" + #: superset/views/dynamic_plugins.py:52 msgid "" "A full URL pointing to the location of the built plugin (could be hosted " @@ -844,16 +850,16 @@ msgstr "" msgid "A report named \"%(name)s\" already exists" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:333 +#: superset-frontend/src/explore/components/SaveModal.tsx:368 msgid "A reusable dataset will be saved with your chart." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:309 +#: superset-frontend/src/components/ReportModal/index.tsx:308 msgid "A screenshot of the dashboard will be sent to your email at" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 -#: superset/connectors/sqla/views.py:458 +#: superset/connectors/sqla/views.py:365 msgid "" "A set of parameters that become available in the query using Jinja " "templating syntax" @@ -897,8 +903,8 @@ msgstr "" msgid "APR" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:312 -#: superset-frontend/src/pages/DatabaseList/index.tsx:478 +#: superset-frontend/src/pages/DatabaseList/index.tsx:323 +#: superset-frontend/src/pages/DatabaseList/index.tsx:489 msgid "AQE" msgstr "" @@ -925,7 +931,7 @@ msgstr "" msgid "Access" msgstr "" -#: superset/initialization/__init__.py:431 +#: superset/initialization/__init__.py:425 msgid "Access requests" msgstr "" @@ -937,7 +943,7 @@ msgstr "" msgid "Access token" msgstr "" -#: superset/views/core.py:317 +#: superset/views/core.py:318 msgid "Access was requested" msgstr "" @@ -945,7 +951,7 @@ msgstr "" msgid "Action" msgstr "" -#: superset/initialization/__init__.py:393 +#: superset/initialization/__init__.py:387 msgid "Action Log" msgstr "" @@ -956,9 +962,10 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:569 #: superset-frontend/src/pages/CssTemplateList/index.tsx:229 #: superset-frontend/src/pages/DashboardList/index.tsx:477 -#: superset-frontend/src/pages/DatabaseList/index.tsx:448 -#: superset-frontend/src/pages/DatasetList/index.tsx:488 +#: superset-frontend/src/pages/DatabaseList/index.tsx:459 +#: superset-frontend/src/pages/DatasetList/index.tsx:499 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:327 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:216 #: superset-frontend/src/pages/SavedQueryList/index.tsx:437 #: superset-frontend/src/pages/Tags/index.tsx:171 msgid "Actions" @@ -988,18 +995,19 @@ msgstr "" msgid "Actual values" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:35 -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 #: superset-frontend/src/explore/controls.jsx:78 #: superset-frontend/src/explore/controls.jsx:101 msgid "Adaptive formatting" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:229 +#: superset-frontend/src/components/ReportModal/index.tsx:228 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 #: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 #: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 msgid "Add" msgstr "" @@ -1019,7 +1027,7 @@ msgstr "" msgid "Add Chart" msgstr "" -#: superset/connectors/sqla/views.py:74 +#: superset/connectors/sqla/views.py:73 msgid "Add Column" msgstr "" @@ -1035,7 +1043,7 @@ msgstr "" msgid "Add Log" msgstr "" -#: superset/connectors/sqla/views.py:209 +#: superset/connectors/sqla/views.py:208 msgid "Add Metric" msgstr "" @@ -1043,8 +1051,8 @@ msgstr "" msgid "Add Report" msgstr "" -#: superset/connectors/sqla/views.py:292 -msgid "Add Row level security filter" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +msgid "Add Rule" msgstr "" #: superset/views/sql_lab/views.py:54 @@ -1059,11 +1067,11 @@ msgstr "" msgid "Add a dataset" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:262 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:272 msgid "Add a new tab" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:286 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:296 msgid "Add a new tab to create SQL Query" msgstr "" @@ -1093,23 +1101,27 @@ msgstr "" msgid "Add annotation layer" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:300 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:306 msgid "Add calculated columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:297 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:303 msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:167 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:197 msgid "Add cross-filter" msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 +msgid "Add custom scoping" +msgstr "" + #: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 msgid "Add delivery method" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:330 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 msgid "Add extra connection information." msgstr "" @@ -1179,7 +1191,7 @@ msgstr "" msgid "Add the name of the dashboard" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:351 +#: superset-frontend/src/explore/components/SaveModal.tsx:386 msgid "Add to dashboard" msgstr "" @@ -1204,7 +1216,7 @@ msgstr[1] "" msgid "Additional Parameters" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1787 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1843 msgid "Additional fields may be required" msgstr "" @@ -1216,16 +1228,16 @@ msgstr "" msgid "Additional metadata" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:54 msgid "Additional padding for legend." msgstr "" -#: superset/db_engine_specs/base.py:1847 -#: superset/db_engine_specs/clickhouse.py:214 +#: superset/db_engine_specs/base.py:1885 +#: superset/db_engine_specs/clickhouse.py:221 msgid "Additional parameters" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:444 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 msgid "Additional settings." msgstr "" @@ -1240,17 +1252,18 @@ msgstr "" msgid "Additive" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:75 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 msgid "Adjust how this database will interact with SQL Lab." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:221 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:231 msgid "Adjust performance settings of this database." msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:132 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:91 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:127 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:93 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 @@ -1259,7 +1272,7 @@ msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:939 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:771 #: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1811 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 msgid "Advanced" msgstr "" @@ -1355,7 +1368,6 @@ msgid "" "produce the cluster label." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:63 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:202 msgid "" "Aggregate function to apply when pivoting and computing the total rows " @@ -1368,12 +1380,14 @@ msgid "" " values to a dynamic color scale" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +msgid "Aggregation" +msgstr "" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 msgid "Aggregation function" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:593 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:162 msgid "Alert" msgstr "" @@ -1452,7 +1466,7 @@ msgstr "" msgid "Alerts" msgstr "" -#: superset/initialization/__init__.py:410 +#: superset/initialization/__init__.py:404 msgid "Alerts & Reports" msgstr "" @@ -1478,8 +1492,8 @@ msgstr "" #: superset-frontend/src/pages/DashboardList/index.tsx:528 #: superset-frontend/src/pages/DashboardList/index.tsx:550 #: superset-frontend/src/pages/DashboardList/index.tsx:600 -#: superset-frontend/src/pages/DatabaseList/index.tsx:465 -#: superset-frontend/src/pages/DatabaseList/index.tsx:485 +#: superset-frontend/src/pages/DatabaseList/index.tsx:476 +#: superset-frontend/src/pages/DatabaseList/index.tsx:496 #: superset-frontend/src/pages/Home/index.tsx:205 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:354 #: superset-frontend/src/pages/SavedQueryList/index.tsx:453 @@ -1488,7 +1502,7 @@ msgid "All" msgstr "" #: superset-frontend/src/pages/AllEntities/index.tsx:76 -#: superset/initialization/__init__.py:376 +#: superset/initialization/__init__.py:370 msgid "All Entities" msgstr "" @@ -1499,13 +1513,18 @@ msgstr "" msgid "All Text" msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 #: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:69 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 #: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:85 #: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:128 msgid "All charts" msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 +msgid "All charts/global scoping" +msgstr "" + #: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 msgid "All filters" msgstr "" @@ -1515,7 +1534,7 @@ msgstr "" msgid "All filters (%(filterCount)d)" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:49 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 msgid "All panels" msgstr "" @@ -1523,7 +1542,7 @@ msgstr "" msgid "All panels with this column will be affected by this filter" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:107 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 #: superset/views/database/mixins.py:184 msgid "Allow CREATE TABLE AS" msgstr "" @@ -1532,7 +1551,7 @@ msgstr "" msgid "Allow CREATE TABLE AS option in SQL Lab" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:121 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 #: superset/views/database/mixins.py:185 msgid "Allow CREATE VIEW AS" msgstr "" @@ -1545,7 +1564,7 @@ msgstr "" msgid "Allow Csv Upload" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 #: superset/views/database/mixins.py:186 msgid "Allow DML" msgstr "" @@ -1554,15 +1573,15 @@ msgstr "" msgid "Allow columns to be rearranged" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:110 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 msgid "Allow creation of new tables based on queries" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:124 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 msgid "Allow creation of new views based on queries" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:329 +#: superset-frontend/src/pages/DatabaseList/index.tsx:340 msgid "Allow data manipulation language" msgstr "" @@ -1572,11 +1591,11 @@ msgid "" "their changes won't persist for the next time they open the chart." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:411 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:421 msgid "Allow file uploads to database" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:157 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 msgid "" "Allow manipulation of the database using non-SELECT statements such as " "UPDATE, DELETE, CREATE, etc." @@ -1594,11 +1613,11 @@ msgstr "" msgid "Allow sending multiple polygons as a filter event" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:186 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 msgid "Allow this database to be explored" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:91 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 msgid "Allow this database to be queried in SQL Lab" msgstr "" @@ -1639,20 +1658,20 @@ msgstr "" msgid "An alert named \"%(name)s\" already exists" msgstr "" -#: superset/common/query_context_processor.py:326 superset/viz.py:1447 +#: superset/common/query_context_processor.py:326 superset/viz.py:1352 msgid "" "An enclosed time range (both start and end) must be specified when using " "a Time Comparison." msgstr "" -#: superset/databases/schemas.py:285 +#: superset/databases/schemas.py:289 msgid "" "An engine must be specified when passing individual parameters to a " "database." msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:791 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:141 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:183 #: superset-frontend/src/components/Tags/utils.tsx:67 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:127 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:109 @@ -1667,7 +1686,7 @@ msgstr "" msgid "An error occurred" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:317 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:323 msgid "An error occurred saving dataset" msgstr "" @@ -1678,19 +1697,19 @@ msgstr "" msgid "An error occurred while accessing the value." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1368 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1360 msgid "" "An error occurred while collapsing the table schema. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:304 +#: superset-frontend/src/views/CRUD/hooks.ts:308 #, python-format msgid "An error occurred while creating %ss: %s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1529 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1551 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1530 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1552 msgid "An error occurred while creating the data source" msgstr "" @@ -1706,7 +1725,7 @@ msgstr "" msgid "An error occurred while deleting the value." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1344 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1336 msgid "" "An error occurred while expanding the table schema. Please contact your " "administrator." @@ -1718,8 +1737,8 @@ msgid "An error occurred while fetching %s info: %s" msgstr "" #: superset-frontend/src/views/CRUD/hooks.ts:174 -#: superset-frontend/src/views/CRUD/hooks.ts:261 -#: superset-frontend/src/views/CRUD/hooks.ts:349 +#: superset-frontend/src/views/CRUD/hooks.ts:265 +#: superset-frontend/src/views/CRUD/hooks.ts:353 #, python-format msgid "An error occurred while fetching %ss: %s" msgstr "" @@ -1763,7 +1782,7 @@ msgstr "" msgid "An error occurred while fetching dashboards: %s" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:145 +#: superset-frontend/src/pages/DatabaseList/index.tsx:156 #, python-format msgid "An error occurred while fetching database related data: %s" msgstr "" @@ -1780,26 +1799,26 @@ msgstr "" msgid "An error occurred while fetching dataset datasource values: %s" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:510 +#: superset-frontend/src/pages/DatasetList/index.tsx:521 #, python-format msgid "An error occurred while fetching dataset owner values: %s" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:222 +#: superset-frontend/src/pages/DatasetList/index.tsx:233 msgid "An error occurred while fetching dataset related data" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:242 +#: superset-frontend/src/pages/DatasetList/index.tsx:253 #, python-format msgid "An error occurred while fetching dataset related data: %s" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:530 +#: superset-frontend/src/pages/DatasetList/index.tsx:541 #, python-format msgid "An error occurred while fetching datasets: %s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1581 +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx:120 msgid "An error occurred while fetching function names." msgstr "" @@ -1808,23 +1827,23 @@ msgstr "" msgid "An error occurred while fetching owners values: %s" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:546 +#: superset-frontend/src/pages/DatasetList/index.tsx:557 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:378 #: superset-frontend/src/pages/SavedQueryList/index.tsx:480 #, python-format msgid "An error occurred while fetching schema values: %s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:799 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:795 msgid "An error occurred while fetching tab state" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1199 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1224 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1191 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1216 msgid "An error occurred while fetching table metadata" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1296 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1288 msgid "" "An error occurred while fetching table metadata. Please contact your " "administrator." @@ -1840,23 +1859,27 @@ msgstr "" msgid "An error occurred while fetching user values: %s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:835 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:831 msgid "" "An error occurred while hiding the left bar. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:502 -#: superset-frontend/src/views/CRUD/hooks.ts:518 +#: superset-frontend/src/views/CRUD/hooks.ts:506 +#: superset-frontend/src/views/CRUD/hooks.ts:522 #, python-format msgid "An error occurred while importing %s: %s" msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:135 +msgid "An error occurred while loading dashboard information." +msgstr "" + #: superset-frontend/src/components/Chart/chartAction.js:579 msgid "An error occurred while loading the SQL" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:332 +#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:325 msgid "An error occurred while opening Explore" msgstr "" @@ -1868,15 +1891,15 @@ msgstr "" msgid "An error occurred while pruning logs " msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:892 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:888 msgid "An error occurred while removing query. Please contact your administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:857 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:853 msgid "An error occurred while removing tab. Please contact your administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1396 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1388 msgid "" "An error occurred while removing the table schema. Please contact your " "administrator." @@ -1887,38 +1910,38 @@ msgstr "" msgid "An error occurred while rendering the visualization: %s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:710 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:706 msgid "" "An error occurred while setting the active tab. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:975 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:967 msgid "" "An error occurred while setting the tab autorun. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:915 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:911 msgid "" "An error occurred while setting the tab database ID. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1004 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1128 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:996 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1120 msgid "" "An error occurred while setting the tab name. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:946 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:942 msgid "" "An error occurred while setting the tab schema. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1154 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1146 msgid "" "An error occurred while setting the tab template parameters. Please " "contact your administrator." @@ -1928,14 +1951,14 @@ msgstr "" msgid "An error occurred while starring this chart" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:251 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:297 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:255 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:301 msgid "" "An error occurred while storing the latest query id in the backend. " "Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1095 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1087 msgid "" "An error occurred while storing your query in the backend. To avoid " "losing your changes, please save your query using the \"Save Query\" " @@ -1955,7 +1978,7 @@ msgstr "" msgid "An unexpected error occurred" msgstr "" -#: superset/views/core.py:734 +#: superset/views/core.py:745 msgid "An unknown error occurred. Please contact your Superset administrator" msgstr "" @@ -1987,7 +2010,7 @@ msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:127 -#: superset/initialization/__init__.py:420 +#: superset/initialization/__init__.py:414 msgid "Annotation Layers" msgstr "" @@ -2135,7 +2158,8 @@ msgstr "" #: superset-frontend/src/pages/DashboardList/index.tsx:504 #: superset-frontend/src/pages/DashboardList/index.tsx:572 #: superset-frontend/src/pages/DashboardList/index.tsx:586 -#: superset-frontend/src/pages/DatasetList/index.tsx:570 +#: superset-frontend/src/pages/DatasetList/index.tsx:581 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:260 msgid "Any" msgstr "" @@ -2150,18 +2174,18 @@ msgid "" "dashboard's individual charts" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:953 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1008 msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:967 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1022 msgid "" "Any databases that allow connections via SQL Alchemy URIs can be added. " "Learn about how to connect a database driver " msgstr "" -#: superset/views/database/forms.py:169 superset/views/database/forms.py:326 -#: superset/views/database/forms.py:457 +#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 +#: superset/views/database/forms.py:467 msgid "Append" msgstr "" @@ -2180,7 +2204,7 @@ msgstr "" msgid "Applied filters: %s" msgstr "" -#: superset/viz.py:246 +#: superset/viz.py:250 msgid "" "Applied rolling window did not return any data. Please make sure the " "source query satisfies the minimum periods defined in the rolling window." @@ -2189,11 +2213,15 @@ msgstr "" #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:856 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:228 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:476 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:479 msgid "Apply" msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:100 +msgid "Apply conditional color formatting to metric" +msgstr "" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:386 msgid "Apply conditional color formatting to metrics" msgstr "" @@ -2240,6 +2268,7 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:509 #: superset-frontend/src/pages/DashboardList/index.tsx:418 #: superset-frontend/src/pages/DashboardList/index.tsx:739 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:173 #: superset-frontend/src/pages/Tags/index.tsx:144 msgid "Are you sure you want to delete" msgstr "" @@ -2266,7 +2295,7 @@ msgstr "" msgid "Are you sure you want to delete the selected dashboards?" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:741 +#: superset-frontend/src/pages/DatasetList/index.tsx:763 msgid "Are you sure you want to delete the selected datasets?" msgstr "" @@ -2278,6 +2307,10 @@ msgstr "" msgid "Are you sure you want to delete the selected queries?" msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:305 +msgid "Are you sure you want to delete the selected rules?" +msgstr "" + #: superset-frontend/src/pages/Tags/index.tsx:282 msgid "Are you sure you want to delete the selected tags?" msgstr "" @@ -2286,7 +2319,7 @@ msgstr "" msgid "Are you sure you want to delete the selected templates?" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:426 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:434 msgid "Are you sure you want to overwrite this dataset?" msgstr "" @@ -2294,7 +2327,7 @@ msgstr "" msgid "Are you sure you want to proceed?" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:174 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:216 msgid "Are you sure you want to save and apply changes?" msgstr "" @@ -2333,7 +2366,7 @@ msgstr "" msgid "Assign a set of parameters as" msgstr "" -#: superset/connectors/sqla/views.py:476 +#: superset/connectors/sqla/views.py:383 msgid "Associated Charts" msgstr "" @@ -2341,9 +2374,9 @@ msgstr "" msgid "Async Execution" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:295 -#: superset-frontend/src/pages/DatabaseList/index.tsx:309 -#: superset-frontend/src/pages/DatabaseList/index.tsx:475 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:305 +#: superset-frontend/src/pages/DatabaseList/index.tsx:320 +#: superset-frontend/src/pages/DatabaseList/index.tsx:486 msgid "Asynchronous query execution" msgstr "" @@ -2360,7 +2393,7 @@ msgstr "" msgid "Auto Zoom" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:530 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 msgid "Autocomplete" msgstr "" @@ -2385,7 +2418,7 @@ msgstr "" msgid "Average" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:233 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 msgid "Average value" msgstr "" @@ -2418,10 +2451,10 @@ msgstr "" msgid "BOOLEAN" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:366 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1051 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1068 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1088 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:373 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1123 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1143 msgid "Back" msgstr "" @@ -2431,7 +2464,7 @@ msgstr "" msgid "Back to all" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:300 +#: superset-frontend/src/pages/DatabaseList/index.tsx:311 #: superset/views/database/mixins.py:200 msgid "Backend" msgstr "" @@ -2445,7 +2478,7 @@ msgstr "" msgid "Bad formula." msgstr "" -#: superset/viz.py:2509 superset/viz.py:2545 +#: superset/viz.py:2452 superset/viz.py:2492 msgid "Bad spatial key" msgstr "" @@ -2478,6 +2511,11 @@ msgstr "" msgid "Bar orientation" msgstr "" +#: superset-frontend/src/features/rls/constants.ts:28 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:263 +msgid "Base" +msgstr "" + #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:239 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 msgid "Base layer map style" @@ -2491,12 +2529,12 @@ msgstr "" msgid "Based on granularity, number of time periods to compare against" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:228 msgid "Based on what should series be ordered on the chart and legend" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:854 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1723 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1779 msgid "Basic" msgstr "" @@ -2527,7 +2565,7 @@ msgid "Before" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:37 -#: superset/viz.py:1286 +#: superset/viz.py:1186 msgid "Big Number" msgstr "" @@ -2536,11 +2574,11 @@ msgid "Big Number Font Size" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:36 -#: superset/viz.py:1252 +#: superset/viz.py:1150 msgid "Big Number with Trendline" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 msgid "Bottom" msgstr "" @@ -2569,7 +2607,6 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:261 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:277 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:263 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:251 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:195 @@ -2588,6 +2625,24 @@ msgid "" " the axis range. It won't narrow the data's extent." msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 +msgid "" +"Bounds for the primary Y-axis. When left empty, the bounds are " +"dynamically defined based on the min/max of the data. Note that this " +"feature will only expand the axis range. It won't narrow the data's " +"extent." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:411 +msgid "" +"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" +" bounds are enabled. When left empty, the bounds are " +"dynamically defined\n" +" based on the min/max of the data. Note that this feature " +"will only expand\n" +" the axis range. It won't narrow the data's extent." +msgstr "" + #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:58 #: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/createMetadata.ts:27 @@ -2599,7 +2654,7 @@ msgid "Breakdowns" msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:32 -#: superset/viz.py:1171 +#: superset/viz.py:1065 msgid "Bubble Chart" msgstr "" @@ -2630,14 +2685,15 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:789 #: superset-frontend/src/pages/CssTemplateList/index.tsx:262 #: superset-frontend/src/pages/DashboardList/index.tsx:662 -#: superset-frontend/src/pages/DatasetList/index.tsx:596 +#: superset-frontend/src/pages/DatasetList/index.tsx:607 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 #: superset-frontend/src/pages/SavedQueryList/index.tsx:177 #: superset-frontend/src/pages/Tags/index.tsx:267 msgid "Bulk select" msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 -#: superset/viz.py:1222 +#: superset/viz.py:1118 msgid "Bullet Chart" msgstr "" @@ -2653,7 +2709,7 @@ msgstr "" msgid "Business" msgstr "" -#: superset/connectors/sqla/views.py:165 +#: superset/connectors/sqla/views.py:164 msgid "Business Data Type" msgstr "" @@ -2684,15 +2740,15 @@ msgstr "" msgid "CANCEL" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1520 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1575 msgid "CREATE DATASET" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:585 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:579 msgid "CREATE TABLE AS" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:596 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:590 msgid "CREATE VIEW AS" msgstr "" @@ -2717,7 +2773,7 @@ msgstr "" msgid "CSS Styles" msgstr "" -#: superset/initialization/__init__.py:286 superset/views/css_templates.py:38 +#: superset/initialization/__init__.py:288 superset/views/css_templates.py:38 msgid "CSS Templates" msgstr "" @@ -2750,26 +2806,26 @@ msgstr "" msgid "CSV Upload" msgstr "" -#: superset/views/database/views.py:287 +#: superset/views/database/views.py:290 #, python-format msgid "" "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " "database \"%(db_name)s\"" msgstr "" -#: superset/views/database/views.py:160 +#: superset/views/database/views.py:161 msgid "CSV to Database configuration" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:344 +#: superset-frontend/src/pages/DatabaseList/index.tsx:355 msgid "CSV upload" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:130 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 msgid "CTAS & CVAS SCHEMA" msgstr "" -#: superset/sql_lab.py:440 +#: superset/sql_lab.py:432 msgid "" "CTAS (create table as select) can only be run with a query where the last" " statement is a SELECT. Please make sure your query has a SELECT as its " @@ -2780,7 +2836,7 @@ msgstr "" msgid "CTAS Schema" msgstr "" -#: superset/sql_lab.py:457 +#: superset/sql_lab.py:449 msgid "" "CVAS (create view as select) can only be run with a query with a single " "SELECT statement. Please make sure your query has only a SELECT " @@ -2795,7 +2851,7 @@ msgstr "" msgid "CVAS (create view as select) query is not a SELECT statement." msgstr "" -#: superset/connectors/sqla/views.py:486 superset/views/chart/mixin.py:76 +#: superset/connectors/sqla/views.py:393 superset/views/chart/mixin.py:76 msgid "Cache Timeout" msgstr "" @@ -2813,16 +2869,16 @@ msgstr "" msgid "Cached" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:349 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:351 #, python-format msgid "Cached %s" msgstr "" -#: superset/viz.py:562 +#: superset/viz.py:578 msgid "Cached value not found" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:53 msgid "Calculate contribution per series or row" msgstr "" @@ -2844,7 +2900,7 @@ msgid "Calculation type" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 -#: superset/viz.py:1080 +#: superset/viz.py:972 msgid "Calendar Heatmap" msgstr "" @@ -2857,17 +2913,17 @@ msgstr "" msgid "Can select multiple values" msgstr "" -#: superset/viz.py:1810 +#: superset/viz.py:1727 msgid "Can't have overlap between Series and Breakdowns" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:206 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:759 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:263 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:185 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 -#: superset-frontend/src/components/Modal/Modal.tsx:262 -#: superset-frontend/src/components/ReportModal/index.tsx:220 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:205 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:753 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:227 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:268 +#: superset-frontend/src/components/Modal/Modal.tsx:269 +#: superset-frontend/src/components/ReportModal/index.tsx:219 #: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:72 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:649 #: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 @@ -2875,14 +2931,14 @@ msgstr "" #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:76 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 -#: superset-frontend/src/explore/components/SaveModal.tsx:379 +#: superset-frontend/src/explore/components/SaveModal.tsx:413 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:843 #: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 #: superset/templates/superset/request_access.html:34 msgid "Cancel" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:314 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 msgid "Cancel query on window unload event" msgstr "" @@ -2898,7 +2954,7 @@ msgstr "" msgid "Cannot have multiple credentials for the SSH Tunnel" msgstr "" -#: superset/views/core.py:723 +#: superset/views/core.py:734 #, python-format msgid "" "Cannot import dashboard: %(db_error)s.\n" @@ -2962,7 +3018,7 @@ msgstr "" msgid "Category and Value" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:229 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:67 msgid "Category name" msgstr "" @@ -2976,15 +3032,15 @@ msgstr "" msgid "Category, Value and Percentage" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:103 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 msgid "Cell Padding" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:117 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 msgid "Cell Radius" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 msgid "Cell Size" msgstr "" @@ -2992,7 +3048,7 @@ msgstr "" msgid "Cell bars" msgstr "" -#: superset-frontend/src/components/FilterableTable/index.tsx:431 +#: superset-frontend/src/components/FilterableTable/index.tsx:303 msgid "Cell content" msgstr "" @@ -3004,6 +3060,7 @@ msgstr "" msgid "Center" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:33 msgid "Centroid (Longitude and Latitude): " msgstr "" @@ -3025,7 +3082,7 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:699 #: superset-frontend/src/pages/DashboardList/index.tsx:580 -#: superset-frontend/src/pages/DatasetList/index.tsx:564 +#: superset-frontend/src/pages/DatasetList/index.tsx:575 msgid "Certified" msgstr "" @@ -3056,7 +3113,7 @@ msgstr "" msgid "Change order of rows." msgstr "" -#: superset/connectors/sqla/views.py:478 +#: superset/connectors/sqla/views.py:385 msgid "Changed By" msgstr "" @@ -3103,7 +3160,7 @@ msgstr "" msgid "Changing this control takes effect instantly" msgstr "" -#: superset/datasets/commands/exceptions.py:181 +#: superset/datasets/commands/exceptions.py:198 msgid "Changing this dataset is forbidden" msgstr "" @@ -3120,14 +3177,15 @@ msgstr "" msgid "Changing this report is forbidden" msgstr "" -#: superset/views/database/forms.py:196 +#: superset/views/database/forms.py:206 msgid "Character to interpret as decimal point" msgstr "" -#: superset/views/database/forms.py:375 +#: superset/views/database/forms.py:385 msgid "Character to interpret as decimal point." msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:51 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:449 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:405 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:69 @@ -3135,11 +3193,11 @@ msgstr "" #: superset-frontend/src/features/home/RightMenu.tsx:219 #: superset-frontend/src/pages/ChartList/index.tsx:369 #: superset-frontend/src/pages/ChartList/index.tsx:799 -#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:90 +#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 msgid "Chart" msgstr "" -#: superset/views/core.py:1727 +#: superset/views/core.py:1762 #, python-format msgid "Chart %(id)s not found" msgstr "" @@ -3148,7 +3206,7 @@ msgstr "" msgid "Chart Cache Timeout" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:437 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:442 #, python-format msgid "Chart Data: %s" msgstr "" @@ -3158,7 +3216,7 @@ msgstr "" msgid "Chart ID" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:53 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:55 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:61 @@ -3180,7 +3238,7 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:59 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:131 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:107 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:74 @@ -3224,34 +3282,34 @@ msgstr "" msgid "Chart Title" msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:127 +#: superset-frontend/src/explore/actions/saveModalActions.js:121 #, python-format msgid "Chart [%s] has been overwritten" msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:124 +#: superset-frontend/src/explore/actions/saveModalActions.js:118 #, python-format msgid "Chart [%s] has been saved" msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:145 +#: superset-frontend/src/explore/actions/saveModalActions.js:139 #, python-format msgid "Chart [%s] was added to dashboard [%s]" msgstr "" -#: superset/views/core.py:1077 +#: superset/views/core.py:1099 msgid "Chart [{}] has been overwritten" msgstr "" -#: superset/views/core.py:1073 +#: superset/views/core.py:1095 msgid "Chart [{}] has been saved" msgstr "" -#: superset/views/core.py:1102 +#: superset/views/core.py:1124 msgid "Chart [{}] was added to dashboard [{}]" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:228 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:238 msgid "Chart cache timeout" msgstr "" @@ -3307,7 +3365,7 @@ msgstr "" msgid "Chart last modified by" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:320 +#: superset-frontend/src/explore/components/SaveModal.tsx:355 msgid "Chart name" msgstr "" @@ -3336,7 +3394,7 @@ msgstr "" msgid "Chart type" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:315 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 msgid "Chart type requires a dataset" msgstr "" @@ -3351,7 +3409,7 @@ msgstr "" #: superset-frontend/src/pages/Home/index.tsx:399 #: superset-frontend/src/profile/components/CreatedContent.tsx:104 #: superset-frontend/src/profile/components/Favorites.tsx:102 -#: superset/initialization/__init__.py:257 superset/views/chart/mixin.py:25 +#: superset/initialization/__init__.py:259 superset/views/chart/mixin.py:25 #: superset/views/dashboard/mixin.py:80 msgid "Charts" msgstr "" @@ -3383,7 +3441,7 @@ msgstr "" msgid "Check out this chart in dashboard:" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:474 msgid "Check out this chart: " msgstr "" @@ -3413,11 +3471,11 @@ msgstr "" msgid "Child label position" msgstr "" -#: superset/viz.py:2370 +#: superset/viz.py:2307 msgid "Choice of [Label] must be present in [Group By]" msgstr "" -#: superset/viz.py:2378 +#: superset/viz.py:2315 msgid "Choice of [Point Radius] must be present in [Group By]" msgstr "" @@ -3430,7 +3488,7 @@ msgstr "" msgid "Choose a chart or dashboard not both" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:924 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:979 msgid "Choose a database..." msgstr "" @@ -3465,15 +3523,11 @@ msgstr "" msgid "Choose a target" msgstr "" -#: superset/connectors/sqla/views.py:327 -msgid "Choose a unique name" -msgstr "" - #: superset-frontend/src/pages/ChartCreation/index.tsx:404 msgid "Choose chart type" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:745 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:739 msgid "Choose one of the available databases from the panel on the left." msgstr "" @@ -3549,7 +3603,8 @@ msgid "" "showcase a view into the underlying data or to show aggregated metrics." msgstr "" -#: superset/connectors/sqla/views.py:365 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:454 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:144 msgid "Clause" msgstr "" @@ -3561,7 +3616,7 @@ msgstr "" msgid "Clear all" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:206 +#: superset-frontend/src/components/Table/index.tsx:210 msgid "Clear all data" msgstr "" @@ -3587,19 +3642,19 @@ msgstr "" msgid "Click the lock to prevent further changes." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1955 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2012 msgid "" "Click this link to switch to an alternate form that allows you to input " "the SQLAlchemy URL for this database manually." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1771 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1827 msgid "" "Click this link to switch to an alternate form that exposes only the " "required fields needed to connect this database." msgstr "" -#: superset-frontend/src/components/Table/index.tsx:213 +#: superset-frontend/src/components/Table/index.tsx:217 msgid "Click to cancel sorting" msgstr "" @@ -3609,16 +3664,10 @@ msgstr "" #: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 #, python-format -msgid "Click to edit %s in a new tab" -msgstr "" - -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:32 -#, python-format msgid "Click to edit %s." msgstr "" #: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:33 msgid "Click to edit chart." msgstr "" @@ -3639,25 +3688,25 @@ msgstr "" msgid "Click to see difference" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:212 +#: superset-frontend/src/components/Table/index.tsx:216 msgid "Click to sort ascending" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:211 +#: superset-frontend/src/components/Table/index.tsx:215 msgid "Click to sort descending" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:83 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:132 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:52 #: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:209 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:219 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:224 #: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:786 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:408 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:414 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:339 #: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:36 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1109 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1164 msgid "Close" msgstr "" @@ -3690,15 +3739,15 @@ msgstr "" msgid "Collapse data panel" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:210 +#: superset-frontend/src/components/Table/index.tsx:214 msgid "Collapse row" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:598 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:599 msgid "Collapse tab content" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:197 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 msgid "Collapse table preview" msgstr "" @@ -3720,7 +3769,7 @@ msgstr "" msgid "Color Scheme" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:129 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 msgid "Color Steps" msgstr "" @@ -3741,8 +3790,8 @@ msgid "Color of the target location" msgstr "" #: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:214 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:218 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 #: superset-frontend/src/explore/controlPanels/sections.tsx:60 #: superset-frontend/src/explore/controls.jsx:460 msgid "Color scheme" @@ -3762,8 +3811,8 @@ msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 #: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:204 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:250 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:256 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:137 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:140 #: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 @@ -3771,7 +3820,7 @@ msgstr "" #: superset-frontend/src/filters/components/Range/controlPanel.ts:39 #: superset-frontend/src/filters/components/Select/controlPanel.ts:49 #: superset-frontend/src/filters/components/Time/controlPanel.ts:37 -#: superset/connectors/sqla/views.py:155 +#: superset/connectors/sqla/views.py:154 msgid "Column" msgstr "" @@ -3786,12 +3835,16 @@ msgstr "" msgid "Column Configuration" msgstr "" +#: superset/views/database/forms.py:144 +msgid "Column Data Types" +msgstr "" + #: superset-frontend/src/explore/components/DataTableControl/index.tsx:194 msgid "Column Formatting" msgstr "" -#: superset/views/database/forms.py:222 superset/views/database/forms.py:383 -#: superset/views/database/forms.py:474 +#: superset/views/database/forms.py:232 superset/views/database/forms.py:393 +#: superset/views/database/forms.py:484 msgid "Column Label(s)" msgstr "" @@ -3809,6 +3862,10 @@ msgstr "" msgid "Column containing longitude data" msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:69 +msgid "Column datatype" +msgstr "" + #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 msgid "Column header tooltip" msgstr "" @@ -3817,19 +3874,19 @@ msgstr "" msgid "Column is required" msgstr "" -#: superset/views/database/forms.py:384 superset/views/database/forms.py:475 +#: superset/views/database/forms.py:394 superset/views/database/forms.py:485 msgid "" "Column label for index column(s). If None is given and Dataframe Index is" " True, Index Names are used." msgstr "" -#: superset/views/database/forms.py:223 +#: superset/views/database/forms.py:233 msgid "" "Column label for index column(s). If None is given and Dataframe Index is" " checked, Index Names are used" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:77 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:90 msgid "Column name" msgstr "" @@ -3847,30 +3904,30 @@ msgstr "" msgid "Column select" msgstr "" -#: superset/views/database/forms.py:211 +#: superset/views/database/forms.py:221 msgid "" "Column to use as the row labels of the dataframe. Leave empty if no index" " column" msgstr "" -#: superset/views/database/forms.py:342 +#: superset/views/database/forms.py:352 msgid "" "Column to use as the row labels of the dataframe. Leave empty if no index" " column." msgstr "" -#: superset/views/database/forms.py:414 +#: superset/views/database/forms.py:424 msgid "Columnar File" msgstr "" -#: superset/views/database/views.py:565 +#: superset/views/database/views.py:568 #, python-format msgid "" "Columnar file \"%(columnar_filename)s\" uploaded to table " "\"%(table_name)s\" in database \"%(db_name)s\"" msgstr "" -#: superset/views/database/views.py:440 +#: superset/views/database/views.py:443 msgid "Columnar to Database configuration" msgstr "" @@ -3886,15 +3943,15 @@ msgstr "" #: superset-frontend/src/explore/controls.jsx:244 #: superset-frontend/src/explore/fixtures.tsx:97 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 -#: superset/connectors/sqla/views.py:72 +#: superset/connectors/sqla/views.py:71 msgid "Columns" msgstr "" -#: superset/views/database/forms.py:183 +#: superset/views/database/forms.py:193 msgid "Columns To Be Parsed as Dates" msgstr "" -#: superset/views/database/forms.py:231 +#: superset/views/database/forms.py:241 msgid "Columns To Read" msgstr "" @@ -3903,7 +3960,7 @@ msgstr "" msgid "Columns missing in dataset: %(invalid_columns)s" msgstr "" -#: superset/viz.py:577 +#: superset/viz.py:593 #, python-format msgid "Columns missing in datasource: %(invalid_columns)s" msgstr "" @@ -3942,10 +3999,6 @@ msgstr "" msgid "Columns to show" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:85 -msgid "Combine Metrics" -msgstr "" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:250 msgid "Combine metrics" msgstr "" @@ -4003,6 +4056,7 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:35 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:35 @@ -4047,6 +4101,10 @@ msgstr "" msgid "Condition" msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 +msgid "Conditional Formatting" +msgstr "" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:385 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:504 msgid "Conditional formatting" @@ -4100,15 +4158,15 @@ msgstr "" msgid "Confirm overwrite" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:180 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:222 msgid "Confirm save" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1059 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1097 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1656 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1695 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1857 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1152 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1712 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 msgid "Connect" msgstr "" @@ -4120,9 +4178,9 @@ msgstr "" msgid "Connect Google Sheets as tables to this database" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1660 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1700 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1861 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1716 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1918 msgid "Connect a database" msgstr "" @@ -4130,24 +4188,24 @@ msgstr "" msgid "Connect database" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1768 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 msgid "Connect this database using the dynamic form instead" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1950 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2007 msgid "Connect this database with a SQLAlchemy URI string instead" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:225 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 msgid "Connection" msgstr "" #: superset/databases/commands/exceptions.py:107 -#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1430 +#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1471 msgid "Connection failed, please check your connection settings" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:697 +#: superset-frontend/src/views/CRUD/hooks.ts:701 msgid "Connection looks good!" msgstr "" @@ -4171,7 +4229,7 @@ msgstr "" msgid "Contribution" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:42 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 msgid "Contribution Mode" msgstr "" @@ -4223,8 +4281,8 @@ msgstr "" msgid "Copy message" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:683 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1469 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:679 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1461 #: superset-frontend/src/SqlLab/reducers/sqlLab.js:107 #, python-format msgid "Copy of %s" @@ -4235,7 +4293,7 @@ msgid "Copy partition query to clipboard" msgstr "" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:329 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:468 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:340 msgid "Copy permalink to clipboard" msgstr "" @@ -4260,7 +4318,7 @@ msgstr "" msgid "Copy the name of the database you are trying to connect to." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:273 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:271 msgid "Copy to Clipboard" msgstr "" @@ -4280,7 +4338,12 @@ msgstr "" msgid "Cost estimate" msgstr "" -#: superset/views/utils.py:498 +#: superset/db_engine_specs/ocient.py:259 +#, python-format +msgid "Could not connect to database: \"%(database)s\"" +msgstr "" + +#: superset/views/utils.py:496 msgid "Could not determine datasource type" msgstr "" @@ -4289,7 +4352,7 @@ msgstr "" msgid "Could not fetch all saved charts" msgstr "" -#: superset/views/utils.py:514 +#: superset/views/utils.py:512 msgid "Could not find viz object" msgstr "" @@ -4297,7 +4360,7 @@ msgstr "" msgid "Could not load database driver" msgstr "" -#: superset/views/core.py:1413 +#: superset/views/core.py:1454 #, python-format msgid "Could not load database driver: %(driver_name)s" msgstr "" @@ -4306,6 +4369,11 @@ msgstr "" msgid "Could not load database driver: {}" msgstr "" +#: superset/db_engine_specs/ocient.py:264 +#, python-format +msgid "Could not resolve hostname: \"%(host)s\"." +msgstr "" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 msgid "Count" msgstr "" @@ -4345,12 +4413,12 @@ msgid "Country Field Type" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 -#: superset/viz.py:2044 +#: superset/viz.py:1969 msgid "Country Map" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:767 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:761 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:770 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:96 msgid "Create" msgstr "" @@ -4360,10 +4428,10 @@ msgid "Create Chart" msgstr "" #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:331 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:321 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:332 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:356 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:327 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:338 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:362 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 msgid "Create a dataset" msgstr "" @@ -4406,7 +4474,7 @@ msgstr "" msgid "Create new filter set" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 msgid "Create or select schema..." msgstr "" @@ -4429,7 +4497,7 @@ msgstr "" #: superset-frontend/src/pages/CssTemplateList/index.tsx:273 #: superset-frontend/src/pages/DashboardList/index.tsx:358 #: superset-frontend/src/pages/DashboardList/index.tsx:545 -#: superset-frontend/src/pages/DatabaseList/index.tsx:365 +#: superset-frontend/src/pages/DatabaseList/index.tsx:376 #: superset-frontend/src/pages/Tags/index.tsx:128 #: superset-frontend/src/pages/Tags/index.tsx:183 msgid "Created by" @@ -4458,9 +4526,8 @@ msgstr "" msgid "Creating a data source and creating a new tab" msgstr "" -#: superset/connectors/sqla/views.py:366 superset/views/chart/mixin.py:77 -#: superset/views/dashboard/mixin.py:84 superset/views/dashboard/views.py:185 -#: superset/views/database/mixins.py:189 +#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 +#: superset/views/dashboard/views.py:185 superset/views/database/mixins.py:189 msgid "Creator" msgstr "" @@ -4468,14 +4535,24 @@ msgstr "" msgid "Crimson" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:122 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:152 msgid "Cross-filter will be applied to all of the charts that use this dataset." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:134 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:164 msgid "Cross-filtering is not enabled for this dashboard." msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 +msgid "Cross-filtering is not enabled in this dashboard" +msgstr "" + +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:414 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 +msgid "Cross-filtering scoping" +msgstr "" + #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 msgid "Cross-filters" msgstr "" @@ -4501,7 +4578,7 @@ msgstr "" msgid "Custom Plugins" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:385 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:391 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 @@ -4512,8 +4589,7 @@ msgstr "" msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" msgstr "" -#: superset/connectors/sqla/utils.py:194 superset/errors.py:145 -#: superset/models/helpers.py:129 superset/models/helpers.py:864 +#: superset/errors.py:145 superset/models/helpers.py:138 msgid "Custom SQL fields cannot contain sub-queries." msgstr "" @@ -4537,7 +4613,7 @@ msgstr "" msgid "Cyclic dependency detected" msgstr "" -#: superset/connectors/sqla/views.py:256 +#: superset/connectors/sqla/views.py:255 msgid "D3 Format" msgstr "" @@ -4547,7 +4623,7 @@ msgstr "" msgid "D3 format" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:22 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:146 msgid "D3 format syntax: https://github.com/d3/d3-format" msgstr "" @@ -4563,7 +4639,7 @@ msgstr "" msgid "D3 time format for datetime columns" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:53 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 msgid "D3 time format syntax: https://github.com/d3/d3-time-format" msgstr "" @@ -4585,7 +4661,7 @@ msgstr "" msgid "DELETE" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:332 +#: superset-frontend/src/pages/DatabaseList/index.tsx:343 msgid "DML" msgstr "" @@ -4614,12 +4690,12 @@ msgstr "" msgid "Dashboard" msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:135 +#: superset-frontend/src/explore/actions/saveModalActions.js:129 #, python-format msgid "Dashboard [%s] just got created and chart [%s] was added to it" msgstr "" -#: superset/views/core.py:1122 +#: superset/views/core.py:1144 msgid "Dashboard [{}] just got created and chart [{}] was added to it" msgstr "" @@ -4681,7 +4757,7 @@ msgstr "" #: superset-frontend/src/pages/Home/index.tsx:385 #: superset-frontend/src/profile/components/CreatedContent.tsx:101 #: superset-frontend/src/profile/components/Favorites.tsx:99 -#: superset/initialization/__init__.py:249 superset/views/chart/mixin.py:78 +#: superset/initialization/__init__.py:251 superset/views/chart/mixin.py:78 #: superset/views/dashboard/mixin.py:24 msgid "Dashboards" msgstr "" @@ -4705,7 +4781,7 @@ msgstr "" #: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:708 #: superset-frontend/src/features/home/RightMenu.tsx:169 -#: superset/initialization/__init__.py:244 +#: superset/initialization/__init__.py:246 msgid "Data" msgstr "" @@ -4713,7 +4789,7 @@ msgstr "" msgid "Data Table" msgstr "" -#: superset/datasets/commands/exceptions.py:197 +#: superset/datasets/commands/exceptions.py:214 msgid "Data URI is not allowed." msgstr "" @@ -4727,14 +4803,14 @@ msgstr "" msgid "Data Zoom" msgstr "" -#: superset/sqllab/commands/results.py:116 superset/views/core.py:2195 +#: superset/sqllab/commands/results.py:116 superset/views/core.py:2231 msgid "" "Data could not be deserialized from the results backend. The storage " "format might have changed, rendering the old data stake. You need to re-" "run the original query." msgstr "" -#: superset/sqllab/commands/results.py:75 superset/views/core.py:2148 +#: superset/sqllab/commands/results.py:75 superset/views/core.py:2184 msgid "" "Data could not be retrieved from the results backend. You need to re-run " "the original query." @@ -4748,7 +4824,7 @@ msgstr "" msgid "Data preview" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:283 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:278 msgid "Data refreshed" msgstr "" @@ -4767,50 +4843,50 @@ msgstr "" msgid "DataFrame must include temporal column" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:275 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:274 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -#: superset-frontend/src/pages/DatabaseList/index.tsx:267 -#: superset-frontend/src/pages/DatabaseList/index.tsx:296 -#: superset-frontend/src/pages/DatasetList/index.tsx:349 -#: superset-frontend/src/pages/DatasetList/index.tsx:520 +#: superset-frontend/src/pages/DatabaseList/index.tsx:278 +#: superset-frontend/src/pages/DatabaseList/index.tsx:307 +#: superset-frontend/src/pages/DatasetList/index.tsx:360 +#: superset-frontend/src/pages/DatasetList/index.tsx:531 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:241 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:349 #: superset-frontend/src/pages/SavedQueryList/index.tsx:287 #: superset-frontend/src/pages/SavedQueryList/index.tsx:448 -#: superset/connectors/sqla/views.py:479 superset/connectors/sqla/views.py:480 +#: superset/connectors/sqla/views.py:386 superset/connectors/sqla/views.py:387 #: superset/templates/superset/import_dashboards.html:53 -#: superset/views/database/forms.py:137 superset/views/database/forms.py:305 -#: superset/views/database/forms.py:436 superset/views/database/mixins.py:188 +#: superset/views/database/forms.py:137 superset/views/database/forms.py:315 +#: superset/views/database/forms.py:446 superset/views/database/mixins.py:188 #: superset/views/sql_lab/views.py:83 msgid "Database" msgstr "" -#: superset/views/database/views.py:478 +#: superset/views/database/views.py:481 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " "for columnar uploads. Please contact your Superset Admin." msgstr "" -#: superset/views/database/views.py:179 +#: superset/views/database/views.py:180 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " "for csv uploads. Please contact your Superset Admin." msgstr "" -#: superset/views/database/views.py:318 +#: superset/views/database/views.py:321 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " "for excel uploads. Please contact your Superset Admin." msgstr "" -#: superset/initialization/__init__.py:241 +#: superset/initialization/__init__.py:243 msgid "Database Connections" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1467 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1522 msgid "Database Creation Error" msgstr "" @@ -4819,9 +4895,9 @@ msgid "Database URL" msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:827 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:849 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1150 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:882 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:904 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1205 msgid "Database connected" msgstr "" @@ -4847,7 +4923,7 @@ msgstr "" msgid "Database does not exist" msgstr "" -#: superset/connectors/sqla/models.py:1793 superset/models/helpers.py:1966 +#: superset/models/helpers.py:2063 msgid "Database does not support subqueries" msgstr "" @@ -4857,7 +4933,7 @@ msgid "" "documentation page for installation instructions: " msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:429 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 msgid "Database error" msgstr "" @@ -4870,8 +4946,8 @@ msgid "Database is required for alerts" msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:113 -#: superset/db_engine_specs/base.py:1845 -#: superset/db_engine_specs/clickhouse.py:209 +#: superset/db_engine_specs/base.py:1880 +#: superset/db_engine_specs/clickhouse.py:212 msgid "Database name" msgstr "" @@ -4883,7 +4959,7 @@ msgstr "" msgid "Database not found." msgstr "" -#: superset/views/core.py:1179 +#: superset/views/core.py:1201 #, python-format msgid "Database not found: %(id)s" msgstr "" @@ -4896,24 +4972,24 @@ msgstr "" msgid "Database passwords" msgstr "" -#: superset/db_engine_specs/base.py:1842 -#: superset/db_engine_specs/clickhouse.py:206 +#: superset/db_engine_specs/base.py:1876 +#: superset/db_engine_specs/clickhouse.py:208 #: superset/db_engine_specs/databricks.py:52 msgid "Database port" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:811 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:853 msgid "Database settings updated" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:258 +#: superset-frontend/src/pages/DatabaseList/index.tsx:269 #: superset-frontend/src/profile/components/Security.tsx:47 #: superset/views/database/mixins.py:33 msgid "Databases" msgstr "" -#: superset/views/database/forms.py:219 superset/views/database/forms.py:380 -#: superset/views/database/forms.py:471 +#: superset/views/database/forms.py:229 superset/views/database/forms.py:390 +#: superset/views/database/forms.py:481 msgid "Dataframe Index" msgstr "" @@ -4925,7 +5001,7 @@ msgstr "" #: superset-frontend/src/pages/ChartCreation/index.tsx:390 #: superset-frontend/src/pages/ChartList/index.tsx:391 #: superset-frontend/src/pages/ChartList/index.tsx:678 -#: superset-frontend/src/pages/DatasetList/index.tsx:606 +#: superset-frontend/src/pages/DatasetList/index.tsx:617 msgid "Dataset" msgstr "" @@ -4934,7 +5010,7 @@ msgstr "" msgid "Dataset %(name)s already exists" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:331 +#: superset-frontend/src/explore/components/SaveModal.tsx:366 msgid "Dataset Name" msgstr "" @@ -4946,28 +5022,28 @@ msgstr "" msgid "Dataset column not found." msgstr "" -#: superset/datasets/commands/exceptions.py:157 +#: superset/datasets/commands/exceptions.py:174 msgid "Dataset could not be created." msgstr "" -#: superset/datasets/commands/exceptions.py:165 +#: superset/datasets/commands/exceptions.py:182 msgid "Dataset could not be deleted." msgstr "" -#: superset/datasets/commands/exceptions.py:193 +#: superset/datasets/commands/exceptions.py:210 msgid "Dataset could not be duplicated." msgstr "" -#: superset/datasets/commands/exceptions.py:161 -#: superset/datasets/commands/exceptions.py:173 +#: superset/datasets/commands/exceptions.py:178 +#: superset/datasets/commands/exceptions.py:190 msgid "Dataset could not be updated." msgstr "" -#: superset/datasets/commands/exceptions.py:149 +#: superset/datasets/commands/exceptions.py:166 msgid "Dataset does not exist" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:185 +#: superset-frontend/src/pages/DatasetList/index.tsx:196 msgid "Dataset imported" msgstr "" @@ -4988,22 +5064,22 @@ msgstr "" msgid "Dataset name" msgstr "" -#: superset/datasets/commands/exceptions.py:153 +#: superset/datasets/commands/exceptions.py:170 msgid "Dataset parameters are invalid." msgstr "" -#: superset/dashboards/api.py:430 +#: superset/dashboards/api.py:415 #, python-format msgid "Dataset schema is invalid, caused by: %(error)s" msgstr "" -#: superset/datasets/commands/exceptions.py:169 +#: superset/datasets/commands/exceptions.py:186 msgid "Dataset(s) could not be bulk deleted." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:589 +#: superset-frontend/src/pages/DatasetList/index.tsx:600 #: superset-frontend/src/profile/components/Security.tsx:61 -#: superset/initialization/__init__.py:265 +#: superset/initialization/__init__.py:267 msgid "Datasets" msgstr "" @@ -5026,11 +5102,11 @@ msgstr "" msgid "Datasource & Chart Type" msgstr "" -#: superset/commands/exceptions.py:131 +#: superset/commands/exceptions.py:135 msgid "Datasource does not exist" msgstr "" -#: superset/commands/exceptions.py:123 +#: superset/commands/exceptions.py:127 msgid "Datasource type is invalid" msgstr "" @@ -5047,8 +5123,7 @@ msgstr "" msgid "Date filter" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:71 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:151 #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:135 @@ -5068,11 +5143,11 @@ msgstr "" msgid "Date/Time" msgstr "" -#: superset/connectors/sqla/views.py:163 +#: superset/connectors/sqla/views.py:162 msgid "Datetime Format" msgstr "" -#: superset/connectors/sqla/models.py:1237 superset/models/helpers.py:1427 +#: superset/models/helpers.py:1502 msgid "" "Datetime column not provided as part table configuration and is required " "by this type of chart" @@ -5082,7 +5157,7 @@ msgstr "" msgid "Datetime format" msgstr "" -#: superset/db_engine_specs/base.py:106 +#: superset/db_engine_specs/base.py:107 msgid "Day" msgstr "" @@ -5095,7 +5170,7 @@ msgstr "" msgid "Days %s" msgstr "" -#: superset/connectors/sqla/models.py:1936 superset/models/helpers.py:988 +#: superset/connectors/sqla/models.py:1222 superset/models/helpers.py:1024 msgid "Db engine did not return all queried columns" msgstr "" @@ -5107,47 +5182,55 @@ msgstr "" msgid "December" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:70 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:89 msgid "Decides which column to sort the base axis by." msgstr "" -#: superset/views/database/forms.py:194 superset/views/database/forms.py:373 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:160 +msgid "Decides which measure to sort the base axis by." +msgstr "" + +#: superset/views/database/forms.py:204 superset/views/database/forms.py:383 msgid "Decimal Character" msgstr "" -#: superset/viz.py:2743 +#: superset/viz.py:2700 msgid "Deck.gl - 3D Grid" msgstr "" -#: superset/viz.py:2859 +#: superset/viz.py:2825 msgid "Deck.gl - 3D HEX" msgstr "" -#: superset/viz.py:2899 +#: superset/viz.py:2890 msgid "Deck.gl - Arc" msgstr "" -#: superset/viz.py:2880 +#: superset/viz.py:2869 msgid "Deck.gl - GeoJSON" msgstr "" -#: superset/viz.py:2468 +#: superset/viz.py:2848 +msgid "Deck.gl - Heatmap" +msgstr "" + +#: superset/viz.py:2406 msgid "Deck.gl - Multiple Layers" msgstr "" -#: superset/viz.py:2775 +#: superset/viz.py:2735 msgid "Deck.gl - Paths" msgstr "" -#: superset/viz.py:2826 +#: superset/viz.py:2789 msgid "Deck.gl - Polygon" msgstr "" -#: superset/viz.py:2662 +#: superset/viz.py:2612 msgid "Deck.gl - Scatter plot" msgstr "" -#: superset/viz.py:2714 +#: superset/viz.py:2668 msgid "Deck.gl - Screen Grid" msgstr "" @@ -5155,7 +5238,7 @@ msgstr "" msgid "Default" msgstr "" -#: superset/connectors/sqla/views.py:484 +#: superset/connectors/sqla/views.py:391 msgid "Default Endpoint" msgstr "" @@ -5284,11 +5367,13 @@ msgstr "" #: superset-frontend/src/pages/CssTemplateList/index.tsx:338 #: superset-frontend/src/pages/DashboardList/index.tsx:427 #: superset-frontend/src/pages/DashboardList/index.tsx:712 -#: superset-frontend/src/pages/DatasetList/index.tsx:418 -#: superset-frontend/src/pages/DatasetList/index.tsx:751 +#: superset-frontend/src/pages/DatasetList/index.tsx:429 +#: superset-frontend/src/pages/DatasetList/index.tsx:773 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:182 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:313 #: superset-frontend/src/pages/SavedQueryList/index.tsx:542 #: superset-frontend/src/pages/Tags/index.tsx:153 -#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:663 +#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:664 msgid "Delete" msgstr "" @@ -5301,11 +5386,11 @@ msgstr "" msgid "Delete Annotation?" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:529 +#: superset-frontend/src/pages/DatabaseList/index.tsx:551 msgid "Delete Database?" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:723 +#: superset-frontend/src/pages/DatasetList/index.tsx:745 msgid "Delete Dataset?" msgstr "" @@ -5326,7 +5411,7 @@ msgstr "" msgid "Delete Template?" msgstr "" -#: superset/views/base.py:663 +#: superset/views/base.py:664 msgid "Delete all Really?" msgstr "" @@ -5338,7 +5423,7 @@ msgstr "" msgid "Delete dashboard tab?" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:405 +#: superset-frontend/src/pages/DatabaseList/index.tsx:416 msgid "Delete database" msgstr "" @@ -5360,6 +5445,10 @@ msgstr "" msgid "Delete this container and save to remove this message." msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:108 +msgid "Deleted" +msgstr "" + #: superset/annotation_layers/annotations/api.py:504 #, python-format msgid "Deleted %(num)d annotation" @@ -5374,7 +5463,7 @@ msgid_plural "Deleted %(num)d annotation layers" msgstr[0] "" msgstr[1] "" -#: superset/charts/api.py:524 +#: superset/charts/api.py:521 #, python-format msgid "Deleted %(num)d chart" msgid_plural "Deleted %(num)d charts" @@ -5388,14 +5477,14 @@ msgid_plural "Deleted %(num)d css templates" msgstr[0] "" msgstr[1] "" -#: superset/dashboards/api.py:760 +#: superset/dashboards/api.py:745 #, python-format msgid "Deleted %(num)d dashboard" msgid_plural "Deleted %(num)d dashboards" msgstr[0] "" msgstr[1] "" -#: superset/datasets/api.py:783 +#: superset/datasets/api.py:789 #, python-format msgid "Deleted %(num)d dataset" msgid_plural "Deleted %(num)d datasets" @@ -5409,6 +5498,13 @@ msgid_plural "Deleted %(num)d report schedules" msgstr[0] "" msgstr[1] "" +#: superset/row_level_security/api.py:349 +#, python-format +msgid "Deleted %(num)d rules" +msgid_plural "Deleted %(num)d rules" +msgstr[0] "" +msgstr[1] "" + #: superset/queries/saved_queries/api.py:222 #, python-format msgid "Deleted %(num)d saved query" @@ -5416,13 +5512,18 @@ msgid_plural "Deleted %(num)d saved queries" msgstr[0] "" msgstr[1] "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:94 +#, python-format +msgid "Deleted %s" +msgstr "" + #: superset-frontend/src/features/home/SavedQueries.tsx:172 #: superset-frontend/src/pages/AlertReportList/index.tsx:183 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 #: superset-frontend/src/pages/AnnotationList/index.tsx:117 #: superset-frontend/src/pages/CssTemplateList/index.tsx:93 -#: superset-frontend/src/pages/DatabaseList/index.tsx:158 -#: superset-frontend/src/pages/DatasetList/index.tsx:653 +#: superset-frontend/src/pages/DatabaseList/index.tsx:169 +#: superset-frontend/src/pages/DatasetList/index.tsx:664 #: superset-frontend/src/pages/SavedQueryList/index.tsx:242 #: superset-frontend/src/reports/actions/reports.js:158 #: superset-frontend/src/views/CRUD/utils.tsx:272 @@ -5441,7 +5542,7 @@ msgstr "" msgid "Delimited long & lat single column" msgstr "" -#: superset/views/database/forms.py:150 +#: superset/views/database/forms.py:160 msgid "Delimiter" msgstr "" @@ -5468,32 +5569,34 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:40 +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 msgid "Deprecated" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:83 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:114 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:96 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:127 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:55 #: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:157 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:156 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:265 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1206 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1210 -#: superset-frontend/src/components/ReportModal/index.tsx:294 +#: superset-frontend/src/components/ReportModal/index.tsx:293 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1158 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:465 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 #: superset-frontend/src/pages/AnnotationList/index.tsx:161 -#: superset/connectors/sqla/views.py:157 superset/connectors/sqla/views.py:251 -#: superset/connectors/sqla/views.py:362 superset/connectors/sqla/views.py:491 -#: superset/views/chart/mixin.py:80 superset/views/sql_lab/views.py:84 +#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:398 superset/views/chart/mixin.py:80 +#: superset/views/sql_lab/views.py:84 msgid "Description" msgstr "" @@ -5506,7 +5609,7 @@ msgstr "" msgid "Description Columns" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:50 msgid "Description text that shows up below your Big Number" msgstr "" @@ -5572,7 +5675,7 @@ msgstr "" msgid "Dimensions" msgstr "" -#: superset/viz.py:2005 +#: superset/viz.py:1928 msgid "Directed Force Layout" msgstr "" @@ -5582,11 +5685,11 @@ msgstr "" msgid "Directional" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:202 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 msgid "Disable SQL Lab data preview queries" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:205 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 msgid "" "Disable data preview when fetching table metadata in SQL Lab. Useful to " "avoid browser performance issues when using databases with very wide " @@ -5625,7 +5728,6 @@ msgstr "" msgid "Display configuration" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:87 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:252 msgid "" "Display metrics side by side within each column, as opposed to each " @@ -5636,14 +5738,10 @@ msgstr "" msgid "Display row level total" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:39 msgid "Display settings" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:78 -msgid "Display total row/column" -msgstr "" - #: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:35 msgid "" "Displays connections between entities in a graph structure. Useful for " @@ -5663,7 +5761,7 @@ msgstr "" msgid "Distribution" msgstr "" -#: superset/viz.py:1801 +#: superset/viz.py:1717 msgid "Distribution - Bar Chart" msgstr "" @@ -5681,7 +5779,7 @@ msgstr "" msgid "Documentation" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:40 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 msgid "Domain" msgstr "" @@ -5694,18 +5792,18 @@ msgstr "" msgid "Dotted" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:480 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:482 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:292 msgid "Download" msgstr "" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:317 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:504 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:512 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:329 msgid "Download as image" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:264 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:262 msgid "Download to CSV" msgstr "" @@ -5757,20 +5855,20 @@ msgstr "" msgid "Draw split lines for minor y-axis ticks" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:181 -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:191 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 msgid "Drill by" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:172 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 msgid "Drill by is not available for this data point" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:170 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 msgid "Drill by is not yet supported for this chart type" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:154 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:420 #, python-format msgid "Drill by: %s" msgstr "" @@ -5799,60 +5897,36 @@ msgstr "" msgid "Drill to detail: %s" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:206 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:184 msgid "Drop a column here or click" msgid_plural "Drop columns here or click" msgstr[0] "" msgstr[1] "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:335 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:330 msgid "Drop a column/metric here or click" msgid_plural "Drop columns/metrics here or click" msgstr[0] "" msgstr[1] "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:248 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 msgid "Drop a temporal column here or click" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:216 -msgid "Drop column here" -msgid_plural "Drop columns here" -msgstr[0] "" -msgstr[1] "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:340 -msgid "Drop column or metric here" -msgid_plural "Drop columns or metrics here" -msgstr[0] "" -msgstr[1] "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndSelectLabel.tsx:83 -msgid "Drop columns here" -msgstr "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:402 -msgid "Drop columns or metrics here" -msgstr "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:401 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:405 msgid "Drop columns/metrics here or click" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 -msgid "Drop temporal column here" -msgstr "" - #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:32 msgid "Dual Line Chart" msgstr "" #: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 -#: superset-frontend/src/pages/DatasetList/index.tsx:472 +#: superset-frontend/src/pages/DatasetList/index.tsx:483 msgid "Duplicate" msgstr "" -#: superset/views/datasource/views.py:122 +#: superset/views/datasource/views.py:124 #, python-format msgid "Duplicate column name(s): %(columns)s" msgstr "" @@ -5877,7 +5951,7 @@ msgstr "" msgid "Duration" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:239 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:249 msgid "" "Duration (in seconds) of the caching timeout for charts of this database." " A timeout of 0 indicates that the cache never expires, and -1 bypasses " @@ -5904,26 +5978,26 @@ msgid "" "undefined." msgstr "" -#: superset/connectors/sqla/views.py:462 +#: superset/connectors/sqla/views.py:369 msgid "" "Duration (in seconds) of the caching timeout for this table. A timeout of" " 0 indicates that the cache never expires. Note this defaults to the " "database timeout if undefined." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:261 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:271 msgid "" "Duration (in seconds) of the metadata caching timeout for schemas of this" " database. If left unset, the cache never expires." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:282 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:292 msgid "" "Duration (in seconds) of the metadata caching timeout for tables of this " "database. If left unset, the cache never expires. " msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:50 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" msgstr "" @@ -5931,7 +6005,7 @@ msgstr "" msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:49 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 #: superset-frontend/src/explore/controls.jsx:89 msgid "Duration in ms (66000 => 1m 6s)" msgstr "" @@ -5969,7 +6043,7 @@ msgstr "" msgid "ECharts" msgstr "" -#: superset/reports/notifications/email.py:130 +#: superset/reports/notifications/email.py:133 msgid "EMAIL_REPORTS_CTA" msgstr "" @@ -5979,11 +6053,11 @@ msgstr "" msgid "END (EXCLUSIVE)" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:171 +#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 msgid "ERROR" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:700 +#: superset-frontend/src/views/CRUD/hooks.ts:704 #, python-format msgid "ERROR: %s" msgstr "" @@ -6014,8 +6088,9 @@ msgstr "" #: superset-frontend/src/pages/AlertReportList/index.tsx:385 #: superset-frontend/src/pages/ChartList/index.tsx:553 #: superset-frontend/src/pages/DashboardList/index.tsx:461 -#: superset-frontend/src/pages/DatabaseList/index.tsx:431 -#: superset-frontend/src/pages/DatasetList/index.tsx:452 +#: superset-frontend/src/pages/DatabaseList/index.tsx:442 +#: superset-frontend/src/pages/DatasetList/index.tsx:463 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:200 msgid "Edit" msgstr "" @@ -6043,7 +6118,7 @@ msgstr "" msgid "Edit Chart Properties" msgstr "" -#: superset/connectors/sqla/views.py:75 +#: superset/connectors/sqla/views.py:74 msgid "Edit Column" msgstr "" @@ -6055,7 +6130,7 @@ msgstr "" msgid "Edit Database" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:199 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:241 msgid "Edit Dataset " msgstr "" @@ -6063,7 +6138,7 @@ msgstr "" msgid "Edit Log" msgstr "" -#: superset/connectors/sqla/views.py:210 +#: superset/connectors/sqla/views.py:209 msgid "Edit Metric" msgstr "" @@ -6075,15 +6150,15 @@ msgstr "" msgid "Edit Report" msgstr "" -#: superset/connectors/sqla/views.py:293 -msgid "Edit Row level security filter" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +msgid "Edit Rule" msgstr "" #: superset/views/sql_lab/views.py:55 msgid "Edit Saved Query" msgstr "" -#: superset/connectors/sqla/views.py:387 +#: superset/connectors/sqla/views.py:294 msgid "Edit Table" msgstr "" @@ -6100,9 +6175,9 @@ msgstr "" msgid "Edit annotation layer properties" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:74 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:122 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:44 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:212 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:217 #: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:405 msgid "Edit chart" msgstr "" @@ -6116,7 +6191,7 @@ msgstr "" msgid "Edit dashboard" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1700 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 msgid "Edit database" msgstr "" @@ -6126,7 +6201,7 @@ msgstr "" #: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:243 #: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:264 -#: superset-frontend/src/components/ReportModal/index.tsx:212 +#: superset-frontend/src/components/ReportModal/index.tsx:211 msgid "Edit email report" msgstr "" @@ -6151,7 +6226,7 @@ msgstr "" msgid "Edit template parameters" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:717 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:718 #: superset-frontend/src/dashboard/components/DashboardGrid.jsx:242 msgid "Edit the dashboard" msgstr "" @@ -6176,8 +6251,9 @@ msgstr "" msgid "Either the database is spelled incorrectly or does not exist." msgstr "" -#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:654 -#: superset/db_engine_specs/redshift.py:67 +#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:681 +#: superset/db_engine_specs/redshift.py:71 +#: superset/db_engine_specs/starrocks.py:122 #, python-format msgid "Either the username \"%(username)s\" or the password is incorrect." msgstr "" @@ -6243,11 +6319,11 @@ msgstr "" msgid "Empty column" msgstr "" -#: superset/charts/data/api.py:363 +#: superset/charts/data/api.py:366 msgid "Empty query result" msgstr "" -#: superset/connectors/sqla/models.py:1243 superset/models/helpers.py:1433 +#: superset/models/helpers.py:1508 msgid "Empty query?" msgstr "" @@ -6260,11 +6336,11 @@ msgstr "" msgid "Enable 'Allow file uploads to database' in any database's settings" msgstr "" -#: superset/connectors/sqla/views.py:482 +#: superset/connectors/sqla/views.py:389 msgid "Enable Filter Select" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:139 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 msgid "Enable cross-filtering" msgstr "" @@ -6299,7 +6375,7 @@ msgstr "" msgid "Enable node dragging" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:170 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 msgid "Enable query cost estimation" msgstr "" @@ -6308,7 +6384,7 @@ msgstr "" msgid "Enable server side pagination of results (experimental feature)" msgstr "" -#: superset/viz.py:2567 +#: superset/viz.py:2514 msgid "" "Encountered invalid NULL spatial entry," " please consider filtering those " @@ -6355,18 +6431,18 @@ msgstr "" msgid "Engine \"%(engine)s\" cannot be configured through parameters." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:476 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:512 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:516 msgid "Engine Parameters" msgstr "" -#: superset/databases/schemas.py:298 +#: superset/databases/schemas.py:302 msgid "" "Engine spec \"InvalidEngine\" does not support being configured via " "individual parameters." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:366 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:376 msgid "Enter CA_BUNDLE" msgstr "" @@ -6374,7 +6450,7 @@ msgstr "" msgid "Enter Primary Credentials" msgstr "" -#: superset/views/database/forms.py:151 +#: superset/views/database/forms.py:161 msgid "Enter a delimiter for this data" msgstr "" @@ -6386,14 +6462,14 @@ msgstr "" msgid "Enter a new title for the tab" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:234 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:255 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:276 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:244 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:286 msgid "Enter duration in seconds" msgstr "" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:265 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:367 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:369 msgid "Enter fullscreen" msgstr "" @@ -6420,7 +6496,7 @@ msgstr "" msgid "Equal to (=)" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:140 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:182 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:139 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:298 #: superset-frontend/src/explore/components/EmbedCodeContent.jsx:57 @@ -6429,22 +6505,22 @@ msgstr "" msgid "Error" msgstr "" -#: superset/connectors/sqla/models.py:1650 superset/models/helpers.py:1843 +#: superset/models/helpers.py:1919 #, python-format msgid "Error in jinja expression in HAVING clause: %(msg)s" msgstr "" -#: superset/connectors/sqla/models.py:1145 +#: superset/connectors/sqla/models.py:1105 superset/models/helpers.py:835 #, python-format msgid "Error in jinja expression in RLS filters: %(msg)s" msgstr "" -#: superset/connectors/sqla/models.py:1633 superset/models/helpers.py:1831 +#: superset/models/helpers.py:1901 #, python-format msgid "Error in jinja expression in WHERE clause: %(msg)s" msgstr "" -#: superset/connectors/sqla/models.py:826 +#: superset/connectors/sqla/models.py:789 #, python-format msgid "Error in jinja expression in fetch values predicate: %(msg)s" msgstr "" @@ -6468,7 +6544,7 @@ msgstr "" msgid "Error while fetching data: %s" msgstr "" -#: superset/connectors/sqla/models.py:953 superset/models/helpers.py:1029 +#: superset/connectors/sqla/models.py:914 superset/models/helpers.py:1072 #, python-format msgid "Error while rendering virtual dataset query: %(msg)s" msgstr "" @@ -6478,12 +6554,12 @@ msgstr "" msgid "Error: %(error)s" msgstr "" -#: superset/views/core.py:820 superset/views/core.py:1918 +#: superset/views/core.py:842 superset/views/core.py:1955 #, python-format msgid "Error: %(msg)s" msgstr "" -#: superset/views/core.py:817 +#: superset/views/core.py:839 msgid "Error: permalink state not found" msgstr "" @@ -6495,7 +6571,7 @@ msgstr "" msgid "Estimate selected query cost" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:621 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:615 msgid "Estimate the cost before running a query" msgstr "" @@ -6516,7 +6592,7 @@ msgstr "" msgid "Event definition" msgstr "" -#: superset/viz.py:2933 +#: superset/viz.py:2927 msgid "Event flow" msgstr "" @@ -6563,18 +6639,18 @@ msgstr "" msgid "Examples" msgstr "" -#: superset/views/database/forms.py:278 +#: superset/views/database/forms.py:288 msgid "Excel File" msgstr "" -#: superset/views/database/views.py:424 +#: superset/views/database/views.py:427 #, python-format msgid "" "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" " database \"%(db_name)s\"" msgstr "" -#: superset/views/database/views.py:303 +#: superset/views/database/views.py:306 msgid "Excel to Database configuration" msgstr "" @@ -6582,6 +6658,10 @@ msgstr "" msgid "Exclude selected values" msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:405 +msgid "Excluded roles" +msgstr "" + #: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 msgid "Executed SQL" msgstr "" @@ -6598,16 +6678,16 @@ msgstr "" msgid "Execution log" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:411 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:419 msgid "Existing dataset" msgstr "" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:264 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:366 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:368 msgid "Exit fullscreen" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 msgid "Expand" msgstr "" @@ -6619,11 +6699,11 @@ msgstr "" msgid "Expand data panel" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:209 +#: superset-frontend/src/components/Table/index.tsx:213 msgid "Expand row" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:197 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 msgid "Expand table preview" msgstr "" @@ -6640,6 +6720,7 @@ msgid "" msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:38 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:37 @@ -6654,11 +6735,11 @@ msgid "Experimental" msgstr "" #: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 -#: superset/views/core.py:987 +#: superset/views/core.py:1009 msgid "Explore" msgstr "" -#: superset/views/core.py:985 +#: superset/views/core.py:1007 #, python-format msgid "Explore - %(table)s" msgstr "" @@ -6674,9 +6755,9 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:854 #: superset-frontend/src/pages/DashboardList/index.tsx:445 #: superset-frontend/src/pages/DashboardList/index.tsx:720 -#: superset-frontend/src/pages/DatabaseList/index.tsx:415 -#: superset-frontend/src/pages/DatasetList/index.tsx:434 -#: superset-frontend/src/pages/DatasetList/index.tsx:759 +#: superset-frontend/src/pages/DatabaseList/index.tsx:426 +#: superset-frontend/src/pages/DatasetList/index.tsx:445 +#: superset-frontend/src/pages/DatasetList/index.tsx:781 #: superset-frontend/src/pages/SavedQueryList/index.tsx:550 #: superset/views/dashboard/views.py:65 msgid "Export" @@ -6690,7 +6771,7 @@ msgstr "" msgid "Export query" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:485 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:487 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:316 msgid "Export to .CSV" msgstr "" @@ -6699,19 +6780,20 @@ msgstr "" msgid "Export to .JSON" msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:335 msgid "Export to Excel" msgstr "" -#: superset/views/base.py:606 +#: superset/views/base.py:607 msgid "Export to YAML" msgstr "" -#: superset/views/base.py:606 +#: superset/views/base.py:607 msgid "Export to YAML?" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:496 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:498 msgid "Export to full .CSV" msgstr "" @@ -6723,12 +6805,12 @@ msgstr "" msgid "Export to pivoted .CSV" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:88 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 msgid "Expose database in SQL Lab" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:354 -#: superset-frontend/src/pages/DatabaseList/index.tsx:460 +#: superset-frontend/src/pages/DatabaseList/index.tsx:365 +#: superset-frontend/src/pages/DatabaseList/index.tsx:471 #: superset/views/database/mixins.py:183 msgid "Expose in SQL Lab" msgstr "" @@ -6737,12 +6819,12 @@ msgstr "" msgid "Expose this DB in SQL Lab" msgstr "" -#: superset/connectors/sqla/views.py:161 +#: superset/connectors/sqla/views.py:160 msgid "Expression" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:908 -#: superset/connectors/sqla/views.py:257 superset/connectors/sqla/views.py:494 +#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:401 #: superset/views/database/mixins.py:193 msgid "Extra" msgstr "" @@ -6807,8 +6889,8 @@ msgstr "" msgid "Factor to multiply the metric by" msgstr "" -#: superset/views/database/forms.py:167 superset/views/database/forms.py:324 -#: superset/views/database/forms.py:455 +#: superset/views/database/forms.py:177 superset/views/database/forms.py:334 +#: superset/views/database/forms.py:465 msgid "Fail" msgstr "" @@ -6819,16 +6901,16 @@ msgid "Failed" msgstr "" #: superset-frontend/src/SqlLab/actions/sqlLab.js:210 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:346 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:350 msgid "Failed at retrieving results" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:500 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:496 #, python-format msgid "Failed at stopping query. %s" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:343 +#: superset-frontend/src/components/ReportModal/index.tsx:342 msgid "Failed to create report" msgstr "" @@ -6837,23 +6919,36 @@ msgstr "" msgid "Failed to execute %(query)s" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:97 +msgid "Failed to generate chart edit URL" +msgstr "" + #: superset-frontend/src/pages/Chart/index.tsx:57 msgid "Failed to load chart data" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:402 #: superset-frontend/src/pages/Chart/index.tsx:69 msgid "Failed to load chart data." msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 +msgid "Failed to load dimensions for drill by" +msgstr "" + #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 msgid "Failed to retrieve advanced type" msgstr "" +#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +msgid "Failed to save cross-filter scoping" +msgstr "" + #: superset/errors.py:143 superset/sqllab/sql_json_executer.py:189 msgid "Failed to start remote query on a worker." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:342 +#: superset-frontend/src/components/ReportModal/index.tsx:341 msgid "Failed to update report" msgstr "" @@ -6877,15 +6972,15 @@ msgstr "" msgid "February" msgstr "" -#: superset/connectors/sqla/views.py:488 +#: superset/connectors/sqla/views.py:395 msgid "Fetch Values Predicate" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:538 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:531 msgid "Fetch data preview" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:352 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:354 #, python-format msgid "Fetched %s" msgstr "" @@ -6949,11 +7044,16 @@ msgid "Filter Settings" msgstr "" #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:825 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:362 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:373 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:134 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:255 msgid "Filter Type" msgstr "" #: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:28 -msgid "Filter box" +msgid "Filter box (deprecated)" msgstr "" #: superset-frontend/src/dashboard/components/SliceAdder.jsx:351 @@ -6972,7 +7072,7 @@ msgstr "" msgid "Filter has default value" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:197 +#: superset-frontend/src/components/Table/index.tsx:201 msgid "Filter menu" msgstr "" @@ -6988,7 +7088,7 @@ msgstr "" msgid "Filter only displays values relevant to selections made in other filters." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:289 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:283 msgid "Filter results" msgstr "" @@ -7024,7 +7124,7 @@ msgstr "" msgid "Filter value is required" msgstr "" -#: superset/connectors/sqla/models.py:1549 superset/models/helpers.py:1754 +#: superset/models/helpers.py:1815 msgid "Filter value list cannot be empty" msgstr "" @@ -7032,7 +7132,7 @@ msgstr "" msgid "Filter your charts" msgstr "" -#: superset/connectors/sqla/views.py:159 +#: superset/connectors/sqla/views.py:158 msgid "Filterable" msgstr "" @@ -7040,7 +7140,7 @@ msgstr "" #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 #: superset-frontend/src/explore/controls.jsx:446 #: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:35 -#: superset/viz.py:2142 +#: superset/viz.py:2071 msgid "Filters" msgstr "" @@ -7066,7 +7166,7 @@ msgstr "" msgid "Filters out of scope (%d)" msgstr "" -#: superset/connectors/sqla/views.py:342 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:435 msgid "" "Filters with the same group key will be ORed together within the group, " "while different filter groups will be ANDed together. Undefined group " @@ -7078,9 +7178,9 @@ msgid "" " 'Europe')." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1077 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1125 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1857 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1132 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1180 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 msgid "Finish" msgstr "" @@ -7137,7 +7237,7 @@ msgstr "" msgid "Font size for the smallest value in the list" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:173 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 msgid "" "For Bigquery, Presto and Postgres, shows a button to compute cost before " "running a query." @@ -7153,7 +7253,7 @@ msgid "" "function, refer to the" msgstr "" -#: superset/connectors/sqla/views.py:336 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:408 msgid "" "For regular filters, these are the roles this filter will be applied to. " "For base filters, these are the roles that the filter DOES NOT apply to, " @@ -7164,26 +7264,26 @@ msgstr "" msgid "Force" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:141 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 msgid "" "Force all tables and views to be created in this schema when clicking " "CTAS or CVAS in SQL Lab." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:84 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 msgid "Force date format" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:381 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 msgid "Force refresh" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:292 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:291 msgid "Force refresh schema list" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:317 +#: superset-frontend/src/components/TableSelector/index.tsx:307 msgid "Force refresh table list" msgstr "" @@ -7199,11 +7299,11 @@ msgstr "" msgid "Forest Green" msgstr "" -#: superset/explore/commands/get.py:87 superset/views/core.py:834 +#: superset/explore/commands/get.py:87 superset/views/core.py:856 msgid "Form data not found in cache, reverting to chart metadata." msgstr "" -#: superset/explore/commands/get.py:95 superset/views/core.py:840 +#: superset/explore/commands/get.py:95 superset/views/core.py:862 msgid "Form data not found in cache, reverting to dataset metadata." msgstr "" @@ -7213,7 +7313,7 @@ msgstr "" msgid "Formattable" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:255 +#: superset-frontend/src/components/ReportModal/index.tsx:254 msgid "Formatted CSV attached in email" msgstr "" @@ -7264,7 +7364,7 @@ msgstr "" msgid "Friday" msgstr "" -#: superset/utils/date_parser.py:267 superset/viz.py:392 +#: superset/utils/date_parser.py:267 superset/viz.py:403 msgid "From date cannot be larger than to date" msgstr "" @@ -7334,7 +7434,7 @@ msgstr "" msgid "Get the specify date for the holiday" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:713 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:714 msgid "Go to the edit mode to configure the dashboard and add charts" msgstr "" @@ -7387,20 +7487,22 @@ msgstr "" msgid "Group By filter plugin" msgstr "" -#: superset/viz.py:927 -msgid "Group By' and 'Columns' can't overlap" -msgstr "" - #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:84 msgid "Group By, Metrics or Percentage Metrics must have a value" msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:433 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:139 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:267 +msgid "Group Key" +msgstr "" + #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 msgid "Group by" msgstr "" -#: superset/connectors/sqla/views.py:158 +#: superset/connectors/sqla/views.py:157 msgid "Groupable" msgstr "" @@ -7426,12 +7528,12 @@ msgstr "" msgid "Header" msgstr "" -#: superset/views/database/forms.py:244 superset/views/database/forms.py:331 +#: superset/views/database/forms.py:254 superset/views/database/forms.py:341 msgid "Header Row" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 -#: superset/viz.py:2249 +#: superset/viz.py:2183 msgid "Heatmap" msgstr "" @@ -7455,7 +7557,7 @@ msgstr "" msgid "Hide Line" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:394 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:396 msgid "Hide chart description" msgstr "" @@ -7481,12 +7583,12 @@ msgid "Hierarchy" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 -#: superset/viz.py:1743 +#: superset/viz.py:1656 msgid "Histogram" msgstr "" #: superset-frontend/src/pages/Home/index.tsx:333 -#: superset/initialization/__init__.py:233 +#: superset/initialization/__init__.py:235 msgid "Home" msgstr "" @@ -7494,7 +7596,7 @@ msgstr "" msgid "Horizon Chart" msgstr "" -#: superset/viz.py:2310 +#: superset/viz.py:2246 msgid "Horizon Charts" msgstr "" @@ -7502,7 +7604,7 @@ msgstr "" msgid "Horizontal" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:166 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 msgid "Horizontal (Top)" msgstr "" @@ -7514,12 +7616,12 @@ msgstr "" msgid "Host" msgstr "" -#: superset/db_engine_specs/base.py:1839 -#: superset/db_engine_specs/clickhouse.py:203 +#: superset/db_engine_specs/base.py:1872 +#: superset/db_engine_specs/clickhouse.py:204 msgid "Hostname or IP address" msgstr "" -#: superset/db_engine_specs/base.py:104 +#: superset/db_engine_specs/base.py:105 msgid "Hour" msgstr "" @@ -7576,7 +7678,7 @@ msgstr "" msgid "Id of root node of the tree." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:391 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:401 msgid "" "If Presto or Trino, all the queries in SQL Lab are going to be executed " "as the currently logged on user who must have permission to run them. If " @@ -7594,7 +7696,7 @@ msgid "" "hive.server2.proxy.user property." msgstr "" -#: superset/views/database/forms.py:164 +#: superset/views/database/forms.py:174 msgid "If Table Already Exists" msgstr "" @@ -7602,7 +7704,7 @@ msgstr "" msgid "If a metric is specified, sorting will be done based on the metric value" msgstr "" -#: superset/views/database/forms.py:238 +#: superset/views/database/forms.py:248 msgid "" "If duplicate columns are not overridden, they will be presented as \"X.1," " X.2 ...X.x\"" @@ -7612,7 +7714,7 @@ msgstr "" msgid "If selected, please set the schemas allowed for csv upload in Extra." msgstr "" -#: superset/views/database/forms.py:318 superset/views/database/forms.py:449 +#: superset/views/database/forms.py:328 superset/views/database/forms.py:459 msgid "" "If table exists do one of the following: Fail (do nothing), Replace (drop" " and recreate table) or Append (insert data)." @@ -7630,7 +7732,7 @@ msgstr "" msgid "Ignore time" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:252 +#: superset-frontend/src/components/ReportModal/index.tsx:251 msgid "Image (PNG) embedded in email" msgstr "" @@ -7638,7 +7740,7 @@ msgstr "" msgid "Image download failed, please refresh and try again." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:386 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:396 msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" msgstr "" @@ -7659,11 +7761,11 @@ msgstr "" msgid "Import Dashboard(s)" msgstr "" -#: superset/initialization/__init__.py:337 +#: superset/initialization/__init__.py:331 msgid "Import Dashboards" msgstr "" -#: superset/connectors/sqla/views.py:386 +#: superset/connectors/sqla/views.py:293 msgid "Import a table definition" msgstr "" @@ -7688,15 +7790,15 @@ msgstr "" msgid "Import database failed for an unknown reason" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1912 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1969 msgid "Import database from file" msgstr "" -#: superset/datasets/commands/exceptions.py:185 +#: superset/datasets/commands/exceptions.py:202 msgid "Import dataset failed for an unknown reason" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:620 +#: superset-frontend/src/pages/DatasetList/index.tsx:631 msgid "Import datasets" msgstr "" @@ -7722,7 +7824,7 @@ msgstr "" msgid "Include Series" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:295 +#: superset-frontend/src/components/ReportModal/index.tsx:294 msgid "Include a description that will be sent with your report" msgstr "" @@ -7739,7 +7841,7 @@ msgstr "" msgid "Index" msgstr "" -#: superset/views/database/forms.py:210 superset/views/database/forms.py:341 +#: superset/views/database/forms.py:220 superset/views/database/forms.py:351 msgid "Index Column" msgstr "" @@ -7778,11 +7880,23 @@ msgstr "" msgid "Intensity" msgstr "" -#: superset/views/database/forms.py:190 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:85 +msgid "Intensity Radius" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:86 +msgid "Intensity Radius is the radius at which the weight is distributed" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:69 +msgid "Intensity is the value multiplied by the weight to obtain the final weight" +msgstr "" + +#: superset/views/database/forms.py:200 msgid "Interpret Datetime Format Automatically" msgstr "" -#: superset/views/database/forms.py:191 +#: superset/views/database/forms.py:201 msgid "Interpret the datetime format automatically" msgstr "" @@ -7811,6 +7925,16 @@ msgstr "" msgid "Intervals" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:68 +msgid "Intesity" +msgstr "" + +#: superset/db_engine_specs/ocient.py:274 +msgid "" +"Invalid Connection String: Expecting String of the form " +"'ocient://user:pass@host:port/database'." +msgstr "" + #: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 msgid "Invalid JSON" msgstr "" @@ -7824,7 +7948,7 @@ msgstr "" msgid "Invalid certificate" msgstr "" -#: superset/views/core.py:1422 +#: superset/views/core.py:1463 msgid "" "Invalid connection string, a valid string usually follows:\n" "'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" @@ -7853,15 +7977,15 @@ msgstr "" msgid "Invalid cumulative operator: %(operator)s" msgstr "" -#: superset/connectors/sqla/views.py:181 superset/datasets/schemas.py:44 +#: superset/connectors/sqla/views.py:180 superset/datasets/schemas.py:44 msgid "Invalid date/timestamp format" msgstr "" -#: superset/viz.py:2160 +#: superset/viz.py:2091 msgid "Invalid filter configuration, please select a column" msgstr "" -#: superset/connectors/sqla/models.py:1623 superset/models/helpers.py:1820 +#: superset/models/helpers.py:1891 #, python-format msgid "Invalid filter operation type: %(op)s" msgstr "" @@ -7886,7 +8010,7 @@ msgstr "" msgid "Invalid longitude/latitude" msgstr "" -#: superset/utils/core.py:1364 +#: superset/utils/core.py:1373 #, python-format msgid "Invalid metric object: %(metric)s" msgstr "" @@ -7905,7 +8029,12 @@ msgstr "" msgid "Invalid permalink key" msgstr "" -#: superset/common/query_actions.py:228 +#: superset/db_engine_specs/ocient.py:292 +#, python-format +msgid "Invalid reference to column: \"%(column)s\"" +msgstr "" + +#: superset/common/query_actions.py:227 #, python-format msgid "Invalid result type: %(result_type)s" msgstr "" @@ -7915,7 +8044,7 @@ msgstr "" msgid "Invalid rolling_type: %(type)s" msgstr "" -#: superset/viz.py:2530 +#: superset/viz.py:2474 #, python-format msgid "Invalid spatial point encountered: %s" msgstr "" @@ -7925,7 +8054,7 @@ msgstr "" msgid "Invalid state." msgstr "" -#: superset/reports/commands/create.py:144 +#: superset/reports/commands/create.py:142 #, python-format msgid "Invalid tab ids: %s(tab_ids)" msgstr "" @@ -7934,7 +8063,7 @@ msgstr "" msgid "Inverse selection" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:205 +#: superset-frontend/src/components/Table/index.tsx:209 msgid "Invert current page" msgstr "" @@ -7952,7 +8081,7 @@ msgstr "" msgid "Is false" msgstr "" -#: superset/views/base_api.py:143 +#: superset/views/base_api.py:149 msgid "Is favorite" msgstr "" @@ -7969,13 +8098,13 @@ msgstr "" msgid "Is null" msgstr "" -#: superset/views/base_api.py:171 +#: superset/views/base_api.py:177 msgid "Is tagged" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:362 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 -#: superset/connectors/sqla/views.py:162 +#: superset/connectors/sqla/views.py:161 msgid "Is temporal" msgstr "" @@ -8018,7 +8147,7 @@ msgstr "" msgid "JSON metadata is invalid!" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 msgid "" "JSON string containing additional connection configuration. This is used " "to provide connection information for systems like Hive, Presto and " @@ -8054,24 +8183,24 @@ msgstr "" msgid "Jinja templating" msgstr "" -#: superset/views/database/forms.py:233 +#: superset/views/database/forms.py:243 msgid "Json list of the column names that should be read" msgstr "" -#: superset/views/database/forms.py:464 +#: superset/views/database/forms.py:474 msgid "" "Json list of the column names that should be read. If not None, only " "these columns will be read from the file." msgstr "" -#: superset/views/database/forms.py:203 +#: superset/views/database/forms.py:213 msgid "" "Json list of the values that should be treated as null. Examples: [\"\"] " "for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " "Hive database supports only a single value" msgstr "" -#: superset/views/database/forms.py:394 +#: superset/views/database/forms.py:404 msgid "" "Json list of the values that should be treated as null. Examples: [\"\"]," " [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " @@ -8118,8 +8247,8 @@ msgstr "" msgid "LIMIT" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:80 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:109 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:93 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:122 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:251 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:255 @@ -8196,7 +8325,7 @@ msgstr "" msgid "Last" msgstr "" -#: superset/connectors/sqla/views.py:481 superset/views/database/mixins.py:190 +#: superset/connectors/sqla/views.py:388 superset/views/database/mixins.py:190 msgid "Last Changed" msgstr "" @@ -8223,7 +8352,7 @@ msgstr "" #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:177 #: superset-frontend/src/pages/ChartList/index.tsx:445 #: superset-frontend/src/pages/CssTemplateList/index.tsx:158 -#: superset-frontend/src/pages/DatabaseList/index.tsx:380 +#: superset-frontend/src/pages/DatabaseList/index.tsx:391 msgid "Last modified" msgstr "" @@ -8281,7 +8410,7 @@ msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:28 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:90 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:371 msgid "Left" msgstr "" @@ -8313,7 +8442,7 @@ msgstr "" msgid "Left to Right" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:144 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 msgid "Left value" msgstr "" @@ -8326,7 +8455,6 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:33 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 #: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 #: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 @@ -8342,15 +8470,16 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:35 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 #: superset-frontend/src/visualizations/TimeTable/index.ts:35 msgid "Legacy" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:154 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:289 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:115 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:99 msgid "Legend" msgstr "" @@ -8358,7 +8487,7 @@ msgstr "" msgid "Legend Format" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:95 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:92 msgid "Legend Orientation" msgstr "" @@ -8366,7 +8495,7 @@ msgstr "" msgid "Legend Position" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:72 msgid "Legend type" msgstr "" @@ -8504,7 +8633,7 @@ msgid "Lines encoding" msgstr "" #: superset-frontend/src/pages/SavedQueryList/index.tsx:226 -#: superset-frontend/src/views/CRUD/hooks.ts:673 +#: superset-frontend/src/views/CRUD/hooks.ts:677 msgid "Link Copied!" msgstr "" @@ -8532,7 +8661,7 @@ msgstr "" msgid "List of values to mark with triangles" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:187 +#: superset-frontend/src/components/TableSelector/index.tsx:184 msgid "List updated" msgstr "" @@ -8561,8 +8690,8 @@ msgid "Loading" msgstr "" #: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:495 -#: superset-frontend/src/components/Select/Select.tsx:470 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:496 +#: superset-frontend/src/components/Select/Select.tsx:477 #: superset-frontend/src/components/Select/utils.tsx:152 #: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 #: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 @@ -8590,13 +8719,13 @@ msgstr "" msgid "Logarithmic scale on primary y-axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:432 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:449 msgid "Logarithmic scale on secondary y-axis" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:396 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:420 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:429 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:437 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:446 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:222 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:225 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:210 @@ -8665,27 +8794,27 @@ msgstr "" msgid "MON" msgstr "" -#: superset/connectors/sqla/views.py:490 +#: superset/connectors/sqla/views.py:397 msgid "Main Datetime Column" msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:283 +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:292 msgid "" "Make sure that the controls are configured properly and the datasource " "contains data for the selected time range" msgstr "" -#: superset/views/core.py:1717 +#: superset/views/core.py:1752 msgid "" "Malformed request. slice_id or table_name and db_name arguments are " "expected" msgstr "" -#: superset/initialization/__init__.py:277 -#: superset/initialization/__init__.py:289 -#: superset/initialization/__init__.py:341 -#: superset/initialization/__init__.py:412 -#: superset/initialization/__init__.py:425 +#: superset/initialization/__init__.py:279 +#: superset/initialization/__init__.py:291 +#: superset/initialization/__init__.py:335 +#: superset/initialization/__init__.py:406 +#: superset/initialization/__init__.py:419 msgid "Manage" msgstr "" @@ -8703,7 +8832,7 @@ msgstr "" msgid "Mandatory" msgstr "" -#: superset/views/database/forms.py:350 +#: superset/views/database/forms.py:360 msgid "Mangle Duplicate Columns" msgstr "" @@ -8722,6 +8851,8 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:67 @@ -8744,7 +8875,7 @@ msgstr "" msgid "MapBox" msgstr "" -#: superset/viz.py:2322 +#: superset/viz.py:2258 msgid "Mapbox" msgstr "" @@ -8752,11 +8883,11 @@ msgstr "" msgid "March" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:50 msgid "Margin" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:348 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:354 msgid "Mark a column as temporal in \"Edit datasource\" modal" msgstr "" @@ -8835,7 +8966,7 @@ msgid "" "this insures that the circle respects this maximum radius." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:232 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 msgid "Maximum value" msgstr "" @@ -8885,7 +9016,7 @@ msgstr "" msgid "Menu actions trigger" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:237 +#: superset-frontend/src/components/ReportModal/index.tsx:236 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 msgid "Message content" msgstr "" @@ -8894,8 +9025,8 @@ msgstr "" msgid "Metadata" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:450 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:454 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:486 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:490 msgid "Metadata Parameters" msgstr "" @@ -8920,13 +9051,12 @@ msgstr "" #: superset-frontend/src/explore/controls.jsx:167 #: superset-frontend/src/explore/controls.jsx:168 #: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 -#: superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:249 msgid "Metric" msgstr "" -#: superset/connectors/sqla/models.py:1264 -#: superset/connectors/sqla/models.py:1847 superset/models/helpers.py:1192 -#: superset/models/helpers.py:1448 +#: superset/connectors/sqla/models.py:1133 superset/models/helpers.py:1236 +#: superset/models/helpers.py:1529 #, python-format msgid "Metric '%(metric)s' does not exist" msgstr "" @@ -8961,7 +9091,7 @@ msgstr "" msgid "Metric for node values" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:106 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:119 msgid "Metric name" msgstr "" @@ -8986,6 +9116,7 @@ msgstr "" msgid "Metric to sort the results by" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:139 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:78 msgid "Metric used as a weight for the grid's coloring" msgstr "" @@ -9024,7 +9155,7 @@ msgstr "" #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 #: superset-frontend/src/explore/controls.jsx:152 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 -#: superset/connectors/sqla/views.py:207 +#: superset/connectors/sqla/views.py:206 msgid "Metrics" msgstr "" @@ -9104,11 +9235,11 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:85 #: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:152 msgid "Minimum threshold in percentage points for showing labels." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:231 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:69 msgid "Minimum value" msgstr "" @@ -9130,7 +9261,7 @@ msgstr "" msgid "Minor Split Line" msgstr "" -#: superset/db_engine_specs/base.py:99 +#: superset/db_engine_specs/base.py:100 msgid "Minute" msgstr "" @@ -9160,12 +9291,13 @@ msgstr "" #: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:278 #: superset-frontend/src/pages/AlertReportList/index.tsx:335 #: superset-frontend/src/pages/DashboardList/index.tsx:347 -#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:375 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:152 #: superset-frontend/src/pages/SavedQueryList/index.tsx:369 #: superset-frontend/src/pages/Tags/index.tsx:118 -#: superset/connectors/sqla/views.py:367 superset/connectors/sqla/views.py:495 -#: superset/views/dashboard/mixin.py:85 superset/views/dashboard/views.py:186 -#: superset/views/database/mixins.py:199 superset/views/sql_lab/views.py:85 +#: superset/connectors/sqla/views.py:402 superset/views/dashboard/mixin.py:85 +#: superset/views/dashboard/views.py:186 superset/views/database/mixins.py:199 +#: superset/views/sql_lab/views.py:85 msgid "Modified" msgstr "" @@ -9180,7 +9312,7 @@ msgstr "" #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 #: superset-frontend/src/pages/ChartList/index.tsx:431 #: superset-frontend/src/pages/DashboardList/index.tsx:326 -#: superset-frontend/src/pages/DatasetList/index.tsx:374 +#: superset-frontend/src/pages/DatasetList/index.tsx:385 msgid "Modified by" msgstr "" @@ -9193,7 +9325,7 @@ msgstr "" msgid "Monday" msgstr "" -#: superset/db_engine_specs/base.py:108 +#: superset/db_engine_specs/base.py:109 msgid "Month" msgstr "" @@ -9257,7 +9389,7 @@ msgstr "" msgid "Multiple Line Charts" msgstr "" -#: superset/views/database/views.py:465 +#: superset/views/database/views.py:468 msgid "" "Multiple file extensions are not allowed for columnar uploads. Please " "make sure all files are of the same extension." @@ -9289,11 +9421,11 @@ msgstr "" msgid "Must choose either a chart or a dashboard" msgstr "" -#: superset/viz.py:2346 +#: superset/viz.py:2283 msgid "Must have a [Group By] column to have 'count' as the [Label]" msgstr "" -#: superset/viz.py:1752 +#: superset/viz.py:1666 msgid "Must have at least one numeric column specified" msgstr "" @@ -9301,7 +9433,7 @@ msgstr "" msgid "Must provide credentials for the SSH Tunnel" msgstr "" -#: superset/connectors/sqla/models.py:1582 superset/models/helpers.py:1780 +#: superset/models/helpers.py:1848 msgid "Must specify a value for filters with comparison operators" msgstr "" @@ -9340,19 +9472,21 @@ msgid "NUMERIC" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:149 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:782 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:212 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:148 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:789 #: superset-frontend/src/pages/AlertReportList/index.tsx:272 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 #: superset-frontend/src/pages/CssTemplateList/index.tsx:131 -#: superset-frontend/src/pages/DatasetList/index.tsx:334 +#: superset-frontend/src/pages/DatasetList/index.tsx:345 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:130 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:248 #: superset-frontend/src/pages/SavedQueryList/index.tsx:283 #: superset-frontend/src/pages/Tags/index.tsx:109 -#: superset/connectors/sqla/views.py:361 superset/views/chart/mixin.py:85 +#: superset/views/chart/mixin.py:85 msgid "Name" msgstr "" @@ -9365,11 +9499,11 @@ msgstr "" msgid "Name must be unique" msgstr "" -#: superset/views/database/forms.py:406 +#: superset/views/database/forms.py:416 msgid "Name of table to be created from columnar data." msgstr "" -#: superset/views/database/forms.py:270 +#: superset/views/database/forms.py:280 msgid "Name of table to be created from excel data." msgstr "" @@ -9389,7 +9523,7 @@ msgstr "" msgid "Name of the source nodes" msgstr "" -#: superset/connectors/sqla/views.py:428 +#: superset/connectors/sqla/views.py:335 msgid "Name of the table that exists in the source database" msgstr "" @@ -9443,17 +9577,17 @@ msgstr "" msgid "New header" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:329 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:331 msgid "New tab" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:268 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:310 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:278 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:320 msgid "New tab (Ctrl + q)" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:269 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:311 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:279 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:321 msgid "New tab (Ctrl + t)" msgstr "" @@ -9475,9 +9609,9 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:708 #: superset-frontend/src/pages/DashboardList/index.tsx:507 #: superset-frontend/src/pages/DashboardList/index.tsx:589 -#: superset-frontend/src/pages/DatabaseList/index.tsx:468 -#: superset-frontend/src/pages/DatabaseList/index.tsx:488 -#: superset-frontend/src/pages/DatasetList/index.tsx:573 +#: superset-frontend/src/pages/DatabaseList/index.tsx:479 +#: superset-frontend/src/pages/DatabaseList/index.tsx:499 +#: superset-frontend/src/pages/DatasetList/index.tsx:584 msgid "No" msgstr "" @@ -9499,6 +9633,10 @@ msgstr "" msgid "No Results" msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:235 +msgid "No Rules yet" +msgstr "" + #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:116 msgid "No annotation layers" msgstr "" @@ -9532,7 +9670,7 @@ msgstr "" msgid "No columns" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:242 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 msgid "No columns found" msgstr "" @@ -9544,7 +9682,7 @@ msgstr "" msgid "No compatible datasets found" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 msgid "No compatible schema found" msgstr "" @@ -9556,14 +9694,14 @@ msgstr "" msgid "No dashboards yet" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:133 -#: superset-frontend/src/components/Table/index.tsx:203 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 +#: superset-frontend/src/components/Table/index.tsx:207 #: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:225 #: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 msgid "No data" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 msgid "No data after filtering or data is NULL for the latest time record" msgstr "" @@ -9583,10 +9721,6 @@ msgstr "" msgid "No description available." msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:174 -msgid "No dimensions available for drill by" -msgstr "" - #: superset-frontend/src/profile/components/Favorites.tsx:61 msgid "No favorite charts yet, go click on stars!" msgstr "" @@ -9605,7 +9739,7 @@ msgstr "" msgid "No filter is selected." msgstr "" -#: superset-frontend/src/components/Table/index.tsx:200 +#: superset-frontend/src/components/Table/index.tsx:204 msgid "No filters" msgstr "" @@ -9644,7 +9778,7 @@ msgid "No results" msgstr "" #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:425 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:428 msgid "No results found" msgstr "" @@ -9652,7 +9786,7 @@ msgstr "" msgid "No results match your filter criteria" msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:280 +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:289 #: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 msgid "No results were returned for this query" msgstr "" @@ -9672,8 +9806,8 @@ msgstr "" msgid "No samples were returned for this dataset" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:293 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:311 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:299 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:317 msgid "No saved expressions found" msgstr "" @@ -9698,9 +9832,9 @@ msgstr "" msgid "No table columns" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:292 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:310 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:345 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:298 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:316 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:351 msgid "No temporal columns found" msgstr "" @@ -9729,7 +9863,7 @@ msgid "Node size" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:45 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:187 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:270 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:286 @@ -9739,12 +9873,12 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:402 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:182 #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:124 #: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 #: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:196 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:576 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:48 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:51 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:138 #: superset-frontend/src/explore/controlPanels/sections.tsx:134 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:127 @@ -9825,7 +9959,7 @@ msgstr "" msgid "Now" msgstr "" -#: superset/views/database/forms.py:201 +#: superset/views/database/forms.py:211 msgid "Null Values" msgstr "" @@ -9838,11 +9972,11 @@ msgstr "" msgid "Null or Empty" msgstr "" -#: superset/views/database/forms.py:392 +#: superset/views/database/forms.py:402 msgid "Null values" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:191 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 msgid "Number Format" msgstr "" @@ -9857,11 +9991,10 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:60 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:65 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:144 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:117 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:67 #: superset-frontend/plugins/legacy-plugin-chart-treemap/src/controlPanel.ts:67 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:97 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:137 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:276 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:137 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:113 @@ -9902,19 +10035,19 @@ msgstr "" msgid "Number of periods to ratio against" msgstr "" -#: superset/views/database/forms.py:255 +#: superset/views/database/forms.py:265 msgid "Number of rows of file to read" msgstr "" -#: superset/views/database/forms.py:361 +#: superset/views/database/forms.py:371 msgid "Number of rows of file to read." msgstr "" -#: superset/views/database/forms.py:261 +#: superset/views/database/forms.py:271 msgid "Number of rows to skip at start of file" msgstr "" -#: superset/views/database/forms.py:355 +#: superset/views/database/forms.py:365 msgid "Number of rows to skip at start of file." msgstr "" @@ -9938,15 +10071,15 @@ msgstr "" msgid "OCT" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:184 -#: superset-frontend/src/components/Modal/Modal.tsx:231 -#: superset-frontend/src/components/Table/index.tsx:198 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 +#: superset-frontend/src/components/Modal/Modal.tsx:238 +#: superset-frontend/src/components/Table/index.tsx:202 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:865 msgid "OK" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:267 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1379 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1434 msgid "OVERWRITE" msgstr "" @@ -9959,7 +10092,7 @@ msgstr "" msgid "Offline" msgstr "" -#: superset/connectors/sqla/views.py:485 +#: superset/connectors/sqla/views.py:392 msgid "Offset" msgstr "" @@ -10000,27 +10133,27 @@ msgstr "" msgid "One or many metrics to display" msgstr "" -#: superset/datasets/commands/exceptions.py:90 +#: superset/datasets/commands/exceptions.py:107 msgid "One or more columns already exist" msgstr "" -#: superset/datasets/commands/exceptions.py:80 +#: superset/datasets/commands/exceptions.py:97 msgid "One or more columns are duplicated" msgstr "" -#: superset/datasets/commands/exceptions.py:70 +#: superset/datasets/commands/exceptions.py:87 msgid "One or more columns do not exist" msgstr "" -#: superset/datasets/commands/exceptions.py:119 +#: superset/datasets/commands/exceptions.py:136 msgid "One or more metrics already exist" msgstr "" -#: superset/datasets/commands/exceptions.py:109 +#: superset/datasets/commands/exceptions.py:126 msgid "One or more metrics are duplicated" msgstr "" -#: superset/datasets/commands/exceptions.py:99 +#: superset/datasets/commands/exceptions.py:116 msgid "One or more metrics do not exist" msgstr "" @@ -10036,7 +10169,7 @@ msgstr "" msgid "One or more parameters specified in the query are missing." msgstr "" -#: superset/views/core.py:1992 +#: superset/views/core.py:2029 msgid "" "One or more required fields are missing in the request. Please try again," " and if the problem persists contact your administrator." @@ -10046,23 +10179,23 @@ msgstr "" msgid "One ore more annotation layers failed loading." msgstr "" -#: superset/sql_lab.py:230 +#: superset/sql_lab.py:228 msgid "Only SELECT statements are allowed against this database." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:133 msgid "Only Total" msgstr "" -#: superset/connectors/sqla/utils.py:123 +#: superset/connectors/sqla/utils.py:122 msgid "Only `SELECT` statements are allowed" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:29 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 msgid "Only applies when \"Label Type\" is not set to a percentage." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:26 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 msgid "Only applies when \"Label Type\" is set to show values." msgstr "" @@ -10070,18 +10203,18 @@ msgstr "" msgid "Only selected panels will be affected by this filter" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:139 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 msgid "" "Only show the total value on the stacked chart, and not show on the " "selected category" msgstr "" -#: superset/connectors/sqla/utils.py:132 +#: superset/connectors/sqla/utils.py:131 msgid "Only single queries supported" msgstr "" -#: superset/views/database/forms.py:119 superset/views/database/forms.py:288 -#: superset/views/database/forms.py:426 +#: superset/views/database/forms.py:119 superset/views/database/forms.py:298 +#: superset/views/database/forms.py:436 #, python-format msgid "Only the following file extensions are allowed: %(allowed_extensions)s" msgstr "" @@ -10129,7 +10262,7 @@ msgstr "" msgid "Open query in SQL Lab" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:298 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 #: superset/views/database/mixins.py:104 msgid "" "Operate the database in asynchronous mode, meaning that the queries are " @@ -10138,8 +10271,8 @@ msgid "" " Refer to the installation docs for more information." msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:126 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:130 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 msgid "Operator" msgstr "" @@ -10148,7 +10281,7 @@ msgstr "" msgid "Operator undefined for aggregator: %(name)s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:381 msgid "" "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" " certain database engines." @@ -10170,13 +10303,8 @@ msgstr "" msgid "Optional warning about use of this metric" msgstr "" -#: superset/connectors/sqla/views.py:328 -msgid "Optionally add a detailed description" -msgstr "" - #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:39 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:68 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:108 #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:74 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:45 #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:70 @@ -10189,7 +10317,7 @@ msgstr "" msgid "Options" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:918 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:973 msgid "Or choose from a list of other databases we support:" msgstr "" @@ -10207,7 +10335,7 @@ msgstr "" msgid "Ordering" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:83 msgid "Orientation" msgstr "" @@ -10215,7 +10343,7 @@ msgstr "" msgid "Orientation of bar chart" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:158 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 msgid "Orientation of filter bar" msgstr "" @@ -10231,7 +10359,7 @@ msgstr "" msgid "Original table column order" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 #: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 #: superset-frontend/src/explore/controls.jsx:79 @@ -10243,10 +10371,10 @@ msgid "Orthogonal" msgstr "" #: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:126 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:938 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:479 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:993 #: superset-frontend/src/features/home/EmptyState.tsx:112 -#: superset/views/database/forms.py:155 superset/views/database/forms.py:161 +#: superset/views/database/forms.py:165 superset/views/database/forms.py:171 msgid "Other" msgstr "" @@ -10300,15 +10428,15 @@ msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:426 #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:493 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:459 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:463 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:464 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:148 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 msgid "Overwrite" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:249 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:192 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:247 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 msgid "Overwrite & Explore" msgstr "" @@ -10317,11 +10445,11 @@ msgstr "" msgid "Overwrite Dashboard [%s]" msgstr "" -#: superset/views/database/forms.py:237 +#: superset/views/database/forms.py:247 msgid "Overwrite Duplicate Columns" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:404 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:412 msgid "Overwrite existing" msgstr "" @@ -10336,11 +10464,11 @@ msgstr "" #: superset-frontend/src/pages/AlertReportList/index.tsx:452 #: superset-frontend/src/pages/ChartList/index.tsx:608 #: superset-frontend/src/pages/DashboardList/index.tsx:523 -#: superset-frontend/src/pages/DatasetList/index.tsx:500 +#: superset-frontend/src/pages/DatasetList/index.tsx:511 msgid "Owner" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:235 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:93 #: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:408 @@ -10355,14 +10483,14 @@ msgstr "" #: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 #: superset-frontend/src/pages/AlertReportList/index.tsx:324 #: superset-frontend/src/pages/DashboardList/index.tsx:369 -#: superset-frontend/src/pages/DatasetList/index.tsx:389 -#: superset/connectors/sqla/views.py:489 superset/views/chart/mixin.py:82 +#: superset-frontend/src/pages/DatasetList/index.tsx:400 +#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:82 #: superset/views/dashboard/mixin.py:81 msgid "Owners" msgstr "" -#: superset/commands/exceptions.py:108 -#: superset/datasets/commands/exceptions.py:144 +#: superset/commands/exceptions.py:112 +#: superset/datasets/commands/exceptions.py:161 msgid "Owners are invalid" msgstr "" @@ -10404,7 +10532,7 @@ msgid "Pandas resample rule" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 -#: superset/viz.py:2219 +#: superset/viz.py:2152 msgid "Parallel Coordinates" msgstr "" @@ -10429,7 +10557,7 @@ msgstr "" msgid "Parent" msgstr "" -#: superset/views/database/forms.py:366 +#: superset/views/database/forms.py:376 msgid "Parse Dates" msgstr "" @@ -10447,7 +10575,7 @@ msgstr "" msgid "Partition Chart" msgstr "" -#: superset/viz.py:3071 +#: superset/viz.py:3069 msgid "Partition Diagram" msgstr "" @@ -10467,7 +10595,7 @@ msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:154 #: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 -#: superset/db_engine_specs/base.py:1838 +#: superset/db_engine_specs/base.py:1870 #: superset/db_engine_specs/clickhouse.py:202 msgid "Password" msgstr "" @@ -10518,7 +10646,7 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:81 #: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:148 msgid "Percentage threshold" msgstr "" @@ -10536,7 +10664,7 @@ msgstr "" msgid "Percentages" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:219 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:229 msgid "Performance" msgstr "" @@ -10571,8 +10699,8 @@ msgid "Person or group that has certified this metric" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1114 -#: superset-frontend/src/pages/DatasetList/index.tsx:342 -#: superset-frontend/src/pages/DatasetList/index.tsx:560 +#: superset-frontend/src/pages/DatasetList/index.tsx:353 +#: superset-frontend/src/pages/DatasetList/index.tsx:571 msgid "Physical" msgstr "" @@ -10580,7 +10708,7 @@ msgstr "" msgid "Physical (table or view)" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:273 +#: superset-frontend/src/pages/DatasetList/index.tsx:284 msgid "Physical dataset" msgstr "" @@ -10589,27 +10717,27 @@ msgstr "" msgid "Pick a dimension from which categorical colors are defined" msgstr "" -#: superset/viz.py:769 +#: superset/viz.py:795 msgid "Pick a granularity in the Time section or uncheck 'Include Time'" msgstr "" -#: superset/viz.py:1605 +#: superset/viz.py:1514 msgid "Pick a metric for left axis!" msgstr "" -#: superset/viz.py:1607 +#: superset/viz.py:1516 msgid "Pick a metric for right axis!" msgstr "" -#: superset/viz.py:1195 +#: superset/viz.py:1090 msgid "Pick a metric for x, y and size" msgstr "" -#: superset/viz.py:1234 +#: superset/viz.py:1131 msgid "Pick a metric to display" msgstr "" -#: superset/viz.py:1260 superset/viz.py:1294 +#: superset/viz.py:1159 superset/viz.py:1195 msgid "Pick a metric!" msgstr "" @@ -10625,7 +10753,7 @@ msgstr "" msgid "Pick a set of deck.gl charts to layer on top of one another" msgstr "" -#: superset/viz.py:1390 superset/viz.py:1653 +#: superset/viz.py:1294 superset/viz.py:1564 msgid "Pick a time granularity for your time series" msgstr "" @@ -10633,15 +10761,15 @@ msgstr "" msgid "Pick a title for you annotation." msgstr "" -#: superset/viz.py:1815 +#: superset/viz.py:1732 msgid "Pick at least one field for [Series]" msgstr "" -#: superset/viz.py:857 superset/viz.py:1813 +#: superset/viz.py:887 superset/viz.py:1730 msgid "Pick at least one metric" msgstr "" -#: superset/viz.py:1943 +#: superset/viz.py:1863 msgid "Pick exactly 2 columns as [Source / Target]" msgstr "" @@ -10668,19 +10796,10 @@ msgstr "" msgid "Pin" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:45 -msgid "Pivot Options" -msgstr "" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 -#: superset/viz.py:894 msgid "Pivot Table" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:32 -msgid "Pivot Table (legacy)" -msgstr "" - #: superset/utils/pandas_postprocessing/pivot.py:70 msgid "Pivot operation must include at least one aggregate" msgstr "" @@ -10701,7 +10820,7 @@ msgstr "" msgid "Pixels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 msgid "Plain" msgstr "" @@ -10713,7 +10832,7 @@ msgstr "" msgid "Please apply filter changes" msgstr "" -#: superset/sqllab/query_render.py:120 +#: superset/sqllab/query_render.py:118 msgid "" "Please check your query and confirm that all template parameters are " "surround by double braces, for example, \"{{ ds }}\". Then, try running " @@ -10721,8 +10840,8 @@ msgid "" msgstr "" #: superset/db_engine_specs/athena.py:56 -#: superset/db_engine_specs/bigquery.py:210 -#: superset/db_engine_specs/postgres.py:161 +#: superset/db_engine_specs/bigquery.py:211 +#: superset/db_engine_specs/postgres.py:160 #: superset/db_engine_specs/snowflake.py:117 #, python-format msgid "" @@ -10730,7 +10849,7 @@ msgid "" "\"%(syntax_error)s\". Then, try running your query again." msgstr "" -#: superset/db_engine_specs/gsheets.py:80 superset/db_engine_specs/mysql.py:170 +#: superset/db_engine_specs/gsheets.py:82 superset/db_engine_specs/mysql.py:170 #, python-format msgid "" "Please check your query for syntax errors near \"%(server_error)s\". " @@ -10744,19 +10863,11 @@ msgid "" "your query again." msgstr "" -#: superset/viz.py:911 -msgid "Please choose at least one 'Group by' field" -msgstr "" - -#: superset/viz.py:3229 +#: superset/viz.py:3234 msgid "Please choose at least one groupby" msgstr "" -#: superset/viz.py:923 -msgid "Please choose at least one metric" -msgstr "" - -#: superset/viz.py:1610 +#: superset/viz.py:1519 msgid "Please choose different metrics on left and right axis" msgstr "" @@ -10772,18 +10883,20 @@ msgstr "" #: superset-frontend/src/pages/DashboardList/index.tsx:415 #: superset-frontend/src/pages/DashboardList/index.tsx:701 #: superset-frontend/src/pages/DashboardList/index.tsx:756 -#: superset-frontend/src/pages/DatasetList/index.tsx:740 +#: superset-frontend/src/pages/DatasetList/index.tsx:762 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:170 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:304 #: superset-frontend/src/pages/SavedQueryList/index.tsx:533 #: superset-frontend/src/pages/Tags/index.tsx:141 #: superset-frontend/src/pages/Tags/index.tsx:281 msgid "Please confirm" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:442 +#: superset-frontend/src/dashboard/actions/dashboardState.js:447 msgid "Please confirm the overwrite values." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:624 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:641 msgid "Please enter a SQLAlchemy URI to test" msgstr "" @@ -10791,11 +10904,11 @@ msgstr "" msgid "Please filter set name" msgstr "" -#: superset/db_engine_specs/postgres.py:125 +#: superset/db_engine_specs/postgres.py:124 msgid "Please re-enter the password." msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:435 +#: superset-frontend/src/views/CRUD/hooks.ts:439 msgid "Please re-export your file and try importing again" msgstr "" @@ -10822,7 +10935,7 @@ msgstr "" msgid "Please select both a Dataset and a Chart type to proceed" msgstr "" -#: superset/viz.py:1193 +#: superset/viz.py:1088 msgid "Please use 3 different metric labels" msgstr "" @@ -10837,7 +10950,7 @@ msgid "" "multiple metrics across all of the samples or rows in the data." msgstr "" -#: superset/initialization/__init__.py:275 +#: superset/initialization/__init__.py:277 msgid "Plugins" msgstr "" @@ -10929,13 +11042,17 @@ msgid "Port" msgstr "" #: superset/db_engine_specs/mssql.py:98 -#: superset/db_engine_specs/postgres.py:135 -#: superset/db_engine_specs/presto.py:672 -#: superset/db_engine_specs/redshift.py:77 +#: superset/db_engine_specs/postgres.py:134 +#: superset/db_engine_specs/presto.py:699 +#: superset/db_engine_specs/redshift.py:81 #, python-format msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." msgstr "" +#: superset/db_engine_specs/ocient.py:269 +msgid "Port out of range 0-65535" +msgstr "" + #: superset/views/dashboard/mixin.py:86 msgid "Position JSON" msgstr "" @@ -10972,7 +11089,7 @@ msgstr "" msgid "Pre-filter is required" msgstr "" -#: superset/connectors/sqla/views.py:440 +#: superset/connectors/sqla/views.py:347 msgid "" "Predicate applied when fetching distinct value to populate the filter " "control component. Supports jinja template syntax. Applies only when " @@ -11014,7 +11131,7 @@ msgstr "" msgid "Previous" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:346 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:348 msgid "Previous Line" msgstr "" @@ -11035,6 +11152,10 @@ msgstr "" msgid "Primary or secondary y-axis" msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 +msgid "Primary y-axis Bounds" +msgstr "" + #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:387 msgid "Primary y-axis format" msgstr "" @@ -11051,7 +11172,7 @@ msgstr "" msgid "Private Key Password" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:269 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 msgid "Proceed" msgstr "" @@ -11130,11 +11251,11 @@ msgstr "" msgid "Python datetime string pattern" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1530 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1585 msgid "QUERY DATA IN SQL LAB" msgstr "" -#: superset/db_engine_specs/base.py:109 +#: superset/db_engine_specs/base.py:110 msgid "Quarter" msgstr "" @@ -11147,9 +11268,9 @@ msgstr "" msgid "Queries" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:51 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:43 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:53 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:30 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:33 #: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:90 @@ -11160,7 +11281,6 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:36 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:32 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:34 #: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:30 @@ -11171,6 +11291,7 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:44 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:55 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:43 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:41 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:60 @@ -11184,7 +11305,7 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:361 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:34 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:35 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:44 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:43 @@ -11200,7 +11321,7 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:152 #: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:30 #: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:26 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1479 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1471 #: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 #: superset-frontend/src/explore/controlPanels/sections.tsx:94 #: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:34 @@ -11212,7 +11333,7 @@ msgstr "" msgid "Query" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:361 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:363 #, python-format msgid "Query %s: %s" msgstr "" @@ -11227,11 +11348,11 @@ msgstr "" msgid "Query B" msgstr "" -#: superset/initialization/__init__.py:366 +#: superset/initialization/__init__.py:360 msgid "Query History" msgstr "" -#: superset/commands/exceptions.py:138 +#: superset/commands/exceptions.py:142 msgid "Query does not exist" msgstr "" @@ -11245,7 +11366,7 @@ msgstr "" msgid "Query imported" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:465 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 msgid "Query in a new tab" msgstr "" @@ -11270,11 +11391,11 @@ msgstr "" msgid "Query preview" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:415 msgid "Query was stopped" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:498 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:494 msgid "Query was stopped." msgstr "" @@ -11287,6 +11408,14 @@ msgstr "" msgid "RGB Color" msgstr "" +#: superset/row_level_security/commands/exceptions.py:29 +msgid "RLS Rule could not be deleted." +msgstr "" + +#: superset/row_level_security/commands/exceptions.py:25 +msgid "RLS Rule not found." +msgstr "" + #: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:159 msgid "Radar" msgstr "" @@ -11418,7 +11547,7 @@ msgstr "" msgid "Rectangle" msgstr "" -#: superset/connectors/sqla/views.py:446 +#: superset/connectors/sqla/views.py:353 msgid "Redirects to this endpoint when clicking on the table from the table list" msgstr "" @@ -11446,7 +11575,7 @@ msgstr "" msgid "Referenced columns not available in DataFrame." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:549 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:542 msgid "Refetch results" msgstr "" @@ -11495,10 +11624,15 @@ msgstr "" msgid "Regex" msgstr "" -#: superset/connectors/sqla/views.py:329 +#: superset-frontend/src/features/rls/constants.ts:24 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:262 +msgid "Regular" +msgstr "" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:364 msgid "" "Regular filters add where clauses to queries if a user belongs to a role " -"referenced in the filter. Base filters apply filters to all queries " +"referenced in the filter, base filters apply filters to all queries " "except the roles defined in the filter, and can be used to define what " "users can see if no RLS filters within a filter group apply to them." msgstr "" @@ -11543,7 +11677,7 @@ msgstr "" msgid "Remove" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:164 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:194 msgid "Remove cross-filter" msgstr "" @@ -11576,8 +11710,8 @@ msgstr "" msgid "Rendering" msgstr "" -#: superset/views/database/forms.py:168 superset/views/database/forms.py:325 -#: superset/views/database/forms.py:456 +#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 +#: superset/views/database/forms.py:466 msgid "Replace" msgstr "" @@ -11591,12 +11725,11 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:593 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:163 msgid "Report" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:282 +#: superset-frontend/src/components/ReportModal/index.tsx:281 msgid "Report Name" msgstr "" @@ -11713,7 +11846,7 @@ msgid "Request Permissions" msgstr "" #: superset/charts/data/api.py:153 superset/charts/data/api.py:243 -#: superset/charts/data/api.py:309 +#: superset/charts/data/api.py:312 #, python-format msgid "Request is incorrect: %(error)s" msgstr "" @@ -11722,7 +11855,7 @@ msgstr "" msgid "Request is not JSON" msgstr "" -#: superset/views/datasource/views.py:75 +#: superset/views/datasource/views.py:77 msgid "Request missing data field." msgstr "" @@ -11730,14 +11863,14 @@ msgstr "" msgid "Request timed out" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:94 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:98 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:105 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:252 msgid "Required" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:342 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 msgid "Required control values have been removed" msgstr "" @@ -11758,11 +11891,11 @@ msgstr "" msgid "Resample operation requires DatetimeIndex" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:199 +#: superset-frontend/src/components/Table/index.tsx:203 msgid "Reset" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:293 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:280 msgid "Reset state" msgstr "" @@ -11785,14 +11918,15 @@ msgstr "" msgid "Results" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 #: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:212 #: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 #, python-format msgid "Results %s" msgstr "" -#: superset/sql_lab.py:410 superset/sqllab/commands/results.py:59 -#: superset/views/core.py:2133 +#: superset/sql_lab.py:402 superset/sqllab/commands/results.py:59 +#: superset/views/core.py:2169 msgid "Results backend is not configured." msgstr "" @@ -11818,12 +11952,12 @@ msgstr "" msgid "Rich Tooltip" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:178 msgid "Rich tooltip" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:372 msgid "Right" msgstr "" @@ -11848,7 +11982,7 @@ msgstr "" msgid "Right to Left" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:157 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 msgid "Right value" msgstr "" @@ -11860,7 +11994,7 @@ msgstr "" msgid "Role" msgstr "" -#: superset/views/core.py:407 +#: superset/views/core.py:408 #, python-format msgid "Role %(r)s was extended to provide the access to the datasource %(ds)s" msgstr "" @@ -11869,8 +12003,10 @@ msgstr "" #: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:389 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:551 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:406 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:415 #: superset-frontend/src/profile/components/Security.tsx:35 -#: superset/connectors/sqla/views.py:364 superset/views/dashboard/mixin.py:82 +#: superset/views/dashboard/mixin.py:82 msgid "Roles" msgstr "" @@ -11916,7 +12052,7 @@ msgstr "" msgid "Rolling window" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 #: superset/views/database/mixins.py:195 msgid "Root certificate" msgstr "" @@ -11946,31 +12082,29 @@ msgstr "" msgid "Round cap" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 #: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 msgid "Row" msgstr "" -#: superset/initialization/__init__.py:295 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:70 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:302 +#: superset/initialization/__init__.py:436 msgid "Row Level Security" msgstr "" -#: superset/views/database/forms.py:245 +#: superset/views/database/forms.py:255 msgid "" "Row containing the headers to use as column names (0 is first line of " "data). Leave empty if there is no header row" msgstr "" -#: superset/views/database/forms.py:332 +#: superset/views/database/forms.py:342 msgid "" "Row containing the headers to use as column names (0 is first line of " "data). Leave empty if there is no header row." msgstr "" -#: superset/connectors/sqla/views.py:290 -msgid "Row level security filter" -msgstr "" - #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:247 #: superset-frontend/src/explore/controls.jsx:340 msgid "Row limit" @@ -11993,7 +12127,7 @@ msgstr "" msgid "Rows subtotal position" msgstr "" -#: superset/views/database/forms.py:254 superset/views/database/forms.py:360 +#: superset/views/database/forms.py:264 superset/views/database/forms.py:370 msgid "Rows to Read" msgstr "" @@ -12003,10 +12137,19 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:504 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:233 #: superset-frontend/src/explore/controlPanels/sections.tsx:230 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:286 msgid "Rule" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:54 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:355 +msgid "Rule Name" +msgstr "" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:253 +msgid "Rule added" +msgstr "" + +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:53 msgid "Run" msgstr "" @@ -12023,12 +12166,12 @@ msgstr "" msgid "Run in SQL Lab" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:309 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:319 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:311 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:321 msgid "Run query" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:131 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:132 msgid "Run query (Ctrl + Return)" msgstr "" @@ -12036,7 +12179,7 @@ msgstr "" msgid "Run query in a new tab" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:52 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:51 msgid "Run selection" msgstr "" @@ -12045,7 +12188,7 @@ msgstr "" msgid "Running" msgstr "" -#: superset/sql_lab.py:488 +#: superset/sql_lab.py:480 #, python-format msgid "Running statement %(statement_num)s out of %(statement_count)s" msgstr "" @@ -12067,8 +12210,8 @@ msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 #: superset-frontend/src/features/home/commonMenuData.ts:22 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:312 -#: superset/initialization/__init__.py:354 -#: superset/initialization/__init__.py:362 +#: superset/initialization/__init__.py:348 +#: superset/initialization/__init__.py:356 msgid "SQL" msgstr "" @@ -12076,17 +12219,17 @@ msgstr "" msgid "SQL Copied!" msgstr "" -#: superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:253 msgid "SQL Expression" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:73 -#: superset/initialization/__init__.py:349 -#: superset/initialization/__init__.py:371 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 +#: superset/initialization/__init__.py:343 +#: superset/initialization/__init__.py:365 msgid "SQL Lab" msgstr "" -#: superset/connectors/sqla/views.py:492 +#: superset/connectors/sqla/views.py:399 msgid "SQL Lab View" msgstr "" @@ -12202,7 +12345,7 @@ msgstr "" msgid "Samples" msgstr "" -#: superset/datasets/commands/exceptions.py:177 +#: superset/datasets/commands/exceptions.py:194 msgid "Samples for dataset could not be retrieved." msgstr "" @@ -12210,7 +12353,7 @@ msgstr "" msgid "Samples for datasource could not be retrieved." msgstr "" -#: superset/viz.py:1935 +#: superset/viz.py:1854 msgid "Sankey" msgstr "" @@ -12238,25 +12381,26 @@ msgstr "" #: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 #: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:199 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:214 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:246 -#: superset-frontend/src/components/ReportModal/index.tsx:229 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:288 +#: superset-frontend/src/components/ReportModal/index.tsx:228 #: superset-frontend/src/dashboard/components/Header/index.jsx:607 #: superset-frontend/src/dashboard/components/Header/index.jsx:609 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 #: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 #: superset-frontend/src/dashboard/components/SaveModal.tsx:211 #: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:794 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:156 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:492 #: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:268 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:458 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:462 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 -#: superset-frontend/src/explore/components/SaveModal.tsx:415 +#: superset-frontend/src/explore/components/SaveModal.tsx:449 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:418 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:424 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:147 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 @@ -12266,29 +12410,30 @@ msgstr "" #: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 #: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1695 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 #: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 msgid "Save" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:246 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:190 msgid "Save & Explore" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:396 +#: superset-frontend/src/explore/components/SaveModal.tsx:430 msgid "Save & go to dashboard" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:395 +#: superset-frontend/src/explore/components/SaveModal.tsx:429 msgid "Save & go to new dashboard" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:308 +#: superset-frontend/src/explore/components/SaveModal.tsx:343 msgid "Save (Overwrite)" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:199 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:306 msgid "Save as" msgstr "" @@ -12301,16 +12446,16 @@ msgstr "" msgid "Save as dataset" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:394 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:214 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:402 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 msgid "Save as new" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:412 +#: superset-frontend/src/explore/components/SaveModal.tsx:446 msgid "Save as new chart" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:316 +#: superset-frontend/src/explore/components/SaveModal.tsx:351 msgid "Save as..." msgstr "" @@ -12322,7 +12467,7 @@ msgstr "" msgid "Save changes" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:432 +#: superset-frontend/src/explore/components/SaveModal.tsx:466 msgid "Save chart" msgstr "" @@ -12330,7 +12475,7 @@ msgstr "" msgid "Save dashboard" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:106 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:105 msgid "Save dataset" msgstr "" @@ -12338,11 +12483,11 @@ msgstr "" msgid "Save for this session" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:350 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:356 msgid "Save or Overwrite Dataset" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:202 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:201 msgid "Save query" msgstr "" @@ -12350,27 +12495,27 @@ msgstr "" msgid "Save the query to enable this feature" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:250 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:465 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:149 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 msgid "Save this query as a virtual dataset to continue exploring" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:414 +#: superset-frontend/src/explore/components/SaveModal.tsx:448 msgid "Save to new dashboard" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:265 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:271 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 msgid "Saved" msgstr "" -#: superset/initialization/__init__.py:358 +#: superset/initialization/__init__.py:352 msgid "Saved Queries" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:249 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:255 msgid "Saved expressions" msgstr "" @@ -12429,12 +12574,12 @@ msgid "" msgstr "" #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 -#: superset-frontend/src/components/ReportModal/index.tsx:306 +#: superset-frontend/src/components/ReportModal/index.tsx:305 #: superset-frontend/src/pages/AlertReportList/index.tsx:276 msgid "Schedule" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:212 +#: superset-frontend/src/components/ReportModal/index.tsx:211 msgid "Schedule a new email report" msgstr "" @@ -12450,7 +12595,7 @@ msgstr "" msgid "Schedule settings" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:518 msgid "Schedule the query periodically" msgstr "" @@ -12468,31 +12613,31 @@ msgstr "" msgid "Scheduled task executor not found" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:299 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:221 -#: superset-frontend/src/pages/DatasetList/index.tsx:354 -#: superset-frontend/src/pages/DatasetList/index.tsx:536 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:298 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 +#: superset-frontend/src/pages/DatasetList/index.tsx:365 +#: superset-frontend/src/pages/DatasetList/index.tsx:547 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:250 #: superset-frontend/src/pages/SavedQueryList/index.tsx:297 #: superset-frontend/src/pages/SavedQueryList/index.tsx:469 -#: superset/connectors/sqla/views.py:483 superset/views/database/forms.py:144 -#: superset/views/database/forms.py:311 superset/views/database/forms.py:442 +#: superset/connectors/sqla/views.py:390 superset/views/database/forms.py:154 +#: superset/views/database/forms.py:321 superset/views/database/forms.py:452 msgid "Schema" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:247 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:257 msgid "Schema cache timeout" msgstr "" -#: superset/views/core.py:1164 +#: superset/views/core.py:1186 msgid "Schema undefined" msgstr "" -#: superset/connectors/sqla/views.py:429 +#: superset/connectors/sqla/views.py:336 msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:419 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:429 msgid "Schemas allowed for File upload" msgstr "" @@ -12504,7 +12649,7 @@ msgstr "" msgid "Scoping" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 msgid "Scroll" msgstr "" @@ -12520,15 +12665,15 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:724 #: superset-frontend/src/pages/CssTemplateList/index.tsx:293 #: superset-frontend/src/pages/DashboardList/index.tsx:516 -#: superset-frontend/src/pages/DatabaseList/index.tsx:492 -#: superset-frontend/src/pages/DatasetList/index.tsx:577 +#: superset-frontend/src/pages/DatabaseList/index.tsx:503 +#: superset-frontend/src/pages/DatasetList/index.tsx:588 #: superset-frontend/src/pages/SavedQueryList/index.tsx:494 #: superset-frontend/src/pages/Tags/index.tsx:204 #: superset/templates/appbuilder/general/widgets/search.html:40 msgid "Search" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:294 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 msgid "Search / Filter" msgstr "" @@ -12552,11 +12697,11 @@ msgstr "" msgid "Search by query text" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:207 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 msgid "Search columns" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:202 +#: superset-frontend/src/components/Table/index.tsx:206 msgid "Search in filters" msgstr "" @@ -12568,7 +12713,7 @@ msgstr "" msgid "Search..." msgstr "" -#: superset/db_engine_specs/base.py:96 +#: superset/db_engine_specs/base.py:97 msgid "Second" msgstr "" @@ -12582,10 +12727,14 @@ msgid "Secondary Metric" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:408 +msgid "Secondary y-axis Bounds" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:425 msgid "Secondary y-axis format" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:417 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:434 msgid "Secondary y-axis title" msgstr "" @@ -12598,15 +12747,15 @@ msgstr "" msgid "Secure Extra" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:336 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:341 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:346 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 msgid "Secure extra" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:329 -#: superset/initialization/__init__.py:297 -#: superset/initialization/__init__.py:395 -#: superset/initialization/__init__.py:433 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:339 +#: superset/initialization/__init__.py:389 +#: superset/initialization/__init__.py:427 +#: superset/initialization/__init__.py:438 msgid "Security" msgstr "" @@ -12629,24 +12778,24 @@ msgstr "" msgid "See more" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:412 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:405 msgid "See query details" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:288 +#: superset-frontend/src/components/TableSelector/index.tsx:277 msgid "See table schema" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:363 +#: superset-frontend/src/explore/components/SaveModal.tsx:398 #: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 msgid "Select" msgstr "" #: superset-frontend/src/components/AsyncSelect/index.jsx:41 #: superset-frontend/src/components/Select/AsyncSelect.tsx:123 -#: superset-frontend/src/components/Select/Select.tsx:103 +#: superset-frontend/src/components/Select/Select.tsx:104 #: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 -#: superset-frontend/src/explore/components/controls/SelectControl.jsx:230 +#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 msgid "Select ..." msgstr "" @@ -12658,11 +12807,11 @@ msgstr "" msgid "Select Viz Type" msgstr "" -#: superset/views/database/forms.py:415 +#: superset/views/database/forms.py:425 msgid "Select a Columnar file to be uploaded to a database." msgstr "" -#: superset/views/database/forms.py:279 +#: superset/views/database/forms.py:289 msgid "Select a Excel file to be uploaded to a database." msgstr "" @@ -12670,7 +12819,7 @@ msgstr "" msgid "Select a column" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:357 +#: superset-frontend/src/explore/components/SaveModal.tsx:392 msgid "Select a dashboard" msgstr "" @@ -12690,7 +12839,7 @@ msgstr "" msgid "Select a database to upload the file to" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:744 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:738 msgid "Select a database to write a query" msgstr "" @@ -12702,7 +12851,7 @@ msgstr "" msgid "Select a file to be uploaded to the database" msgstr "" -#: superset/views/database/forms.py:145 +#: superset/views/database/forms.py:155 msgid "Select a schema if the database supports this" msgstr "" @@ -12714,11 +12863,11 @@ msgstr "" msgid "Select aggregate options" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:207 +#: superset-frontend/src/components/Table/index.tsx:211 msgid "Select all data" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:201 +#: superset-frontend/src/components/Table/index.tsx:205 msgid "Select all items" msgstr "" @@ -12726,6 +12875,10 @@ msgstr "" msgid "Select any columns for metadata inspection" msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +msgid "Select chart" +msgstr "" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:45 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:103 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:138 @@ -12736,13 +12889,13 @@ msgstr "" msgid "Select color scheme" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:208 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 msgid "Select column" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:204 +#: superset-frontend/src/components/Table/index.tsx:208 msgid "Select current page" msgstr "" @@ -12750,8 +12903,8 @@ msgstr "" msgid "Select database & schema" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:272 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:280 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:271 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:279 msgid "Select database or type to search databases" msgstr "" @@ -12759,7 +12912,7 @@ msgstr "" msgid "Select database table" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1791 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1847 msgid "" "Select databases require additional fields to be completed in the " "Advanced tab to successfully connect the database. Learn what " @@ -12796,7 +12949,7 @@ msgstr "" msgid "Select or type a value" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:410 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:418 msgid "Select or type dataset name" msgstr "" @@ -12808,8 +12961,8 @@ msgstr "" msgid "Select saved metrics" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:297 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:304 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:296 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 msgid "Select schema or type to search schemas" msgstr "" @@ -12817,7 +12970,7 @@ msgstr "" msgid "Select scheme" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:304 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:307 msgid "Select start and end date" msgstr "" @@ -12825,8 +12978,8 @@ msgstr "" msgid "Select subject" msgstr "" +#: superset-frontend/src/components/TableSelector/index.tsx:284 #: superset-frontend/src/components/TableSelector/index.tsx:295 -#: superset-frontend/src/components/TableSelector/index.tsx:306 msgid "Select table or type to search tables" msgstr "" @@ -12834,6 +12987,23 @@ msgstr "" msgid "Select the Annotation Layer you would like to use." msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +msgid "" +"Select the charts to which you want to apply cross-filters in this " +"dashboard. Deselecting a chart will exclude it from being filtered when " +"applying cross-filters from any chart on the dashboard. You can select " +"\"All charts\" to apply cross-filters to all charts that use the same " +"dataset or contain the same column name in the dashboard." +msgstr "" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +msgid "" +"Select the charts to which you want to apply cross-filters when " +"interacting with this chart. You can select \"All charts\" to apply " +"filters to all charts that use the same dataset or contain the same " +"column name in the dashboard." +msgstr "" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:392 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:37 msgid "Select the geojson column" @@ -12879,7 +13049,7 @@ msgstr "" msgid "Sequential" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 msgid "Series" msgstr "" @@ -12895,7 +13065,7 @@ msgstr "" msgid "Series Limit Sort Descending" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:255 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:246 msgid "Series Order" msgstr "" @@ -12967,13 +13137,13 @@ msgid "Settings for time series" msgstr "" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:325 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:464 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:467 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 #: superset-frontend/src/features/home/SavedQueries.tsx:211 msgid "Share" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:469 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:472 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:343 msgid "Share chart by email" msgstr "" @@ -12982,7 +13152,7 @@ msgstr "" msgid "Share permalink by email" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1429 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1421 msgid "Shared query" msgstr "" @@ -12990,7 +13160,7 @@ msgstr "" msgid "Shared query fields" msgstr "" -#: superset/views/database/forms.py:298 +#: superset/views/database/forms.py:308 msgid "Sheet Name" msgstr "" @@ -13040,7 +13210,7 @@ msgstr "" msgid "Show Chart" msgstr "" -#: superset/connectors/sqla/views.py:73 +#: superset/connectors/sqla/views.py:72 msgid "Show Column" msgstr "" @@ -13074,11 +13244,11 @@ msgstr "" msgid "Show Markers" msgstr "" -#: superset/connectors/sqla/views.py:208 +#: superset/connectors/sqla/views.py:207 msgid "Show Metric" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:178 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 msgid "Show Metric Names" msgstr "" @@ -13086,15 +13256,11 @@ msgstr "" msgid "Show Range Filter" msgstr "" -#: superset/connectors/sqla/views.py:291 -msgid "Show Row level security filter" -msgstr "" - #: superset/views/sql_lab/views.py:53 msgid "Show Saved Query" msgstr "" -#: superset/connectors/sqla/views.py:385 +#: superset/connectors/sqla/views.py:292 msgid "Show Table" msgstr "" @@ -13115,11 +13281,11 @@ msgstr "" msgid "Show Upper Labels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:110 msgid "Show Value" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:164 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:315 #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:184 msgid "Show Values" @@ -13152,7 +13318,7 @@ msgstr "" msgid "Show cell bars" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:395 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 msgid "Show chart description" msgstr "" @@ -13187,7 +13353,7 @@ msgstr "" msgid "Show labels when the node has children." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:39 msgid "Show legend" msgstr "" @@ -13223,7 +13389,7 @@ msgstr "" msgid "Show rows total" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 msgid "Show series values on the chart" msgstr "" @@ -13250,7 +13416,6 @@ msgid "" " apply to the result." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:76 #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:365 msgid "Show totals" @@ -13295,7 +13460,7 @@ msgstr "" msgid "Showing %s of %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:184 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 msgid "Shows a list of all series available at that point in time" msgstr "" @@ -13315,7 +13480,7 @@ msgstr "" msgid "Significance Level" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:341 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 @@ -13364,23 +13529,23 @@ msgstr "" msgid "Sizes of vehicles" msgstr "" -#: superset/views/database/forms.py:177 +#: superset/views/database/forms.py:187 msgid "Skip Blank Lines" msgstr "" -#: superset/views/database/forms.py:174 +#: superset/views/database/forms.py:184 msgid "Skip Initial Space" msgstr "" -#: superset/views/database/forms.py:260 superset/views/database/forms.py:354 +#: superset/views/database/forms.py:270 superset/views/database/forms.py:364 msgid "Skip Rows" msgstr "" -#: superset/views/database/forms.py:178 +#: superset/views/database/forms.py:188 msgid "Skip blank lines rather than interpreting them as Not A Number values" msgstr "" -#: superset/views/database/forms.py:174 +#: superset/views/database/forms.py:184 msgid "Skip spaces after delimiter" msgstr "" @@ -13416,7 +13581,7 @@ msgstr "" msgid "Solid" msgstr "" -#: superset/commands/exceptions.py:115 +#: superset/commands/exceptions.py:119 msgid "Some roles do not exist" msgstr "" @@ -13424,7 +13589,7 @@ msgstr "" msgid "Something went wrong." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:864 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:919 #, python-format msgid "Sorry there was an error fetching database information: %s" msgstr "" @@ -13442,7 +13607,7 @@ msgstr "" msgid "Sorry, an error occurred" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:357 +#: superset-frontend/src/dashboard/actions/dashboardState.js:359 msgid "Sorry, an unknown error occurred" msgstr "" @@ -13471,14 +13636,14 @@ msgstr "" msgid "Sorry, there was an error saving this %s: %s" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:360 +#: superset-frontend/src/dashboard/actions/dashboardState.js:362 #, python-format msgid "Sorry, there was an error saving this dashboard: %s" msgstr "" #: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 #: superset-frontend/src/pages/SavedQueryList/index.tsx:229 -#: superset-frontend/src/views/CRUD/hooks.ts:676 +#: superset-frontend/src/views/CRUD/hooks.ts:680 msgid "Sorry, your browser does not support copying." msgstr "" @@ -13488,7 +13653,7 @@ msgstr "" #: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 #: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 -#: superset-frontend/src/components/Table/index.tsx:208 +#: superset-frontend/src/components/Table/index.tsx:212 msgid "Sort" msgstr "" @@ -13506,11 +13671,11 @@ msgstr "" msgid "Sort Metric" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:247 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:238 msgid "Sort Series Ascending" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:227 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:224 msgid "Sort Series By" msgstr "" @@ -13585,7 +13750,7 @@ msgstr "" msgid "Sort rows by" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:250 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:241 msgid "Sort series in ascending order" msgstr "" @@ -13616,6 +13781,7 @@ msgstr "" msgid "Sparkline" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:978 msgid "Spatial" msgstr "" @@ -13624,23 +13790,23 @@ msgstr "" msgid "Specific Date/Time" msgstr "" -#: superset/views/database/forms.py:312 superset/views/database/forms.py:443 +#: superset/views/database/forms.py:322 superset/views/database/forms.py:453 msgid "Specify a schema (if database flavor supports this)." msgstr "" -#: superset/views/database/forms.py:351 +#: superset/views/database/forms.py:361 msgid "Specify duplicate columns as \"X.0, X.1\"." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:711 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:705 msgid "Specify name to CREATE TABLE AS schema in: public" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:710 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:704 msgid "Specify name to CREATE VIEW AS schema in: public" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:515 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:551 msgid "" "Specify the database version. This should be used with Presto in order to" " enable query cost estimation." @@ -13662,7 +13828,7 @@ msgstr "" msgid "Square miles" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 msgid "Stack" msgstr "" @@ -13676,7 +13842,7 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:161 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:115 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:128 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:125 msgid "Stack series on top of each other" msgstr "" @@ -13696,7 +13862,7 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:124 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:121 #: superset-frontend/src/explore/fixtures.tsx:58 msgid "Stacked Style" msgstr "" @@ -13764,7 +13930,7 @@ msgstr "" msgid "State" msgstr "" -#: superset/sql_lab.py:511 +#: superset/sql_lab.py:503 #, python-format msgid "Statement %(statement_num)s out of %(statement_count)s" msgstr "" @@ -13814,20 +13980,20 @@ msgid "" "irregular intervals." msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:47 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:46 #: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 msgid "Stop" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:337 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:339 msgid "Stop query" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:116 msgid "Stop running (Ctrl + e)" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:114 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 msgid "Stop running (Ctrl + x)" msgstr "" @@ -13835,7 +14001,7 @@ msgstr "" msgid "Stopped an unsafe database connection" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 msgid "Stream" msgstr "" @@ -13852,7 +14018,7 @@ msgstr "" msgid "Stretched style" msgstr "" -#: superset/views/database/forms.py:299 +#: superset/views/database/forms.py:309 msgid "Strings used for sheet names (default is the first sheet)." msgstr "" @@ -13881,11 +14047,11 @@ msgstr "" msgid "Style the ends of the progress bar with a round cap" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:56 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 msgid "Subdomain" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 msgid "Subheader" msgstr "" @@ -13897,8 +14063,8 @@ msgstr "" msgid "Submit" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:472 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:678 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 #: superset/charts/post_processing.py:161 #: superset/charts/post_processing.py:178 msgid "Subtotal" @@ -13910,7 +14076,7 @@ msgstr "" msgid "Success" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:193 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 msgid "Successfully changed dataset!" msgstr "" @@ -13943,7 +14109,7 @@ msgstr "" msgid "Sum values" msgstr "" -#: superset/viz.py:1888 +#: superset/viz.py:1805 msgid "Sunburst" msgstr "" @@ -13968,7 +14134,7 @@ msgid "Superset Embedded SDK documentation." msgstr "" #: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:470 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:473 msgid "Superset chart" msgstr "" @@ -13984,7 +14150,7 @@ msgstr "" msgid "Superset encountered an unexpected error." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:920 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 msgid "Supported databases" msgstr "" @@ -13992,11 +14158,7 @@ msgstr "" msgid "Survey Responses" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:101 -msgid "Swap Groups and Columns" -msgstr "" - -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:254 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:311 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:435 msgid "Swap dataset" @@ -14044,6 +14206,11 @@ msgstr "" msgid "Syntax" msgstr "" +#: superset/db_engine_specs/ocient.py:282 +#, python-format +msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +msgstr "" + #: superset-frontend/src/pages/QueryHistoryList/index.tsx:268 #: superset-frontend/src/pages/SavedQueryList/index.tsx:315 msgid "TABLES" @@ -14075,36 +14242,36 @@ msgstr "" msgid "Tab title" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:26 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 -#: superset-frontend/src/components/TableSelector/index.tsx:290 +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 +#: superset-frontend/src/components/TableSelector/index.tsx:279 #: superset-frontend/src/visualizations/TimeTable/index.ts:26 -#: superset/connectors/sqla/views.py:160 superset/connectors/sqla/views.py:255 -#: superset/connectors/sqla/views.py:477 superset/views/chart/mixin.py:86 +#: superset/connectors/sqla/views.py:159 superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:384 superset/views/chart/mixin.py:86 msgid "Table" msgstr "" -#: superset/views/core.py:1740 +#: superset/views/core.py:1775 #, python-format msgid "Table %(table)s wasn't found in the database %(db)s" msgstr "" -#: superset/views/database/forms.py:317 superset/views/database/forms.py:448 +#: superset/views/database/forms.py:327 superset/views/database/forms.py:458 msgid "Table Exists" msgstr "" -#: superset/connectors/sqla/views.py:487 superset/views/database/forms.py:128 -#: superset/views/database/forms.py:269 superset/views/database/forms.py:405 +#: superset/connectors/sqla/views.py:394 superset/views/database/forms.py:128 +#: superset/views/database/forms.py:279 superset/views/database/forms.py:415 msgid "Table Name" msgstr "" -#: superset/viz.py:698 +#: superset/viz.py:722 msgid "Table View" msgstr "" -#: superset/datasets/commands/exceptions.py:130 +#: superset/datasets/commands/exceptions.py:147 #, python-format msgid "" "Table [%(table_name)s] could not be found, please double check your " @@ -14117,7 +14284,7 @@ msgid "" "connection, schema, and table name, error: {}" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:268 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:278 msgid "Table cache timeout" msgstr "" @@ -14129,8 +14296,8 @@ msgstr "" msgid "Table loading" msgstr "" -#: superset/views/database/forms.py:132 superset/views/database/forms.py:273 -#: superset/views/database/forms.py:409 +#: superset/views/database/forms.py:132 superset/views/database/forms.py:283 +#: superset/views/database/forms.py:419 msgid "Table name cannot contain a schema" msgstr "" @@ -14138,15 +14305,22 @@ msgstr "" msgid "Table name undefined" msgstr "" +#: superset/db_engine_specs/ocient.py:287 +#, python-format +msgid "Table or View \"%(table)s\" does not exist." +msgstr "" + #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 msgid "" "Table that visualizes paired t-tests, which are used to understand " "statistical differences between groups." msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:384 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:393 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:287 #: superset-frontend/src/pages/SavedQueryList/index.tsx:334 -#: superset/connectors/sqla/views.py:363 superset/connectors/sqla/views.py:384 +#: superset/connectors/sqla/views.py:291 msgid "Tables" msgstr "" @@ -14193,7 +14367,7 @@ msgstr "" #: superset-frontend/src/pages/SavedQueryList/index.tsx:382 #: superset-frontend/src/pages/SavedQueryList/index.tsx:487 #: superset-frontend/src/pages/Tags/index.tsx:279 -#: superset/initialization/__init__.py:384 +#: superset/initialization/__init__.py:378 msgid "Tags" msgstr "" @@ -14220,7 +14394,7 @@ msgstr "" msgid "Target category" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:173 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 msgid "Target value" msgstr "" @@ -14230,7 +14404,7 @@ msgstr "" #: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:962 -#: superset/connectors/sqla/views.py:493 +#: superset/connectors/sqla/views.py:400 msgid "Template parameters" msgstr "" @@ -14240,7 +14414,7 @@ msgid "" "coming from the controls." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:317 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:327 msgid "" "Terminate running queries when browser window closed or navigated to " "another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " @@ -14264,7 +14438,7 @@ msgstr "" msgid "Text align" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:248 +#: superset-frontend/src/components/ReportModal/index.tsx:247 msgid "Text embedded in email" msgstr "" @@ -14309,7 +14483,7 @@ msgid "" " the filters list?" msgstr "" -#: superset/views/core.py:372 +#: superset/views/core.py:373 msgid "The access requests seem to have been deleted" msgstr "" @@ -14327,11 +14501,11 @@ msgid "" "associated with more than one category, only the first will be used." msgstr "" -#: superset/common/query_context_processor.py:586 +#: superset/common/query_context_processor.py:585 msgid "The chart datasource does not exist" msgstr "" -#: superset/common/query_context_processor.py:584 +#: superset/common/query_context_processor.py:583 msgid "The chart does not exist" msgstr "" @@ -14383,14 +14557,14 @@ msgstr "" msgid "The data source seems to have been deleted" msgstr "" -#: superset/connectors/sqla/views.py:115 +#: superset/connectors/sqla/views.py:114 msgid "" "The data type that was inferred by the database. It may be necessary to " "input a type manually for expression-defined columns in some cases. In " "most case users should not need to alter this." msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:515 +#: superset-frontend/src/pages/DatabaseList/index.tsx:529 #, python-format msgid "" "The database %s is linked to %s charts that appear on %s dashboards and " @@ -14429,11 +14603,11 @@ msgstr "" msgid "The database was deleted." msgstr "" -#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2002 +#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2039 msgid "The database was not found." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:710 +#: superset-frontend/src/pages/DatasetList/index.tsx:724 #, python-format msgid "" "The dataset %s is linked to %s charts that appear on %s dashboards. Are " @@ -14442,11 +14616,11 @@ msgid "" msgstr "" #: superset-frontend/src/components/Chart/Chart.jsx:88 -#: superset/views/utils.py:274 +#: superset/views/utils.py:272 msgid "The dataset associated with this chart no longer exists" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:168 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:210 msgid "" "The dataset configuration exposed here\n" " affects all the charts using this dataset.\n" @@ -14455,7 +14629,7 @@ msgid "" " in undesirable ways." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:129 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:164 #: superset-frontend/src/pages/ChartCreation/index.tsx:261 msgid "The dataset has been saved" msgstr "" @@ -14464,7 +14638,7 @@ msgstr "" msgid "The dataset linked to this chart may have been deleted." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1496 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1488 msgid "The datasource couldn't be loaded" msgstr "" @@ -14478,7 +14652,7 @@ msgid "" " Supports markdown." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:104 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 msgid "The distance between cells, in pixels" msgstr "" @@ -14492,7 +14666,7 @@ msgstr "" msgid "The encoding format of the lines" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:495 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:531 msgid "" "The engine_params object gets unpacked into the sqlalchemy.create_engine " "call." @@ -14505,6 +14679,7 @@ msgid "" "%(columns)s. " msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:111 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:67 msgid "The function to use when aggregating points into groups" msgstr "" @@ -14515,9 +14690,9 @@ msgid "The host \"%(hostname)s\" might be down and can't be reached." msgstr "" #: superset/db_engine_specs/mssql.py:103 -#: superset/db_engine_specs/postgres.py:140 -#: superset/db_engine_specs/presto.py:664 -#: superset/db_engine_specs/redshift.py:82 +#: superset/db_engine_specs/postgres.py:139 +#: superset/db_engine_specs/presto.py:691 +#: superset/db_engine_specs/redshift.py:86 #, python-format msgid "" "The host \"%(hostname)s\" might be down, and can't be reached on port " @@ -14529,9 +14704,9 @@ msgid "The host might be down, and can't be reached on the provided port." msgstr "" #: superset/db_engine_specs/mssql.py:93 -#: superset/db_engine_specs/postgres.py:130 -#: superset/db_engine_specs/presto.py:659 -#: superset/db_engine_specs/redshift.py:72 +#: superset/db_engine_specs/postgres.py:129 +#: superset/db_engine_specs/presto.py:686 +#: superset/db_engine_specs/redshift.py:76 #, python-format msgid "The hostname \"%(hostname)s\" cannot be resolved." msgstr "" @@ -14545,7 +14720,7 @@ msgstr "" msgid "The id of the active chart" msgstr "" -#: superset/connectors/sqla/views.py:418 +#: superset/connectors/sqla/views.py:325 msgid "" "The list of charts associated with this table. By altering this " "datasource, you may change how these associated charts behave. Also note " @@ -14582,7 +14757,7 @@ msgid "" "%{key}s is invalid." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:469 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:505 msgid "" "The metadata_params object gets unpacked into the sqlalchemy.MetaData " "call." @@ -14602,7 +14777,7 @@ msgid "" "periods" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:130 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 msgid "The number color \"steps\"" msgstr "" @@ -14612,7 +14787,7 @@ msgid "" " can be used to move UTC time to local time." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:308 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:301 #, python-format msgid "" "The number of results displayed is limited to %(rows)d by the " @@ -14620,7 +14795,7 @@ msgid "" "download to csv to see more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:314 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:307 #, python-format msgid "" "The number of results displayed is limited to %(rows)d. Please add " @@ -14628,22 +14803,22 @@ msgid "" "more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:365 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:358 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the dropdown." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:334 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:326 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:319 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the query" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:339 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:332 #, python-format msgid "" "The number of rows displayed is limited to %(rows)d by the query and " @@ -14659,14 +14834,14 @@ msgstr "" msgid "The object does not exist in the given database." msgstr "" -#: superset/sqllab/query_render.py:96 +#: superset/sqllab/query_render.py:94 #, python-format msgid "The parameter %(parameters)s in your query is undefined." msgid_plural "The following parameters in your query are undefined: %(parameters)s." msgstr[0] "" msgstr[1] "" -#: superset/db_engine_specs/postgres.py:120 +#: superset/db_engine_specs/postgres.py:119 #, python-format msgid "The password provided for username \"%(username)s\" is incorrect." msgstr "" @@ -14711,7 +14886,7 @@ msgid "" " they are needed." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1284 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1339 msgid "" "The passwords for the databases below are needed in order to import them." " Please note that the \"Secure Extra\" and \"Certificate\" sections of " @@ -14731,7 +14906,7 @@ msgid "" "\"freq\" expressions." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 msgid "The pixel radius" msgstr "" @@ -14755,7 +14930,7 @@ msgstr "" msgid "The primary metric is used to define the arc segment sizes" msgstr "" -#: superset/views/core.py:2212 +#: superset/views/core.py:2248 msgid "The provided `rows` argument is not a valid integer." msgstr "" @@ -14764,13 +14939,13 @@ msgid "The query associated with the results was deleted." msgstr "" #: superset/sqllab/commands/export.py:63 superset/sqllab/commands/results.py:91 -#: superset/views/core.py:2162 +#: superset/views/core.py:2198 msgid "" "The query associated with these results could not be found. You need to " "re-run the original query." msgstr "" -#: superset/sqllab/query_render.py:117 +#: superset/sqllab/query_render.py:115 msgid "The query contains one or more malformed template parameters." msgstr "" @@ -14789,11 +14964,11 @@ msgstr "" msgid "The query has a syntax error." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:519 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:512 msgid "The query returned no data" msgstr "" -#: superset/sql_lab.py:301 +#: superset/sql_lab.py:297 #, python-format msgid "" "The query was killed after %(sqllab_timeout)s seconds. It might be too " @@ -14834,14 +15009,14 @@ msgstr "" msgid "The rich tooltip shows a list of all series for that point in time" msgstr "" -#: superset/db_engine_specs/bigquery.py:202 +#: superset/db_engine_specs/bigquery.py:203 #, python-format msgid "" "The schema \"%(schema)s\" does not exist. A valid schema must be used to " "run this query." msgstr "" -#: superset/db_engine_specs/presto.py:646 +#: superset/db_engine_specs/presto.py:673 #, python-format msgid "" "The schema \"%(schema_name)s\" does not exist. A valid schema must be " @@ -14852,11 +15027,12 @@ msgstr "" msgid "The schema was deleted or renamed in the database." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:92 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 msgid "The size of the square cell, in pixels" msgstr "" -#: superset/views/datasource/views.py:88 +#: superset/datasets/commands/exceptions.py:72 +#: superset/views/datasource/views.py:90 msgid "" "The submitted URL is not considered safe, only use URLs with the same " "domain as Superset." @@ -14870,21 +15046,21 @@ msgstr "" msgid "The submitted payload has the incorrect schema." msgstr "" -#: superset/db_engine_specs/bigquery.py:189 +#: superset/db_engine_specs/bigquery.py:190 #, python-format msgid "" "The table \"%(table)s\" does not exist. A valid table must be used to run" " this query." msgstr "" -#: superset/db_engine_specs/presto.py:638 +#: superset/db_engine_specs/presto.py:665 #, python-format msgid "" "The table \"%(table_name)s\" does not exist. A valid table must be used " "to run this query." msgstr "" -#: superset/connectors/sqla/views.py:515 +#: superset/connectors/sqla/views.py:422 msgid "" "The table was created. As part of this two-phase configuration process, " "you should now click the edit button by the new table to configure it." @@ -14935,13 +15111,13 @@ msgid "" " the start and/or end time." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 msgid "" "The time unit for each block. Should be a smaller unit than " "domain_granularity. Should be larger or equal to Time Grain" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 msgid "The time unit used for the grouping of blocks" msgstr "" @@ -14959,7 +15135,12 @@ msgstr "" msgid "The user seems to have been deleted" msgstr "" -#: superset/db_engine_specs/postgres.py:115 +#: superset/db_engine_specs/ocient.py:251 +msgid "The user/password combination is not valid (Incorrect password for user)." +msgstr "" + +#: superset/db_engine_specs/ocient.py:246 +#: superset/db_engine_specs/postgres.py:114 #, python-format msgid "The username \"%(username)s\" does not exist." msgstr "" @@ -14986,16 +15167,16 @@ msgstr "" msgid "There are associated alerts or reports" msgstr "" -#: superset/charts/commands/bulk_delete.py:62 -#: superset/charts/commands/delete.py:71 -#: superset/dashboards/commands/bulk_delete.py:63 -#: superset/dashboards/commands/delete.py:64 -#: superset/databases/commands/delete.py:63 +#: superset/charts/commands/bulk_delete.py:61 +#: superset/charts/commands/delete.py:70 +#: superset/dashboards/commands/bulk_delete.py:62 +#: superset/dashboards/commands/delete.py:63 +#: superset/databases/commands/delete.py:62 #, python-format msgid "There are associated alerts or reports: %s," msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:710 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:711 msgid "There are no charts added to this dashboard" msgstr "" @@ -15048,7 +15229,7 @@ msgstr "" msgid "There was an error fetching tables" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:589 +#: superset-frontend/src/views/CRUD/hooks.ts:593 #, python-format msgid "There was an error fetching the favorite status: %s" msgstr "" @@ -15057,19 +15238,23 @@ msgstr "" msgid "There was an error fetching your recent activity:" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:450 +msgid "There was an error loading the chart data" +msgstr "" + #: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 msgid "There was an error loading the dataset metadata" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:241 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:240 msgid "There was an error loading the schemas" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:194 +#: superset-frontend/src/components/TableSelector/index.tsx:191 msgid "There was an error loading the tables" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:612 +#: superset-frontend/src/views/CRUD/hooks.ts:616 #, python-format msgid "There was an error saving the favorite status: %s" msgstr "" @@ -15083,14 +15268,20 @@ msgstr "" #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 #: superset-frontend/src/pages/AnnotationList/index.tsx:121 #: superset-frontend/src/pages/CssTemplateList/index.tsx:97 -#: superset-frontend/src/pages/DatabaseList/index.tsx:167 -#: superset-frontend/src/pages/DatasetList/index.tsx:657 +#: superset-frontend/src/pages/DatabaseList/index.tsx:178 +#: superset-frontend/src/pages/DatasetList/index.tsx:668 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:97 #: superset-frontend/src/pages/SavedQueryList/index.tsx:245 #: superset-frontend/src/views/CRUD/utils.tsx:315 #, python-format msgid "There was an issue deleting %s: %s" msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:111 +#, python-format +msgid "There was an issue deleting rules: %s" +msgstr "" + #: superset-frontend/src/pages/AlertReportList/index.tsx:201 #, python-format msgid "There was an issue deleting the selected %s: %s" @@ -15110,7 +15301,7 @@ msgstr "" msgid "There was an issue deleting the selected dashboards: " msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:675 +#: superset-frontend/src/pages/DatasetList/index.tsx:686 #, python-format msgid "There was an issue deleting the selected datasets: %s" msgstr "" @@ -15135,16 +15326,16 @@ msgstr "" msgid "There was an issue deleting: %s" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:683 +#: superset-frontend/src/pages/DatasetList/index.tsx:694 msgid "There was an issue duplicating the dataset." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:699 +#: superset-frontend/src/pages/DatasetList/index.tsx:710 #, python-format msgid "There was an issue duplicating the selected datasets: %s" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:129 +#: superset-frontend/src/dashboard/actions/dashboardState.js:127 msgid "There was an issue favoriting this dashboard." msgstr "" @@ -15152,7 +15343,7 @@ msgstr "" msgid "There was an issue fetching reports attached to this dashboard." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:104 +#: superset-frontend/src/dashboard/actions/dashboardState.js:103 msgid "There was an issue fetching the favorite status of this dashboard." msgstr "" @@ -15186,13 +15377,13 @@ msgstr "" msgid "There was an issue previewing the selected query. %s" msgstr "" -#: superset/viz.py:1992 +#: superset/viz.py:1915 msgid "" "There's a loop in your Sankey, please provide a tree. Here's a faulty " "link: {}" msgstr "" -#: superset/connectors/sqla/views.py:335 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:386 msgid "These are the tables this filter will be applied to." msgstr "" @@ -15241,10 +15432,10 @@ msgid "" "mydatabase.com)." msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:244 +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:245 msgid "" -"This chart emits/applies cross-filters to other charts that use the same " -"dataset" +"This chart applies cross-filters to charts whose datasets contain columns" +" with the same name." msgstr "" #: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 @@ -15259,7 +15450,7 @@ msgstr "" msgid "This chart might be incompatible with the filter (datasets don't match)" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:322 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 msgid "" "This chart type is not supported when using an unsaved query as a chart " "source. " @@ -15271,7 +15462,7 @@ msgid "" " Check the JSON metadata in the Advanced settings" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:121 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:113 msgid "This column might be incompatible with current dataset" msgstr "" @@ -15318,11 +15509,11 @@ msgid "" "dashboards. Click here to publish this dashboard." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:154 +#: superset-frontend/src/dashboard/actions/dashboardState.js:152 msgid "This dashboard is now hidden" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:153 +#: superset-frontend/src/dashboard/actions/dashboardState.js:151 msgid "This dashboard is now published" msgstr "" @@ -15336,18 +15527,18 @@ msgid "" " id to the SDK:" msgstr "" -#: superset/views/core.py:1319 +#: superset/views/core.py:1353 msgid "" "This dashboard was changed recently. Please reload dashboard to get " "latest version." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:311 -#: superset-frontend/src/dashboard/actions/dashboardState.js:350 +#: superset-frontend/src/dashboard/actions/dashboardState.js:313 +#: superset-frontend/src/dashboard/actions/dashboardState.js:352 msgid "This dashboard was saved successfully." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1119 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1174 msgid "This database is managed externally, and can't be edited in Superset" msgstr "" @@ -15357,7 +15548,7 @@ msgid "" "table." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:240 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:282 msgid "This dataset is managed externally, and can't be edited in Superset" msgstr "" @@ -15374,7 +15565,7 @@ msgstr "" msgid "This defines the level of the hierarchy" msgstr "" -#: superset/connectors/sqla/views.py:436 +#: superset/connectors/sqla/views.py:343 msgid "" "This fields acts a Superset view, meaning that Superset will run a query " "against this string as a subquery." @@ -15397,7 +15588,7 @@ msgstr "" msgid "This functionality is disabled in your environment for security reasons." msgstr "" -#: superset/connectors/sqla/views.py:352 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:456 msgid "" "This is the condition that will be added to the WHERE clause. For " "example, to only return rows for a particular client, you might define a " @@ -15426,7 +15617,7 @@ msgstr "" msgid "This may be triggered by:" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:258 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:256 msgid "This metric might be incompatible with current dataset" msgstr "" @@ -15467,15 +15658,15 @@ msgid "" "associate one dataset with a table.\n" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:85 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 msgid "This value should be greater than the left target value" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:80 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 msgid "This value should be smaller than the right target value" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:141 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:171 msgid "This visualization type does not support cross-filtering." msgstr "" @@ -15511,6 +15702,7 @@ msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:38 #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 @@ -15540,7 +15732,7 @@ msgstr "" msgid "Time Comparison" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:141 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 msgid "Time Format" msgstr "" @@ -15570,39 +15762,39 @@ msgstr "" msgid "Time Series" msgstr "" -#: superset/viz.py:1670 +#: superset/viz.py:1581 msgid "Time Series - Bar Chart" msgstr "" -#: superset/viz.py:1596 +#: superset/viz.py:1504 msgid "Time Series - Dual Axis Line Chart" msgstr "" -#: superset/viz.py:1308 +#: superset/viz.py:1209 msgid "Time Series - Line Chart" msgstr "" -#: superset/viz.py:1518 +#: superset/viz.py:1424 msgid "Time Series - Multiple Line Charts" msgstr "" -#: superset/viz.py:3036 +#: superset/viz.py:3033 msgid "Time Series - Nightingale Rose Chart" msgstr "" -#: superset/viz.py:2965 +#: superset/viz.py:2961 msgid "Time Series - Paired t-test" msgstr "" -#: superset/viz.py:1725 +#: superset/viz.py:1638 msgid "Time Series - Percent Change" msgstr "" -#: superset/viz.py:1679 +#: superset/viz.py:1590 msgid "Time Series - Period Pivot" msgstr "" -#: superset/viz.py:1733 +#: superset/viz.py:1646 msgid "Time Series - Stacked" msgstr "" @@ -15617,7 +15809,7 @@ msgstr "" msgid "Time Shift" msgstr "" -#: superset/viz.py:849 +#: superset/viz.py:878 msgid "Time Table View" msgstr "" @@ -15628,7 +15820,7 @@ msgstr "" msgid "Time column" msgstr "" -#: superset/connectors/sqla/models.py:1392 superset/models/helpers.py:1575 +#: superset/models/helpers.py:1659 #, python-format msgid "Time column \"%(col)s\" does not exist in dataset" msgstr "" @@ -15711,6 +15903,7 @@ msgid "Time ratio" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 #: superset-frontend/src/explore/controlPanels/sections.tsx:66 msgid "Time related form attributes" msgstr "" @@ -15831,12 +16024,12 @@ msgstr "" msgid "Timestamp format" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:326 +#: superset-frontend/src/components/ReportModal/index.tsx:325 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 msgid "Timezone" msgstr "" -#: superset/connectors/sqla/views.py:427 +#: superset/connectors/sqla/views.py:334 msgid "Timezone offset (in hours) for this datasource" msgstr "" @@ -15878,30 +16071,27 @@ msgstr "" msgid "To get a readable URL for your dashboard" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:288 -msgid "Too many columns to filter" -msgstr "" - #: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:27 msgid "Tools" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:216 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:213 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 msgid "Tooltip" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:201 msgid "Tooltip sort by metric" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:191 msgid "Tooltip time format" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 msgid "Top" msgstr "" @@ -15923,14 +16113,14 @@ msgstr "" msgid "Total (%(aggfunc)s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:497 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:562 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:784 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 #, python-format msgid "Total (%(aggregatorName)s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:230 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:68 msgid "Total value" msgstr "" @@ -15944,7 +16134,7 @@ msgstr "" msgid "Totals" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:411 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:404 msgid "Track job" msgstr "" @@ -15964,10 +16154,6 @@ msgstr "" msgid "Transparent" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:99 -msgid "Transpose Pivot" -msgstr "" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:238 msgid "Transpose pivot" msgstr "" @@ -15985,7 +16171,7 @@ msgid "Tree orientation" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:60 -#: superset/viz.py:1035 +#: superset/viz.py:925 msgid "Treemap" msgstr "" @@ -16051,7 +16237,7 @@ msgstr "" msgid "Truncates the specified date to the accuracy specified by the date unit." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 msgid "Try applying different filters or ensuring your datasource has data" msgstr "" @@ -16072,21 +16258,21 @@ msgstr "" msgid "Tukey" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:216 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:65 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:272 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:276 -#: superset-frontend/src/pages/DatasetList/index.tsx:343 -#: superset-frontend/src/pages/DatasetList/index.tsx:552 -#: superset/connectors/sqla/views.py:164 superset/connectors/sqla/views.py:253 +#: superset-frontend/src/pages/DatasetList/index.tsx:354 +#: superset-frontend/src/pages/DatasetList/index.tsx:563 +#: superset/connectors/sqla/views.py:163 superset/connectors/sqla/views.py:252 msgid "Type" msgstr "" #: superset-frontend/src/components/DeleteModal/index.tsx:92 #: superset-frontend/src/components/ImportModal/index.tsx:397 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1405 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1460 #, python-format msgid "Type \"%s\" to confirm" msgstr "" @@ -16112,7 +16298,7 @@ msgstr "" msgid "Type of comparison, value difference or percentage" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:404 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:407 #, python-format msgid "Type or Select [%s]" msgstr "" @@ -16142,22 +16328,23 @@ msgstr "" msgid "URL slug" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:622 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:618 msgid "Unable to add a new tab to the backend. Please contact your administrator." msgstr "" -#: superset/db_engine_specs/presto.py:677 +#: superset/db_engine_specs/presto.py:704 #, python-format msgid "Unable to connect to catalog named \"%(catalog_name)s\"." msgstr "" #: superset/db_engine_specs/mysql.py:165 -#: superset/db_engine_specs/postgres.py:148 +#: superset/db_engine_specs/postgres.py:147 +#: superset/db_engine_specs/starrocks.py:127 #, python-format msgid "Unable to connect to database \"%(database)s\"." msgstr "" -#: superset/db_engine_specs/bigquery.py:177 +#: superset/db_engine_specs/bigquery.py:178 msgid "" "Unable to connect. Verify that the following roles are set on the service" " account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " @@ -16165,10 +16352,18 @@ msgid "" "\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:218 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:216 msgid "Unable to create chart without a query id." msgstr "" +#: superset/key_value/exceptions.py:66 +msgid "Unable to decode value" +msgstr "" + +#: superset/key_value/exceptions.py:62 +msgid "Unable to encode value" +msgstr "" + #: superset/utils/date_parser.py:393 #, python-format msgid "Unable to find such a holiday: [%(holiday)s]" @@ -16180,19 +16375,19 @@ msgid "" "table." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:589 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:585 msgid "" "Unable to migrate query editor state to backend. Superset will retry " "later. Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:543 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:539 msgid "" "Unable to migrate query state to backend. Superset will retry later. " "Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:525 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:521 msgid "" "Unable to migrate table schema state to backend. Superset will retry " "later. Please contact your administrator if this problem persists." @@ -16202,14 +16397,14 @@ msgstr "" msgid "Unable to retrieve dashboard colors" msgstr "" -#: superset/views/database/views.py:275 +#: superset/views/database/views.py:278 #, python-format msgid "" "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" " database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset/views/database/views.py:553 +#: superset/views/database/views.py:556 #, python-format msgid "" "Unable to upload Columnar file \"%(filename)s\" to table " @@ -16217,14 +16412,14 @@ msgid "" "%(error_msg)s" msgstr "" -#: superset/views/database/views.py:412 +#: superset/views/database/views.py:415 #, python-format msgid "" "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " "in database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:93 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:92 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 msgid "Undefined" msgstr "" @@ -16237,7 +16432,7 @@ msgstr "" msgid "Undo the action" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:131 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:132 msgid "Undo?" msgstr "" @@ -16247,7 +16442,7 @@ msgid "Unexpected error" msgstr "" #: superset/databases/commands/exceptions.py:137 -#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1438 +#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1479 msgid "Unexpected error occurred, please check your logs for details" msgstr "" @@ -16255,7 +16450,7 @@ msgstr "" msgid "Unexpected error: " msgstr "" -#: superset/views/api.py:109 +#: superset/views/api.py:108 #, python-format msgid "Unexpected time range: %s" msgstr "" @@ -16269,7 +16464,7 @@ msgstr "" msgid "Unknown MySQL server host \"%(hostname)s\"." msgstr "" -#: superset/db_engine_specs/presto.py:1319 +#: superset/db_engine_specs/presto.py:1342 msgid "Unknown Presto Error" msgstr "" @@ -16277,13 +16472,13 @@ msgstr "" msgid "Unknown Status" msgstr "" -#: superset/connectors/sqla/models.py:1317 superset/models/helpers.py:1498 +#: superset/models/helpers.py:1582 #, python-format msgid "Unknown column used in orderby: %(col)s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:402 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:480 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:398 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:476 msgid "Unknown error" msgstr "" @@ -16342,7 +16537,7 @@ msgstr "" msgid "Untitled query" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:223 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:222 msgid "Update" msgstr "" @@ -16359,7 +16554,7 @@ msgstr "" msgid "Upload" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:202 +#: superset-frontend/src/pages/DatabaseList/index.tsx:213 msgid "Upload CSV" msgstr "" @@ -16375,7 +16570,7 @@ msgstr "" msgid "Upload Enabled" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:216 +#: superset-frontend/src/pages/DatabaseList/index.tsx:227 msgid "Upload Excel file" msgstr "" @@ -16387,7 +16582,7 @@ msgstr "" msgid "Upload JSON file" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:209 +#: superset-frontend/src/pages/DatabaseList/index.tsx:220 msgid "Upload columnar file" msgstr "" @@ -16395,7 +16590,7 @@ msgstr "" msgid "Upload columnar file to database" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:199 +#: superset-frontend/src/pages/DatabaseList/index.tsx:210 msgid "Upload file to database" msgstr "" @@ -16408,7 +16603,7 @@ msgstr "" msgid "Use \"%(menuName)s\" menu instead." msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:36 +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 #, python-format msgid "Use %s to open in a new tab." msgstr "" @@ -16419,7 +16614,7 @@ msgstr "" msgid "Use Area Proportions" msgstr "" -#: superset/views/database/forms.py:462 +#: superset/views/database/forms.py:472 msgid "Use Columns" msgstr "" @@ -16435,9 +16630,9 @@ msgstr "" msgid "Use a log scale for the Y-axis" msgstr "" -#: superset/db_engine_specs/base.py:1850 -#: superset/db_engine_specs/clickhouse.py:211 -#: superset/db_engine_specs/databricks.py:57 +#: superset/db_engine_specs/base.py:1889 +#: superset/db_engine_specs/clickhouse.py:216 +#: superset/db_engine_specs/databricks.py:58 msgid "Use an encrypted connection to the database" msgstr "" @@ -16448,12 +16643,12 @@ msgid "" " Your chart must be one of these visualization types: [%s]" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:87 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 msgid "Use date formatting even when metric value is not a timestamp" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:217 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 msgid "Use legacy datasource editor" msgstr "" @@ -16499,16 +16694,6 @@ msgid "" " from the pluginʼs package.json" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:28 -msgid "" -"Used to summarize a set of data by grouping together multiple statistics " -"along two axes. Examples: Sales numbers by region and month, tasks by " -"status and assignee, active users by age and location.\n" -"\n" -" This chart is being deprecated and we recommend checking out Pivot " -"Table V2 instead!" -msgstr "" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 msgid "" "Used to summarize a set of data by grouping together multiple statistics " @@ -16552,11 +16737,17 @@ msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:133 #: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 -#: superset/db_engine_specs/base.py:1837 +#: superset/db_engine_specs/base.py:1868 #: superset/db_engine_specs/clickhouse.py:201 msgid "Username" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:27 +msgid "" +"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" +" of data" +msgstr "" + #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:45 msgid "" "Uses a gauge to showcase progress of a metric towards a target. The " @@ -16606,9 +16797,9 @@ msgstr "" msgid "Value is required" msgstr "" -#: superset/reports/schemas.py:186 superset/reports/schemas.py:192 -#: superset/reports/schemas.py:198 superset/reports/schemas.py:280 -#: superset/reports/schemas.py:286 superset/reports/schemas.py:293 +#: superset/reports/schemas.py:190 superset/reports/schemas.py:195 +#: superset/reports/schemas.py:200 superset/reports/schemas.py:291 +#: superset/reports/schemas.py:296 superset/reports/schemas.py:302 msgid "Value must be greater than 0" msgstr "" @@ -16630,16 +16821,16 @@ msgstr "" msgid "Vehicle Types" msgstr "" -#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:252 +#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:251 msgid "Verbose Name" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:503 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:539 #: superset-frontend/src/features/home/RightMenu.tsx:501 msgid "Version" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:509 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:545 msgid "Version number" msgstr "" @@ -16650,7 +16841,7 @@ msgstr "" msgid "Vertical" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:162 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 msgid "Vertical (Left)" msgstr "" @@ -16677,7 +16868,7 @@ msgstr "" msgid "View all charts" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:434 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 msgid "View as table" msgstr "" @@ -16691,8 +16882,8 @@ msgstr "" msgid "View keys & indexes (%s)" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:415 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:417 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:424 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:426 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:394 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:396 msgid "View query" @@ -16713,8 +16904,8 @@ msgstr "" msgid "Viewport" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:342 -#: superset-frontend/src/pages/DatasetList/index.tsx:559 +#: superset-frontend/src/pages/DatasetList/index.tsx:353 +#: superset-frontend/src/pages/DatasetList/index.tsx:570 msgid "Virtual" msgstr "" @@ -16722,20 +16913,20 @@ msgstr "" msgid "Virtual (SQL)" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:281 +#: superset-frontend/src/pages/DatasetList/index.tsx:292 msgid "Virtual dataset" msgstr "" -#: superset/connectors/sqla/models.py:960 superset/connectors/sqla/utils.py:111 -#: superset/models/helpers.py:1036 +#: superset/connectors/sqla/models.py:921 superset/connectors/sqla/utils.py:110 +#: superset/models/helpers.py:1079 msgid "Virtual dataset query cannot be empty" msgstr "" -#: superset/connectors/sqla/models.py:963 superset/models/helpers.py:1039 +#: superset/connectors/sqla/models.py:924 superset/models/helpers.py:1082 msgid "Virtual dataset query cannot consist of multiple statements" msgstr "" -#: superset/connectors/sqla/models.py:928 superset/models/helpers.py:1062 +#: superset/connectors/sqla/models.py:889 superset/models/helpers.py:1105 msgid "Virtual dataset query must be read-only" msgstr "" @@ -16864,7 +17055,7 @@ msgid "" "corresponds to higher frequency." msgstr "" -#: superset/viz.py:141 +#: superset/viz.py:140 msgid "Viz is missing a datasource" msgstr "" @@ -16876,21 +17067,21 @@ msgstr "" msgid "WED" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:948 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1003 msgid "Want to add a new database?" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1246 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:216 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:214 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 msgid "Warning" msgstr "" -#: superset/connectors/sqla/views.py:258 +#: superset/connectors/sqla/views.py:257 msgid "Warning Message" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:286 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 msgid "Warning!" msgstr "" @@ -16905,13 +17096,13 @@ msgstr "" msgid "Was unable to check your query" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1468 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1523 msgid "" "We are unable to connect to your database. Click \"See more\" for " "database-provided information that may help troubleshoot the issue." msgstr "" -#: superset/db_engine_specs/bigquery.py:197 +#: superset/db_engine_specs/bigquery.py:198 #, python-format msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." msgstr "" @@ -16921,8 +17112,8 @@ msgstr "" msgid "We can't seem to resolve the column \"%(column_name)s\"" msgstr "" -#: superset/db_engine_specs/postgres.py:153 -#: superset/db_engine_specs/presto.py:630 +#: superset/db_engine_specs/postgres.py:152 +#: superset/db_engine_specs/presto.py:657 #, python-format msgid "" "We can't seem to resolve the column \"%(column_name)s\" at line " @@ -16944,7 +17135,7 @@ msgid "" "dataset." msgstr "" -#: superset/db_engine_specs/redshift.py:90 +#: superset/db_engine_specs/redshift.py:94 #, python-format msgid "" "We were unable to connect to your database named \"%(database)s\". Please" @@ -16961,31 +17152,31 @@ msgstr "" msgid "Wednesday" msgstr "" -#: superset/db_engine_specs/base.py:107 +#: superset/db_engine_specs/base.py:108 msgid "Week" msgstr "" -#: superset/db_engine_specs/base.py:113 +#: superset/db_engine_specs/base.py:114 msgid "Week ending Saturday" msgstr "" -#: superset/db_engine_specs/base.py:112 +#: superset/db_engine_specs/base.py:113 msgid "Week starting Monday" msgstr "" -#: superset/db_engine_specs/base.py:111 +#: superset/db_engine_specs/base.py:112 msgid "Week starting Sunday" msgstr "" -#: superset/db_engine_specs/base.py:114 +#: superset/db_engine_specs/base.py:115 msgid "Week_ending Sunday" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:123 +#: superset-frontend/src/components/ReportModal/index.tsx:122 msgid "Weekly Report" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:122 +#: superset-frontend/src/components/ReportModal/index.tsx:121 #, python-format msgid "Weekly Report for %s" msgstr "" @@ -16999,6 +17190,7 @@ msgstr "" msgid "Weeks %s" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:49 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:77 msgid "Weight" @@ -17035,7 +17227,7 @@ msgstr[1] "" msgid "What should be shown on the label?" msgstr "" -#: superset/views/database/forms.py:165 +#: superset/views/database/forms.py:175 msgid "What should happen if the table already exists" msgstr "" @@ -17060,7 +17252,7 @@ msgstr "" msgid "When checked, the map will zoom to your data after each query" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:189 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 msgid "When enabled, users are able to visualize SQL Lab results in Explore." msgstr "" @@ -17085,11 +17277,11 @@ msgid "" "relative time filter on a partitioned or indexed time-related field." msgstr "" -#: superset/viz.py:861 +#: superset/viz.py:891 msgid "When using 'Group By' you are limited to use a single metric" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:74 msgid "When using other than adaptive formatting, labels may overlap" msgstr "" @@ -17101,11 +17293,11 @@ msgstr "" msgid "Whether the progress bar overlaps when there are multiple groups of data" msgstr "" -#: superset/connectors/sqla/views.py:455 +#: superset/connectors/sqla/views.py:362 msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" msgstr "" -#: superset/connectors/sqla/views.py:111 +#: superset/connectors/sqla/views.py:110 msgid "" "Whether this column is exposed in the `Filters` section of the explore " "view." @@ -17147,7 +17339,7 @@ msgstr "" msgid "Whether to display a bar chart background in table columns" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 msgid "Whether to display a legend for the chart" msgstr "" @@ -17178,14 +17370,14 @@ msgid "" " 5% threshold." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:157 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:118 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:159 msgid "Whether to display the legend (toggles)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:181 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 msgid "Whether to display the metric name as a title" msgstr "" @@ -17198,7 +17390,7 @@ msgstr "" msgid "Whether to display the min and max values of the Y-axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:167 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:187 msgid "Whether to display the numerical values within the cells" @@ -17262,7 +17454,7 @@ msgstr "" msgid "Whether to make the histogram cumulative" msgstr "" -#: superset/connectors/sqla/views.py:106 +#: superset/connectors/sqla/views.py:105 msgid "" "Whether to make this column available as a [Time Granularity] option, " "column has to be DATETIME or DATETIME-like" @@ -17276,7 +17468,7 @@ msgstr "" msgid "Whether to populate autocomplete filters options" msgstr "" -#: superset/connectors/sqla/views.py:450 +#: superset/connectors/sqla/views.py:357 msgid "" "Whether to populate the filter's dropdown in the explore view's filter " "section with a list of distinct values fetched from the backend on the " @@ -17306,7 +17498,8 @@ msgstr "" msgid "Whether to show the split lines on the axis" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:124 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:143 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:174 msgid "Whether to sort ascending or descending on the base Axis." msgstr "" @@ -17336,7 +17529,7 @@ msgstr "" msgid "Whether to sort results by the selected metric in descending order." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:207 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 msgid "Whether to sort tooltip by the selected metric in descending order." msgstr "" @@ -17400,7 +17593,7 @@ msgid "Working timeout" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 -#: superset/viz.py:2079 +#: superset/viz.py:2006 msgid "World Map" msgstr "" @@ -17412,11 +17605,11 @@ msgstr "" msgid "Write a handlebars template to render the data" msgstr "" -#: superset/views/database/forms.py:219 +#: superset/views/database/forms.py:229 msgid "Write dataframe index as a column" msgstr "" -#: superset/views/database/forms.py:380 superset/views/database/forms.py:471 +#: superset/views/database/forms.py:390 superset/views/database/forms.py:481 msgid "Write dataframe index as a column." msgstr "" @@ -17474,11 +17667,13 @@ msgstr "" msgid "X bounds" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:122 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:141 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:172 msgid "X-Axis Sort Ascending" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:69 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:156 msgid "X-Axis Sort By" msgstr "" @@ -17537,7 +17732,6 @@ msgid "Y Axis 2 Bounds" msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:260 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:248 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:192 @@ -17576,11 +17770,13 @@ msgstr "" msgid "Y bounds" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:121 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:140 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:171 msgid "Y-Axis Sort Ascending" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:68 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 msgid "Y-Axis Sort By" msgstr "" @@ -17596,7 +17792,7 @@ msgstr "" msgid "YScale Interval" msgstr "" -#: superset/db_engine_specs/base.py:110 +#: superset/db_engine_specs/base.py:111 msgid "Year" msgstr "" @@ -17621,9 +17817,9 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:707 #: superset-frontend/src/pages/DashboardList/index.tsx:506 #: superset-frontend/src/pages/DashboardList/index.tsx:588 -#: superset-frontend/src/pages/DatabaseList/index.tsx:467 -#: superset-frontend/src/pages/DatabaseList/index.tsx:487 -#: superset-frontend/src/pages/DatasetList/index.tsx:572 +#: superset-frontend/src/pages/DatabaseList/index.tsx:478 +#: superset-frontend/src/pages/DatabaseList/index.tsx:498 +#: superset-frontend/src/pages/DatasetList/index.tsx:583 msgid "Yes" msgstr "" @@ -17650,7 +17846,7 @@ msgid "" "overwrite?" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1394 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1449 msgid "" "You are importing one or more databases that already exist. Overwriting " "might cause you to lose some of your work. Are you sure you want to " @@ -17671,7 +17867,7 @@ msgid "" "want to overwrite?" msgstr "" -#: superset/views/core.py:2177 +#: superset/views/core.py:2213 msgid "" "You are not authorized to see this query. If you think this is an error, " "please reach out to your administrator." @@ -17689,7 +17885,7 @@ msgstr "" msgid "You can add the components in the edit mode." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:127 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:157 msgid "You can also just click on the chart to apply cross-filter." msgstr "" @@ -17712,7 +17908,7 @@ msgstr "" msgid "You can preview the list of dashboards in the chart settings dropdown." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:148 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:178 msgid "You can't apply cross-filter on this data point." msgstr "" @@ -17726,7 +17922,7 @@ msgstr "" msgid "You cannot use 45° tick layout along with the time range filter" msgstr "" -#: superset/viz.py:723 +#: superset/viz.py:748 msgid "" "You cannot use [Columns] in combination with [Group " "By]/[Metrics]/[Percentage Metrics]. Please choose one or the other." @@ -17742,7 +17938,7 @@ msgid "You do not have permission to edit this chart" msgstr "" #: superset-frontend/src/components/Tags/utils.tsx:69 -#: superset-frontend/src/dashboard/actions/dashboardState.js:366 +#: superset-frontend/src/dashboard/actions/dashboardState.js:368 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:134 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:40 @@ -17754,7 +17950,7 @@ msgstr "" msgid "You do not have permissions to access the datasource(s): %(name)s." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:162 +#: superset-frontend/src/dashboard/actions/dashboardState.js:160 msgid "You do not have permissions to edit this dashboard." msgstr "" @@ -17766,7 +17962,7 @@ msgstr "" msgid "You don't have access to this dashboard." msgstr "" -#: superset/datasets/commands/exceptions.py:189 +#: superset/datasets/commands/exceptions.py:206 msgid "You don't have access to this dataset." msgstr "" @@ -17783,16 +17979,16 @@ msgstr "" msgid "You don't have permission to modify the value." msgstr "" -#: superset/security/manager.py:2267 +#: superset/security/manager.py:2262 #, python-format msgid "You don't have the rights to alter %(resource)s" msgstr "" -#: superset/views/core.py:923 +#: superset/views/core.py:945 msgid "You don't have the rights to alter this chart" msgstr "" -#: superset/views/core.py:1097 +#: superset/views/core.py:1119 msgid "You don't have the rights to alter this dashboard" msgstr "" @@ -17800,19 +17996,19 @@ msgstr "" msgid "You don't have the rights to alter this title." msgstr "" -#: superset/views/core.py:929 +#: superset/views/core.py:951 msgid "You don't have the rights to create a chart" msgstr "" -#: superset/views/core.py:1113 +#: superset/views/core.py:1135 msgid "You don't have the rights to create a dashboard" msgstr "" -#: superset/views/core.py:644 +#: superset/views/core.py:649 msgid "You don't have the rights to download as csv" msgstr "" -#: superset/views/core.py:424 +#: superset/views/core.py:425 msgid "You have no permission to approve this request" msgstr "" @@ -17824,7 +18020,7 @@ msgstr "" msgid "You have unsaved changes." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:652 +#: superset-frontend/src/dashboard/actions/dashboardState.js:650 #, python-format msgid "" "You have used all %(historyLength)s undo slots and will not be able to " @@ -17833,7 +18029,7 @@ msgid "" msgstr "" #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:300 -#: superset-frontend/src/pages/DatasetList/index.tsx:453 +#: superset-frontend/src/pages/DatasetList/index.tsx:464 msgid "" "You must be a dataset owner in order to edit. Please reach out to a " "dataset owner to request modifications or edit access." @@ -17843,7 +18039,7 @@ msgstr "" msgid "You must pick a name for the new dashboard" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:525 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:519 msgid "You must run the query successfully first" msgstr "" @@ -17851,7 +18047,7 @@ msgstr "" msgid "You need to configure HTML sanitization to use CSS" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:350 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 msgid "" "You updated the values in the control panel, but the chart was not " "updated automatically. Run the query by clicking on the \"Update chart\" " @@ -17864,7 +18060,7 @@ msgid "" "match this new dataset have been retained." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:343 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 msgid "Your chart is not up to date" msgstr "" @@ -17876,7 +18072,7 @@ msgstr "" msgid "Your dashboard is too large. Please reduce its size before saving it." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1036 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1028 msgid "Your query could not be saved" msgstr "" @@ -17884,7 +18080,7 @@ msgstr "" msgid "Your query could not be scheduled" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1071 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1063 msgid "Your query could not be updated" msgstr "" @@ -17894,15 +18090,15 @@ msgid "" "Saved queries" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1051 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 msgid "Your query was not properly saved" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1054 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1046 msgid "Your query was saved" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1067 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1059 msgid "Your query was updated" msgstr "" @@ -17923,19 +18119,19 @@ msgstr "" msgid "Zoom level of the map" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:262 +#: superset-frontend/src/dashboard/actions/dashboardState.js:260 msgid "[ untitled dashboard ]" msgstr "" -#: superset/viz.py:2386 +#: superset/viz.py:2323 msgid "[Longitude] and [Latitude] columns must be present in [Group By]" msgstr "" -#: superset/viz.py:2336 +#: superset/viz.py:2273 msgid "[Longitude] and [Latitude] must be set" msgstr "" -#: superset/explore/commands/get.py:121 superset/views/core.py:870 +#: superset/explore/commands/get.py:121 superset/views/core.py:892 msgid "[Missing Dataset]" msgstr "" @@ -17948,7 +18144,7 @@ msgstr "" msgid "[Untitled]" msgstr "" -#: superset/connectors/base/models.py:252 superset/models/sql_lab.py:228 +#: superset/connectors/base/models.py:262 superset/models/sql_lab.py:216 msgid "[asc]" msgstr "" @@ -17960,7 +18156,7 @@ msgstr "" msgid "[dashboard name]" msgstr "" -#: superset/connectors/base/models.py:255 superset/models/sql_lab.py:231 +#: superset/connectors/base/models.py:265 superset/models/sql_lab.py:219 msgid "[desc]" msgstr "" @@ -17984,7 +18180,7 @@ msgstr "" msgid "`compare_type` must be `difference`, `percentage` or `ratio`" msgstr "" -#: superset/charts/schemas.py:573 +#: superset/charts/schemas.py:654 msgid "`confidence_interval` must be between 0 and 1 (exclusive)" msgstr "" @@ -18007,15 +18203,15 @@ msgstr "" msgid "`rename_columns` must have the same length as `columns`." msgstr "" -#: superset/charts/schemas.py:1114 +#: superset/charts/schemas.py:1284 msgid "`row_limit` must be greater than or equal to 0" msgstr "" -#: superset/charts/schemas.py:1121 +#: superset/charts/schemas.py:1291 msgid "`row_offset` must be greater than or equal to 0" msgstr "" -#: superset/charts/schemas.py:972 +#: superset/charts/schemas.py:1108 msgid "`width` must be greater or equal to 0" msgstr "" @@ -18023,10 +18219,15 @@ msgstr "" msgid "aggregate" msgstr "" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 #: superset-frontend/src/pages/AlertReportList/index.tsx:110 msgid "alert" msgstr "" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 +msgid "alert dark" +msgstr "" + #: superset-frontend/src/pages/AlertReportList/index.tsx:111 msgid "alerts" msgstr "" @@ -18163,7 +18364,7 @@ msgid "clear all filters" msgstr "" #: superset-frontend/src/components/Chart/Chart.jsx:290 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:354 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 msgid "click here" msgstr "" @@ -18193,7 +18394,7 @@ msgstr "" msgid "count" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:365 +#: superset-frontend/src/explore/components/SaveModal.tsx:400 msgid "create" msgstr "" @@ -18237,16 +18438,16 @@ msgid "dashboards" msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/index.tsx:543 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:712 -#: superset-frontend/src/pages/DatabaseList/index.tsx:91 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:729 +#: superset-frontend/src/pages/DatabaseList/index.tsx:102 msgid "database" msgstr "" #: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 #: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 #: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 -#: superset-frontend/src/pages/DatasetList/index.tsx:148 -#: superset-frontend/src/pages/DatasetList/index.tsx:822 +#: superset-frontend/src/pages/DatasetList/index.tsx:159 +#: superset-frontend/src/pages/DatasetList/index.tsx:844 msgid "dataset" msgstr "" @@ -18258,8 +18459,8 @@ msgstr "" msgid "date" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 msgid "day" msgstr "" @@ -18288,6 +18489,10 @@ msgstr "" msgid "deck.gl Grid" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:30 +msgid "deck.gl Heatmap" +msgstr "" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:28 msgid "deck.gl Multiple Layers" msgstr "" @@ -18316,6 +18521,7 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:34 @@ -18399,11 +18605,11 @@ msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:112 #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:657 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:674 msgid "e.g. world_population" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:655 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:672 msgid "e.g. xy12345.us-east-2.aws" msgstr "" @@ -18419,7 +18625,15 @@ msgstr "" msgid "entries" msgstr "" -#: superset/connectors/sqla/models.py:1537 superset/models/helpers.py:1742 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +msgid "error" +msgstr "" + +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 +msgid "error dark" +msgstr "" + +#: superset/models/helpers.py:1803 msgid "error_message" msgstr "" @@ -18499,10 +18713,6 @@ msgstr "" msgid "geohash (square)" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 -msgid "green" -msgstr "" - #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:168 msgid "heatmap" msgstr "" @@ -18515,13 +18725,13 @@ msgstr "" #: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:125 #: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1800 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1856 msgid "here" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 msgid "hour" msgstr "" @@ -18558,7 +18768,7 @@ msgstr "" msgid "joined" msgstr "" -#: superset/views/base.py:595 +#: superset/views/base.py:596 msgid "json isn't valid" msgstr "" @@ -18617,14 +18827,13 @@ msgstr "" msgid "log" msgstr "" -#: superset/charts/schemas.py:645 +#: superset/charts/schemas.py:735 msgid "" "lower percentile must be greater than 0 and less than 100. Must be lower " "than upper percentile." msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:189 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:58 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 #: superset-frontend/src/filters/components/Range/buildQuery.ts:69 msgid "max" @@ -18633,9 +18842,9 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:187 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:254 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:56 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:136 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:119 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:403 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:531 @@ -18653,14 +18862,13 @@ msgstr "" msgid "median" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:60 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:62 #: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 msgid "metric" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:188 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:57 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 #: superset-frontend/src/filters/components/Range/buildQuery.ts:58 msgid "min" @@ -18679,8 +18887,8 @@ msgid "monotone" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 #: superset-frontend/src/explore/controls.jsx:267 msgid "month" @@ -18691,7 +18899,7 @@ msgid "more than {max} {name}" msgstr "" #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:53 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:78 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:77 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:116 msgid "must have a value" msgstr "" @@ -18752,7 +18960,7 @@ msgstr "" msgid "or use existing ones from the panel on the right" msgstr "" -#: superset/charts/schemas.py:1143 +#: superset/charts/schemas.py:1313 msgid "orderby column must be populated" msgstr "" @@ -18808,7 +19016,7 @@ msgid "" " first is lower than the second value" msgstr "" -#: superset/views/core.py:1921 +#: superset/views/core.py:1958 msgid "permalink state not found" msgstr "" @@ -18861,11 +19069,7 @@ msgstr "" msgid "recents" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 -msgid "red" -msgstr "" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:563 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:566 #: superset-frontend/src/pages/AlertReportList/index.tsx:110 msgid "report" msgstr "" @@ -18877,7 +19081,7 @@ msgstr "" msgid "reports" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:491 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:522 msgid "restore zoom" msgstr "" @@ -18886,6 +19090,10 @@ msgstr "" msgid "right" msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:139 +msgid "rowlevelsecurity" +msgstr "" + #: superset-frontend/src/SqlLab/constants.ts:36 #: superset-frontend/src/SqlLab/constants.ts:52 msgid "running" @@ -18931,7 +19139,6 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:190 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:59 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:138 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:405 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:185 @@ -18962,15 +19169,20 @@ msgstr "" #: superset-frontend/src/SqlLab/constants.ts:38 #: superset-frontend/src/SqlLab/constants.ts:50 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 msgid "success" msgstr "" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +msgid "success dark" +msgstr "" + #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:186 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:255 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:378 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:55 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:260 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:532 @@ -19013,7 +19225,7 @@ msgstr "" msgid "unknown type icon" msgstr "" -#: superset/charts/schemas.py:660 +#: superset/charts/schemas.py:750 msgid "" "upper percentile must be greater than 0 and less than 100. Must be higher" " than lower percentile." @@ -19034,7 +19246,6 @@ msgid "value descending" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:60 msgid "var" msgstr "" @@ -19054,13 +19265,13 @@ msgstr "" msgid "viz type" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:451 msgid "was created" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:62 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 #: superset-frontend/src/explore/controls.jsx:264 msgid "week" @@ -19093,16 +19304,12 @@ msgid "y: values are normalized within each row" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 #: superset-frontend/src/explore/controls.jsx:269 msgid "year" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 -msgid "yellow" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:490 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:521 msgid "zoom area" msgstr "" diff --git a/superset/translations/nl/LC_MESSAGES/messages.json b/superset/translations/nl/LC_MESSAGES/messages.json index 318eaa2340..05bdcb4037 100644 --- a/superset/translations/nl/LC_MESSAGES/messages.json +++ b/superset/translations/nl/LC_MESSAGES/messages.json @@ -137,6 +137,9 @@ "Een door komma’s gescheiden lijst van kolommen die als datums moeten worden geparseerd." ], "A database with the same name already exists.": [""], + "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ + "" + ], "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ "" ], @@ -216,9 +219,7 @@ "Add Log": ["Voeg Log toe"], "Add Metric": ["Voeg meeteenheid toe"], "Add Report": [""], - "Add Row level security filter": [ - "Voeg beveiligingsfilter op rijniveau toe" - ], + "Add Rule": [""], "Add Saved Query": ["Voeg Opgeslagen Query toe"], "Add a Plugin": ["Voeg een Plugin toe"], "Add a new tab to create SQL Query": [""], @@ -231,6 +232,7 @@ "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ "" ], + "Add custom scoping": [""], "Add delivery method": ["Leveringswijze toevoegen"], "Add filter": ["Filter toevoegen"], "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ @@ -323,6 +325,7 @@ "All": ["Alle"], "All Text": ["Alle tekst"], "All charts": ["Alle grafieken"], + "All charts/global scoping": [""], "All filters": ["Alle filters"], "All filters (%(filterCount)d)": [""], "All panels": [""], @@ -577,6 +580,7 @@ "" ], "Apply": ["Toepassen"], + "Apply conditional color formatting to metric": [""], "Apply conditional color formatting to metrics": [""], "Apply conditional color formatting to numeric columns": [""], "Apply filters": [""], @@ -680,6 +684,12 @@ "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ "" ], + "Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "" + ], + "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [ + "" + ], "Box Plot": [""], "Breakdowns": [""], "Bubble Chart": ["Bubbelgrafiek"], @@ -885,7 +895,6 @@ "Choose a source": [""], "Choose a source and a target": [""], "Choose a target": [""], - "Choose a unique name": [""], "Choose chart type": [""], "Choose one of the available databases from the panel on the left.": [""], "Choose one or more charts for left axis": [""], @@ -932,7 +941,6 @@ ], "Click to cancel sorting": [""], "Click to edit": ["Klik om te bewerken"], - "Click to edit %s in a new tab": [""], "Click to edit label": [""], "Click to favorite/unfavorite": [ "Klik om voorkeur aan te geven/voorkeur te verwijderen" @@ -1005,7 +1013,6 @@ "Columns to group by": [""], "Columns to group by on the columns": [""], "Columns to group by on the rows": [""], - "Combine Metrics": [""], "Combine metrics": [""], "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ "" @@ -1115,6 +1122,7 @@ "Could not load database driver: {}": [ "Kon het database driver niet laden: {}" ], + "Could not resolve hostname: \"%(host)s\".": [""], "Count Unique Values": [""], "Count as Fraction of Columns": [""], "Count as Fraction of Rows": [""], @@ -1316,6 +1324,7 @@ ], "December": ["December"], "Decides which column to sort the base axis by.": [""], + "Decides which measure to sort the base axis by.": [""], "Decimal Character": ["Decimaal teken"], "Deck.gl - 3D Grid": ["Deck.gl - 3D Grid"], "Deck.gl - 3D HEX": ["Deck.gl - 3D HEX"], @@ -1471,7 +1480,6 @@ "" ], "Display row level total": [""], - "Display total row/column": [""], "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ "" ], @@ -1507,10 +1515,7 @@ ], "Drill to detail: %s": [""], "Drop a temporal column here or click": [""], - "Drop columns here": [""], - "Drop columns or metrics here": [""], "Drop columns/metrics here or click": [""], - "Drop temporal column here": [""], "Dual Line Chart": [""], "Duplicate column name(s): %(columns)s": [ "Dubbele kolomnaam (of -namen): %(columns)s" @@ -1566,9 +1571,6 @@ "Edit Metric": ["Bewerk meeteenheid"], "Edit Plugin": ["Bewerk Plugin"], "Edit Report": [""], - "Edit Row level security filter": [ - "Bewerk Rij niveau beveiligingsfilter" - ], "Edit Saved Query": ["Bewerk Opgeslagen Query"], "Edit Table": ["Bewerk tabel"], "Edit annotation": ["Bewerk aantekening"], @@ -1700,6 +1702,7 @@ ], "Excel to Database configuration": ["Excel naar Database configuratie"], "Exclude selected values": [""], + "Excluded roles": [""], "Executed SQL": [""], "Executed query": ["Uitgevoerde query"], "Execution ID": ["Uitvoerings ID"], @@ -1758,8 +1761,10 @@ "Failed at stopping query. %s": [""], "Failed to create report": [""], "Failed to execute %(query)s": [""], + "Failed to generate chart edit URL": [""], "Failed to load chart data": [""], "Failed to load chart data.": [""], + "Failed to load dimensions for drill by": [""], "Failed to start remote query on a worker.": [""], "Failed to update report": [""], "Failed to verify select options: %s": [ @@ -1787,7 +1792,6 @@ "Filter List": ["Filter Lijst"], "Filter Settings": [""], "Filter Type": ["Filter Type"], - "Filter box": ["Filter box"], "Filter configuration": ["Filter configuratie"], "Filter configuration for the filter box": [ "Filterconfiguratie voor de filterbox" @@ -1902,9 +1906,6 @@ "Grid Size": [""], "Group By": [""], "Group By filter plugin": [""], - "Group By' and 'Columns' can't overlap": [ - "‘Group By’ en ‘Kolommen’ kunnen elkaar niet overlappen" - ], "Group By, Metrics or Percentage Metrics must have a value": [""], "Group by": ["Groep per"], "Groupable": ["Groepeerbaar"], @@ -2008,11 +2009,19 @@ "Input field supports custom rotation. e.g. 30 for 30°": [""], "Instant filtering": ["Onmiddellijke filtering"], "Intensity": [""], + "Intensity Radius": [""], + "Intensity Radius is the radius at which the weight is distributed": [""], + "Intensity is the value multiplied by the weight to obtain the final weight": [ + "" + ], "Interval End column": [""], "Interval bounds": [""], "Interval colors": [""], "Interval start column": [""], "Intervals": [""], + "Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:port/database'.": [ + "" + ], "Invalid JSON": ["Ongeldige JSON"], "Invalid advanced data type: %(advanced_data_type)s": [""], "Invalid certificate": ["Ongeldig certificaat"], @@ -2051,6 +2060,7 @@ "Ongeldige opties voor %(rolling_type)s: %(options)s" ], "Invalid permalink key": [""], + "Invalid reference to column: \"%(column)s\"": [""], "Invalid result type: %(result_type)s": [""], "Invalid rolling_type: %(type)s": ["Ongeldig rolling_type: %(type)s"], "Invalid spatial point encountered: %s": [ @@ -2403,7 +2413,6 @@ "No data in file": ["Geen gegevens in het bestand"], "No databases match your search": [""], "No description available.": [""], - "No dimensions available for drill by": [""], "No favorite charts yet, go click on stars!": [ "Nog geen favoriete grafieken, klik op sterren!" ], @@ -2573,7 +2582,6 @@ "Optional warning about use of this metric": [ "Optionele waarschuwing voor het gebruik van deze meeteenheid" ], - "Optionally add a detailed description": [""], "Options": [""], "Or choose from a list of other databases we support:": [""], "Order by entity id": [""], @@ -2697,9 +2705,7 @@ "Pie Chart": [""], "Pie shape": [""], "Pin": [""], - "Pivot Options": [""], "Pivot Table": ["Draaitabel"], - "Pivot Table (legacy)": [""], "Pivot operation must include at least one aggregate": [ "De pivotbewerking moet ten minste één aggregaat omvatten" ], @@ -2724,7 +2730,6 @@ "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ "" ], - "Please choose at least one metric": ["Kies ten minste één meeteenheid"], "Please choose different metrics on left and right axis": [ "Kies verschillende meeteenheden op de linker- en rechteras" ], @@ -2776,6 +2781,7 @@ "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ "Poort %(port)s op hostnaam “%(hostname)s” weigerde de verbinding." ], + "Port out of range 0-65535": [""], "Position JSON": ["Positie JSON"], "Position of child node label on tree": [""], "Position of column level subtotal": [""], @@ -2798,6 +2804,7 @@ "Primary Metric": [""], "Primary key": [""], "Primary or secondary y-axis": [""], + "Primary y-axis Bounds": [""], "Primary y-axis format": [""], "Private Key": [""], "Private Key & Password": [""], @@ -2893,7 +2900,8 @@ "Refresh interval saved": [""], "Refresh the default values": [""], "Regex": [""], - "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter. Base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ + "Regular": [""], + "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter, base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ "" ], "Relational": [""], @@ -3023,13 +3031,13 @@ "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ "" ], - "Row level security filter": ["Beveiligingsfilter op rijniveau"], "Row limit": ["Rij limiet"], "Rows": ["Rijen"], "Rows per page, 0 means no pagination": [""], "Rows subtotal position": [""], "Rows to Read": ["Te lezen rijen"], "Rule": ["Regel"], + "Rule added": [""], "Run": ["Uitvoeren"], "Run a query to display results": [""], "Run in SQL Lab": ["Uitvoeren in SQL Lab"], @@ -3134,6 +3142,7 @@ "Second": ["Seconde"], "Secondary": [""], "Secondary Metric": [""], + "Secondary y-axis Bounds": [""], "Secondary y-axis format": [""], "Secondary y-axis title": [""], "Seconds %s": [""], @@ -3180,6 +3189,12 @@ "Select scheme": [""], "Select start and end date": ["Selecteer begin- en einddatum"], "Select subject": [""], + "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" + ], + "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" + ], "Select the geojson column": [""], "Select the number of bins for the histogram": [""], "Select the numeric columns to draw the histogram": [""], @@ -3241,9 +3256,6 @@ "Show Metric": ["Toon meeteenheid"], "Show Metric Names": [""], "Show Range Filter": [""], - "Show Row level security filter": [ - "Toon beveiligingsfilter op rijniveau" - ], "Show Saved Query": ["Toon Opgeslagen Query"], "Show Table": ["Toon tabel"], "Show Timestamp": [""], @@ -3463,7 +3475,6 @@ ], "Supported databases": [""], "Survey Responses": [""], - "Swap Groups and Columns": [""], "Swap rows and columns": [""], "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ "" @@ -3476,6 +3487,9 @@ "Symbol size": [""], "Sync columns from source": ["Synchroniseer kolommen van bron"], "Syntax": ["Syntax"], + "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ + "" + ], "TABLES": ["TABLES"], "THU": ["DO"], "TUE": ["DI"], @@ -3803,6 +3817,9 @@ "The user seems to have been deleted": [ "De gebruiker lijkt te zijn verwijderd" ], + "The user/password combination is not valid (Incorrect password for user).": [ + "" + ], "The username \"%(username)s\" does not exist.": [ "De gebruikersnaam “%(username)s” bestaat niet." ], @@ -3917,7 +3934,7 @@ "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ "" ], - "This chart emits/applies cross-filters to other charts that use the same dataset": [ + "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ "" ], "This chart has been moved to a different filter scope.": [ @@ -4129,7 +4146,6 @@ "To get a readable URL for your dashboard": [ "Om een leesbare URL voor uw dashboard te krijgen" ], - "Too many columns to filter": [""], "Tools": [""], "Tooltip": [""], "Tooltip sort by metric": [""], @@ -4144,7 +4160,6 @@ "Track job": ["Track job"], "Transformable": [""], "Transparent": [""], - "Transpose Pivot": [""], "Transpose pivot": [""], "Tree Chart": [""], "Tree layout": [""], @@ -4196,6 +4211,8 @@ "" ], "Unable to create chart without a query id.": [""], + "Unable to decode value": [""], + "Unable to encode value": [""], "Unable to find such a holiday: [%(holiday)s]": [ "Niet in staat om zo’n holiday te vinden: [%(holiday)s]" ], @@ -4299,9 +4316,6 @@ "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ "" ], - "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location.\n\n This chart is being deprecated and we recommend checking out Pivot Table V2 instead!": [ - "" - ], "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ "" ], @@ -4316,6 +4330,9 @@ ], "User query": ["User query"], "Username": ["Gebruikersnaam"], + "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ + "" + ], "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ "" ], @@ -4847,6 +4864,7 @@ "e.g. xy12345.us-east-2.aws": [""], "e.g., a \"user id\" column": [""], "edit mode": [""], + "error dark": [""], "every": ["elke"], "every day of the month": ["elke dag van de maand"], "every day of the week": ["elke dag van de week"], @@ -4860,7 +4878,6 @@ "for more information on how to structure your URI.": [""], "function type icon": [""], "geohash (square)": [""], - "green": [""], "heatmap: values are normalized across the entire heatmap": [""], "here": [""], "hour": ["uur"], @@ -4923,7 +4940,6 @@ "query": ["query"], "reboot": ["herstart"], "recents": [""], - "red": [""], "report": ["rapport"], "reports": ["rapporten"], "restore zoom": [""], @@ -4956,7 +4972,6 @@ "y": [""], "y: values are normalized within each row": [""], "year": ["jaar"], - "yellow": [""], "zoom area": [""] } } diff --git a/superset/translations/nl/LC_MESSAGES/messages.po b/superset/translations/nl/LC_MESSAGES/messages.po index 9de17f9bd9..3093461613 100644 --- a/superset/translations/nl/LC_MESSAGES/messages.po +++ b/superset/translations/nl/LC_MESSAGES/messages.po @@ -21,7 +21,7 @@ msgid "" msgstr "" "Project-Id-Version: Superset VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-04-07 19:09+0200\n" +"POT-Creation-Date: 2023-05-23 16:30-0300\n" "PO-Revision-Date: 2022-02-25 11:59+0100\n" "Last-Translator: FULL NAME \n" "Language: nl\n" @@ -47,7 +47,7 @@ msgstr "" "\n" " " -#: superset/reports/notifications/email.py:88 +#: superset/reports/notifications/email.py:89 #, python-format msgid "" "\n" @@ -69,12 +69,12 @@ msgid "" "in the GeoJSON" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:364 +#: superset-frontend/src/explore/components/SaveModal.tsx:399 #, fuzzy msgid " a dashboard OR " msgstr "Dashboard opslaan" -#: superset-frontend/src/explore/components/SaveModal.tsx:366 +#: superset-frontend/src/explore/components/SaveModal.tsx:401 #, fuzzy msgid " a new one" msgstr "Gewijzigd op" @@ -105,7 +105,7 @@ msgid "" " database/column name level via the extra parameter." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:334 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:340 #, fuzzy msgid " to add calculated columns" msgstr "Berekende kolommen" @@ -120,8 +120,8 @@ msgstr "Meeteenheid toevoegen" msgid " to edit or add columns and metrics." msgstr "%s kolom(men) en meeteenhe(i)d(en)" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:323 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:358 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:364 msgid " to mark a column as a time column" msgstr "" @@ -129,7 +129,7 @@ msgstr "" msgid " to open SQL Lab. From there you can save the query as a dataset." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:333 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 msgid " to visualize your data." msgstr "" @@ -137,7 +137,7 @@ msgstr "" msgid "!= (Is not equal)" msgstr "!= (Is niet gelijk)" -#: superset/security/analytics_db_safety.py:44 +#: superset/security/analytics_db_safety.py:48 #, python-format msgid "%(dialect)s cannot be used as a data source for security reasons." msgstr "" @@ -152,7 +152,7 @@ msgid "" "%(issues)s" msgstr "" -#: superset/reports/notifications/email.py:168 +#: superset/reports/notifications/email.py:171 #, python-format msgid "%(name)s.csv" msgstr "%(name)s.csv" @@ -184,14 +184,14 @@ msgstr "" "Onlangs bekeken grafieken, dashboards, en opgeslagen queries zullen hier " "verschijnen" -#: superset/reports/notifications/email.py:177 +#: superset/reports/notifications/email.py:180 #, python-format msgid "%(prefix)s %(title)s" msgstr "%(prefix)s %(title)s" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:345 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:363 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:377 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:338 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:356 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:370 #, python-format msgid "%(rows)d rows returned" msgstr "" @@ -213,19 +213,19 @@ msgid_plural "" msgstr[0] "%(suggestion)s in plaats van “%(undefinedParameter)s?”" msgstr[1] "" -#: superset/views/core.py:384 +#: superset/views/core.py:385 #, python-format msgid "" "%(user)s was granted the role %(role)s that gives access to the " "%(datasource)s" msgstr "%(user)s kreeg de rol %(role)s die toegang geeft tot de %(datasource)s" -#: superset/views/core.py:2672 +#: superset/views/core.py:2709 #, python-format msgid "%(user)s's profile" msgstr "%(user)s’s profiel" -#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2327 +#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2369 #, python-format msgid "" "%(validator)s was unable to check your query.\n" @@ -242,25 +242,25 @@ msgid "%s Error" msgstr "%s Fout" #: superset-frontend/src/components/ImportModal/index.tsx:298 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1300 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1355 #, fuzzy, python-format msgid "%s PASSWORD" msgstr "Wachtwoord" #: superset-frontend/src/components/ImportModal/index.tsx:318 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1318 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1373 #, python-format msgid "%s SSH TUNNEL PASSWORD" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:341 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1336 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1391 #, python-format msgid "%s SSH TUNNEL PRIVATE KEY" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:363 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1356 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1411 #, python-format msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" msgstr "" @@ -270,17 +270,17 @@ msgstr "" msgid "%s Selected" msgstr "%s Geselecteerd" -#: superset-frontend/src/pages/DatasetList/index.tsx:808 +#: superset-frontend/src/pages/DatasetList/index.tsx:830 #, python-format msgid "%s Selected (%s Physical, %s Virtual)" msgstr "%s Geselecteerd (%s Fysiek, %s Virtueel)" -#: superset-frontend/src/pages/DatasetList/index.tsx:801 +#: superset-frontend/src/pages/DatasetList/index.tsx:823 #, python-format msgid "%s Selected (Physical)" msgstr "%s Geselecteerd (Fysiek)" -#: superset-frontend/src/pages/DatasetList/index.tsx:794 +#: superset-frontend/src/pages/DatasetList/index.tsx:816 #, python-format msgid "%s Selected (Virtual)" msgstr "%s Geselecteerd (Virtueel)" @@ -290,8 +290,8 @@ msgstr "%s Geselecteerd (Virtueel)" msgid "%s aggregates(s)" msgstr "%s aggrega(a)t(en)" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:274 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:371 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:280 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:377 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:346 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 #, python-format @@ -330,8 +330,8 @@ msgstr[1] "" msgid "%s saved metric(s)" msgstr "%s opgeslagen meeteenhe(i)d(en)" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:636 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:652 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:639 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:655 #, fuzzy, python-format msgid "%s updated" msgstr "Laatst bijgewerkt %s" @@ -348,7 +348,7 @@ msgstr "%s%s" msgid "%s-%s of %s" msgstr "%s-%s van %s" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:115 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:116 msgid "(Removed)" msgstr "(Verwijderd)" @@ -398,22 +398,22 @@ msgstr "" msgid "+ %s more" msgstr "" -#: superset/views/database/forms.py:153 +#: superset/views/database/forms.py:163 msgid "," msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:656 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:652 msgid "" "-- Note: Unless you save your query, these tabs will NOT persist if you " "clear your cookies or change browsers.\n" "\n" msgstr "" -#: superset/views/database/forms.py:154 +#: superset/views/database/forms.py:164 msgid "." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:791 +#: superset-frontend/src/pages/DatasetList/index.tsx:813 msgid "0 Selected" msgstr "0 Geselecteerd" @@ -513,7 +513,7 @@ msgstr "Frequentie vernieuwen" msgid "1 year start frequency" msgstr "Frequentie vernieuwen" -#: superset/db_engine_specs/base.py:101 +#: superset/db_engine_specs/base.py:102 msgid "10 minute" msgstr "10 minuten" @@ -529,7 +529,7 @@ msgstr "week" msgid "104 weeks ago" msgstr "" -#: superset/db_engine_specs/base.py:102 +#: superset/db_engine_specs/base.py:103 msgid "15 minute" msgstr "15 minuten" @@ -649,7 +649,7 @@ msgstr "30 dagen" msgid "30 days ago" msgstr "30 dagen" -#: superset/db_engine_specs/base.py:103 +#: superset/db_engine_specs/base.py:104 msgid "30 minute" msgstr "" @@ -658,7 +658,7 @@ msgstr "" msgid "30 minutes" msgstr "30 minuten" -#: superset/db_engine_specs/base.py:98 +#: superset/db_engine_specs/base.py:99 msgid "30 second" msgstr "" @@ -678,7 +678,7 @@ msgstr "" msgid "4 weeks (freq=4W-MON)" msgstr "" -#: superset/db_engine_specs/base.py:100 +#: superset/db_engine_specs/base.py:101 msgid "5 minute" msgstr "5 minuten" @@ -687,7 +687,7 @@ msgstr "5 minuten" msgid "5 minutes" msgstr "5 minuten" -#: superset/db_engine_specs/base.py:97 +#: superset/db_engine_specs/base.py:98 msgid "5 second" msgstr "" @@ -716,7 +716,7 @@ msgstr "Week beginnend op maandag" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 #: superset-frontend/src/explore/controls.jsx:261 -#: superset/db_engine_specs/base.py:105 +#: superset/db_engine_specs/base.py:106 msgid "6 hour" msgstr "" @@ -803,20 +803,20 @@ msgstr ">= (Groter of gelijk)" msgid "A Big Number" msgstr "" -#: superset/views/database/forms.py:184 +#: superset/views/database/forms.py:194 #, fuzzy msgid "A comma separated list of columns that should be parsed as dates" msgstr "" "Een door komma’s gescheiden lijst van kolommen die als datums moeten " "worden geparseerd." -#: superset/views/database/forms.py:367 +#: superset/views/database/forms.py:377 msgid "A comma separated list of columns that should be parsed as dates." msgstr "" "Een door komma’s gescheiden lijst van kolommen die als datums moeten " "worden geparseerd." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:433 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 #, fuzzy msgid "A comma-separated list of schemas that files are allowed to upload to." msgstr "" @@ -827,6 +827,12 @@ msgstr "" msgid "A database with the same name already exists." msgstr "" +#: superset/views/database/forms.py:145 +msgid "" +"A dictionary with column names and their data types if you need to change" +" the defaults. Example: {\"user_id\":\"integer\"}" +msgstr "" + #: superset/views/dynamic_plugins.py:52 msgid "" "A full URL pointing to the location of the built plugin (could be hosted " @@ -892,16 +898,16 @@ msgstr "" msgid "A report named \"%(name)s\" already exists" msgstr "Dataset %(name)s bestaat al" -#: superset-frontend/src/explore/components/SaveModal.tsx:333 +#: superset-frontend/src/explore/components/SaveModal.tsx:368 msgid "A reusable dataset will be saved with your chart." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:309 +#: superset-frontend/src/components/ReportModal/index.tsx:308 msgid "A screenshot of the dashboard will be sent to your email at" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 -#: superset/connectors/sqla/views.py:458 +#: superset/connectors/sqla/views.py:365 msgid "" "A set of parameters that become available in the query using Jinja " "templating syntax" @@ -947,8 +953,8 @@ msgstr "TOEPASSEN" msgid "APR" msgstr "APR" -#: superset-frontend/src/pages/DatabaseList/index.tsx:312 -#: superset-frontend/src/pages/DatabaseList/index.tsx:478 +#: superset-frontend/src/pages/DatabaseList/index.tsx:323 +#: superset-frontend/src/pages/DatabaseList/index.tsx:489 msgid "AQE" msgstr "AQE" @@ -975,7 +981,7 @@ msgstr "Over" msgid "Access" msgstr "Toegang" -#: superset/initialization/__init__.py:431 +#: superset/initialization/__init__.py:425 msgid "Access requests" msgstr "Toegangsverzoeken" @@ -987,7 +993,7 @@ msgstr "" msgid "Access token" msgstr "" -#: superset/views/core.py:317 +#: superset/views/core.py:318 msgid "Access was requested" msgstr "Toegang werd gevraagd" @@ -995,7 +1001,7 @@ msgstr "Toegang werd gevraagd" msgid "Action" msgstr "Actie" -#: superset/initialization/__init__.py:393 +#: superset/initialization/__init__.py:387 msgid "Action Log" msgstr "Actie Log" @@ -1006,9 +1012,10 @@ msgstr "Actie Log" #: superset-frontend/src/pages/ChartList/index.tsx:569 #: superset-frontend/src/pages/CssTemplateList/index.tsx:229 #: superset-frontend/src/pages/DashboardList/index.tsx:477 -#: superset-frontend/src/pages/DatabaseList/index.tsx:448 -#: superset-frontend/src/pages/DatasetList/index.tsx:488 +#: superset-frontend/src/pages/DatabaseList/index.tsx:459 +#: superset-frontend/src/pages/DatasetList/index.tsx:499 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:327 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:216 #: superset-frontend/src/pages/SavedQueryList/index.tsx:437 #: superset-frontend/src/pages/Tags/index.tsx:171 msgid "Actions" @@ -1041,18 +1048,19 @@ msgstr "Nul waarden" msgid "Actual values" msgstr "Nul waarden" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:35 -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 #: superset-frontend/src/explore/controls.jsx:78 #: superset-frontend/src/explore/controls.jsx:101 msgid "Adaptive formatting" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:229 +#: superset-frontend/src/components/ReportModal/index.tsx:228 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 #: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 #: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 msgid "Add" msgstr "Voeg toe" @@ -1072,7 +1080,7 @@ msgstr "Voeg CSS template toe" msgid "Add Chart" msgstr "Voeg grafiek toe" -#: superset/connectors/sqla/views.py:74 +#: superset/connectors/sqla/views.py:73 msgid "Add Column" msgstr "Kolom toevoegen" @@ -1088,7 +1096,7 @@ msgstr "Voeg Database toe" msgid "Add Log" msgstr "Voeg Log toe" -#: superset/connectors/sqla/views.py:209 +#: superset/connectors/sqla/views.py:208 msgid "Add Metric" msgstr "Voeg meeteenheid toe" @@ -1096,9 +1104,9 @@ msgstr "Voeg meeteenheid toe" msgid "Add Report" msgstr "" -#: superset/connectors/sqla/views.py:292 -msgid "Add Row level security filter" -msgstr "Voeg beveiligingsfilter op rijniveau toe" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +msgid "Add Rule" +msgstr "" #: superset/views/sql_lab/views.py:54 msgid "Add Saved Query" @@ -1113,12 +1121,12 @@ msgstr "Voeg een Plugin toe" msgid "Add a dataset" msgstr "Voeg dataset toe" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:262 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:272 #, fuzzy msgid "Add a new tab" msgstr "Zoekopdracht in een nieuw tabblad" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:286 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:296 msgid "Add a new tab to create SQL Query" msgstr "" @@ -1149,24 +1157,28 @@ msgstr "Aantekening toevoegen" msgid "Add annotation layer" msgstr "Aantekeningenlaag toevoegen" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:300 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:306 msgid "Add calculated columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:297 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:303 msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:167 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:197 #, fuzzy msgid "Add cross-filter" msgstr "Filter toevoegen" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 +msgid "Add custom scoping" +msgstr "" + #: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 msgid "Add delivery method" msgstr "Leveringswijze toevoegen" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:330 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 #, fuzzy msgid "Add extra connection information." msgstr "Bijkomende informatie" @@ -1239,7 +1251,7 @@ msgstr "Het id van de actieve grafiek" msgid "Add the name of the dashboard" msgstr "Opslaan en naar dashboard gaan" -#: superset-frontend/src/explore/components/SaveModal.tsx:351 +#: superset-frontend/src/explore/components/SaveModal.tsx:386 msgid "Add to dashboard" msgstr "Toevoegen aan het dashboard" @@ -1264,7 +1276,7 @@ msgstr[1] "" msgid "Additional Parameters" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1787 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1843 msgid "Additional fields may be required" msgstr "" @@ -1276,16 +1288,16 @@ msgstr "Bijkomende informatie" msgid "Additional metadata" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:54 msgid "Additional padding for legend." msgstr "" -#: superset/db_engine_specs/base.py:1847 -#: superset/db_engine_specs/clickhouse.py:214 +#: superset/db_engine_specs/base.py:1885 +#: superset/db_engine_specs/clickhouse.py:221 msgid "Additional parameters" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:444 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 msgid "Additional settings." msgstr "" @@ -1300,17 +1312,18 @@ msgstr "" msgid "Additive" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:75 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 msgid "Adjust how this database will interact with SQL Lab." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:221 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:231 msgid "Adjust performance settings of this database." msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:132 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:91 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:127 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:93 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 @@ -1319,7 +1332,7 @@ msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:939 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:771 #: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1811 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 msgid "Advanced" msgstr "Geavanceerd" @@ -1419,7 +1432,6 @@ msgid "" "produce the cluster label." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:63 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:202 msgid "" "Aggregate function to apply when pivoting and computing the total rows " @@ -1432,12 +1444,15 @@ msgid "" " values to a dynamic color scale" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +#, fuzzy +msgid "Aggregation" +msgstr "aggregaat" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 msgid "Aggregation function" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:593 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:162 #, fuzzy msgid "Alert" @@ -1517,7 +1532,7 @@ msgstr "Waarschuwing validator configuratiefout." msgid "Alerts" msgstr "Waarschuwingen" -#: superset/initialization/__init__.py:410 +#: superset/initialization/__init__.py:404 msgid "Alerts & Reports" msgstr "Waarschuwingen en rapporten" @@ -1543,8 +1558,8 @@ msgstr "" #: superset-frontend/src/pages/DashboardList/index.tsx:528 #: superset-frontend/src/pages/DashboardList/index.tsx:550 #: superset-frontend/src/pages/DashboardList/index.tsx:600 -#: superset-frontend/src/pages/DatabaseList/index.tsx:465 -#: superset-frontend/src/pages/DatabaseList/index.tsx:485 +#: superset-frontend/src/pages/DatabaseList/index.tsx:476 +#: superset-frontend/src/pages/DatabaseList/index.tsx:496 #: superset-frontend/src/pages/Home/index.tsx:205 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:354 #: superset-frontend/src/pages/SavedQueryList/index.tsx:453 @@ -1553,7 +1568,7 @@ msgid "All" msgstr "Alle" #: superset-frontend/src/pages/AllEntities/index.tsx:76 -#: superset/initialization/__init__.py:376 +#: superset/initialization/__init__.py:370 #, fuzzy msgid "All Entities" msgstr "Alle filters" @@ -1565,13 +1580,18 @@ msgstr "Alle filters" msgid "All Text" msgstr "Alle tekst" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 #: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:69 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 #: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:85 #: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:128 msgid "All charts" msgstr "Alle grafieken" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 +msgid "All charts/global scoping" +msgstr "" + #: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 msgid "All filters" msgstr "Alle filters" @@ -1581,7 +1601,7 @@ msgstr "Alle filters" msgid "All filters (%(filterCount)d)" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:49 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 msgid "All panels" msgstr "" @@ -1589,7 +1609,7 @@ msgstr "" msgid "All panels with this column will be affected by this filter" msgstr "Alle panelen met deze kolom zullen door deze filter worden beïnvloed" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:107 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 #: superset/views/database/mixins.py:184 msgid "Allow CREATE TABLE AS" msgstr "Sta CREATE TABLE AS toe" @@ -1598,7 +1618,7 @@ msgstr "Sta CREATE TABLE AS toe" msgid "Allow CREATE TABLE AS option in SQL Lab" msgstr "Sta de CREATE TABLE AS optie toe in SQL Lab" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:121 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 #: superset/views/database/mixins.py:185 msgid "Allow CREATE VIEW AS" msgstr "Sta CREATE VIEW AS toe" @@ -1611,7 +1631,7 @@ msgstr "Sta de CREATE VIEW AS optie toe in SQL Lab" msgid "Allow Csv Upload" msgstr "Csv upload toestaan" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 #: superset/views/database/mixins.py:186 msgid "Allow DML" msgstr "DML toestaan" @@ -1620,15 +1640,15 @@ msgstr "DML toestaan" msgid "Allow columns to be rearranged" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:110 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 msgid "Allow creation of new tables based on queries" msgstr "Aanmaken van nieuwe tabellen op basis van query’s mogelijk maken" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:124 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 msgid "Allow creation of new views based on queries" msgstr "Aanmaken van nieuwe views gebaseerd op queries toestaan" -#: superset-frontend/src/pages/DatabaseList/index.tsx:329 +#: superset-frontend/src/pages/DatabaseList/index.tsx:340 msgid "Allow data manipulation language" msgstr "Sta data manipulatie taal toe" @@ -1638,12 +1658,12 @@ msgid "" "their changes won't persist for the next time they open the chart." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:411 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:421 #, fuzzy msgid "Allow file uploads to database" msgstr "Selecteer een Excel-bestand dat moet worden geüpload naar een database." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:157 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 msgid "" "Allow manipulation of the database using non-SELECT statements such as " "UPDATE, DELETE, CREATE, etc." @@ -1663,11 +1683,11 @@ msgstr "" msgid "Allow sending multiple polygons as a filter event" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:186 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 msgid "Allow this database to be explored" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:91 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 msgid "Allow this database to be queried in SQL Lab" msgstr "Sta toe dat deze database wordt opgevraagd in SQL Lab" @@ -1709,20 +1729,20 @@ msgstr "Er is een fout opgetreden" msgid "An alert named \"%(name)s\" already exists" msgstr "Dataset %(name)s bestaat al" -#: superset/common/query_context_processor.py:326 superset/viz.py:1447 +#: superset/common/query_context_processor.py:326 superset/viz.py:1352 msgid "" "An enclosed time range (both start and end) must be specified when using " "a Time Comparison." msgstr "" -#: superset/databases/schemas.py:285 +#: superset/databases/schemas.py:289 msgid "" "An engine must be specified when passing individual parameters to a " "database." msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:791 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:141 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:183 #: superset-frontend/src/components/Tags/utils.tsx:67 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:127 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:109 @@ -1737,7 +1757,7 @@ msgstr "Er is een fout opgetreden" msgid "An error occurred" msgstr "Er is een fout opgetreden" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:317 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:323 msgid "An error occurred saving dataset" msgstr "Er is een fout opgetreden bij het opslaan van dataset" @@ -1748,7 +1768,7 @@ msgstr "Er is een fout opgetreden bij het opslaan van dataset" msgid "An error occurred while accessing the value." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1368 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1360 msgid "" "An error occurred while collapsing the table schema. Please contact your " "administrator." @@ -1756,13 +1776,13 @@ msgstr "" "Er is een fout opgetreden tijdens het samenvouwen van het tabelschema. " "Neem contact op met uw beheerder." -#: superset-frontend/src/views/CRUD/hooks.ts:304 +#: superset-frontend/src/views/CRUD/hooks.ts:308 #, python-format msgid "An error occurred while creating %ss: %s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1529 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1551 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1530 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1552 msgid "An error occurred while creating the data source" msgstr "Er is een fout opgetreden bij het aanmaken van de gegevensbron" @@ -1778,7 +1798,7 @@ msgstr "" msgid "An error occurred while deleting the value." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1344 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1336 msgid "" "An error occurred while expanding the table schema. Please contact your " "administrator." @@ -1792,8 +1812,8 @@ msgid "An error occurred while fetching %s info: %s" msgstr "" #: superset-frontend/src/views/CRUD/hooks.ts:174 -#: superset-frontend/src/views/CRUD/hooks.ts:261 -#: superset-frontend/src/views/CRUD/hooks.ts:349 +#: superset-frontend/src/views/CRUD/hooks.ts:265 +#: superset-frontend/src/views/CRUD/hooks.ts:353 #, python-format msgid "An error occurred while fetching %ss: %s" msgstr "" @@ -1849,7 +1869,7 @@ msgstr "" msgid "An error occurred while fetching dashboards: %s" msgstr "Er is een fout opgetreden tijdens het ophalen van dashboards: %s" -#: superset-frontend/src/pages/DatabaseList/index.tsx:145 +#: superset-frontend/src/pages/DatabaseList/index.tsx:156 #, python-format msgid "An error occurred while fetching database related data: %s" msgstr "" @@ -1870,32 +1890,32 @@ msgstr "" "Er is een fout opgetreden bij het ophalen van dataset datasource waarden:" " %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:510 +#: superset-frontend/src/pages/DatasetList/index.tsx:521 #, python-format msgid "An error occurred while fetching dataset owner values: %s" msgstr "" "Er is een fout opgetreden tijdens het ophalen van de eigenaarswaarden van" " de dataset: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:222 +#: superset-frontend/src/pages/DatasetList/index.tsx:233 msgid "An error occurred while fetching dataset related data" msgstr "" "Er is een fout opgetreden tijdens het ophalen van dataset gerelateerde " "gegevens" -#: superset-frontend/src/pages/DatasetList/index.tsx:242 +#: superset-frontend/src/pages/DatasetList/index.tsx:253 #, python-format msgid "An error occurred while fetching dataset related data: %s" msgstr "" "Er is een fout opgetreden tijdens het ophalen van gegevens over de " "dataset: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:530 +#: superset-frontend/src/pages/DatasetList/index.tsx:541 #, python-format msgid "An error occurred while fetching datasets: %s" msgstr "Er is een fout opgetreden bij het ophalen van datasets: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1581 +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx:120 msgid "An error occurred while fetching function names." msgstr "Er is een fout opgetreden bij het ophalen van functienamen." @@ -1906,25 +1926,25 @@ msgstr "" "Er is een fout opgetreden tijdens het ophalen van de grafiek eigenaars " "waarden: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:546 +#: superset-frontend/src/pages/DatasetList/index.tsx:557 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:378 #: superset-frontend/src/pages/SavedQueryList/index.tsx:480 #, python-format msgid "An error occurred while fetching schema values: %s" msgstr "Er is een fout opgetreden tijdens het ophalen van schemawaarden: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:799 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:795 msgid "An error occurred while fetching tab state" msgstr "Er is een fout opgetreden tijdens het ophalen van de tabbladstatus" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1199 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1224 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1191 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1216 msgid "An error occurred while fetching table metadata" msgstr "" "Er is een fout opgetreden tijdens het ophalen van de metagegevens van de " "tabel" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1296 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1288 msgid "" "An error occurred while fetching table metadata. Please contact your " "administrator." @@ -1944,7 +1964,7 @@ msgstr "" msgid "An error occurred while fetching user values: %s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:835 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:831 msgid "" "An error occurred while hiding the left bar. Please contact your " "administrator." @@ -1952,17 +1972,22 @@ msgstr "" "Er is een fout opgetreden tijdens het verbergen van de linker balk. Neem " "contact op met uw beheerder." -#: superset-frontend/src/views/CRUD/hooks.ts:502 -#: superset-frontend/src/views/CRUD/hooks.ts:518 +#: superset-frontend/src/views/CRUD/hooks.ts:506 +#: superset-frontend/src/views/CRUD/hooks.ts:522 #, python-format msgid "An error occurred while importing %s: %s" msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:135 +#, fuzzy +msgid "An error occurred while loading dashboard information." +msgstr "Er is een fout opgetreden tijdens het ophalen van dashboards: %s" + #: superset-frontend/src/components/Chart/chartAction.js:579 msgid "An error occurred while loading the SQL" msgstr "Er is een fout opgetreden bij het laden van de SQL" -#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:332 +#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:325 msgid "An error occurred while opening Explore" msgstr "" @@ -1975,15 +2000,15 @@ msgstr "Er is een fout opgetreden bij het laden van de SQL" msgid "An error occurred while pruning logs " msgstr "Er is een fout opgetreden tijdens opschonen van de logbestanden " -#: superset-frontend/src/SqlLab/actions/sqlLab.js:892 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:888 msgid "An error occurred while removing query. Please contact your administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:857 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:853 msgid "An error occurred while removing tab. Please contact your administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1396 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1388 msgid "" "An error occurred while removing the table schema. Please contact your " "administrator." @@ -1996,7 +2021,7 @@ msgstr "" msgid "An error occurred while rendering the visualization: %s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:710 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:706 msgid "" "An error occurred while setting the active tab. Please contact your " "administrator." @@ -2004,7 +2029,7 @@ msgstr "" "Er is een fout opgetreden bij het instellen van het actieve tabblad. Neem" " contact op met uw beheerder." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:975 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:967 msgid "" "An error occurred while setting the tab autorun. Please contact your " "administrator." @@ -2012,7 +2037,7 @@ msgstr "" "Er is een fout opgetreden bij het instellen van het tabblad autorun. Neem" " contact op met uw beheerder." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:915 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:911 msgid "" "An error occurred while setting the tab database ID. Please contact your " "administrator." @@ -2020,8 +2045,8 @@ msgstr "" "Er is een fout opgetreden bij het instellen van de database-ID van het " "tabblad. Neem contact op met uw beheerder." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1004 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1128 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:996 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1120 #, fuzzy msgid "" "An error occurred while setting the tab name. Please contact your " @@ -2030,7 +2055,7 @@ msgstr "" "Er is een fout opgetreden bij het instellen van de tabbladtitel. Neem " "contact op met uw beheerder." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:946 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:942 msgid "" "An error occurred while setting the tab schema. Please contact your " "administrator." @@ -2038,7 +2063,7 @@ msgstr "" "Er is een fout opgetreden bij het instellen van het tabblad schema. Neem " "contact op met uw beheerder." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1154 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1146 msgid "" "An error occurred while setting the tab template parameters. Please " "contact your administrator." @@ -2048,14 +2073,14 @@ msgstr "" msgid "An error occurred while starring this chart" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:251 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:297 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:255 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:301 msgid "" "An error occurred while storing the latest query id in the backend. " "Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1095 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1087 msgid "" "An error occurred while storing your query in the backend. To avoid " "losing your changes, please save your query using the \"Save Query\" " @@ -2077,7 +2102,7 @@ msgstr "Er is een fout opgetreden tijdens het ophalen van schemawaarden: %s" msgid "An unexpected error occurred" msgstr "Er is een fout opgetreden" -#: superset/views/core.py:734 +#: superset/views/core.py:745 msgid "An unknown error occurred. Please contact your Superset administrator" msgstr "" "Er is een onbekende fout opgetreden. Neem contact op met uw Superset-" @@ -2111,7 +2136,7 @@ msgstr "Aantekeningenlagen" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:127 -#: superset/initialization/__init__.py:420 +#: superset/initialization/__init__.py:414 msgid "Annotation Layers" msgstr "Aantekeningen Lagen" @@ -2260,7 +2285,8 @@ msgstr "Aantekeningen konden niet worden verwijderd." #: superset-frontend/src/pages/DashboardList/index.tsx:504 #: superset-frontend/src/pages/DashboardList/index.tsx:572 #: superset-frontend/src/pages/DashboardList/index.tsx:586 -#: superset-frontend/src/pages/DatasetList/index.tsx:570 +#: superset-frontend/src/pages/DatasetList/index.tsx:581 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:260 msgid "Any" msgstr "Elke" @@ -2277,18 +2303,18 @@ msgstr "" "Elk kleurenpalet dat hier wordt geselecteerd zal de kleuren overschrijven" " die worden toegepast op de individuele grafieken van dit dashboard" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:953 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1008 msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:967 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1022 msgid "" "Any databases that allow connections via SQL Alchemy URIs can be added. " "Learn about how to connect a database driver " msgstr "" -#: superset/views/database/forms.py:169 superset/views/database/forms.py:326 -#: superset/views/database/forms.py:457 +#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 +#: superset/views/database/forms.py:467 msgid "Append" msgstr "Voeg toe" @@ -2307,7 +2333,7 @@ msgstr "Toegepaste filters (%d)" msgid "Applied filters: %s" msgstr "Toegepaste filters (%d)" -#: superset/viz.py:246 +#: superset/viz.py:250 msgid "" "Applied rolling window did not return any data. Please make sure the " "source query satisfies the minimum periods defined in the rolling window." @@ -2316,11 +2342,15 @@ msgstr "" #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:856 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:228 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:476 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:479 msgid "Apply" msgstr "Toepassen" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:100 +msgid "Apply conditional color formatting to metric" +msgstr "" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:386 msgid "Apply conditional color formatting to metrics" msgstr "" @@ -2368,6 +2398,7 @@ msgstr "Weet je zeker dat je wilt annuleren?" #: superset-frontend/src/pages/ChartList/index.tsx:509 #: superset-frontend/src/pages/DashboardList/index.tsx:418 #: superset-frontend/src/pages/DashboardList/index.tsx:739 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:173 #: superset-frontend/src/pages/Tags/index.tsx:144 msgid "Are you sure you want to delete" msgstr "Weet je zeker dat je wilt verwijderen" @@ -2394,7 +2425,7 @@ msgstr "Weet je zeker dat je de geselecteerde grafieken wilt verwijderen?" msgid "Are you sure you want to delete the selected dashboards?" msgstr "Weet je zeker dat je de geselecteerde dashboards wilt verwijderen?" -#: superset-frontend/src/pages/DatasetList/index.tsx:741 +#: superset-frontend/src/pages/DatasetList/index.tsx:763 msgid "Are you sure you want to delete the selected datasets?" msgstr "Weet je zeker dat je de geselecteerde datasets wilt verwijderen?" @@ -2406,6 +2437,11 @@ msgstr "Weet je zeker dat je de geselecteerde lagen wilt verwijderen?" msgid "Are you sure you want to delete the selected queries?" msgstr "Weet je zeker dat je de geselecteerde query’s wilt verwijderen?" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:305 +#, fuzzy +msgid "Are you sure you want to delete the selected rules?" +msgstr "Weet je zeker dat je de geselecteerde lagen wilt verwijderen?" + #: superset-frontend/src/pages/Tags/index.tsx:282 #, fuzzy msgid "Are you sure you want to delete the selected tags?" @@ -2415,7 +2451,7 @@ msgstr "Weet u zeker dat u de geselecteerde %s wilt verwijderen?" msgid "Are you sure you want to delete the selected templates?" msgstr "Weet je zeker dat je de geselecteerde sjablonen wilt verwijderen?" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:426 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:434 #, fuzzy msgid "Are you sure you want to overwrite this dataset?" msgstr "Weet je zeker dat je de geselecteerde datasets wilt verwijderen?" @@ -2424,7 +2460,7 @@ msgstr "Weet je zeker dat je de geselecteerde datasets wilt verwijderen?" msgid "Are you sure you want to proceed?" msgstr "Weet je zeker dat je door wilt gaan?" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:174 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:216 msgid "Are you sure you want to save and apply changes?" msgstr "Weet u zeker dat u de wijzigingen wilt opslaan en toepassen?" @@ -2464,7 +2500,7 @@ msgstr "" msgid "Assign a set of parameters as" msgstr "Dataset parameters zijn ongeldig." -#: superset/connectors/sqla/views.py:476 +#: superset/connectors/sqla/views.py:383 msgid "Associated Charts" msgstr "Gerelateerde grafieken" @@ -2472,9 +2508,9 @@ msgstr "Gerelateerde grafieken" msgid "Async Execution" msgstr "Async uitvoering" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:295 -#: superset-frontend/src/pages/DatabaseList/index.tsx:309 -#: superset-frontend/src/pages/DatabaseList/index.tsx:475 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:305 +#: superset-frontend/src/pages/DatabaseList/index.tsx:320 +#: superset-frontend/src/pages/DatabaseList/index.tsx:486 msgid "Asynchronous query execution" msgstr "Asynchrone uitvoering van query’s" @@ -2492,7 +2528,7 @@ msgstr "op" msgid "Auto Zoom" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:530 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 msgid "Autocomplete" msgstr "Autocomplete" @@ -2518,7 +2554,7 @@ msgstr "" msgid "Average" msgstr "Beheer" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:233 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 #, fuzzy msgid "Average value" msgstr "Uitgestuurde waarden" @@ -2554,10 +2590,10 @@ msgstr "" msgid "BOOLEAN" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:366 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1051 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1068 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1088 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:373 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1123 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1143 msgid "Back" msgstr "" @@ -2567,7 +2603,7 @@ msgstr "" msgid "Back to all" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:300 +#: superset-frontend/src/pages/DatabaseList/index.tsx:311 #: superset/views/database/mixins.py:200 msgid "Backend" msgstr "Backend" @@ -2581,7 +2617,7 @@ msgstr "" msgid "Bad formula." msgstr "" -#: superset/viz.py:2509 superset/viz.py:2545 +#: superset/viz.py:2452 superset/viz.py:2492 msgid "Bad spatial key" msgstr "Ongeldige ruimtelijke sleutel" @@ -2615,6 +2651,12 @@ msgstr "" msgid "Bar orientation" msgstr "aantekening" +#: superset-frontend/src/features/rls/constants.ts:28 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:263 +#, fuzzy +msgid "Base" +msgstr "database" + #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:239 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 msgid "Base layer map style" @@ -2628,12 +2670,12 @@ msgstr "Gebaseerd op een meeteenheid" msgid "Based on granularity, number of time periods to compare against" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:228 msgid "Based on what should series be ordered on the chart and legend" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:854 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1723 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1779 msgid "Basic" msgstr "Berekende kolom [%s] vereist een uitdrukking" @@ -2664,7 +2706,7 @@ msgid "Before" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:37 -#: superset/viz.py:1286 +#: superset/viz.py:1186 msgid "Big Number" msgstr "Groot Getal" @@ -2673,11 +2715,11 @@ msgid "Big Number Font Size" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:36 -#: superset/viz.py:1252 +#: superset/viz.py:1150 msgid "Big Number with Trendline" msgstr "Groot getal met trendlijn" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 msgid "Bottom" msgstr "" @@ -2706,7 +2748,6 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:261 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:277 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:263 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:251 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:195 @@ -2725,6 +2766,24 @@ msgid "" " the axis range. It won't narrow the data's extent." msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 +msgid "" +"Bounds for the primary Y-axis. When left empty, the bounds are " +"dynamically defined based on the min/max of the data. Note that this " +"feature will only expand the axis range. It won't narrow the data's " +"extent." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:411 +msgid "" +"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" +" bounds are enabled. When left empty, the bounds are " +"dynamically defined\n" +" based on the min/max of the data. Note that this feature " +"will only expand\n" +" the axis range. It won't narrow the data's extent." +msgstr "" + #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:58 #: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/createMetadata.ts:27 @@ -2736,7 +2795,7 @@ msgid "Breakdowns" msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:32 -#: superset/viz.py:1171 +#: superset/viz.py:1065 msgid "Bubble Chart" msgstr "Bubbelgrafiek" @@ -2768,14 +2827,15 @@ msgstr "Herbouw" #: superset-frontend/src/pages/ChartList/index.tsx:789 #: superset-frontend/src/pages/CssTemplateList/index.tsx:262 #: superset-frontend/src/pages/DashboardList/index.tsx:662 -#: superset-frontend/src/pages/DatasetList/index.tsx:596 +#: superset-frontend/src/pages/DatasetList/index.tsx:607 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 #: superset-frontend/src/pages/SavedQueryList/index.tsx:177 #: superset-frontend/src/pages/Tags/index.tsx:267 msgid "Bulk select" msgstr "Selecteer in bulk" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 -#: superset/viz.py:1222 +#: superset/viz.py:1118 msgid "Bullet Chart" msgstr "Kogel diagram" @@ -2791,7 +2851,7 @@ msgstr "Kogel diagram" msgid "Business" msgstr "" -#: superset/connectors/sqla/views.py:165 +#: superset/connectors/sqla/views.py:164 msgid "Business Data Type" msgstr "" @@ -2822,16 +2882,16 @@ msgstr "" msgid "CANCEL" msgstr "ANNULEER" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1520 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1575 #, fuzzy msgid "CREATE DATASET" msgstr "Wijzig dataset" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:585 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:579 msgid "CREATE TABLE AS" msgstr "CREATE TABLE AS" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:596 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:590 msgid "CREATE VIEW AS" msgstr "CREATE VIEW AS" @@ -2857,7 +2917,7 @@ msgstr "CSS" msgid "CSS Styles" msgstr "" -#: superset/initialization/__init__.py:286 superset/views/css_templates.py:38 +#: superset/initialization/__init__.py:288 superset/views/css_templates.py:38 msgid "CSS Templates" msgstr "CSS-sjablonen" @@ -2891,7 +2951,7 @@ msgstr "CSS templates" msgid "CSV Upload" msgstr "CSV upload" -#: superset/views/database/views.py:287 +#: superset/views/database/views.py:290 #, python-format msgid "" "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " @@ -2900,19 +2960,19 @@ msgstr "" "CSV-bestand “%(csv_filename)s” geüpload naar tabel “%(table_name)s” in " "database “%(db_name)s”" -#: superset/views/database/views.py:160 +#: superset/views/database/views.py:161 msgid "CSV to Database configuration" msgstr "CSV naar Database configuratie" -#: superset-frontend/src/pages/DatabaseList/index.tsx:344 +#: superset-frontend/src/pages/DatabaseList/index.tsx:355 msgid "CSV upload" msgstr "CSV upload" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:130 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 msgid "CTAS & CVAS SCHEMA" msgstr "CTAS & CVAS SCHEMA" -#: superset/sql_lab.py:440 +#: superset/sql_lab.py:432 msgid "" "CTAS (create table as select) can only be run with a query where the last" " statement is a SELECT. Please make sure your query has a SELECT as its " @@ -2923,7 +2983,7 @@ msgstr "" msgid "CTAS Schema" msgstr "CTAS Schema" -#: superset/sql_lab.py:457 +#: superset/sql_lab.py:449 msgid "" "CVAS (create view as select) can only be run with a query with a single " "SELECT statement. Please make sure your query has only a SELECT " @@ -2938,7 +2998,7 @@ msgstr "" msgid "CVAS (create view as select) query is not a SELECT statement." msgstr "" -#: superset/connectors/sqla/views.py:486 superset/views/chart/mixin.py:76 +#: superset/connectors/sqla/views.py:393 superset/views/chart/mixin.py:76 msgid "Cache Timeout" msgstr "Cache Timeout" @@ -2957,16 +3017,16 @@ msgstr "Cache timeout" msgid "Cached" msgstr "cached" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:349 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:351 #, python-format msgid "Cached %s" msgstr "Cached %s" -#: superset/viz.py:562 +#: superset/viz.py:578 msgid "Cached value not found" msgstr "Cached waarde niet gevonden" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:53 msgid "Calculate contribution per series or row" msgstr "" @@ -2988,7 +3048,7 @@ msgid "Calculation type" msgstr "Soort berekening" #: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 -#: superset/viz.py:1080 +#: superset/viz.py:972 msgid "Calendar Heatmap" msgstr "Kalender Heatmap" @@ -3001,17 +3061,17 @@ msgstr "Kan bovenste tabblad niet in geneste tabbladen verplaatsen" msgid "Can select multiple values" msgstr "" -#: superset/viz.py:1810 +#: superset/viz.py:1727 msgid "Can't have overlap between Series and Breakdowns" msgstr "Overlapping tussen Series en Breakdowns is niet mogelijk" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:206 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:759 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:263 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:185 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 -#: superset-frontend/src/components/Modal/Modal.tsx:262 -#: superset-frontend/src/components/ReportModal/index.tsx:220 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:205 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:753 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:227 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:268 +#: superset-frontend/src/components/Modal/Modal.tsx:269 +#: superset-frontend/src/components/ReportModal/index.tsx:219 #: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:72 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:649 #: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 @@ -3019,14 +3079,14 @@ msgstr "Overlapping tussen Series en Breakdowns is niet mogelijk" #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:76 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 -#: superset-frontend/src/explore/components/SaveModal.tsx:379 +#: superset-frontend/src/explore/components/SaveModal.tsx:413 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:843 #: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 #: superset/templates/superset/request_access.html:34 msgid "Cancel" msgstr "Annuleer" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:314 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 msgid "Cancel query on window unload event" msgstr "" @@ -3042,7 +3102,7 @@ msgstr "" msgid "Cannot have multiple credentials for the SSH Tunnel" msgstr "" -#: superset/views/core.py:723 +#: superset/views/core.py:734 #, python-format msgid "" "Cannot import dashboard: %(db_error)s.\n" @@ -3109,7 +3169,7 @@ msgstr "" msgid "Category and Value" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:229 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:67 #, fuzzy msgid "Category name" msgstr "Query naam" @@ -3124,15 +3184,15 @@ msgstr "" msgid "Category, Value and Percentage" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:103 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 msgid "Cell Padding" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:117 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 msgid "Cell Radius" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 msgid "Cell Size" msgstr "" @@ -3140,7 +3200,7 @@ msgstr "" msgid "Cell bars" msgstr "" -#: superset-frontend/src/components/FilterableTable/index.tsx:431 +#: superset-frontend/src/components/FilterableTable/index.tsx:303 msgid "Cell content" msgstr "Cel inhoud" @@ -3152,6 +3212,7 @@ msgstr "" msgid "Center" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:33 #, fuzzy msgid "Centroid (Longitude and Latitude): " @@ -3174,7 +3235,7 @@ msgstr "Details certificering" #: superset-frontend/src/pages/ChartList/index.tsx:699 #: superset-frontend/src/pages/DashboardList/index.tsx:580 -#: superset-frontend/src/pages/DatasetList/index.tsx:564 +#: superset-frontend/src/pages/DatasetList/index.tsx:575 msgid "Certified" msgstr "" @@ -3205,7 +3266,7 @@ msgstr "" msgid "Change order of rows." msgstr "" -#: superset/connectors/sqla/views.py:478 +#: superset/connectors/sqla/views.py:385 msgid "Changed By" msgstr "Gewijzigd door" @@ -3254,7 +3315,7 @@ msgstr "Het is verboden deze grafiek te wijzigen" msgid "Changing this control takes effect instantly" msgstr "Het veranderen van deze controleknop heeft onmiddellijk effect" -#: superset/datasets/commands/exceptions.py:181 +#: superset/datasets/commands/exceptions.py:198 msgid "Changing this dataset is forbidden" msgstr "Veranderen van deze dataset is verboden" @@ -3272,15 +3333,16 @@ msgstr "Veranderen van deze dataset is verboden" msgid "Changing this report is forbidden" msgstr "Het is verboden dit rapport te wijzigen" -#: superset/views/database/forms.py:196 +#: superset/views/database/forms.py:206 #, fuzzy msgid "Character to interpret as decimal point" msgstr "Teken te interpreteren als decimaalteken." -#: superset/views/database/forms.py:375 +#: superset/views/database/forms.py:385 msgid "Character to interpret as decimal point." msgstr "Teken te interpreteren als decimaalteken." +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:51 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:449 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:405 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:69 @@ -3288,11 +3350,11 @@ msgstr "Teken te interpreteren als decimaalteken." #: superset-frontend/src/features/home/RightMenu.tsx:219 #: superset-frontend/src/pages/ChartList/index.tsx:369 #: superset-frontend/src/pages/ChartList/index.tsx:799 -#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:90 +#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 msgid "Chart" msgstr "Grafiek" -#: superset/views/core.py:1727 +#: superset/views/core.py:1762 #, python-format msgid "Chart %(id)s not found" msgstr "Grafiek %(id)s niet gevonden" @@ -3301,7 +3363,7 @@ msgstr "Grafiek %(id)s niet gevonden" msgid "Chart Cache Timeout" msgstr "Cache time-out" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:437 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:442 #, fuzzy, python-format msgid "Chart Data: %s" msgstr "Laatst bijgewerkt %s" @@ -3311,7 +3373,7 @@ msgstr "Laatst bijgewerkt %s" msgid "Chart ID" msgstr "Grafiek ID" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:53 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:55 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:61 @@ -3333,7 +3395,7 @@ msgstr "Grafiek ID" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:59 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:131 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:107 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:74 @@ -3378,34 +3440,34 @@ msgstr "Data bron" msgid "Chart Title" msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:127 +#: superset-frontend/src/explore/actions/saveModalActions.js:121 #, fuzzy, python-format msgid "Chart [%s] has been overwritten" msgstr "Grafiek [{}] is overschreven" -#: superset-frontend/src/explore/actions/saveModalActions.js:124 +#: superset-frontend/src/explore/actions/saveModalActions.js:118 #, fuzzy, python-format msgid "Chart [%s] has been saved" msgstr "Grafiek [{}] is opgeslagen" -#: superset-frontend/src/explore/actions/saveModalActions.js:145 +#: superset-frontend/src/explore/actions/saveModalActions.js:139 #, fuzzy, python-format msgid "Chart [%s] was added to dashboard [%s]" msgstr "Grafiek [{}] werd toegevoegd aan dashboard [{}]" -#: superset/views/core.py:1077 +#: superset/views/core.py:1099 msgid "Chart [{}] has been overwritten" msgstr "Grafiek [{}] is overschreven" -#: superset/views/core.py:1073 +#: superset/views/core.py:1095 msgid "Chart [{}] has been saved" msgstr "Grafiek [{}] is opgeslagen" -#: superset/views/core.py:1102 +#: superset/views/core.py:1124 msgid "Chart [{}] was added to dashboard [{}]" msgstr "Grafiek [{}] werd toegevoegd aan dashboard [{}]" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:228 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:238 msgid "Chart cache timeout" msgstr "Grafiek cache timeout" @@ -3463,7 +3525,7 @@ msgstr "Laatst gewijzigd" msgid "Chart last modified by" msgstr "Laatst gewijzigd door %s" -#: superset-frontend/src/explore/components/SaveModal.tsx:320 +#: superset-frontend/src/explore/components/SaveModal.tsx:355 msgid "Chart name" msgstr "Grafiek naam" @@ -3494,7 +3556,7 @@ msgstr "Titel tabblad" msgid "Chart type" msgstr "Toe grafiek" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:315 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 msgid "Chart type requires a dataset" msgstr "" @@ -3510,7 +3572,7 @@ msgstr "grafiek" #: superset-frontend/src/pages/Home/index.tsx:399 #: superset-frontend/src/profile/components/CreatedContent.tsx:104 #: superset-frontend/src/profile/components/Favorites.tsx:102 -#: superset/initialization/__init__.py:257 superset/views/chart/mixin.py:25 +#: superset/initialization/__init__.py:259 superset/views/chart/mixin.py:25 #: superset/views/dashboard/mixin.py:80 msgid "Charts" msgstr "Grafieken" @@ -3542,7 +3604,7 @@ msgstr "" msgid "Check out this chart in dashboard:" msgstr "Kijk naar deze grafiek in het dashboard:" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:474 msgid "Check out this chart: " msgstr "" @@ -3574,11 +3636,11 @@ msgstr "" msgid "Child label position" msgstr "" -#: superset/viz.py:2370 +#: superset/viz.py:2307 msgid "Choice of [Label] must be present in [Group By]" msgstr "Keuze van [Label] moet aanwezig zijn in [Groep door]" -#: superset/viz.py:2378 +#: superset/viz.py:2315 msgid "Choice of [Point Radius] must be present in [Group By]" msgstr "Keuze van [Punt radius] moet aanwezig zijn in [Groep door]" @@ -3591,7 +3653,7 @@ msgstr "Kies Bestand" msgid "Choose a chart or dashboard not both" msgstr "Kies een grafiek of een dashboard, niet beide" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:924 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:979 msgid "Choose a database..." msgstr "" @@ -3626,15 +3688,11 @@ msgstr "" msgid "Choose a target" msgstr "" -#: superset/connectors/sqla/views.py:327 -msgid "Choose a unique name" -msgstr "" - #: superset-frontend/src/pages/ChartCreation/index.tsx:404 msgid "Choose chart type" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:745 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:739 msgid "Choose one of the available databases from the panel on the left." msgstr "" @@ -3710,7 +3768,8 @@ msgid "" "showcase a view into the underlying data or to show aggregated metrics." msgstr "" -#: superset/connectors/sqla/views.py:365 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:454 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:144 msgid "Clause" msgstr "Clausule" @@ -3722,7 +3781,7 @@ msgstr "Verwijder" msgid "Clear all" msgstr "Wis alles" -#: superset-frontend/src/components/Table/index.tsx:206 +#: superset-frontend/src/components/Table/index.tsx:210 #, fuzzy msgid "Clear all data" msgstr "Wis alles" @@ -3749,19 +3808,19 @@ msgstr "Klik op het slotje om wijzigingen aan te brengen." msgid "Click the lock to prevent further changes." msgstr "Klik op het slotje om verdere wijzigingen te voorkomen." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1955 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2012 msgid "" "Click this link to switch to an alternate form that allows you to input " "the SQLAlchemy URL for this database manually." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1771 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1827 msgid "" "Click this link to switch to an alternate form that exposes only the " "required fields needed to connect this database." msgstr "" -#: superset-frontend/src/components/Table/index.tsx:213 +#: superset-frontend/src/components/Table/index.tsx:217 msgid "Click to cancel sorting" msgstr "" @@ -3770,17 +3829,11 @@ msgid "Click to edit" msgstr "Klik om te bewerken" #: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 -#, python-format -msgid "Click to edit %s in a new tab" -msgstr "" - -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:32 #, fuzzy, python-format msgid "Click to edit %s." msgstr "Klik om te bewerken" #: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:33 #, fuzzy msgid "Click to edit chart." msgstr "Klik om te bewerken" @@ -3802,27 +3855,27 @@ msgstr "Klik om te herladen" msgid "Click to see difference" msgstr "Klik om het verschil te zien" -#: superset-frontend/src/components/Table/index.tsx:212 +#: superset-frontend/src/components/Table/index.tsx:216 #, fuzzy msgid "Click to sort ascending" msgstr "Controle op oplopend sorteren" -#: superset-frontend/src/components/Table/index.tsx:211 +#: superset-frontend/src/components/Table/index.tsx:215 #, fuzzy msgid "Click to sort descending" msgstr "Sorteer aflopend" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:83 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:132 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:52 #: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:209 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:219 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:224 #: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:786 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:408 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:414 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:339 #: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:36 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1109 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1164 msgid "Close" msgstr "Sluit" @@ -3856,17 +3909,17 @@ msgstr "Alles inklappen" msgid "Collapse data panel" msgstr "Alles inklappen" -#: superset-frontend/src/components/Table/index.tsx:210 +#: superset-frontend/src/components/Table/index.tsx:214 #, fuzzy msgid "Collapse row" msgstr "Alles inklappen" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:598 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:599 #, fuzzy msgid "Collapse tab content" msgstr "Cel inhoud" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:197 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 msgid "Collapse table preview" msgstr "" @@ -3888,7 +3941,7 @@ msgstr "" msgid "Color Scheme" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:129 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 msgid "Color Steps" msgstr "" @@ -3910,8 +3963,8 @@ msgid "Color of the target location" msgstr "" #: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:214 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:218 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 #: superset-frontend/src/explore/controlPanels/sections.tsx:60 #: superset-frontend/src/explore/controls.jsx:460 msgid "Color scheme" @@ -3931,8 +3984,8 @@ msgstr "Kleuren" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 #: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:204 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:250 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:256 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:137 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:140 #: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 @@ -3940,7 +3993,7 @@ msgstr "Kleuren" #: superset-frontend/src/filters/components/Range/controlPanel.ts:39 #: superset-frontend/src/filters/components/Select/controlPanel.ts:49 #: superset-frontend/src/filters/components/Time/controlPanel.ts:37 -#: superset/connectors/sqla/views.py:155 +#: superset/connectors/sqla/views.py:154 msgid "Column" msgstr "Kolom" @@ -3956,12 +4009,17 @@ msgstr "" msgid "Column Configuration" msgstr "Check configuratie" +#: superset/views/database/forms.py:144 +#, fuzzy +msgid "Column Data Types" +msgstr "Geladen gegevens in de cache" + #: superset-frontend/src/explore/components/DataTableControl/index.tsx:194 msgid "Column Formatting" msgstr "" -#: superset/views/database/forms.py:222 superset/views/database/forms.py:383 -#: superset/views/database/forms.py:474 +#: superset/views/database/forms.py:232 superset/views/database/forms.py:393 +#: superset/views/database/forms.py:484 msgid "Column Label(s)" msgstr "Kolom Label(s)" @@ -3979,6 +4037,11 @@ msgstr "" msgid "Column containing longitude data" msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:69 +#, fuzzy +msgid "Column datatype" +msgstr "kolom" + #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 msgid "Column header tooltip" msgstr "" @@ -3987,19 +4050,19 @@ msgstr "" msgid "Column is required" msgstr "" -#: superset/views/database/forms.py:384 superset/views/database/forms.py:475 +#: superset/views/database/forms.py:394 superset/views/database/forms.py:485 msgid "" "Column label for index column(s). If None is given and Dataframe Index is" " True, Index Names are used." msgstr "" -#: superset/views/database/forms.py:223 +#: superset/views/database/forms.py:233 msgid "" "Column label for index column(s). If None is given and Dataframe Index is" " checked, Index Names are used" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:77 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:90 #, fuzzy msgid "Column name" msgstr "kolom" @@ -4018,30 +4081,30 @@ msgstr "Kolom waarnaar aggregaat verwijst is ongedefinieerd: %(column)s" msgid "Column select" msgstr "" -#: superset/views/database/forms.py:211 +#: superset/views/database/forms.py:221 msgid "" "Column to use as the row labels of the dataframe. Leave empty if no index" " column" msgstr "" -#: superset/views/database/forms.py:342 +#: superset/views/database/forms.py:352 msgid "" "Column to use as the row labels of the dataframe. Leave empty if no index" " column." msgstr "" -#: superset/views/database/forms.py:414 +#: superset/views/database/forms.py:424 msgid "Columnar File" msgstr "" -#: superset/views/database/views.py:565 +#: superset/views/database/views.py:568 #, python-format msgid "" "Columnar file \"%(columnar_filename)s\" uploaded to table " "\"%(table_name)s\" in database \"%(db_name)s\"" msgstr "" -#: superset/views/database/views.py:440 +#: superset/views/database/views.py:443 msgid "Columnar to Database configuration" msgstr "" @@ -4057,18 +4120,18 @@ msgstr "" #: superset-frontend/src/explore/controls.jsx:244 #: superset-frontend/src/explore/fixtures.tsx:97 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 -#: superset/connectors/sqla/views.py:72 +#: superset/connectors/sqla/views.py:71 msgid "Columns" msgstr "Kolommen" -#: superset/views/database/forms.py:183 +#: superset/views/database/forms.py:193 #, fuzzy msgid "Columns To Be Parsed as Dates" msgstr "" "Een door komma’s gescheiden lijst van kolommen die als datums moeten " "worden geparseerd." -#: superset/views/database/forms.py:231 +#: superset/views/database/forms.py:241 #, fuzzy msgid "Columns To Read" msgstr "Te lezen rijen" @@ -4078,7 +4141,7 @@ msgstr "Te lezen rijen" msgid "Columns missing in dataset: %(invalid_columns)s" msgstr "Kolommen ontbreken in databron: %(invalid_columns)s" -#: superset/viz.py:577 +#: superset/viz.py:593 #, python-format msgid "Columns missing in datasource: %(invalid_columns)s" msgstr "Kolommen ontbreken in databron: %(invalid_columns)s" @@ -4118,10 +4181,6 @@ msgstr "" msgid "Columns to show" msgstr "Synchroniseer kolommen van bron" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:85 -msgid "Combine Metrics" -msgstr "" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:250 msgid "Combine metrics" msgstr "" @@ -4179,6 +4238,7 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:35 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:35 @@ -4223,6 +4283,11 @@ msgstr "Bereken de bijdrage aan het totaal" msgid "Condition" msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 +#, fuzzy +msgid "Conditional Formatting" +msgstr "Bijkomende informatie" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:385 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:504 msgid "Conditional formatting" @@ -4277,15 +4342,15 @@ msgstr "Configureer hier hoe uw overlay wordt weergegeven." msgid "Confirm overwrite" msgstr "Opslaan bevestigen" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:180 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:222 msgid "Confirm save" msgstr "Opslaan bevestigen" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1059 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1097 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1656 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1695 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1857 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1152 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1712 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 msgid "Connect" msgstr "" @@ -4297,9 +4362,9 @@ msgstr "" msgid "Connect Google Sheets as tables to this database" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1660 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1700 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1861 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1716 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1918 msgid "Connect a database" msgstr "" @@ -4308,24 +4373,24 @@ msgstr "" msgid "Connect database" msgstr "Verwijder database" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1768 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 msgid "Connect this database using the dynamic form instead" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1950 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2007 msgid "Connect this database with a SQLAlchemy URI string instead" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:225 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 msgid "Connection" msgstr "" #: superset/databases/commands/exceptions.py:107 -#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1430 +#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1471 msgid "Connection failed, please check your connection settings" msgstr "Verbinding mislukt, controleer uw verbindingsinstellingen" -#: superset-frontend/src/views/CRUD/hooks.ts:697 +#: superset-frontend/src/views/CRUD/hooks.ts:701 msgid "Connection looks good!" msgstr "" @@ -4349,7 +4414,7 @@ msgstr "" msgid "Contribution" msgstr "Bijdrage" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:42 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 msgid "Contribution Mode" msgstr "" @@ -4401,8 +4466,8 @@ msgstr "Kopieer link" msgid "Copy message" msgstr "Kopieer bericht" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:683 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1469 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:679 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1461 #: superset-frontend/src/SqlLab/reducers/sqlLab.js:107 #, python-format msgid "Copy of %s" @@ -4413,7 +4478,7 @@ msgid "Copy partition query to clipboard" msgstr "Kopieer partitie query naar klembord" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:329 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:468 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:340 #, fuzzy msgid "Copy permalink to clipboard" @@ -4439,7 +4504,7 @@ msgstr "" msgid "Copy the name of the database you are trying to connect to." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:273 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:271 msgid "Copy to Clipboard" msgstr "Kopieer naar Klembord" @@ -4459,7 +4524,12 @@ msgstr "" msgid "Cost estimate" msgstr "Kostenraming" -#: superset/views/utils.py:498 +#: superset/db_engine_specs/ocient.py:259 +#, fuzzy, python-format +msgid "Could not connect to database: \"%(database)s\"" +msgstr "Kan geen verbinding maken met database “%(database)s”." + +#: superset/views/utils.py:496 msgid "Could not determine datasource type" msgstr "Kon type databron niet bepalen" @@ -4468,7 +4538,7 @@ msgstr "Kon type databron niet bepalen" msgid "Could not fetch all saved charts" msgstr "Kon niet alle opgeslagen grafieken ophalen" -#: superset/views/utils.py:514 +#: superset/views/utils.py:512 msgid "Could not find viz object" msgstr "Kon het viz object niet vinden" @@ -4476,7 +4546,7 @@ msgstr "Kon het viz object niet vinden" msgid "Could not load database driver" msgstr "Kon het database driver niet laden" -#: superset/views/core.py:1413 +#: superset/views/core.py:1454 #, python-format msgid "Could not load database driver: %(driver_name)s" msgstr "Kon database driver niet laden: %(driver_name)s" @@ -4485,6 +4555,11 @@ msgstr "Kon database driver niet laden: %(driver_name)s" msgid "Could not load database driver: {}" msgstr "Kon het database driver niet laden: {}" +#: superset/db_engine_specs/ocient.py:264 +#, python-format +msgid "Could not resolve hostname: \"%(host)s\"." +msgstr "" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 #, fuzzy msgid "Count" @@ -4525,12 +4600,12 @@ msgid "Country Field Type" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 -#: superset/viz.py:2044 +#: superset/viz.py:1969 msgid "Country Map" msgstr "Landenkaart" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:767 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:761 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:770 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:96 msgid "Create" msgstr "Maak" @@ -4541,10 +4616,10 @@ msgid "Create Chart" msgstr "Maak een nieuwe grafiek" #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:331 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:321 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:332 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:356 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:327 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:338 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:362 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 #, fuzzy msgid "Create a dataset" @@ -4591,7 +4666,7 @@ msgstr "Maak een nieuwe grafiek" msgid "Create new filter set" msgstr "Maak een nieuwe filterset" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 msgid "Create or select schema..." msgstr "" @@ -4614,7 +4689,7 @@ msgstr "Gecreëerd op" #: superset-frontend/src/pages/CssTemplateList/index.tsx:273 #: superset-frontend/src/pages/DashboardList/index.tsx:358 #: superset-frontend/src/pages/DashboardList/index.tsx:545 -#: superset-frontend/src/pages/DatabaseList/index.tsx:365 +#: superset-frontend/src/pages/DatabaseList/index.tsx:376 #: superset-frontend/src/pages/Tags/index.tsx:128 #: superset-frontend/src/pages/Tags/index.tsx:183 msgid "Created by" @@ -4645,9 +4720,8 @@ msgstr "Import grafiek mislukt om een onbekende reden" msgid "Creating a data source and creating a new tab" msgstr "Een gegevensbron maken en een nieuw tabblad maken" -#: superset/connectors/sqla/views.py:366 superset/views/chart/mixin.py:77 -#: superset/views/dashboard/mixin.py:84 superset/views/dashboard/views.py:185 -#: superset/views/database/mixins.py:189 +#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 +#: superset/views/dashboard/views.py:185 superset/views/database/mixins.py:189 msgid "Creator" msgstr "Maker" @@ -4656,15 +4730,27 @@ msgstr "Maker" msgid "Crimson" msgstr "Actie" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:122 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:152 msgid "Cross-filter will be applied to all of the charts that use this dataset." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:134 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:164 #, fuzzy msgid "Cross-filtering is not enabled for this dashboard." msgstr "Er zijn geen filters in dit dashboard." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 +#, fuzzy +msgid "Cross-filtering is not enabled in this dashboard" +msgstr "Er zijn geen filters in dit dashboard." + +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:414 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 +#, fuzzy +msgid "Cross-filtering scoping" +msgstr "Cross-filter scoping" + #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 #, fuzzy msgid "Cross-filters" @@ -4691,7 +4777,7 @@ msgstr "Custom Plugin" msgid "Custom Plugins" msgstr "Custom Plugins" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:385 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:391 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 @@ -4702,8 +4788,7 @@ msgstr "Custom SQL" msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" msgstr "" -#: superset/connectors/sqla/utils.py:194 superset/errors.py:145 -#: superset/models/helpers.py:129 superset/models/helpers.py:864 +#: superset/errors.py:145 superset/models/helpers.py:138 msgid "Custom SQL fields cannot contain sub-queries." msgstr "" @@ -4727,7 +4812,7 @@ msgstr "" msgid "Cyclic dependency detected" msgstr "" -#: superset/connectors/sqla/views.py:256 +#: superset/connectors/sqla/views.py:255 msgid "D3 Format" msgstr "D3 Formaat" @@ -4737,7 +4822,7 @@ msgstr "D3 Formaat" msgid "D3 format" msgstr "D3 formaat" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:22 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:146 msgid "D3 format syntax: https://github.com/d3/d3-format" msgstr "" @@ -4753,7 +4838,7 @@ msgstr "" msgid "D3 time format for datetime columns" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:53 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 msgid "D3 time format syntax: https://github.com/d3/d3-time-format" msgstr "" @@ -4776,7 +4861,7 @@ msgstr "DEC" msgid "DELETE" msgstr "VERWIJDER" -#: superset-frontend/src/pages/DatabaseList/index.tsx:332 +#: superset-frontend/src/pages/DatabaseList/index.tsx:343 msgid "DML" msgstr "DML" @@ -4805,12 +4890,12 @@ msgstr "" msgid "Dashboard" msgstr "Dashboard" -#: superset-frontend/src/explore/actions/saveModalActions.js:135 +#: superset-frontend/src/explore/actions/saveModalActions.js:129 #, fuzzy, python-format msgid "Dashboard [%s] just got created and chart [%s] was added to it" msgstr "Dashboard [{}] is zojuist aangemaakt en grafiek [{}] is eraan toegevoegd" -#: superset/views/core.py:1122 +#: superset/views/core.py:1144 msgid "Dashboard [{}] just got created and chart [{}] was added to it" msgstr "Dashboard [{}] is zojuist aangemaakt en grafiek [{}] is eraan toegevoegd" @@ -4874,7 +4959,7 @@ msgstr "[dashboard naam]" #: superset-frontend/src/pages/Home/index.tsx:385 #: superset-frontend/src/profile/components/CreatedContent.tsx:101 #: superset-frontend/src/profile/components/Favorites.tsx:99 -#: superset/initialization/__init__.py:249 superset/views/chart/mixin.py:78 +#: superset/initialization/__init__.py:251 superset/views/chart/mixin.py:78 #: superset/views/dashboard/mixin.py:24 msgid "Dashboards" msgstr "Dashboards" @@ -4900,7 +4985,7 @@ msgstr "dashboard" #: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:708 #: superset-frontend/src/features/home/RightMenu.tsx:169 -#: superset/initialization/__init__.py:244 +#: superset/initialization/__init__.py:246 msgid "Data" msgstr "Gegevens" @@ -4908,7 +4993,7 @@ msgstr "Gegevens" msgid "Data Table" msgstr "" -#: superset/datasets/commands/exceptions.py:197 +#: superset/datasets/commands/exceptions.py:214 msgid "Data URI is not allowed." msgstr "" @@ -4922,14 +5007,14 @@ msgstr "" msgid "Data Zoom" msgstr "" -#: superset/sqllab/commands/results.py:116 superset/views/core.py:2195 +#: superset/sqllab/commands/results.py:116 superset/views/core.py:2231 msgid "" "Data could not be deserialized from the results backend. The storage " "format might have changed, rendering the old data stake. You need to re-" "run the original query." msgstr "" -#: superset/sqllab/commands/results.py:75 superset/views/core.py:2148 +#: superset/sqllab/commands/results.py:75 superset/views/core.py:2184 msgid "" "Data could not be retrieved from the results backend. You need to re-run " "the original query." @@ -4943,7 +5028,7 @@ msgstr "" msgid "Data preview" msgstr "Data preview" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:283 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:278 msgid "Data refreshed" msgstr "" @@ -4962,51 +5047,51 @@ msgstr "DataFrame bevat ten minste één reeks" msgid "DataFrame must include temporal column" msgstr "DataFrame moet een temporele kolom bevatten" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:275 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:274 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -#: superset-frontend/src/pages/DatabaseList/index.tsx:267 -#: superset-frontend/src/pages/DatabaseList/index.tsx:296 -#: superset-frontend/src/pages/DatasetList/index.tsx:349 -#: superset-frontend/src/pages/DatasetList/index.tsx:520 +#: superset-frontend/src/pages/DatabaseList/index.tsx:278 +#: superset-frontend/src/pages/DatabaseList/index.tsx:307 +#: superset-frontend/src/pages/DatasetList/index.tsx:360 +#: superset-frontend/src/pages/DatasetList/index.tsx:531 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:241 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:349 #: superset-frontend/src/pages/SavedQueryList/index.tsx:287 #: superset-frontend/src/pages/SavedQueryList/index.tsx:448 -#: superset/connectors/sqla/views.py:479 superset/connectors/sqla/views.py:480 +#: superset/connectors/sqla/views.py:386 superset/connectors/sqla/views.py:387 #: superset/templates/superset/import_dashboards.html:53 -#: superset/views/database/forms.py:137 superset/views/database/forms.py:305 -#: superset/views/database/forms.py:436 superset/views/database/mixins.py:188 +#: superset/views/database/forms.py:137 superset/views/database/forms.py:315 +#: superset/views/database/forms.py:446 superset/views/database/mixins.py:188 #: superset/views/sql_lab/views.py:83 msgid "Database" msgstr "Database" -#: superset/views/database/views.py:478 +#: superset/views/database/views.py:481 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " "for columnar uploads. Please contact your Superset Admin." msgstr "" -#: superset/views/database/views.py:179 +#: superset/views/database/views.py:180 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " "for csv uploads. Please contact your Superset Admin." msgstr "" -#: superset/views/database/views.py:318 +#: superset/views/database/views.py:321 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " "for excel uploads. Please contact your Superset Admin." msgstr "" -#: superset/initialization/__init__.py:241 +#: superset/initialization/__init__.py:243 #, fuzzy msgid "Database Connections" msgstr "Test connectie" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1467 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1522 msgid "Database Creation Error" msgstr "" @@ -5015,9 +5100,9 @@ msgid "Database URL" msgstr "Database URL" #: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:827 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:849 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1150 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:882 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:904 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1205 msgid "Database connected" msgstr "" @@ -5043,7 +5128,7 @@ msgstr "" msgid "Database does not exist" msgstr "Database bestaat niet" -#: superset/connectors/sqla/models.py:1793 superset/models/helpers.py:1966 +#: superset/models/helpers.py:2063 msgid "Database does not support subqueries" msgstr "Database ondersteunt geen subquery’s" @@ -5053,7 +5138,7 @@ msgid "" "documentation page for installation instructions: " msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:429 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 msgid "Database error" msgstr "Database fout" @@ -5066,8 +5151,8 @@ msgid "Database is required for alerts" msgstr "Database is nodig voor waarschuwingen" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:113 -#: superset/db_engine_specs/base.py:1845 -#: superset/db_engine_specs/clickhouse.py:209 +#: superset/db_engine_specs/base.py:1880 +#: superset/db_engine_specs/clickhouse.py:212 msgid "Database name" msgstr "Database naam" @@ -5079,7 +5164,7 @@ msgstr "Database mag niet wijzigen" msgid "Database not found." msgstr "Database niet gevonden." -#: superset/views/core.py:1179 +#: superset/views/core.py:1201 #, fuzzy, python-format msgid "Database not found: %(id)s" msgstr "Database niet gevonden." @@ -5093,24 +5178,24 @@ msgstr "Database parameters zijn ongeldig." msgid "Database passwords" msgstr "Database poort" -#: superset/db_engine_specs/base.py:1842 -#: superset/db_engine_specs/clickhouse.py:206 +#: superset/db_engine_specs/base.py:1876 +#: superset/db_engine_specs/clickhouse.py:208 #: superset/db_engine_specs/databricks.py:52 msgid "Database port" msgstr "Database poort" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:811 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:853 msgid "Database settings updated" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:258 +#: superset-frontend/src/pages/DatabaseList/index.tsx:269 #: superset-frontend/src/profile/components/Security.tsx:47 #: superset/views/database/mixins.py:33 msgid "Databases" msgstr "Databases" -#: superset/views/database/forms.py:219 superset/views/database/forms.py:380 -#: superset/views/database/forms.py:471 +#: superset/views/database/forms.py:229 superset/views/database/forms.py:390 +#: superset/views/database/forms.py:481 msgid "Dataframe Index" msgstr "Dataframe Index" @@ -5122,7 +5207,7 @@ msgstr "Dataframe Index" #: superset-frontend/src/pages/ChartCreation/index.tsx:390 #: superset-frontend/src/pages/ChartList/index.tsx:391 #: superset-frontend/src/pages/ChartList/index.tsx:678 -#: superset-frontend/src/pages/DatasetList/index.tsx:606 +#: superset-frontend/src/pages/DatasetList/index.tsx:617 msgid "Dataset" msgstr "Dataset" @@ -5131,7 +5216,7 @@ msgstr "Dataset" msgid "Dataset %(name)s already exists" msgstr "Dataset %(name)s bestaat al" -#: superset-frontend/src/explore/components/SaveModal.tsx:331 +#: superset-frontend/src/explore/components/SaveModal.tsx:366 #, fuzzy msgid "Dataset Name" msgstr "Dataset naam" @@ -5144,29 +5229,29 @@ msgstr "Dataset kolom verwijderen mislukt." msgid "Dataset column not found." msgstr "Dataset kolom niet gevonden." -#: superset/datasets/commands/exceptions.py:157 +#: superset/datasets/commands/exceptions.py:174 msgid "Dataset could not be created." msgstr "Dataset kon niet worden aangemaakt." -#: superset/datasets/commands/exceptions.py:165 +#: superset/datasets/commands/exceptions.py:182 msgid "Dataset could not be deleted." msgstr "Dataset kon niet worden verwijderd." -#: superset/datasets/commands/exceptions.py:193 +#: superset/datasets/commands/exceptions.py:210 #, fuzzy msgid "Dataset could not be duplicated." msgstr "Dataset kon niet worden bijgewerkt." -#: superset/datasets/commands/exceptions.py:161 -#: superset/datasets/commands/exceptions.py:173 +#: superset/datasets/commands/exceptions.py:178 +#: superset/datasets/commands/exceptions.py:190 msgid "Dataset could not be updated." msgstr "Dataset kon niet worden bijgewerkt." -#: superset/datasets/commands/exceptions.py:149 +#: superset/datasets/commands/exceptions.py:166 msgid "Dataset does not exist" msgstr "Dataset bestaat niet" -#: superset-frontend/src/pages/DatasetList/index.tsx:185 +#: superset-frontend/src/pages/DatasetList/index.tsx:196 msgid "Dataset imported" msgstr "" @@ -5187,22 +5272,22 @@ msgstr "Dataset meeteenheid niet gevonden." msgid "Dataset name" msgstr "Dataset naam" -#: superset/datasets/commands/exceptions.py:153 +#: superset/datasets/commands/exceptions.py:170 msgid "Dataset parameters are invalid." msgstr "Dataset parameters zijn ongeldig." -#: superset/dashboards/api.py:430 +#: superset/dashboards/api.py:415 #, python-format msgid "Dataset schema is invalid, caused by: %(error)s" msgstr "" -#: superset/datasets/commands/exceptions.py:169 +#: superset/datasets/commands/exceptions.py:186 msgid "Dataset(s) could not be bulk deleted." msgstr "Dataset(s) konden niet in bulk worden verwijderd." -#: superset-frontend/src/pages/DatasetList/index.tsx:589 +#: superset-frontend/src/pages/DatasetList/index.tsx:600 #: superset-frontend/src/profile/components/Security.tsx:61 -#: superset/initialization/__init__.py:265 +#: superset/initialization/__init__.py:267 msgid "Datasets" msgstr "Datasets" @@ -5225,12 +5310,12 @@ msgstr "Gegevensbron" msgid "Datasource & Chart Type" msgstr "" -#: superset/commands/exceptions.py:131 +#: superset/commands/exceptions.py:135 #, fuzzy msgid "Datasource does not exist" msgstr "Dataset bestaat niet" -#: superset/commands/exceptions.py:123 +#: superset/commands/exceptions.py:127 msgid "Datasource type is invalid" msgstr "" @@ -5247,8 +5332,7 @@ msgstr "" msgid "Date filter" msgstr "Datum filter" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:71 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:151 #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:135 @@ -5269,11 +5353,11 @@ msgstr "Datetime formaat" msgid "Date/Time" msgstr "Datum/Tijd" -#: superset/connectors/sqla/views.py:163 +#: superset/connectors/sqla/views.py:162 msgid "Datetime Format" msgstr "Datumtijd Formaat" -#: superset/connectors/sqla/models.py:1237 superset/models/helpers.py:1427 +#: superset/models/helpers.py:1502 msgid "" "Datetime column not provided as part table configuration and is required " "by this type of chart" @@ -5283,7 +5367,7 @@ msgstr "" msgid "Datetime format" msgstr "Datetime formaat" -#: superset/db_engine_specs/base.py:106 +#: superset/db_engine_specs/base.py:107 msgid "Day" msgstr "Dag" @@ -5296,7 +5380,7 @@ msgstr "" msgid "Days %s" msgstr "" -#: superset/connectors/sqla/models.py:1936 superset/models/helpers.py:988 +#: superset/connectors/sqla/models.py:1222 superset/models/helpers.py:1024 msgid "Db engine did not return all queried columns" msgstr "Db engine retourneerde niet alle opgevraagde kolommen" @@ -5309,47 +5393,56 @@ msgstr "Actief" msgid "December" msgstr "December" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:70 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:89 msgid "Decides which column to sort the base axis by." msgstr "" -#: superset/views/database/forms.py:194 superset/views/database/forms.py:373 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:160 +msgid "Decides which measure to sort the base axis by." +msgstr "" + +#: superset/views/database/forms.py:204 superset/views/database/forms.py:383 msgid "Decimal Character" msgstr "Decimaal teken" -#: superset/viz.py:2743 +#: superset/viz.py:2700 msgid "Deck.gl - 3D Grid" msgstr "Deck.gl - 3D Grid" -#: superset/viz.py:2859 +#: superset/viz.py:2825 msgid "Deck.gl - 3D HEX" msgstr "Deck.gl - 3D HEX" -#: superset/viz.py:2899 +#: superset/viz.py:2890 msgid "Deck.gl - Arc" msgstr "Deck.gl - Arc" -#: superset/viz.py:2880 +#: superset/viz.py:2869 msgid "Deck.gl - GeoJSON" msgstr "Deck.gl - GeoJSON" -#: superset/viz.py:2468 +#: superset/viz.py:2848 +#, fuzzy +msgid "Deck.gl - Heatmap" +msgstr "Deck.gl - Paths" + +#: superset/viz.py:2406 msgid "Deck.gl - Multiple Layers" msgstr "Deck.gl - Meerdere Lagen" -#: superset/viz.py:2775 +#: superset/viz.py:2735 msgid "Deck.gl - Paths" msgstr "Deck.gl - Paths" -#: superset/viz.py:2826 +#: superset/viz.py:2789 msgid "Deck.gl - Polygon" msgstr "Deck.gl - Polygon" -#: superset/viz.py:2662 +#: superset/viz.py:2612 msgid "Deck.gl - Scatter plot" msgstr "Deck.gl - Scatter plot" -#: superset/viz.py:2714 +#: superset/viz.py:2668 msgid "Deck.gl - Screen Grid" msgstr "Deck.gl - Screen Grid" @@ -5357,7 +5450,7 @@ msgstr "Deck.gl - Screen Grid" msgid "Default" msgstr "Standaard" -#: superset/connectors/sqla/views.py:484 +#: superset/connectors/sqla/views.py:391 msgid "Default Endpoint" msgstr "Standaard eindpunt" @@ -5490,11 +5583,13 @@ msgstr "" #: superset-frontend/src/pages/CssTemplateList/index.tsx:338 #: superset-frontend/src/pages/DashboardList/index.tsx:427 #: superset-frontend/src/pages/DashboardList/index.tsx:712 -#: superset-frontend/src/pages/DatasetList/index.tsx:418 -#: superset-frontend/src/pages/DatasetList/index.tsx:751 +#: superset-frontend/src/pages/DatasetList/index.tsx:429 +#: superset-frontend/src/pages/DatasetList/index.tsx:773 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:182 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:313 #: superset-frontend/src/pages/SavedQueryList/index.tsx:542 #: superset-frontend/src/pages/Tags/index.tsx:153 -#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:663 +#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:664 msgid "Delete" msgstr "Verwijder" @@ -5507,11 +5602,11 @@ msgstr "%s verwijderen?" msgid "Delete Annotation?" msgstr "Aantekening verwijderen?" -#: superset-frontend/src/pages/DatabaseList/index.tsx:529 +#: superset-frontend/src/pages/DatabaseList/index.tsx:551 msgid "Delete Database?" msgstr "Database verwijderen?" -#: superset-frontend/src/pages/DatasetList/index.tsx:723 +#: superset-frontend/src/pages/DatasetList/index.tsx:745 msgid "Delete Dataset?" msgstr "Dataset verwijderen?" @@ -5532,7 +5627,7 @@ msgstr "" msgid "Delete Template?" msgstr "Template verwijderen?" -#: superset/views/base.py:663 +#: superset/views/base.py:664 msgid "Delete all Really?" msgstr "Ben je zeker dat je alles wil verwijderen?" @@ -5544,7 +5639,7 @@ msgstr "Aantekening verwijderen" msgid "Delete dashboard tab?" msgstr "Dashboard tabblad verwijderen?" -#: superset-frontend/src/pages/DatabaseList/index.tsx:405 +#: superset-frontend/src/pages/DatabaseList/index.tsx:416 msgid "Delete database" msgstr "Verwijder database" @@ -5566,6 +5661,11 @@ msgstr "Verwijder template" msgid "Delete this container and save to remove this message." msgstr "Verwijder deze container en sla op om dit bericht te verwijderen." +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:108 +#, fuzzy +msgid "Deleted" +msgstr "verwijder" + #: superset/annotation_layers/annotations/api.py:504 #, python-format msgid "Deleted %(num)d annotation" @@ -5580,7 +5680,7 @@ msgid_plural "Deleted %(num)d annotation layers" msgstr[0] "%(num)d Aantekeningenlaag verwijderd" msgstr[1] "%(num)d aantekeninglagen verwijderd" -#: superset/charts/api.py:524 +#: superset/charts/api.py:521 #, python-format msgid "Deleted %(num)d chart" msgid_plural "Deleted %(num)d charts" @@ -5594,14 +5694,14 @@ msgid_plural "Deleted %(num)d css templates" msgstr[0] "Verwijderde %(num)d css sjabloon" msgstr[1] "Verwijderde %(num)d css sjablonen" -#: superset/dashboards/api.py:760 +#: superset/dashboards/api.py:745 #, python-format msgid "Deleted %(num)d dashboard" msgid_plural "Deleted %(num)d dashboards" msgstr[0] "Verwijderde %(num)d dashboard" msgstr[1] "Verwijderde %(num)d dashboards" -#: superset/datasets/api.py:783 +#: superset/datasets/api.py:789 #, python-format msgid "Deleted %(num)d dataset" msgid_plural "Deleted %(num)d datasets" @@ -5615,6 +5715,13 @@ msgid_plural "Deleted %(num)d report schedules" msgstr[0] "Verwijderde %(num)d rapport schema" msgstr[1] "Verwijderde %(num)d rapport schema’s" +#: superset/row_level_security/api.py:349 +#, fuzzy, python-format +msgid "Deleted %(num)d rules" +msgid_plural "Deleted %(num)d rules" +msgstr[0] "Verwijderde %(num)d grafiek" +msgstr[1] "Verwijderde %(num)d grafieken" + #: superset/queries/saved_queries/api.py:222 #, python-format msgid "Deleted %(num)d saved query" @@ -5622,13 +5729,18 @@ msgid_plural "Deleted %(num)d saved queries" msgstr[0] "%(num)d opgeslagen query verwijderd" msgstr[1] "%(num)d opgeslagen zoekopdrachten verwijderd" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:94 +#, fuzzy, python-format +msgid "Deleted %s" +msgstr "Verwijderd: %s" + #: superset-frontend/src/features/home/SavedQueries.tsx:172 #: superset-frontend/src/pages/AlertReportList/index.tsx:183 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 #: superset-frontend/src/pages/AnnotationList/index.tsx:117 #: superset-frontend/src/pages/CssTemplateList/index.tsx:93 -#: superset-frontend/src/pages/DatabaseList/index.tsx:158 -#: superset-frontend/src/pages/DatasetList/index.tsx:653 +#: superset-frontend/src/pages/DatabaseList/index.tsx:169 +#: superset-frontend/src/pages/DatasetList/index.tsx:664 #: superset-frontend/src/pages/SavedQueryList/index.tsx:242 #: superset-frontend/src/reports/actions/reports.js:158 #: superset-frontend/src/views/CRUD/utils.tsx:272 @@ -5647,7 +5759,7 @@ msgstr "" msgid "Delimited long & lat single column" msgstr "Afgebakende lengtegraad en breedtegraad in enkele kolom" -#: superset/views/database/forms.py:150 +#: superset/views/database/forms.py:160 msgid "Delimiter" msgstr "Scheidingsteken" @@ -5674,32 +5786,34 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:40 +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 msgid "Deprecated" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:83 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:114 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:96 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:127 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:55 #: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:157 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:156 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:265 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1206 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1210 -#: superset-frontend/src/components/ReportModal/index.tsx:294 +#: superset-frontend/src/components/ReportModal/index.tsx:293 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1158 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:465 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 #: superset-frontend/src/pages/AnnotationList/index.tsx:161 -#: superset/connectors/sqla/views.py:157 superset/connectors/sqla/views.py:251 -#: superset/connectors/sqla/views.py:362 superset/connectors/sqla/views.py:491 -#: superset/views/chart/mixin.py:80 superset/views/sql_lab/views.py:84 +#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:398 superset/views/chart/mixin.py:80 +#: superset/views/sql_lab/views.py:84 msgid "Description" msgstr "Omschrijving" @@ -5712,7 +5826,7 @@ msgstr "Omschrijving (dit is te zien in de lijst)" msgid "Description Columns" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:50 msgid "Description text that shows up below your Big Number" msgstr "" @@ -5781,7 +5895,7 @@ msgstr "" msgid "Dimensions" msgstr "Is dimensie" -#: superset/viz.py:2005 +#: superset/viz.py:1928 msgid "Directed Force Layout" msgstr "Directed Force Layout" @@ -5791,11 +5905,11 @@ msgstr "Directed Force Layout" msgid "Directional" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:202 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 msgid "Disable SQL Lab data preview queries" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:205 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 msgid "" "Disable data preview when fetching table metadata in SQL Lab. Useful to " "avoid browser performance issues when using databases with very wide " @@ -5835,7 +5949,6 @@ msgstr "" msgid "Display configuration" msgstr "Weergave configuratie" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:87 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:252 msgid "" "Display metrics side by side within each column, as opposed to each " @@ -5846,15 +5959,11 @@ msgstr "" msgid "Display row level total" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:39 #, fuzzy msgid "Display settings" msgstr "Planning instellingen" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:78 -msgid "Display total row/column" -msgstr "" - #: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:35 msgid "" "Displays connections between entities in a graph structure. Useful for " @@ -5874,7 +5983,7 @@ msgstr "" msgid "Distribution" msgstr "" -#: superset/viz.py:1801 +#: superset/viz.py:1717 msgid "Distribution - Bar Chart" msgstr "Verdeling - Staafdiagram" @@ -5892,7 +6001,7 @@ msgstr "" msgid "Documentation" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:40 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 msgid "Domain" msgstr "" @@ -5906,19 +6015,19 @@ msgstr "" msgid "Dotted" msgstr "Bewerkt" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:480 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:482 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:292 #, fuzzy msgid "Download" msgstr "Download naar CSV" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:317 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:504 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:512 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:329 msgid "Download as image" msgstr "Download als afbeelding" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:264 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:262 msgid "Download to CSV" msgstr "Download naar CSV" @@ -5970,20 +6079,20 @@ msgstr "" msgid "Draw split lines for minor y-axis ticks" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:181 -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:191 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 msgid "Drill by" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:172 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 msgid "Drill by is not available for this data point" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:170 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 msgid "Drill by is not yet supported for this chart type" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:154 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:420 #, python-format msgid "Drill by: %s" msgstr "" @@ -6012,65 +6121,39 @@ msgstr "" msgid "Drill to detail: %s" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:206 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:184 #, fuzzy msgid "Drop a column here or click" msgid_plural "Drop columns here or click" msgstr[0] "" msgstr[1] "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:335 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:330 #, fuzzy msgid "Drop a column/metric here or click" msgid_plural "Drop columns/metrics here or click" msgstr[0] "" msgstr[1] "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:248 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 msgid "Drop a temporal column here or click" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:216 -#, fuzzy -msgid "Drop column here" -msgid_plural "Drop columns here" -msgstr[0] "" -msgstr[1] "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:340 -#, fuzzy -msgid "Drop column or metric here" -msgid_plural "Drop columns or metrics here" -msgstr[0] "" -msgstr[1] "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndSelectLabel.tsx:83 -msgid "Drop columns here" -msgstr "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:402 -msgid "Drop columns or metrics here" -msgstr "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:401 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:405 msgid "Drop columns/metrics here or click" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 -msgid "Drop temporal column here" -msgstr "" - #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:32 msgid "Dual Line Chart" msgstr "" #: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 -#: superset-frontend/src/pages/DatasetList/index.tsx:472 +#: superset-frontend/src/pages/DatasetList/index.tsx:483 #, fuzzy msgid "Duplicate" msgstr "Tabblad Dupliceren" -#: superset/views/datasource/views.py:122 +#: superset/views/datasource/views.py:124 #, python-format msgid "Duplicate column name(s): %(columns)s" msgstr "Dubbele kolomnaam (of -namen): %(columns)s" @@ -6096,7 +6179,7 @@ msgstr "Tabblad Dupliceren" msgid "Duration" msgstr "Duur" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:239 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:249 msgid "" "Duration (in seconds) of the caching timeout for charts of this database." " A timeout of 0 indicates that the cache never expires, and -1 bypasses " @@ -6128,26 +6211,26 @@ msgstr "" "Duur (in seconden) van de caching timeout voor deze grafiek. Merk op dat " "dit standaard de timeout van de dataset is indien ongedefinieerd." -#: superset/connectors/sqla/views.py:462 +#: superset/connectors/sqla/views.py:369 msgid "" "Duration (in seconds) of the caching timeout for this table. A timeout of" " 0 indicates that the cache never expires. Note this defaults to the " "database timeout if undefined." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:261 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:271 msgid "" "Duration (in seconds) of the metadata caching timeout for schemas of this" " database. If left unset, the cache never expires." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:282 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:292 msgid "" "Duration (in seconds) of the metadata caching timeout for tables of this " "database. If left unset, the cache never expires. " msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:50 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" msgstr "" @@ -6155,7 +6238,7 @@ msgstr "" msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:49 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 #: superset-frontend/src/explore/controls.jsx:89 msgid "Duration in ms (66000 => 1m 6s)" msgstr "" @@ -6193,7 +6276,7 @@ msgstr "" msgid "ECharts" msgstr "" -#: superset/reports/notifications/email.py:130 +#: superset/reports/notifications/email.py:133 msgid "EMAIL_REPORTS_CTA" msgstr "" @@ -6203,12 +6286,12 @@ msgstr "" msgid "END (EXCLUSIVE)" msgstr "EINDE (EXCLUSIEF)" -#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:171 +#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 #, fuzzy msgid "ERROR" msgstr "%s Fout" -#: superset-frontend/src/views/CRUD/hooks.ts:700 +#: superset-frontend/src/views/CRUD/hooks.ts:704 #, python-format msgid "ERROR: %s" msgstr "" @@ -6239,8 +6322,9 @@ msgstr "" #: superset-frontend/src/pages/AlertReportList/index.tsx:385 #: superset-frontend/src/pages/ChartList/index.tsx:553 #: superset-frontend/src/pages/DashboardList/index.tsx:461 -#: superset-frontend/src/pages/DatabaseList/index.tsx:431 -#: superset-frontend/src/pages/DatasetList/index.tsx:452 +#: superset-frontend/src/pages/DatabaseList/index.tsx:442 +#: superset-frontend/src/pages/DatasetList/index.tsx:463 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:200 msgid "Edit" msgstr "Bewerk" @@ -6269,7 +6353,7 @@ msgstr "Bewerk grafiek" msgid "Edit Chart Properties" msgstr "Grafiek eigenschappen bewerken" -#: superset/connectors/sqla/views.py:75 +#: superset/connectors/sqla/views.py:74 msgid "Edit Column" msgstr "Kolom toevoegen" @@ -6281,7 +6365,7 @@ msgstr "Bewerk Dashboard" msgid "Edit Database" msgstr "Bewerk Database" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:199 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:241 msgid "Edit Dataset " msgstr "Bewerk Dataset " @@ -6289,7 +6373,7 @@ msgstr "Bewerk Dataset " msgid "Edit Log" msgstr "Bewerk Log" -#: superset/connectors/sqla/views.py:210 +#: superset/connectors/sqla/views.py:209 msgid "Edit Metric" msgstr "Bewerk meeteenheid" @@ -6301,15 +6385,16 @@ msgstr "Bewerk Plugin" msgid "Edit Report" msgstr "" -#: superset/connectors/sqla/views.py:293 -msgid "Edit Row level security filter" -msgstr "Bewerk Rij niveau beveiligingsfilter" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +#, fuzzy +msgid "Edit Rule" +msgstr "Bewerk query" #: superset/views/sql_lab/views.py:55 msgid "Edit Saved Query" msgstr "Bewerk Opgeslagen Query" -#: superset/connectors/sqla/views.py:387 +#: superset/connectors/sqla/views.py:294 msgid "Edit Table" msgstr "Bewerk tabel" @@ -6326,9 +6411,9 @@ msgstr "Bewerk de aantekeningenlaag" msgid "Edit annotation layer properties" msgstr "Eigenschappen aantekeningenlaag bewerken" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:74 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:122 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:44 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:212 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:217 #: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:405 #, fuzzy msgid "Edit chart" @@ -6343,7 +6428,7 @@ msgstr "Grafiek eigenschappen bewerken" msgid "Edit dashboard" msgstr "Bewerk dashboard" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1700 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 msgid "Edit database" msgstr "Bewerk database" @@ -6353,7 +6438,7 @@ msgstr "Bewerk de dataset" #: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:243 #: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:264 -#: superset-frontend/src/components/ReportModal/index.tsx:212 +#: superset-frontend/src/components/ReportModal/index.tsx:211 msgid "Edit email report" msgstr "" @@ -6378,7 +6463,7 @@ msgstr "Bewerk template" msgid "Edit template parameters" msgstr "Bewerk template parameters" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:717 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:718 #: superset-frontend/src/dashboard/components/DashboardGrid.jsx:242 #, fuzzy msgid "Edit the dashboard" @@ -6404,8 +6489,9 @@ msgstr "Filterset bewerken:" msgid "Either the database is spelled incorrectly or does not exist." msgstr "" -#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:654 -#: superset/db_engine_specs/redshift.py:67 +#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:681 +#: superset/db_engine_specs/redshift.py:71 +#: superset/db_engine_specs/starrocks.py:122 #, python-format msgid "Either the username \"%(username)s\" or the password is incorrect." msgstr "Either the username “%(username)s” or the password is incorrect." @@ -6476,11 +6562,11 @@ msgstr "Lege verzameling" msgid "Empty column" msgstr "kolom" -#: superset/charts/data/api.py:363 +#: superset/charts/data/api.py:366 msgid "Empty query result" msgstr "" -#: superset/connectors/sqla/models.py:1243 superset/models/helpers.py:1433 +#: superset/models/helpers.py:1508 msgid "Empty query?" msgstr "Lege query?" @@ -6493,11 +6579,11 @@ msgstr "" msgid "Enable 'Allow file uploads to database' in any database's settings" msgstr "" -#: superset/connectors/sqla/views.py:482 +#: superset/connectors/sqla/views.py:389 msgid "Enable Filter Select" msgstr "Inschakelen Filter Keuze" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:139 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 #, fuzzy msgid "Enable cross-filtering" msgstr "Cross-filter scoping" @@ -6533,7 +6619,7 @@ msgstr "" msgid "Enable node dragging" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:170 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 msgid "Enable query cost estimation" msgstr "" @@ -6542,7 +6628,7 @@ msgstr "" msgid "Enable server side pagination of results (experimental feature)" msgstr "" -#: superset/viz.py:2567 +#: superset/viz.py:2514 msgid "" "Encountered invalid NULL spatial entry," " please consider filtering those " @@ -6591,18 +6677,18 @@ msgstr "Einddatum moet na begindatum liggen" msgid "Engine \"%(engine)s\" cannot be configured through parameters." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:476 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:512 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:516 msgid "Engine Parameters" msgstr "" -#: superset/databases/schemas.py:298 +#: superset/databases/schemas.py:302 msgid "" "Engine spec \"InvalidEngine\" does not support being configured via " "individual parameters." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:366 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:376 msgid "Enter CA_BUNDLE" msgstr "" @@ -6610,7 +6696,7 @@ msgstr "" msgid "Enter Primary Credentials" msgstr "" -#: superset/views/database/forms.py:151 +#: superset/views/database/forms.py:161 #, fuzzy msgid "Enter a delimiter for this data" msgstr "Voer een nieuwe titel in voor het tabblad" @@ -6623,14 +6709,14 @@ msgstr "" msgid "Enter a new title for the tab" msgstr "Voer een nieuwe titel in voor het tabblad" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:234 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:255 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:276 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:244 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:286 msgid "Enter duration in seconds" msgstr "" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:265 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:367 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:369 msgid "Enter fullscreen" msgstr "" @@ -6657,7 +6743,7 @@ msgstr "" msgid "Equal to (=)" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:140 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:182 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:139 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:298 #: superset-frontend/src/explore/components/EmbedCodeContent.jsx:57 @@ -6666,22 +6752,22 @@ msgstr "" msgid "Error" msgstr "" -#: superset/connectors/sqla/models.py:1650 superset/models/helpers.py:1843 +#: superset/models/helpers.py:1919 #, python-format msgid "Error in jinja expression in HAVING clause: %(msg)s" msgstr "Fout in jinja expressie in HAVING clausule: %(msg)s" -#: superset/connectors/sqla/models.py:1145 +#: superset/connectors/sqla/models.py:1105 superset/models/helpers.py:835 #, python-format msgid "Error in jinja expression in RLS filters: %(msg)s" msgstr "Fout in jinja expressie in RLS filters: %(msg)s" -#: superset/connectors/sqla/models.py:1633 superset/models/helpers.py:1831 +#: superset/models/helpers.py:1901 #, python-format msgid "Error in jinja expression in WHERE clause: %(msg)s" msgstr "Fout in jinja expressie in WHERE clause: %(msg)s" -#: superset/connectors/sqla/models.py:826 +#: superset/connectors/sqla/models.py:789 #, python-format msgid "Error in jinja expression in fetch values predicate: %(msg)s" msgstr "Fout in jinja expressie in fetch values predicate: %(msg)s" @@ -6705,7 +6791,7 @@ msgstr "" msgid "Error while fetching data: %s" msgstr "" -#: superset/connectors/sqla/models.py:953 superset/models/helpers.py:1029 +#: superset/connectors/sqla/models.py:914 superset/models/helpers.py:1072 #, python-format msgid "Error while rendering virtual dataset query: %(msg)s" msgstr "Fout bij het renderen van de query van de virtuele dataset: %(msg)s" @@ -6715,12 +6801,12 @@ msgstr "Fout bij het renderen van de query van de virtuele dataset: %(msg)s" msgid "Error: %(error)s" msgstr "" -#: superset/views/core.py:820 superset/views/core.py:1918 +#: superset/views/core.py:842 superset/views/core.py:1955 #, python-format msgid "Error: %(msg)s" msgstr "" -#: superset/views/core.py:817 +#: superset/views/core.py:839 #, fuzzy msgid "Error: permalink state not found" msgstr "Rapport Schedule state niet gevonden" @@ -6733,7 +6819,7 @@ msgstr "Kostenraming" msgid "Estimate selected query cost" msgstr "Kostenraming van de geselecteerde zoekopdracht" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:621 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:615 msgid "Estimate the cost before running a query" msgstr "Kostenraming voordat een query wordt uitgevoerd" @@ -6755,7 +6841,7 @@ msgstr "" msgid "Event definition" msgstr "" -#: superset/viz.py:2933 +#: superset/viz.py:2927 msgid "Event flow" msgstr "Event flow" @@ -6802,18 +6888,18 @@ msgstr "Voorbeeld" msgid "Examples" msgstr "Voorbeelden" -#: superset/views/database/forms.py:278 +#: superset/views/database/forms.py:288 msgid "Excel File" msgstr "Excel bestand" -#: superset/views/database/views.py:424 +#: superset/views/database/views.py:427 #, python-format msgid "" "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" " database \"%(db_name)s\"" msgstr "" -#: superset/views/database/views.py:303 +#: superset/views/database/views.py:306 msgid "Excel to Database configuration" msgstr "Excel naar Database configuratie" @@ -6821,6 +6907,10 @@ msgstr "Excel naar Database configuratie" msgid "Exclude selected values" msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:405 +msgid "Excluded roles" +msgstr "" + #: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 msgid "Executed SQL" msgstr "" @@ -6837,17 +6927,17 @@ msgstr "Uitvoerings ID" msgid "Execution log" msgstr "Uitvoeringslog" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:411 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:419 #, fuzzy msgid "Existing dataset" msgstr "Ontbrekende dataset" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:264 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:366 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:368 msgid "Exit fullscreen" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 #, fuzzy msgid "Expand" msgstr "en" @@ -6860,12 +6950,12 @@ msgstr "Alles uitklappen" msgid "Expand data panel" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:209 +#: superset-frontend/src/components/Table/index.tsx:213 #, fuzzy msgid "Expand row" msgstr "Koptekst rij" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:197 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 msgid "Expand table preview" msgstr "" @@ -6882,6 +6972,7 @@ msgid "" msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:38 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:37 @@ -6896,11 +6987,11 @@ msgid "Experimental" msgstr "" #: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 -#: superset/views/core.py:987 +#: superset/views/core.py:1009 msgid "Explore" msgstr "Verken" -#: superset/views/core.py:985 +#: superset/views/core.py:1007 #, python-format msgid "Explore - %(table)s" msgstr "Verken - %(table)s" @@ -6916,9 +7007,9 @@ msgstr "Verken de resultaten in de gegevensverkenningsweergave" #: superset-frontend/src/pages/ChartList/index.tsx:854 #: superset-frontend/src/pages/DashboardList/index.tsx:445 #: superset-frontend/src/pages/DashboardList/index.tsx:720 -#: superset-frontend/src/pages/DatabaseList/index.tsx:415 -#: superset-frontend/src/pages/DatasetList/index.tsx:434 -#: superset-frontend/src/pages/DatasetList/index.tsx:759 +#: superset-frontend/src/pages/DatabaseList/index.tsx:426 +#: superset-frontend/src/pages/DatasetList/index.tsx:445 +#: superset-frontend/src/pages/DatasetList/index.tsx:781 #: superset-frontend/src/pages/SavedQueryList/index.tsx:550 #: superset/views/dashboard/views.py:65 msgid "Export" @@ -6932,7 +7023,7 @@ msgstr "Export dashboards?" msgid "Export query" msgstr "Exporteer query" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:485 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:487 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:316 #, fuzzy msgid "Export to .CSV" @@ -6943,20 +7034,21 @@ msgstr "Export naar YAML" msgid "Export to .JSON" msgstr "Export naar YAML" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:335 #, fuzzy msgid "Export to Excel" msgstr "Export naar YAML" -#: superset/views/base.py:606 +#: superset/views/base.py:607 msgid "Export to YAML" msgstr "Export naar YAML" -#: superset/views/base.py:606 +#: superset/views/base.py:607 msgid "Export to YAML?" msgstr "Export naar YAML?" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:496 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:498 msgid "Export to full .CSV" msgstr "" @@ -6968,12 +7060,12 @@ msgstr "" msgid "Export to pivoted .CSV" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:88 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 msgid "Expose database in SQL Lab" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:354 -#: superset-frontend/src/pages/DatabaseList/index.tsx:460 +#: superset-frontend/src/pages/DatabaseList/index.tsx:365 +#: superset-frontend/src/pages/DatabaseList/index.tsx:471 #: superset/views/database/mixins.py:183 msgid "Expose in SQL Lab" msgstr "Expose in SQL Lab" @@ -6982,12 +7074,12 @@ msgstr "Expose in SQL Lab" msgid "Expose this DB in SQL Lab" msgstr "Expose deze DB in SQL Lab" -#: superset/connectors/sqla/views.py:161 +#: superset/connectors/sqla/views.py:160 msgid "Expression" msgstr "Expressie" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:908 -#: superset/connectors/sqla/views.py:257 superset/connectors/sqla/views.py:494 +#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:401 #: superset/views/database/mixins.py:193 msgid "Extra" msgstr "Extra" @@ -7052,8 +7144,8 @@ msgstr "" msgid "Factor to multiply the metric by" msgstr "" -#: superset/views/database/forms.py:167 superset/views/database/forms.py:324 -#: superset/views/database/forms.py:455 +#: superset/views/database/forms.py:177 superset/views/database/forms.py:334 +#: superset/views/database/forms.py:465 msgid "Fail" msgstr "Fout" @@ -7064,16 +7156,16 @@ msgid "Failed" msgstr "Mislukt" #: superset-frontend/src/SqlLab/actions/sqlLab.js:210 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:346 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:350 msgid "Failed at retrieving results" msgstr "Fout bij het ophalen van resultaten" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:500 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:496 #, python-format msgid "Failed at stopping query. %s" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:343 +#: superset-frontend/src/components/ReportModal/index.tsx:342 msgid "Failed to create report" msgstr "" @@ -7082,24 +7174,38 @@ msgstr "" msgid "Failed to execute %(query)s" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:97 +msgid "Failed to generate chart edit URL" +msgstr "" + #: superset-frontend/src/pages/Chart/index.tsx:57 msgid "Failed to load chart data" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:402 #: superset-frontend/src/pages/Chart/index.tsx:69 msgid "Failed to load chart data." msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 +msgid "Failed to load dimensions for drill by" +msgstr "" + #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 #, fuzzy msgid "Failed to retrieve advanced type" msgstr "Fout bij het ophalen van resultaten" +#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +#, fuzzy +msgid "Failed to save cross-filter scoping" +msgstr "Cross-filter scoping" + #: superset/errors.py:143 superset/sqllab/sql_json_executer.py:189 msgid "Failed to start remote query on a worker." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:342 +#: superset-frontend/src/components/ReportModal/index.tsx:341 msgid "Failed to update report" msgstr "" @@ -7123,15 +7229,15 @@ msgstr "Favorieten" msgid "February" msgstr "Februari" -#: superset/connectors/sqla/views.py:488 +#: superset/connectors/sqla/views.py:395 msgid "Fetch Values Predicate" msgstr "Waarden ophalen Predicaat" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:538 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:531 msgid "Fetch data preview" msgstr "Gegevens ophalen preview" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:352 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:354 #, python-format msgid "Fetched %s" msgstr "Opgehaald %s" @@ -7195,12 +7301,18 @@ msgid "Filter Settings" msgstr "" #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:825 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:362 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:373 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:134 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:255 msgid "Filter Type" msgstr "Filter Type" #: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:28 -msgid "Filter box" -msgstr "Filter box" +#, fuzzy +msgid "Filter box (deprecated)" +msgstr "Er is geen filter geselecteerd." #: superset-frontend/src/dashboard/components/SliceAdder.jsx:351 #, fuzzy @@ -7219,7 +7331,7 @@ msgstr "Filterconfiguratie voor de filterbox" msgid "Filter has default value" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:197 +#: superset-frontend/src/components/Table/index.tsx:201 #, fuzzy msgid "Filter menu" msgstr "Filter naam" @@ -7236,7 +7348,7 @@ msgstr "Filter naam" msgid "Filter only displays values relevant to selections made in other filters." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:289 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:283 msgid "Filter results" msgstr "Filter resultaten" @@ -7272,7 +7384,7 @@ msgstr "Filterwaarde (hoofdlettergevoelig)" msgid "Filter value is required" msgstr "" -#: superset/connectors/sqla/models.py:1549 superset/models/helpers.py:1754 +#: superset/models/helpers.py:1815 msgid "Filter value list cannot be empty" msgstr "Filterwaardenlijst kan niet leeg zijn" @@ -7280,7 +7392,7 @@ msgstr "Filterwaardenlijst kan niet leeg zijn" msgid "Filter your charts" msgstr "Filter je grafieken" -#: superset/connectors/sqla/views.py:159 +#: superset/connectors/sqla/views.py:158 msgid "Filterable" msgstr "Filterbaar" @@ -7288,7 +7400,7 @@ msgstr "Filterbaar" #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 #: superset-frontend/src/explore/controls.jsx:446 #: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:35 -#: superset/viz.py:2142 +#: superset/viz.py:2071 msgid "Filters" msgstr "Filters" @@ -7314,7 +7426,7 @@ msgstr "Filters configuratie" msgid "Filters out of scope (%d)" msgstr "" -#: superset/connectors/sqla/views.py:342 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:435 msgid "" "Filters with the same group key will be ORed together within the group, " "while different filter groups will be ANDed together. Undefined group " @@ -7326,9 +7438,9 @@ msgid "" " 'Europe')." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1077 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1125 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1857 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1132 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1180 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 msgid "Finish" msgstr "" @@ -7385,7 +7497,7 @@ msgstr "" msgid "Font size for the smallest value in the list" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:173 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 msgid "" "For Bigquery, Presto and Postgres, shows a button to compute cost before " "running a query." @@ -7401,7 +7513,7 @@ msgid "" "function, refer to the" msgstr "" -#: superset/connectors/sqla/views.py:336 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:408 msgid "" "For regular filters, these are the roles this filter will be applied to. " "For base filters, these are the roles that the filter DOES NOT apply to, " @@ -7412,26 +7524,26 @@ msgstr "" msgid "Force" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:141 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 msgid "" "Force all tables and views to be created in this schema when clicking " "CTAS or CVAS in SQL Lab." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:84 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 msgid "Force date format" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:381 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 msgid "Force refresh" msgstr "Vernieuwen forceren" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:292 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:291 msgid "Force refresh schema list" msgstr "Forceer vernieuwen schema lijst" -#: superset-frontend/src/components/TableSelector/index.tsx:317 +#: superset-frontend/src/components/TableSelector/index.tsx:307 msgid "Force refresh table list" msgstr "Forceer vernieuwen tabel lijst" @@ -7448,11 +7560,11 @@ msgstr "" msgid "Forest Green" msgstr "Frequentie vernieuwen" -#: superset/explore/commands/get.py:87 superset/views/core.py:834 +#: superset/explore/commands/get.py:87 superset/views/core.py:856 msgid "Form data not found in cache, reverting to chart metadata." msgstr "" -#: superset/explore/commands/get.py:95 superset/views/core.py:840 +#: superset/explore/commands/get.py:95 superset/views/core.py:862 msgid "Form data not found in cache, reverting to dataset metadata." msgstr "" @@ -7462,7 +7574,7 @@ msgstr "" msgid "Formattable" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:255 +#: superset-frontend/src/components/ReportModal/index.tsx:254 msgid "Formatted CSV attached in email" msgstr "" @@ -7516,7 +7628,7 @@ msgstr "" msgid "Friday" msgstr "Vrijdag" -#: superset/utils/date_parser.py:267 superset/viz.py:392 +#: superset/utils/date_parser.py:267 superset/viz.py:403 msgid "From date cannot be larger than to date" msgstr "Van datum kan niet groter zijn dan tot datum" @@ -7587,7 +7699,7 @@ msgstr "Verkrijg de laatste datum door de datum eenheid." msgid "Get the specify date for the holiday" msgstr "Zoek de specifieke datum voor de vakantie" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:713 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:714 msgid "Go to the edit mode to configure the dashboard and add charts" msgstr "" @@ -7642,20 +7754,23 @@ msgstr "" msgid "Group By filter plugin" msgstr "" -#: superset/viz.py:927 -msgid "Group By' and 'Columns' can't overlap" -msgstr "‘Group By’ en ‘Kolommen’ kunnen elkaar niet overlappen" - #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:84 msgid "Group By, Metrics or Percentage Metrics must have a value" msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:433 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:139 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:267 +#, fuzzy +msgid "Group Key" +msgstr "Groep per" + #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 msgid "Group by" msgstr "Groep per" -#: superset/connectors/sqla/views.py:158 +#: superset/connectors/sqla/views.py:157 msgid "Groupable" msgstr "Groepeerbaar" @@ -7684,12 +7799,12 @@ msgstr "werd gecreëerd" msgid "Header" msgstr "Header" -#: superset/views/database/forms.py:244 superset/views/database/forms.py:331 +#: superset/views/database/forms.py:254 superset/views/database/forms.py:341 msgid "Header Row" msgstr "Koptekst rij" #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 -#: superset/viz.py:2249 +#: superset/viz.py:2183 msgid "Heatmap" msgstr "Heatmap" @@ -7714,7 +7829,7 @@ msgstr "" msgid "Hide Line" msgstr "Laag verbergen" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:394 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:396 #, fuzzy msgid "Hide chart description" msgstr "Toggle grafiek omschrijving" @@ -7742,12 +7857,12 @@ msgid "Hierarchy" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 -#: superset/viz.py:1743 +#: superset/viz.py:1656 msgid "Histogram" msgstr "Histogram" #: superset-frontend/src/pages/Home/index.tsx:333 -#: superset/initialization/__init__.py:233 +#: superset/initialization/__init__.py:235 msgid "Home" msgstr "Home" @@ -7755,7 +7870,7 @@ msgstr "Home" msgid "Horizon Chart" msgstr "" -#: superset/viz.py:2310 +#: superset/viz.py:2246 msgid "Horizon Charts" msgstr "Horizon-grafieken" @@ -7763,7 +7878,7 @@ msgstr "Horizon-grafieken" msgid "Horizontal" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:166 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 msgid "Horizontal (Top)" msgstr "" @@ -7775,12 +7890,12 @@ msgstr "" msgid "Host" msgstr "" -#: superset/db_engine_specs/base.py:1839 -#: superset/db_engine_specs/clickhouse.py:203 +#: superset/db_engine_specs/base.py:1872 +#: superset/db_engine_specs/clickhouse.py:204 msgid "Hostname or IP address" msgstr "Hostnaam of IP-adres" -#: superset/db_engine_specs/base.py:104 +#: superset/db_engine_specs/base.py:105 msgid "Hour" msgstr "Uur" @@ -7837,7 +7952,7 @@ msgstr "" msgid "Id of root node of the tree." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:391 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:401 msgid "" "If Presto or Trino, all the queries in SQL Lab are going to be executed " "as the currently logged on user who must have permission to run them. If " @@ -7855,7 +7970,7 @@ msgid "" "hive.server2.proxy.user property." msgstr "" -#: superset/views/database/forms.py:164 +#: superset/views/database/forms.py:174 #, fuzzy msgid "If Table Already Exists" msgstr "Er bestaat al een filterset" @@ -7864,7 +7979,7 @@ msgstr "Er bestaat al een filterset" msgid "If a metric is specified, sorting will be done based on the metric value" msgstr "" -#: superset/views/database/forms.py:238 +#: superset/views/database/forms.py:248 msgid "" "If duplicate columns are not overridden, they will be presented as \"X.1," " X.2 ...X.x\"" @@ -7876,7 +7991,7 @@ msgstr "" "Indien geselecteerd, gelieve de toegestane schema’s voor csv upload in " "Extra in te stellen." -#: superset/views/database/forms.py:318 superset/views/database/forms.py:449 +#: superset/views/database/forms.py:328 superset/views/database/forms.py:459 msgid "" "If table exists do one of the following: Fail (do nothing), Replace (drop" " and recreate table) or Append (insert data)." @@ -7897,7 +8012,7 @@ msgstr "" msgid "Ignore time" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:252 +#: superset-frontend/src/components/ReportModal/index.tsx:251 msgid "Image (PNG) embedded in email" msgstr "" @@ -7905,7 +8020,7 @@ msgstr "" msgid "Image download failed, please refresh and try again." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:386 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:396 msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" msgstr "" @@ -7926,11 +8041,11 @@ msgstr "Importeer %s" msgid "Import Dashboard(s)" msgstr "Importeer Dashboard(s)" -#: superset/initialization/__init__.py:337 +#: superset/initialization/__init__.py:331 msgid "Import Dashboards" msgstr "Dashboards importeren" -#: superset/connectors/sqla/views.py:386 +#: superset/connectors/sqla/views.py:293 msgid "Import a table definition" msgstr "Importeer een tabeldefinitie" @@ -7955,16 +8070,16 @@ msgstr "Importeer dashboards" msgid "Import database failed for an unknown reason" msgstr "Import database mislukt om een onbekende reden" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1912 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1969 #, fuzzy msgid "Import database from file" msgstr "Importeer databases" -#: superset/datasets/commands/exceptions.py:185 +#: superset/datasets/commands/exceptions.py:202 msgid "Import dataset failed for an unknown reason" msgstr "Import dataset mislukt om een onbekende reden" -#: superset-frontend/src/pages/DatasetList/index.tsx:620 +#: superset-frontend/src/pages/DatasetList/index.tsx:631 msgid "Import datasets" msgstr "Importeer datasets" @@ -7991,7 +8106,7 @@ msgstr "in" msgid "Include Series" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:295 +#: superset-frontend/src/components/ReportModal/index.tsx:294 msgid "Include a description that will be sent with your report" msgstr "" @@ -8009,7 +8124,7 @@ msgstr "" msgid "Index" msgstr "Mijn" -#: superset/views/database/forms.py:210 superset/views/database/forms.py:341 +#: superset/views/database/forms.py:220 superset/views/database/forms.py:351 msgid "Index Column" msgstr "Index Kolom" @@ -8048,12 +8163,24 @@ msgstr "Onmiddellijke filtering" msgid "Intensity" msgstr "" -#: superset/views/database/forms.py:190 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:85 +msgid "Intensity Radius" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:86 +msgid "Intensity Radius is the radius at which the weight is distributed" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:69 +msgid "Intensity is the value multiplied by the weight to obtain the final weight" +msgstr "" + +#: superset/views/database/forms.py:200 #, fuzzy msgid "Interpret Datetime Format Automatically" msgstr "Gebruik Pandas om het datetime formaat automatisch te interpreteren." -#: superset/views/database/forms.py:191 +#: superset/views/database/forms.py:201 #, fuzzy msgid "Interpret the datetime format automatically" msgstr "Gebruik Pandas om het datetime formaat automatisch te interpreteren." @@ -8084,6 +8211,17 @@ msgstr "" msgid "Intervals" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:68 +#, fuzzy +msgid "Intesity" +msgstr "Entiteit" + +#: superset/db_engine_specs/ocient.py:274 +msgid "" +"Invalid Connection String: Expecting String of the form " +"'ocient://user:pass@host:port/database'." +msgstr "" + #: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 msgid "Invalid JSON" msgstr "Ongeldige JSON" @@ -8097,7 +8235,7 @@ msgstr "" msgid "Invalid certificate" msgstr "Ongeldig certificaat" -#: superset/views/core.py:1422 +#: superset/views/core.py:1463 msgid "" "Invalid connection string, a valid string usually follows:\n" "'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" @@ -8128,15 +8266,15 @@ msgstr "Ongeldige cron expressie" msgid "Invalid cumulative operator: %(operator)s" msgstr "Ongeldige cumulative operator: %(operator)s" -#: superset/connectors/sqla/views.py:181 superset/datasets/schemas.py:44 +#: superset/connectors/sqla/views.py:180 superset/datasets/schemas.py:44 msgid "Invalid date/timestamp format" msgstr "Ongeldig datum/tijdstempel formaat" -#: superset/viz.py:2160 +#: superset/viz.py:2091 msgid "Invalid filter configuration, please select a column" msgstr "Ongeldige filterconfiguratie, selecteer een kolom" -#: superset/connectors/sqla/models.py:1623 superset/models/helpers.py:1820 +#: superset/models/helpers.py:1891 #, python-format msgid "Invalid filter operation type: %(op)s" msgstr "Ongeldig filterwerkingstype: %(op)s" @@ -8161,7 +8299,7 @@ msgstr "Ongeldige breedtegraad/lengtegraad configuratie." msgid "Invalid longitude/latitude" msgstr "Ongeldige longitude/latitude" -#: superset/utils/core.py:1364 +#: superset/utils/core.py:1373 #, python-format msgid "Invalid metric object: %(metric)s" msgstr "" @@ -8180,7 +8318,12 @@ msgstr "Ongeldige opties voor %(rolling_type)s: %(options)s" msgid "Invalid permalink key" msgstr "" -#: superset/common/query_actions.py:228 +#: superset/db_engine_specs/ocient.py:292 +#, python-format +msgid "Invalid reference to column: \"%(column)s\"" +msgstr "" + +#: superset/common/query_actions.py:227 #, python-format msgid "Invalid result type: %(result_type)s" msgstr "" @@ -8190,7 +8333,7 @@ msgstr "" msgid "Invalid rolling_type: %(type)s" msgstr "Ongeldig rolling_type: %(type)s" -#: superset/viz.py:2530 +#: superset/viz.py:2474 #, python-format msgid "Invalid spatial point encountered: %s" msgstr "Ongeldig ruimtelijk punt aangetroffen: %s" @@ -8201,7 +8344,7 @@ msgstr "Ongeldig ruimtelijk punt aangetroffen: %s" msgid "Invalid state." msgstr "Ongeldig certificaat" -#: superset/reports/commands/create.py:144 +#: superset/reports/commands/create.py:142 #, python-format msgid "Invalid tab ids: %s(tab_ids)" msgstr "" @@ -8210,7 +8353,7 @@ msgstr "" msgid "Inverse selection" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:205 +#: superset-frontend/src/components/Table/index.tsx:209 msgid "Invert current page" msgstr "" @@ -8228,7 +8371,7 @@ msgstr "Is dimensie" msgid "Is false" msgstr "" -#: superset/views/base_api.py:143 +#: superset/views/base_api.py:149 msgid "Is favorite" msgstr "Is favoriet" @@ -8247,13 +8390,13 @@ msgstr "Not null" msgid "Is null" msgstr "Not null" -#: superset/views/base_api.py:171 +#: superset/views/base_api.py:177 msgid "Is tagged" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:362 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 -#: superset/connectors/sqla/views.py:162 +#: superset/connectors/sqla/views.py:161 msgid "Is temporal" msgstr "Is tijdelijk" @@ -8297,7 +8440,7 @@ msgstr "JSON metadata" msgid "JSON metadata is invalid!" msgstr "json is ongeldig" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 msgid "" "JSON string containing additional connection configuration. This is used " "to provide connection information for systems like Hive, Presto and " @@ -8334,27 +8477,27 @@ msgstr "" msgid "Jinja templating" msgstr "Bewerk template" -#: superset/views/database/forms.py:233 +#: superset/views/database/forms.py:243 #, fuzzy msgid "Json list of the column names that should be read" msgstr "" "Een door komma’s gescheiden lijst van kolommen die als datums moeten " "worden geparseerd." -#: superset/views/database/forms.py:464 +#: superset/views/database/forms.py:474 msgid "" "Json list of the column names that should be read. If not None, only " "these columns will be read from the file." msgstr "" -#: superset/views/database/forms.py:203 +#: superset/views/database/forms.py:213 msgid "" "Json list of the values that should be treated as null. Examples: [\"\"] " "for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " "Hive database supports only a single value" msgstr "" -#: superset/views/database/forms.py:394 +#: superset/views/database/forms.py:404 msgid "" "Json list of the values that should be treated as null. Examples: [\"\"]," " [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " @@ -8404,8 +8547,8 @@ msgstr "Filters" msgid "LIMIT" msgstr "Rij limiet" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:80 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:109 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:93 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:122 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:251 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:255 @@ -8483,7 +8626,7 @@ msgstr "" msgid "Last" msgstr "" -#: superset/connectors/sqla/views.py:481 superset/views/database/mixins.py:190 +#: superset/connectors/sqla/views.py:388 superset/views/database/mixins.py:190 msgid "Last Changed" msgstr "Laatste wijziging" @@ -8510,7 +8653,7 @@ msgstr "" #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:177 #: superset-frontend/src/pages/ChartList/index.tsx:445 #: superset-frontend/src/pages/CssTemplateList/index.tsx:158 -#: superset-frontend/src/pages/DatabaseList/index.tsx:380 +#: superset-frontend/src/pages/DatabaseList/index.tsx:391 msgid "Last modified" msgstr "Laatst gewijzigd" @@ -8568,7 +8711,7 @@ msgstr "Meest recente wijziging" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:28 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:90 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:371 msgid "Left" msgstr "" @@ -8600,7 +8743,7 @@ msgstr "" msgid "Left to Right" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:144 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 msgid "Left value" msgstr "" @@ -8613,7 +8756,6 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:33 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 #: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 #: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 @@ -8629,15 +8771,16 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:35 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 #: superset-frontend/src/visualizations/TimeTable/index.ts:35 msgid "Legacy" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:154 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:289 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:115 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:99 msgid "Legend" msgstr "" @@ -8645,7 +8788,7 @@ msgstr "" msgid "Legend Format" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:95 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:92 #, fuzzy msgid "Legend Orientation" msgstr "Aantekening verwijderen" @@ -8654,7 +8797,7 @@ msgstr "Aantekening verwijderen" msgid "Legend Position" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:72 msgid "Legend type" msgstr "" @@ -8796,7 +8939,7 @@ msgid "Lines encoding" msgstr "" #: superset-frontend/src/pages/SavedQueryList/index.tsx:226 -#: superset-frontend/src/views/CRUD/hooks.ts:673 +#: superset-frontend/src/views/CRUD/hooks.ts:677 msgid "Link Copied!" msgstr "Link gekopieerd!" @@ -8825,7 +8968,7 @@ msgstr "" msgid "List of values to mark with triangles" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:187 +#: superset-frontend/src/components/TableSelector/index.tsx:184 #, fuzzy msgid "List updated" msgstr "Laatst bijgewerkt %s" @@ -8856,8 +8999,8 @@ msgid "Loading" msgstr "Bezig met laden…" #: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:495 -#: superset-frontend/src/components/Select/Select.tsx:470 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:496 +#: superset-frontend/src/components/Select/Select.tsx:477 #: superset-frontend/src/components/Select/utils.tsx:152 #: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 #: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 @@ -8886,13 +9029,13 @@ msgstr "" msgid "Logarithmic scale on primary y-axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:432 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:449 msgid "Logarithmic scale on secondary y-axis" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:396 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:420 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:429 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:437 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:446 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:222 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:225 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:210 @@ -8963,27 +9106,27 @@ msgstr "MEI" msgid "MON" msgstr "MA" -#: superset/connectors/sqla/views.py:490 +#: superset/connectors/sqla/views.py:397 msgid "Main Datetime Column" msgstr "Kolom Hoofd Datumtijd" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:283 +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:292 msgid "" "Make sure that the controls are configured properly and the datasource " "contains data for the selected time range" msgstr "" -#: superset/views/core.py:1717 +#: superset/views/core.py:1752 msgid "" "Malformed request. slice_id or table_name and db_name arguments are " "expected" msgstr "" -#: superset/initialization/__init__.py:277 -#: superset/initialization/__init__.py:289 -#: superset/initialization/__init__.py:341 -#: superset/initialization/__init__.py:412 -#: superset/initialization/__init__.py:425 +#: superset/initialization/__init__.py:279 +#: superset/initialization/__init__.py:291 +#: superset/initialization/__init__.py:335 +#: superset/initialization/__init__.py:406 +#: superset/initialization/__init__.py:419 msgid "Manage" msgstr "Beheer" @@ -9003,7 +9146,7 @@ msgstr "Importeer databases" msgid "Mandatory" msgstr "Verplicht" -#: superset/views/database/forms.py:350 +#: superset/views/database/forms.py:360 msgid "Mangle Duplicate Columns" msgstr "Dubbele kolommen verwijderen" @@ -9022,6 +9165,8 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:67 @@ -9044,7 +9189,7 @@ msgstr "" msgid "MapBox" msgstr "" -#: superset/viz.py:2322 +#: superset/viz.py:2258 msgid "Mapbox" msgstr "Mapbox" @@ -9052,11 +9197,11 @@ msgstr "Mapbox" msgid "March" msgstr "Maart" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:50 msgid "Margin" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:348 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:354 msgid "Mark a column as temporal in \"Edit datasource\" modal" msgstr "" @@ -9135,7 +9280,7 @@ msgid "" "this insures that the circle respects this maximum radius." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:232 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 #, fuzzy msgid "Maximum value" msgstr "Nul waarden" @@ -9188,7 +9333,7 @@ msgstr "" msgid "Menu actions trigger" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:237 +#: superset-frontend/src/components/ReportModal/index.tsx:236 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 msgid "Message content" msgstr "Inhoud van het bericht" @@ -9197,8 +9342,8 @@ msgstr "Inhoud van het bericht" msgid "Metadata" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:450 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:454 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:486 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:490 msgid "Metadata Parameters" msgstr "" @@ -9223,13 +9368,12 @@ msgstr "Methode" #: superset-frontend/src/explore/controls.jsx:167 #: superset-frontend/src/explore/controls.jsx:168 #: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 -#: superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:249 msgid "Metric" msgstr "Meeteenheid" -#: superset/connectors/sqla/models.py:1264 -#: superset/connectors/sqla/models.py:1847 superset/models/helpers.py:1192 -#: superset/models/helpers.py:1448 +#: superset/connectors/sqla/models.py:1133 superset/models/helpers.py:1236 +#: superset/models/helpers.py:1529 #, python-format msgid "Metric '%(metric)s' does not exist" msgstr "Meeteenheid “%(metric)s” bestaat niet" @@ -9264,7 +9408,7 @@ msgstr "" msgid "Metric for node values" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:106 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:119 #, fuzzy msgid "Metric name" msgstr "Query naam" @@ -9290,6 +9434,7 @@ msgstr "" msgid "Metric to sort the results by" msgstr "Meeteenheid om de resultaten op te sorteren" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:139 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:78 msgid "Metric used as a weight for the grid's coloring" msgstr "" @@ -9328,7 +9473,7 @@ msgstr "" #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 #: superset-frontend/src/explore/controls.jsx:152 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 -#: superset/connectors/sqla/views.py:207 +#: superset/connectors/sqla/views.py:206 msgid "Metrics" msgstr "Meeteenheden" @@ -9410,11 +9555,11 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:85 #: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:152 msgid "Minimum threshold in percentage points for showing labels." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:231 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:69 #, fuzzy msgid "Minimum value" msgstr "Nul waarden" @@ -9437,7 +9582,7 @@ msgstr "" msgid "Minor Split Line" msgstr "" -#: superset/db_engine_specs/base.py:99 +#: superset/db_engine_specs/base.py:100 msgid "Minute" msgstr "Minuut" @@ -9468,12 +9613,13 @@ msgstr "" #: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:278 #: superset-frontend/src/pages/AlertReportList/index.tsx:335 #: superset-frontend/src/pages/DashboardList/index.tsx:347 -#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:375 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:152 #: superset-frontend/src/pages/SavedQueryList/index.tsx:369 #: superset-frontend/src/pages/Tags/index.tsx:118 -#: superset/connectors/sqla/views.py:367 superset/connectors/sqla/views.py:495 -#: superset/views/dashboard/mixin.py:85 superset/views/dashboard/views.py:186 -#: superset/views/database/mixins.py:199 superset/views/sql_lab/views.py:85 +#: superset/connectors/sqla/views.py:402 superset/views/dashboard/mixin.py:85 +#: superset/views/dashboard/views.py:186 superset/views/database/mixins.py:199 +#: superset/views/sql_lab/views.py:85 msgid "Modified" msgstr "Gewijzigd" @@ -9488,7 +9634,7 @@ msgstr "" #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 #: superset-frontend/src/pages/ChartList/index.tsx:431 #: superset-frontend/src/pages/DashboardList/index.tsx:326 -#: superset-frontend/src/pages/DatasetList/index.tsx:374 +#: superset-frontend/src/pages/DatasetList/index.tsx:385 msgid "Modified by" msgstr "Gewijzigd door" @@ -9501,7 +9647,7 @@ msgstr "Gewijzigde kolommen: %s" msgid "Monday" msgstr "Maandag" -#: superset/db_engine_specs/base.py:108 +#: superset/db_engine_specs/base.py:109 msgid "Month" msgstr "Maand" @@ -9567,7 +9713,7 @@ msgstr "" msgid "Multiple Line Charts" msgstr "" -#: superset/views/database/views.py:465 +#: superset/views/database/views.py:468 msgid "" "Multiple file extensions are not allowed for columnar uploads. Please " "make sure all files are of the same extension." @@ -9602,11 +9748,11 @@ msgstr "Moet uniek zijn" msgid "Must choose either a chart or a dashboard" msgstr "Kies een grafiek of een dashboard, niet beide" -#: superset/viz.py:2346 +#: superset/viz.py:2283 msgid "Must have a [Group By] column to have 'count' as the [Label]" msgstr "Moet een [Group By] kolom hebben om ‘count’ als [Label] te hebben" -#: superset/viz.py:1752 +#: superset/viz.py:1666 msgid "Must have at least one numeric column specified" msgstr "Er moet minstens één numerieke kolom gespecificeerd zijn" @@ -9614,7 +9760,7 @@ msgstr "Er moet minstens één numerieke kolom gespecificeerd zijn" msgid "Must provide credentials for the SSH Tunnel" msgstr "" -#: superset/connectors/sqla/models.py:1582 superset/models/helpers.py:1780 +#: superset/models/helpers.py:1848 msgid "Must specify a value for filters with comparison operators" msgstr "Een waarde voor filters met vergelijkingsoperatoren moet gespecificeerd" @@ -9654,19 +9800,21 @@ msgid "NUMERIC" msgstr "Mijn meeteenheid" #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:149 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:782 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:212 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:148 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:789 #: superset-frontend/src/pages/AlertReportList/index.tsx:272 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 #: superset-frontend/src/pages/CssTemplateList/index.tsx:131 -#: superset-frontend/src/pages/DatasetList/index.tsx:334 +#: superset-frontend/src/pages/DatasetList/index.tsx:345 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:130 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:248 #: superset-frontend/src/pages/SavedQueryList/index.tsx:283 #: superset-frontend/src/pages/Tags/index.tsx:109 -#: superset/connectors/sqla/views.py:361 superset/views/chart/mixin.py:85 +#: superset/views/chart/mixin.py:85 msgid "Name" msgstr "Naam" @@ -9679,11 +9827,11 @@ msgstr "Naam is vereist" msgid "Name must be unique" msgstr "De naam moet uniek zijn" -#: superset/views/database/forms.py:406 +#: superset/views/database/forms.py:416 msgid "Name of table to be created from columnar data." msgstr "" -#: superset/views/database/forms.py:270 +#: superset/views/database/forms.py:280 msgid "Name of table to be created from excel data." msgstr "Naam van de tabel die moet worden aangemaakt op basis van excel-gegevens." @@ -9704,7 +9852,7 @@ msgstr "" msgid "Name of the source nodes" msgstr "" -#: superset/connectors/sqla/views.py:428 +#: superset/connectors/sqla/views.py:335 msgid "Name of the table that exists in the source database" msgstr "Naam van de tabel die bestaat in de brondatabase" @@ -9762,17 +9910,17 @@ msgstr "Nieuwe filterset" msgid "New header" msgstr "Nieuwe grafiek" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:329 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:331 msgid "New tab" msgstr "Nieuw tabblad" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:268 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:310 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:278 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:320 msgid "New tab (Ctrl + q)" msgstr "Nieuw tabblad (Ctrl + q)" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:269 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:311 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:279 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:321 msgid "New tab (Ctrl + t)" msgstr "Nieuw tabblad (Ctrl + t)" @@ -9794,9 +9942,9 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:708 #: superset-frontend/src/pages/DashboardList/index.tsx:507 #: superset-frontend/src/pages/DashboardList/index.tsx:589 -#: superset-frontend/src/pages/DatabaseList/index.tsx:468 -#: superset-frontend/src/pages/DatabaseList/index.tsx:488 -#: superset-frontend/src/pages/DatasetList/index.tsx:573 +#: superset-frontend/src/pages/DatabaseList/index.tsx:479 +#: superset-frontend/src/pages/DatabaseList/index.tsx:499 +#: superset-frontend/src/pages/DatasetList/index.tsx:584 msgid "No" msgstr "Nee" @@ -9818,6 +9966,11 @@ msgstr "Geen Data" msgid "No Results" msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:235 +#, fuzzy +msgid "No Rules yet" +msgstr "Nog geen %s" + #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:116 #, fuzzy msgid "No annotation layers" @@ -9855,7 +10008,7 @@ msgstr "Geen grafieken" msgid "No columns" msgstr "Geen kolommen" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:242 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 #, fuzzy msgid "No columns found" msgstr "Geen kolommen" @@ -9869,7 +10022,7 @@ msgstr "" msgid "No compatible datasets found" msgstr "Onverenigbare filters (%d)" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 msgid "No compatible schema found" msgstr "" @@ -9882,14 +10035,14 @@ msgstr "Geen dashboards" msgid "No dashboards yet" msgstr "Geen dashboards" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:133 -#: superset-frontend/src/components/Table/index.tsx:203 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 +#: superset-frontend/src/components/Table/index.tsx:207 #: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:225 #: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 msgid "No data" msgstr "Geen data" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 msgid "No data after filtering or data is NULL for the latest time record" msgstr "" @@ -9910,10 +10063,6 @@ msgstr "" msgid "No description available." msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:174 -msgid "No dimensions available for drill by" -msgstr "" - #: superset-frontend/src/profile/components/Favorites.tsx:61 msgid "No favorite charts yet, go click on stars!" msgstr "Nog geen favoriete grafieken, klik op sterren!" @@ -9932,7 +10081,7 @@ msgstr "" msgid "No filter is selected." msgstr "Er is geen filter geselecteerd." -#: superset-frontend/src/components/Table/index.tsx:200 +#: superset-frontend/src/components/Table/index.tsx:204 #, fuzzy msgid "No filters" msgstr "Alle filters" @@ -9975,7 +10124,7 @@ msgid "No results" msgstr "" #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:425 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:428 msgid "No results found" msgstr "Geen resultaten gevonden" @@ -9983,7 +10132,7 @@ msgstr "Geen resultaten gevonden" msgid "No results match your filter criteria" msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:280 +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:289 #: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 msgid "No results were returned for this query" msgstr "" @@ -10003,8 +10152,8 @@ msgstr "" msgid "No samples were returned for this dataset" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:293 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:311 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:299 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:317 msgid "No saved expressions found" msgstr "" @@ -10033,9 +10182,9 @@ msgstr "" msgid "No table columns" msgstr "Geen tijdskolommen" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:292 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:310 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:345 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:298 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:316 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:351 msgid "No temporal columns found" msgstr "" @@ -10064,7 +10213,7 @@ msgid "Node size" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:45 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:187 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:270 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:286 @@ -10074,12 +10223,12 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:402 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:182 #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:124 #: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 #: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:196 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:576 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:48 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:51 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:138 #: superset-frontend/src/explore/controlPanels/sections.tsx:134 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:127 @@ -10163,7 +10312,7 @@ msgstr "November" msgid "Now" msgstr "" -#: superset/views/database/forms.py:201 +#: superset/views/database/forms.py:211 #, fuzzy msgid "Null Values" msgstr "Nul waarden" @@ -10177,11 +10326,11 @@ msgstr "" msgid "Null or Empty" msgstr "Nul of Leeg" -#: superset/views/database/forms.py:392 +#: superset/views/database/forms.py:402 msgid "Null values" msgstr "Nul waarden" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:191 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 msgid "Number Format" msgstr "" @@ -10196,11 +10345,10 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:60 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:65 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:144 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:117 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:67 #: superset-frontend/plugins/legacy-plugin-chart-treemap/src/controlPanel.ts:67 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:97 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:137 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:276 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:137 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:113 @@ -10241,21 +10389,21 @@ msgstr "" msgid "Number of periods to ratio against" msgstr "" -#: superset/views/database/forms.py:255 +#: superset/views/database/forms.py:265 #, fuzzy msgid "Number of rows of file to read" msgstr "Aantal rijen van het te lezen bestand." -#: superset/views/database/forms.py:361 +#: superset/views/database/forms.py:371 msgid "Number of rows of file to read." msgstr "Aantal rijen van het te lezen bestand." -#: superset/views/database/forms.py:261 +#: superset/views/database/forms.py:271 #, fuzzy msgid "Number of rows to skip at start of file" msgstr "Aantal rijen om over te slaan aan het begin van het bestand." -#: superset/views/database/forms.py:355 +#: superset/views/database/forms.py:365 msgid "Number of rows to skip at start of file." msgstr "Aantal rijen om over te slaan aan het begin van het bestand." @@ -10279,15 +10427,15 @@ msgstr "" msgid "OCT" msgstr "OKT" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:184 -#: superset-frontend/src/components/Modal/Modal.tsx:231 -#: superset-frontend/src/components/Table/index.tsx:198 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 +#: superset-frontend/src/components/Modal/Modal.tsx:238 +#: superset-frontend/src/components/Table/index.tsx:202 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:865 msgid "OK" msgstr "OK" #: superset-frontend/src/components/ImportModal/index.tsx:267 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1379 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1434 msgid "OVERWRITE" msgstr "OVERSCHRIJVEN" @@ -10300,7 +10448,7 @@ msgstr "Oktober" msgid "Offline" msgstr "Offline" -#: superset/connectors/sqla/views.py:485 +#: superset/connectors/sqla/views.py:392 msgid "Offset" msgstr "Offset" @@ -10341,27 +10489,27 @@ msgstr "Een of meer bedieningsinstrumenten om als kolommen te pivoteren" msgid "One or many metrics to display" msgstr "Eén of vele meeteenheden om weer te geven" -#: superset/datasets/commands/exceptions.py:90 +#: superset/datasets/commands/exceptions.py:107 msgid "One or more columns already exist" msgstr "Een of meer kolommen bestaan al" -#: superset/datasets/commands/exceptions.py:80 +#: superset/datasets/commands/exceptions.py:97 msgid "One or more columns are duplicated" msgstr "Een of meer kolommen zijn gedupliceerd" -#: superset/datasets/commands/exceptions.py:70 +#: superset/datasets/commands/exceptions.py:87 msgid "One or more columns do not exist" msgstr "Een of meer kolommen bestaan niet" -#: superset/datasets/commands/exceptions.py:119 +#: superset/datasets/commands/exceptions.py:136 msgid "One or more metrics already exist" msgstr "Een of meer meetgegevens bestaan al" -#: superset/datasets/commands/exceptions.py:109 +#: superset/datasets/commands/exceptions.py:126 msgid "One or more metrics are duplicated" msgstr "Een of meer meetgegevens zijn gedupliceerd" -#: superset/datasets/commands/exceptions.py:99 +#: superset/datasets/commands/exceptions.py:116 msgid "One or more metrics do not exist" msgstr "Een of meer meeteenheden bestaan niet" @@ -10377,7 +10525,7 @@ msgstr "" msgid "One or more parameters specified in the query are missing." msgstr "Een of meer in de query opgegeven parameters ontbreken." -#: superset/views/core.py:1992 +#: superset/views/core.py:2029 msgid "" "One or more required fields are missing in the request. Please try again," " and if the problem persists contact your administrator." @@ -10387,23 +10535,23 @@ msgstr "" msgid "One ore more annotation layers failed loading." msgstr "Aantekening lagen worden nog steeds geladen." -#: superset/sql_lab.py:230 +#: superset/sql_lab.py:228 msgid "Only SELECT statements are allowed against this database." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:133 msgid "Only Total" msgstr "" -#: superset/connectors/sqla/utils.py:123 +#: superset/connectors/sqla/utils.py:122 msgid "Only `SELECT` statements are allowed" msgstr "Alleen `SELECT` statements zijn toegestaan" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:29 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 msgid "Only applies when \"Label Type\" is not set to a percentage." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:26 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 msgid "Only applies when \"Label Type\" is set to show values." msgstr "" @@ -10411,18 +10559,18 @@ msgstr "" msgid "Only selected panels will be affected by this filter" msgstr "Alleen geselecteerde panelen zullen door deze filter worden beïnvloed" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:139 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 msgid "" "Only show the total value on the stacked chart, and not show on the " "selected category" msgstr "" -#: superset/connectors/sqla/utils.py:132 +#: superset/connectors/sqla/utils.py:131 msgid "Only single queries supported" msgstr "Alleen enkelvoudige query’s worden ondersteund" -#: superset/views/database/forms.py:119 superset/views/database/forms.py:288 -#: superset/views/database/forms.py:426 +#: superset/views/database/forms.py:119 superset/views/database/forms.py:298 +#: superset/views/database/forms.py:436 #, python-format msgid "Only the following file extensions are allowed: %(allowed_extensions)s" msgstr "" @@ -10473,7 +10621,7 @@ msgstr "Open in SQL Lab" msgid "Open query in SQL Lab" msgstr "Open query in SQL Lab" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:298 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 #: superset/views/database/mixins.py:104 msgid "" "Operate the database in asynchronous mode, meaning that the queries are " @@ -10482,8 +10630,8 @@ msgid "" " Refer to the installation docs for more information." msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:126 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:130 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 msgid "Operator" msgstr "" @@ -10492,7 +10640,7 @@ msgstr "" msgid "Operator undefined for aggregator: %(name)s" msgstr "Operator ongedefinieerd voor aggregator: %(name)s" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:381 msgid "" "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" " certain database engines." @@ -10514,13 +10662,8 @@ msgstr "" msgid "Optional warning about use of this metric" msgstr "Optionele waarschuwing voor het gebruik van deze meeteenheid" -#: superset/connectors/sqla/views.py:328 -msgid "Optionally add a detailed description" -msgstr "" - #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:39 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:68 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:108 #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:74 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:45 #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:70 @@ -10533,7 +10676,7 @@ msgstr "" msgid "Options" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:918 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:973 msgid "Or choose from a list of other databases we support:" msgstr "" @@ -10551,7 +10694,7 @@ msgstr "" msgid "Ordering" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:83 #, fuzzy msgid "Orientation" msgstr "aantekening" @@ -10561,7 +10704,7 @@ msgstr "aantekening" msgid "Orientation of bar chart" msgstr "Verdeling - Staafdiagram" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:158 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 msgid "Orientation of filter bar" msgstr "" @@ -10577,7 +10720,7 @@ msgstr "" msgid "Original table column order" msgstr "Originele tabel kolom volgorde" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 #: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 #: superset-frontend/src/explore/controls.jsx:79 @@ -10589,10 +10732,10 @@ msgid "Orthogonal" msgstr "" #: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:126 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:938 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:479 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:993 #: superset-frontend/src/features/home/EmptyState.tsx:112 -#: superset/views/database/forms.py:155 superset/views/database/forms.py:161 +#: superset/views/database/forms.py:165 superset/views/database/forms.py:171 msgid "Other" msgstr "" @@ -10648,15 +10791,15 @@ msgstr "Bewerk tijdspanne" #: superset-frontend/src/components/ImportModal/index.tsx:426 #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:493 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:459 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:463 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:464 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:148 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 msgid "Overwrite" msgstr "Overschrijven" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:249 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:192 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:247 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 msgid "Overwrite & Explore" msgstr "Overschrijven en verkennen" @@ -10665,12 +10808,12 @@ msgstr "Overschrijven en verkennen" msgid "Overwrite Dashboard [%s]" msgstr "Dashboard overschrijven [%s]" -#: superset/views/database/forms.py:237 +#: superset/views/database/forms.py:247 #, fuzzy msgid "Overwrite Duplicate Columns" msgstr "Dubbele kolommen verwijderen" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:404 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:412 #, fuzzy msgid "Overwrite existing" msgstr "Blijf bewerken" @@ -10686,11 +10829,11 @@ msgstr "" #: superset-frontend/src/pages/AlertReportList/index.tsx:452 #: superset-frontend/src/pages/ChartList/index.tsx:608 #: superset-frontend/src/pages/DashboardList/index.tsx:523 -#: superset-frontend/src/pages/DatasetList/index.tsx:500 +#: superset-frontend/src/pages/DatasetList/index.tsx:511 msgid "Owner" msgstr "Eigenaar" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:235 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:93 #: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:408 @@ -10705,14 +10848,14 @@ msgstr "Eigenaar" #: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 #: superset-frontend/src/pages/AlertReportList/index.tsx:324 #: superset-frontend/src/pages/DashboardList/index.tsx:369 -#: superset-frontend/src/pages/DatasetList/index.tsx:389 -#: superset/connectors/sqla/views.py:489 superset/views/chart/mixin.py:82 +#: superset-frontend/src/pages/DatasetList/index.tsx:400 +#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:82 #: superset/views/dashboard/mixin.py:81 msgid "Owners" msgstr "Eigenaars" -#: superset/commands/exceptions.py:108 -#: superset/datasets/commands/exceptions.py:144 +#: superset/commands/exceptions.py:112 +#: superset/datasets/commands/exceptions.py:161 msgid "Owners are invalid" msgstr "Eigenaren zijn ongeldig" @@ -10754,7 +10897,7 @@ msgid "Pandas resample rule" msgstr "Pandas resample regel" #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 -#: superset/viz.py:2219 +#: superset/viz.py:2152 msgid "Parallel Coordinates" msgstr "Parallelle coördinaten" @@ -10779,7 +10922,7 @@ msgstr "" msgid "Parent" msgstr "" -#: superset/views/database/forms.py:366 +#: superset/views/database/forms.py:376 msgid "Parse Dates" msgstr "Bereken Data" @@ -10797,7 +10940,7 @@ msgstr "" msgid "Partition Chart" msgstr "" -#: superset/viz.py:3071 +#: superset/viz.py:3069 msgid "Partition Diagram" msgstr "Partition Diagram" @@ -10817,7 +10960,7 @@ msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:154 #: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 -#: superset/db_engine_specs/base.py:1838 +#: superset/db_engine_specs/base.py:1870 #: superset/db_engine_specs/clickhouse.py:202 msgid "Password" msgstr "Wachtwoord" @@ -10868,7 +11011,7 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:81 #: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:148 msgid "Percentage threshold" msgstr "" @@ -10886,7 +11029,7 @@ msgstr "" msgid "Percentages" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:219 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:229 msgid "Performance" msgstr "" @@ -10921,8 +11064,8 @@ msgid "Person or group that has certified this metric" msgstr "Persoon of groep die deze meetwaarde heeft gecertificeerd" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1114 -#: superset-frontend/src/pages/DatasetList/index.tsx:342 -#: superset-frontend/src/pages/DatasetList/index.tsx:560 +#: superset-frontend/src/pages/DatasetList/index.tsx:353 +#: superset-frontend/src/pages/DatasetList/index.tsx:571 msgid "Physical" msgstr "Fysiek" @@ -10930,7 +11073,7 @@ msgstr "Fysiek" msgid "Physical (table or view)" msgstr "Fysiek (tabel of overzicht)" -#: superset-frontend/src/pages/DatasetList/index.tsx:273 +#: superset-frontend/src/pages/DatasetList/index.tsx:284 msgid "Physical dataset" msgstr "Fysieke dataset" @@ -10939,27 +11082,27 @@ msgstr "Fysieke dataset" msgid "Pick a dimension from which categorical colors are defined" msgstr "" -#: superset/viz.py:769 +#: superset/viz.py:795 msgid "Pick a granularity in the Time section or uncheck 'Include Time'" msgstr "Kies een granulariteit in de sectie Tijd of vink ‘Inclusief tijd’ uit" -#: superset/viz.py:1605 +#: superset/viz.py:1514 msgid "Pick a metric for left axis!" msgstr "Kies een meeteenheid voor de linkeras!" -#: superset/viz.py:1607 +#: superset/viz.py:1516 msgid "Pick a metric for right axis!" msgstr "Kies een meeteenheid voor de rechteras!" -#: superset/viz.py:1195 +#: superset/viz.py:1090 msgid "Pick a metric for x, y and size" msgstr "Kies een meeteenheid voor x, y en grootte" -#: superset/viz.py:1234 +#: superset/viz.py:1131 msgid "Pick a metric to display" msgstr "Kies een meeteenheid om weer te geven" -#: superset/viz.py:1260 superset/viz.py:1294 +#: superset/viz.py:1159 superset/viz.py:1195 msgid "Pick a metric!" msgstr "Kies een meeteenheid!" @@ -10975,7 +11118,7 @@ msgstr "" msgid "Pick a set of deck.gl charts to layer on top of one another" msgstr "" -#: superset/viz.py:1390 superset/viz.py:1653 +#: superset/viz.py:1294 superset/viz.py:1564 msgid "Pick a time granularity for your time series" msgstr "Kies een tijdschaal voor uw tijdreeks" @@ -10983,15 +11126,15 @@ msgstr "Kies een tijdschaal voor uw tijdreeks" msgid "Pick a title for you annotation." msgstr "" -#: superset/viz.py:1815 +#: superset/viz.py:1732 msgid "Pick at least one field for [Series]" msgstr "Kies minstens één veld voor [Series]" -#: superset/viz.py:857 superset/viz.py:1813 +#: superset/viz.py:887 superset/viz.py:1730 msgid "Pick at least one metric" msgstr "Kies ten minste één meeteenheid" -#: superset/viz.py:1943 +#: superset/viz.py:1863 msgid "Pick exactly 2 columns as [Source / Target]" msgstr "Kies precies 2 kolommen als [Bron / Doel]" @@ -11018,19 +11161,10 @@ msgstr "" msgid "Pin" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:45 -msgid "Pivot Options" -msgstr "" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 -#: superset/viz.py:894 msgid "Pivot Table" msgstr "Draaitabel" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:32 -msgid "Pivot Table (legacy)" -msgstr "" - #: superset/utils/pandas_postprocessing/pivot.py:70 msgid "Pivot operation must include at least one aggregate" msgstr "De pivotbewerking moet ten minste één aggregaat omvatten" @@ -11051,7 +11185,7 @@ msgstr "" msgid "Pixels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 msgid "Plain" msgstr "" @@ -11063,7 +11197,7 @@ msgstr "" msgid "Please apply filter changes" msgstr "" -#: superset/sqllab/query_render.py:120 +#: superset/sqllab/query_render.py:118 msgid "" "Please check your query and confirm that all template parameters are " "surround by double braces, for example, \"{{ ds }}\". Then, try running " @@ -11071,8 +11205,8 @@ msgid "" msgstr "" #: superset/db_engine_specs/athena.py:56 -#: superset/db_engine_specs/bigquery.py:210 -#: superset/db_engine_specs/postgres.py:161 +#: superset/db_engine_specs/bigquery.py:211 +#: superset/db_engine_specs/postgres.py:160 #: superset/db_engine_specs/snowflake.py:117 #, python-format msgid "" @@ -11080,7 +11214,7 @@ msgid "" "\"%(syntax_error)s\". Then, try running your query again." msgstr "" -#: superset/db_engine_specs/gsheets.py:80 superset/db_engine_specs/mysql.py:170 +#: superset/db_engine_specs/gsheets.py:82 superset/db_engine_specs/mysql.py:170 #, python-format msgid "" "Please check your query for syntax errors near \"%(server_error)s\". " @@ -11094,21 +11228,12 @@ msgid "" "your query again." msgstr "" -#: superset/viz.py:911 -#, fuzzy -msgid "Please choose at least one 'Group by' field" -msgstr "Kies ten minste één veld ‘Groeperen op’ " - -#: superset/viz.py:3229 +#: superset/viz.py:3234 #, fuzzy msgid "Please choose at least one groupby" msgstr "Kies ten minste één veld ‘Groeperen op’ " -#: superset/viz.py:923 -msgid "Please choose at least one metric" -msgstr "Kies ten minste één meeteenheid" - -#: superset/viz.py:1610 +#: superset/viz.py:1519 msgid "Please choose different metrics on left and right axis" msgstr "Kies verschillende meeteenheden op de linker- en rechteras" @@ -11124,18 +11249,20 @@ msgstr "Kies verschillende meeteenheden op de linker- en rechteras" #: superset-frontend/src/pages/DashboardList/index.tsx:415 #: superset-frontend/src/pages/DashboardList/index.tsx:701 #: superset-frontend/src/pages/DashboardList/index.tsx:756 -#: superset-frontend/src/pages/DatasetList/index.tsx:740 +#: superset-frontend/src/pages/DatasetList/index.tsx:762 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:170 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:304 #: superset-frontend/src/pages/SavedQueryList/index.tsx:533 #: superset-frontend/src/pages/Tags/index.tsx:141 #: superset-frontend/src/pages/Tags/index.tsx:281 msgid "Please confirm" msgstr "Gelieve te bevestigen" -#: superset-frontend/src/dashboard/actions/dashboardState.js:442 +#: superset-frontend/src/dashboard/actions/dashboardState.js:447 msgid "Please confirm the overwrite values." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:624 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:641 msgid "Please enter a SQLAlchemy URI to test" msgstr "Voer een SQLAlchemy URI in om te testen" @@ -11143,11 +11270,11 @@ msgstr "Voer een SQLAlchemy URI in om te testen" msgid "Please filter set name" msgstr "Filter setnaam a.u.b." -#: superset/db_engine_specs/postgres.py:125 +#: superset/db_engine_specs/postgres.py:124 msgid "Please re-enter the password." msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:435 +#: superset-frontend/src/views/CRUD/hooks.ts:439 msgid "Please re-export your file and try importing again" msgstr "" @@ -11175,7 +11302,7 @@ msgstr "" msgid "Please select both a Dataset and a Chart type to proceed" msgstr "" -#: superset/viz.py:1193 +#: superset/viz.py:1088 msgid "Please use 3 different metric labels" msgstr "Gelieve 3 verschillende meeteenheid labels te gebruiken" @@ -11190,7 +11317,7 @@ msgid "" "multiple metrics across all of the samples or rows in the data." msgstr "" -#: superset/initialization/__init__.py:275 +#: superset/initialization/__init__.py:277 msgid "Plugins" msgstr "Plugins" @@ -11283,13 +11410,17 @@ msgid "Port" msgstr "rapport" #: superset/db_engine_specs/mssql.py:98 -#: superset/db_engine_specs/postgres.py:135 -#: superset/db_engine_specs/presto.py:672 -#: superset/db_engine_specs/redshift.py:77 +#: superset/db_engine_specs/postgres.py:134 +#: superset/db_engine_specs/presto.py:699 +#: superset/db_engine_specs/redshift.py:81 #, python-format msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." msgstr "Poort %(port)s op hostnaam “%(hostname)s” weigerde de verbinding." +#: superset/db_engine_specs/ocient.py:269 +msgid "Port out of range 0-65535" +msgstr "" + #: superset/views/dashboard/mixin.py:86 msgid "Position JSON" msgstr "Positie JSON" @@ -11326,7 +11457,7 @@ msgstr "" msgid "Pre-filter is required" msgstr "" -#: superset/connectors/sqla/views.py:440 +#: superset/connectors/sqla/views.py:347 msgid "" "Predicate applied when fetching distinct value to populate the filter " "control component. Supports jinja template syntax. Applies only when " @@ -11368,7 +11499,7 @@ msgstr "Preview: `%s`" msgid "Previous" msgstr "Vorige" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:346 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:348 #, fuzzy msgid "Previous Line" msgstr "Vorige" @@ -11390,6 +11521,10 @@ msgstr "" msgid "Primary or secondary y-axis" msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 +msgid "Primary y-axis Bounds" +msgstr "" + #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:387 msgid "Primary y-axis format" msgstr "" @@ -11407,7 +11542,7 @@ msgstr "" msgid "Private Key Password" msgstr "Broker Wachtwoord" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:269 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 msgid "Proceed" msgstr "" @@ -11487,11 +11622,11 @@ msgstr "Plaats je code hier" msgid "Python datetime string pattern" msgstr "Python datetime string patroon" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1530 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1585 msgid "QUERY DATA IN SQL LAB" msgstr "" -#: superset/db_engine_specs/base.py:109 +#: superset/db_engine_specs/base.py:110 msgid "Quarter" msgstr "Kwartaal" @@ -11505,9 +11640,9 @@ msgstr "" msgid "Queries" msgstr "queries" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:51 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:43 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:53 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:30 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:33 #: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:90 @@ -11518,7 +11653,6 @@ msgstr "queries" #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:36 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:32 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:34 #: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:30 @@ -11529,6 +11663,7 @@ msgstr "queries" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:44 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:55 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:43 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:41 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:60 @@ -11542,7 +11677,7 @@ msgstr "queries" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:361 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:34 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:35 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:44 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:43 @@ -11558,7 +11693,7 @@ msgstr "queries" #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:152 #: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:30 #: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:26 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1479 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1471 #: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 #: superset-frontend/src/explore/controlPanels/sections.tsx:94 #: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:34 @@ -11570,7 +11705,7 @@ msgstr "queries" msgid "Query" msgstr "Query" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:361 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:363 #, python-format msgid "Query %s: %s" msgstr "" @@ -11585,11 +11720,11 @@ msgstr "" msgid "Query B" msgstr "" -#: superset/initialization/__init__.py:366 +#: superset/initialization/__init__.py:360 msgid "Query History" msgstr "Query Geschiedenis" -#: superset/commands/exceptions.py:138 +#: superset/commands/exceptions.py:142 #, fuzzy msgid "Query does not exist" msgstr "Grafiek bestaat niet" @@ -11604,7 +11739,7 @@ msgstr "Geschiedenis van de opzoeking" msgid "Query imported" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:465 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 msgid "Query in a new tab" msgstr "Zoekopdracht in een nieuw tabblad" @@ -11629,11 +11764,11 @@ msgstr "Query naam" msgid "Query preview" msgstr "Query preview" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:415 msgid "Query was stopped" msgstr "Query is gestopt" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:498 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:494 msgid "Query was stopped." msgstr "Query is gestopt." @@ -11646,6 +11781,16 @@ msgstr "BEREIK TYPE" msgid "RGB Color" msgstr "" +#: superset/row_level_security/commands/exceptions.py:29 +#, fuzzy +msgid "RLS Rule could not be deleted." +msgstr "Grafieken konden niet worden verwijderd." + +#: superset/row_level_security/commands/exceptions.py:25 +#, fuzzy +msgid "RLS Rule not found." +msgstr "Rapportage planning niet gevonden." + #: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:159 msgid "Radar" msgstr "" @@ -11784,7 +11929,7 @@ msgstr "Record Aantal" msgid "Rectangle" msgstr "" -#: superset/connectors/sqla/views.py:446 +#: superset/connectors/sqla/views.py:353 msgid "Redirects to this endpoint when clicking on the table from the table list" msgstr "" @@ -11812,7 +11957,7 @@ msgstr "" msgid "Referenced columns not available in DataFrame." msgstr "Kolommen waarnaar wordt verwezen zijn niet beschikbaar in DataFrame." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:549 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:542 msgid "Refetch results" msgstr "Resultaten opnieuw ophalen" @@ -11865,10 +12010,15 @@ msgstr "Time series kolommen" msgid "Regex" msgstr "" -#: superset/connectors/sqla/views.py:329 +#: superset-frontend/src/features/rls/constants.ts:24 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:262 +msgid "Regular" +msgstr "" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:364 msgid "" "Regular filters add where clauses to queries if a user belongs to a role " -"referenced in the filter. Base filters apply filters to all queries " +"referenced in the filter, base filters apply filters to all queries " "except the roles defined in the filter, and can be used to define what " "users can see if no RLS filters within a filter group apply to them." msgstr "" @@ -11914,7 +12064,7 @@ msgstr "" msgid "Remove" msgstr "Verwijder" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:164 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:194 #, fuzzy msgid "Remove cross-filter" msgstr "Item verwijderen" @@ -11948,8 +12098,8 @@ msgstr "Tabblad hernoemen" msgid "Rendering" msgstr "" -#: superset/views/database/forms.py:168 superset/views/database/forms.py:325 -#: superset/views/database/forms.py:456 +#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 +#: superset/views/database/forms.py:466 msgid "Replace" msgstr "Vervang" @@ -11963,12 +12113,11 @@ msgstr "Vervang" #: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:593 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:163 msgid "Report" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:282 +#: superset-frontend/src/components/ReportModal/index.tsx:281 #, fuzzy msgid "Report Name" msgstr "Naam rapport" @@ -12091,7 +12240,7 @@ msgid "Request Permissions" msgstr "Permissies aanvragen" #: superset/charts/data/api.py:153 superset/charts/data/api.py:243 -#: superset/charts/data/api.py:309 +#: superset/charts/data/api.py:312 #, python-format msgid "Request is incorrect: %(error)s" msgstr "Verzoek is onjuist: %(error)s" @@ -12100,7 +12249,7 @@ msgstr "Verzoek is onjuist: %(error)s" msgid "Request is not JSON" msgstr "Verzoek is geen JSON" -#: superset/views/datasource/views.py:75 +#: superset/views/datasource/views.py:77 msgid "Request missing data field." msgstr "Verzoek om ontbrekend data veld." @@ -12109,14 +12258,14 @@ msgstr "Verzoek om ontbrekend data veld." msgid "Request timed out" msgstr "Verzoek is geen JSON" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:94 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:98 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:105 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:252 msgid "Required" msgstr "Vereist" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:342 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 msgid "Required control values have been removed" msgstr "" @@ -12139,11 +12288,11 @@ msgstr "Pandas resample methode" msgid "Resample operation requires DatetimeIndex" msgstr "Pivot bewerking vereist ten minste één index" -#: superset-frontend/src/components/Table/index.tsx:199 +#: superset-frontend/src/components/Table/index.tsx:203 msgid "Reset" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:293 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:280 msgid "Reset state" msgstr "Reset status" @@ -12167,14 +12316,15 @@ msgstr "Herstel Filter" msgid "Results" msgstr "Resultaten" +#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 #: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:212 #: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 #, fuzzy, python-format msgid "Results %s" msgstr "Resultaten" -#: superset/sql_lab.py:410 superset/sqllab/commands/results.py:59 -#: superset/views/core.py:2133 +#: superset/sql_lab.py:402 superset/sqllab/commands/results.py:59 +#: superset/views/core.py:2169 msgid "Results backend is not configured." msgstr "" @@ -12200,12 +12350,12 @@ msgstr "Omgekeerde breedtegraad/lengtegraad " msgid "Rich Tooltip" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:178 msgid "Rich tooltip" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:372 msgid "Right" msgstr "" @@ -12230,7 +12380,7 @@ msgstr "Meeteenheid rechteras" msgid "Right to Left" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:157 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 msgid "Right value" msgstr "" @@ -12242,7 +12392,7 @@ msgstr "" msgid "Role" msgstr "Rol" -#: superset/views/core.py:407 +#: superset/views/core.py:408 #, python-format msgid "Role %(r)s was extended to provide the access to the datasource %(ds)s" msgstr "" @@ -12253,8 +12403,10 @@ msgstr "" #: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:389 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:551 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:406 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:415 #: superset-frontend/src/profile/components/Security.tsx:35 -#: superset/connectors/sqla/views.py:364 superset/views/dashboard/mixin.py:82 +#: superset/views/dashboard/mixin.py:82 msgid "Roles" msgstr "Rollen" @@ -12300,7 +12452,7 @@ msgstr "Rolfunctie" msgid "Rolling window" msgstr "Rollend venster" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 #: superset/views/database/mixins.py:195 msgid "Root certificate" msgstr "Root certificaat" @@ -12330,31 +12482,29 @@ msgstr "" msgid "Round cap" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 #: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 msgid "Row" msgstr "Rij" -#: superset/initialization/__init__.py:295 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:70 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:302 +#: superset/initialization/__init__.py:436 msgid "Row Level Security" msgstr "" -#: superset/views/database/forms.py:245 +#: superset/views/database/forms.py:255 msgid "" "Row containing the headers to use as column names (0 is first line of " "data). Leave empty if there is no header row" msgstr "" -#: superset/views/database/forms.py:332 +#: superset/views/database/forms.py:342 msgid "" "Row containing the headers to use as column names (0 is first line of " "data). Leave empty if there is no header row." msgstr "" -#: superset/connectors/sqla/views.py:290 -msgid "Row level security filter" -msgstr "Beveiligingsfilter op rijniveau" - #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:247 #: superset-frontend/src/explore/controls.jsx:340 msgid "Row limit" @@ -12377,7 +12527,7 @@ msgstr "" msgid "Rows subtotal position" msgstr "" -#: superset/views/database/forms.py:254 superset/views/database/forms.py:360 +#: superset/views/database/forms.py:264 superset/views/database/forms.py:370 msgid "Rows to Read" msgstr "Te lezen rijen" @@ -12387,10 +12537,20 @@ msgstr "Te lezen rijen" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:504 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:233 #: superset-frontend/src/explore/controlPanels/sections.tsx:230 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:286 msgid "Rule" msgstr "Regel" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:54 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:355 +#, fuzzy +msgid "Rule Name" +msgstr "Query naam" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:253 +msgid "Rule added" +msgstr "" + +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:53 msgid "Run" msgstr "Uitvoeren" @@ -12408,12 +12568,12 @@ msgstr "" msgid "Run in SQL Lab" msgstr "Uitvoeren in SQL Lab" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:309 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:319 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:311 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:321 msgid "Run query" msgstr "Zoekopdracht uitvoeren" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:131 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:132 msgid "Run query (Ctrl + Return)" msgstr "Query uitvoeren (Ctrl + Return)" @@ -12421,7 +12581,7 @@ msgstr "Query uitvoeren (Ctrl + Return)" msgid "Run query in a new tab" msgstr "Query uitvoeren in een nieuw tabblad" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:52 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:51 msgid "Run selection" msgstr "Selectie uitvoeren" @@ -12430,7 +12590,7 @@ msgstr "Selectie uitvoeren" msgid "Running" msgstr "Running" -#: superset/sql_lab.py:488 +#: superset/sql_lab.py:480 #, python-format msgid "Running statement %(statement_num)s out of %(statement_count)s" msgstr "" @@ -12452,8 +12612,8 @@ msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 #: superset-frontend/src/features/home/commonMenuData.ts:22 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:312 -#: superset/initialization/__init__.py:354 -#: superset/initialization/__init__.py:362 +#: superset/initialization/__init__.py:348 +#: superset/initialization/__init__.py:356 msgid "SQL" msgstr "SQL" @@ -12461,17 +12621,17 @@ msgstr "SQL" msgid "SQL Copied!" msgstr "SQL gekopieerd!" -#: superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:253 msgid "SQL Expression" msgstr "SQL Expressie" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:73 -#: superset/initialization/__init__.py:349 -#: superset/initialization/__init__.py:371 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 +#: superset/initialization/__init__.py:343 +#: superset/initialization/__init__.py:365 msgid "SQL Lab" msgstr "SQL-lab" -#: superset/connectors/sqla/views.py:492 +#: superset/connectors/sqla/views.py:399 msgid "SQL Lab View" msgstr "SQL Lab View" @@ -12594,7 +12754,7 @@ msgstr "" msgid "Samples" msgstr "Voorbeelden" -#: superset/datasets/commands/exceptions.py:177 +#: superset/datasets/commands/exceptions.py:194 #, fuzzy msgid "Samples for dataset could not be retrieved." msgstr "Dataset kon niet worden aangemaakt." @@ -12604,7 +12764,7 @@ msgstr "Dataset kon niet worden aangemaakt." msgid "Samples for datasource could not be retrieved." msgstr "Dataset kon niet worden aangemaakt." -#: superset/viz.py:1935 +#: superset/viz.py:1854 msgid "Sankey" msgstr "Sankey" @@ -12633,25 +12793,26 @@ msgstr "Zaterdag" #: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 #: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:199 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:214 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:246 -#: superset-frontend/src/components/ReportModal/index.tsx:229 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:288 +#: superset-frontend/src/components/ReportModal/index.tsx:228 #: superset-frontend/src/dashboard/components/Header/index.jsx:607 #: superset-frontend/src/dashboard/components/Header/index.jsx:609 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 #: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 #: superset-frontend/src/dashboard/components/SaveModal.tsx:211 #: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:794 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:156 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:492 #: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:268 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:458 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:462 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 -#: superset-frontend/src/explore/components/SaveModal.tsx:415 +#: superset-frontend/src/explore/components/SaveModal.tsx:449 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:418 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:424 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:147 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 @@ -12661,30 +12822,31 @@ msgstr "Zaterdag" #: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 #: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1695 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 #: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 msgid "Save" msgstr "Opslaan" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:246 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:190 msgid "Save & Explore" msgstr "Opslaan en verkennen" -#: superset-frontend/src/explore/components/SaveModal.tsx:396 +#: superset-frontend/src/explore/components/SaveModal.tsx:430 msgid "Save & go to dashboard" msgstr "Opslaan en naar dashboard gaan" -#: superset-frontend/src/explore/components/SaveModal.tsx:395 +#: superset-frontend/src/explore/components/SaveModal.tsx:429 #, fuzzy msgid "Save & go to new dashboard" msgstr "Opslaan en naar dashboard gaan" -#: superset-frontend/src/explore/components/SaveModal.tsx:308 +#: superset-frontend/src/explore/components/SaveModal.tsx:343 msgid "Save (Overwrite)" msgstr "Opslaan (overschrijven)" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:199 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:306 msgid "Save as" msgstr "Opslaan als" @@ -12699,16 +12861,16 @@ msgstr "Kies een dataset" msgid "Save as dataset" msgstr "Kies een dataset" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:394 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:214 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:402 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 msgid "Save as new" msgstr "Opslaan als nieuw" -#: superset-frontend/src/explore/components/SaveModal.tsx:412 +#: superset-frontend/src/explore/components/SaveModal.tsx:446 msgid "Save as new chart" msgstr "Opslaan als nieuwe grafiek" -#: superset-frontend/src/explore/components/SaveModal.tsx:316 +#: superset-frontend/src/explore/components/SaveModal.tsx:351 #, fuzzy msgid "Save as..." msgstr "Opslaan als …" @@ -12722,7 +12884,7 @@ msgstr "Opslaan als:" msgid "Save changes" msgstr "Wijzigingen weggooien" -#: superset-frontend/src/explore/components/SaveModal.tsx:432 +#: superset-frontend/src/explore/components/SaveModal.tsx:466 msgid "Save chart" msgstr "Grafiek opslaan" @@ -12730,7 +12892,7 @@ msgstr "Grafiek opslaan" msgid "Save dashboard" msgstr "Dashboard opslaan" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:106 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:105 #, fuzzy msgid "Save dataset" msgstr "Wijzig dataset" @@ -12739,11 +12901,11 @@ msgstr "Wijzig dataset" msgid "Save for this session" msgstr "Opslaan voor deze sessie" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:350 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:356 msgid "Save or Overwrite Dataset" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:202 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:201 msgid "Save query" msgstr "Zoekopdracht opslaan" @@ -12751,28 +12913,28 @@ msgstr "Zoekopdracht opslaan" msgid "Save the query to enable this feature" msgstr "Sla de query op om deze functie in te schakelen" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:250 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:465 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:149 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 msgid "Save this query as a virtual dataset to continue exploring" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:414 +#: superset-frontend/src/explore/components/SaveModal.tsx:448 #, fuzzy msgid "Save to new dashboard" msgstr "Opslaan en naar dashboard gaan" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:265 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:271 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 msgid "Saved" msgstr "Opgeslagen" -#: superset/initialization/__init__.py:358 +#: superset/initialization/__init__.py:352 msgid "Saved Queries" msgstr "Opgeslagen Queries" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:249 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:255 msgid "Saved expressions" msgstr "" @@ -12831,12 +12993,12 @@ msgid "" msgstr "" #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 -#: superset-frontend/src/components/ReportModal/index.tsx:306 +#: superset-frontend/src/components/ReportModal/index.tsx:305 #: superset-frontend/src/pages/AlertReportList/index.tsx:276 msgid "Schedule" msgstr "Planning" -#: superset-frontend/src/components/ReportModal/index.tsx:212 +#: superset-frontend/src/components/ReportModal/index.tsx:211 #, fuzzy msgid "Schedule a new email report" msgstr "E-mailrapporten voor grafieken plannen" @@ -12853,7 +13015,7 @@ msgstr "Query planning" msgid "Schedule settings" msgstr "Planning instellingen" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:518 msgid "Schedule the query periodically" msgstr "Plan de zoekopdracht periodiek" @@ -12872,34 +13034,34 @@ msgstr "Gepland om (UTC)" msgid "Scheduled task executor not found" msgstr "Rapport Schedule state niet gevonden" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:299 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:221 -#: superset-frontend/src/pages/DatasetList/index.tsx:354 -#: superset-frontend/src/pages/DatasetList/index.tsx:536 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:298 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 +#: superset-frontend/src/pages/DatasetList/index.tsx:365 +#: superset-frontend/src/pages/DatasetList/index.tsx:547 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:250 #: superset-frontend/src/pages/SavedQueryList/index.tsx:297 #: superset-frontend/src/pages/SavedQueryList/index.tsx:469 -#: superset/connectors/sqla/views.py:483 superset/views/database/forms.py:144 -#: superset/views/database/forms.py:311 superset/views/database/forms.py:442 +#: superset/connectors/sqla/views.py:390 superset/views/database/forms.py:154 +#: superset/views/database/forms.py:321 superset/views/database/forms.py:452 msgid "Schema" msgstr "Schema" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:247 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:257 msgid "Schema cache timeout" msgstr "" -#: superset/views/core.py:1164 +#: superset/views/core.py:1186 #, fuzzy msgid "Schema undefined" msgstr "Ongedefinieerd" -#: superset/connectors/sqla/views.py:429 +#: superset/connectors/sqla/views.py:336 msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" msgstr "" "Schema, zoals alleen gebruikt in sommige databases zoals Postgres, " "Redshift en DB2" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:419 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:429 msgid "Schemas allowed for File upload" msgstr "" @@ -12911,7 +13073,7 @@ msgstr "" msgid "Scoping" msgstr "Scoping" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 msgid "Scroll" msgstr "" @@ -12927,15 +13089,15 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:724 #: superset-frontend/src/pages/CssTemplateList/index.tsx:293 #: superset-frontend/src/pages/DashboardList/index.tsx:516 -#: superset-frontend/src/pages/DatabaseList/index.tsx:492 -#: superset-frontend/src/pages/DatasetList/index.tsx:577 +#: superset-frontend/src/pages/DatabaseList/index.tsx:503 +#: superset-frontend/src/pages/DatasetList/index.tsx:588 #: superset-frontend/src/pages/SavedQueryList/index.tsx:494 #: superset-frontend/src/pages/Tags/index.tsx:204 #: superset/templates/appbuilder/general/widgets/search.html:40 msgid "Search" msgstr "Zoek" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:294 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 msgid "Search / Filter" msgstr "Zoek / Filter" @@ -12959,12 +13121,12 @@ msgstr "" msgid "Search by query text" msgstr "Zoek op querytekst" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:207 -#, fuzzy, python-format +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 +#, fuzzy msgid "Search columns" msgstr "%s kolom(men)" -#: superset-frontend/src/components/Table/index.tsx:202 +#: superset-frontend/src/components/Table/index.tsx:206 #, fuzzy msgid "Search in filters" msgstr "Zoek / Filter" @@ -12978,7 +13140,7 @@ msgstr "Gebruikersrollen" msgid "Search..." msgstr "Zoek…" -#: superset/db_engine_specs/base.py:96 +#: superset/db_engine_specs/base.py:97 msgid "Second" msgstr "Seconde" @@ -12992,10 +13154,14 @@ msgid "Secondary Metric" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:408 +msgid "Secondary y-axis Bounds" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:425 msgid "Secondary y-axis format" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:417 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:434 msgid "Secondary y-axis title" msgstr "" @@ -13008,15 +13174,15 @@ msgstr "" msgid "Secure Extra" msgstr "Secure Extra" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:336 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:341 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:346 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 msgid "Secure extra" msgstr "Secure extra" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:329 -#: superset/initialization/__init__.py:297 -#: superset/initialization/__init__.py:395 -#: superset/initialization/__init__.py:433 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:339 +#: superset/initialization/__init__.py:389 +#: superset/initialization/__init__.py:427 +#: superset/initialization/__init__.py:438 msgid "Security" msgstr "Beveiliging" @@ -13039,24 +13205,24 @@ msgstr "Zie minder" msgid "See more" msgstr "Zie meer" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:412 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:405 msgid "See query details" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:288 +#: superset-frontend/src/components/TableSelector/index.tsx:277 msgid "See table schema" msgstr "Zie tabel schema" -#: superset-frontend/src/explore/components/SaveModal.tsx:363 +#: superset-frontend/src/explore/components/SaveModal.tsx:398 #: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 msgid "Select" msgstr "" #: superset-frontend/src/components/AsyncSelect/index.jsx:41 #: superset-frontend/src/components/Select/AsyncSelect.tsx:123 -#: superset-frontend/src/components/Select/Select.tsx:103 +#: superset-frontend/src/components/Select/Select.tsx:104 #: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 -#: superset-frontend/src/explore/components/controls/SelectControl.jsx:230 +#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 msgid "Select ..." msgstr "Selecteer …" @@ -13068,11 +13234,11 @@ msgstr "" msgid "Select Viz Type" msgstr "" -#: superset/views/database/forms.py:415 +#: superset/views/database/forms.py:425 msgid "Select a Columnar file to be uploaded to a database." msgstr "" -#: superset/views/database/forms.py:279 +#: superset/views/database/forms.py:289 msgid "Select a Excel file to be uploaded to a database." msgstr "Selecteer een Excel-bestand dat moet worden geüpload naar een database." @@ -13080,7 +13246,7 @@ msgstr "Selecteer een Excel-bestand dat moet worden geüpload naar een database. msgid "Select a column" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:357 +#: superset-frontend/src/explore/components/SaveModal.tsx:392 msgid "Select a dashboard" msgstr "" @@ -13102,7 +13268,7 @@ msgstr "Stopte een onveilige database connectie" msgid "Select a database to upload the file to" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:744 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:738 msgid "Select a database to write a query" msgstr "" @@ -13115,7 +13281,7 @@ msgstr "" msgid "Select a file to be uploaded to the database" msgstr "Selecteer een CSV-bestand dat moet worden geüpload naar een database." -#: superset/views/database/forms.py:145 +#: superset/views/database/forms.py:155 #, fuzzy msgid "Select a schema if the database supports this" msgstr "Geef een schema op (als de databasesmaak dit ondersteunt)." @@ -13128,12 +13294,12 @@ msgstr "Selecteer een visualisatie type" msgid "Select aggregate options" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:207 +#: superset-frontend/src/components/Table/index.tsx:211 #, fuzzy msgid "Select all data" msgstr "Alles deselecteren" -#: superset-frontend/src/components/Table/index.tsx:201 +#: superset-frontend/src/components/Table/index.tsx:205 #, fuzzy msgid "Select all items" msgstr "Alles deselecteren" @@ -13142,6 +13308,11 @@ msgstr "Alles deselecteren" msgid "Select any columns for metadata inspection" msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +#, fuzzy +msgid "Select chart" +msgstr "Superset grafiek" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:45 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:103 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:138 @@ -13152,13 +13323,13 @@ msgstr "" msgid "Select color scheme" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:208 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 msgid "Select column" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:204 +#: superset-frontend/src/components/Table/index.tsx:208 #, fuzzy msgid "Select current page" msgstr "Selecteer parent filters" @@ -13168,8 +13339,8 @@ msgstr "Selecteer parent filters" msgid "Select database & schema" msgstr "Zie tabel schema" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:272 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:280 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:271 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:279 #, fuzzy msgid "Select database or type to search databases" msgstr "Selecteer tabel of type tabelnaam" @@ -13179,7 +13350,7 @@ msgstr "Selecteer tabel of type tabelnaam" msgid "Select database table" msgstr "Verwijder database" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1791 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1847 msgid "" "Select databases require additional fields to be completed in the " "Advanced tab to successfully connect the database. Learn what " @@ -13218,7 +13389,7 @@ msgstr "" msgid "Select or type a value" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:410 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:418 #, fuzzy msgid "Select or type dataset name" msgstr "Selecteer tabel of type tabelnaam" @@ -13231,8 +13402,8 @@ msgstr "" msgid "Select saved metrics" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:297 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:304 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:296 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 msgid "Select schema or type to search schemas" msgstr "" @@ -13240,7 +13411,7 @@ msgstr "" msgid "Select scheme" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:304 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:307 msgid "Select start and end date" msgstr "Selecteer begin- en einddatum" @@ -13248,8 +13419,8 @@ msgstr "Selecteer begin- en einddatum" msgid "Select subject" msgstr "" +#: superset-frontend/src/components/TableSelector/index.tsx:284 #: superset-frontend/src/components/TableSelector/index.tsx:295 -#: superset-frontend/src/components/TableSelector/index.tsx:306 #, fuzzy msgid "Select table or type to search tables" msgstr "Selecteer tabel of type tabelnaam" @@ -13259,6 +13430,23 @@ msgstr "Selecteer tabel of type tabelnaam" msgid "Select the Annotation Layer you would like to use." msgstr "Kies het aantekeningenlaagtype" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +msgid "" +"Select the charts to which you want to apply cross-filters in this " +"dashboard. Deselecting a chart will exclude it from being filtered when " +"applying cross-filters from any chart on the dashboard. You can select " +"\"All charts\" to apply cross-filters to all charts that use the same " +"dataset or contain the same column name in the dashboard." +msgstr "" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +msgid "" +"Select the charts to which you want to apply cross-filters when " +"interacting with this chart. You can select \"All charts\" to apply " +"filters to all charts that use the same dataset or contain the same " +"column name in the dashboard." +msgstr "" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:392 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:37 msgid "Select the geojson column" @@ -13304,7 +13492,7 @@ msgstr "September" msgid "Sequential" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 msgid "Series" msgstr "Series" @@ -13322,7 +13510,7 @@ msgstr "Serie limiet" msgid "Series Limit Sort Descending" msgstr "Sorteer aflopend" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:255 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:246 #, fuzzy msgid "Series Order" msgstr "Series" @@ -13395,13 +13583,13 @@ msgid "Settings for time series" msgstr "" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:325 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:464 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:467 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 #: superset-frontend/src/features/home/SavedQueries.tsx:211 msgid "Share" msgstr "Deel" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:469 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:472 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:343 msgid "Share chart by email" msgstr "Deel grafiek per e-mail" @@ -13411,7 +13599,7 @@ msgstr "Deel grafiek per e-mail" msgid "Share permalink by email" msgstr "Deel grafiek per e-mail" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1429 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1421 msgid "Shared query" msgstr "Gedeelde zoekopdracht" @@ -13420,7 +13608,7 @@ msgstr "Gedeelde zoekopdracht" msgid "Shared query fields" msgstr "Gedeelde zoekopdracht" -#: superset/views/database/forms.py:298 +#: superset/views/database/forms.py:308 msgid "Sheet Name" msgstr "Naam tabblad" @@ -13470,7 +13658,7 @@ msgstr "Toon CSS Template" msgid "Show Chart" msgstr "Toon grafiek" -#: superset/connectors/sqla/views.py:73 +#: superset/connectors/sqla/views.py:72 msgid "Show Column" msgstr "Toon Kolom" @@ -13504,11 +13692,11 @@ msgstr "Toon Log" msgid "Show Markers" msgstr "" -#: superset/connectors/sqla/views.py:208 +#: superset/connectors/sqla/views.py:207 msgid "Show Metric" msgstr "Toon meeteenheid" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:178 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 msgid "Show Metric Names" msgstr "" @@ -13516,15 +13704,11 @@ msgstr "" msgid "Show Range Filter" msgstr "" -#: superset/connectors/sqla/views.py:291 -msgid "Show Row level security filter" -msgstr "Toon beveiligingsfilter op rijniveau" - #: superset/views/sql_lab/views.py:53 msgid "Show Saved Query" msgstr "Toon Opgeslagen Query" -#: superset/connectors/sqla/views.py:385 +#: superset/connectors/sqla/views.py:292 msgid "Show Table" msgstr "Toon tabel" @@ -13546,11 +13730,11 @@ msgstr "" msgid "Show Upper Labels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:110 msgid "Show Value" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:164 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:315 #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:184 msgid "Show Values" @@ -13583,7 +13767,7 @@ msgstr "" msgid "Show cell bars" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:395 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 #, fuzzy msgid "Show chart description" msgstr "Toggle grafiek omschrijving" @@ -13620,7 +13804,7 @@ msgstr "" msgid "Show labels when the node has children." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:39 msgid "Show legend" msgstr "" @@ -13657,7 +13841,7 @@ msgstr "" msgid "Show rows total" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 msgid "Show series values on the chart" msgstr "" @@ -13684,7 +13868,6 @@ msgid "" " apply to the result." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:76 #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:365 msgid "Show totals" @@ -13729,7 +13912,7 @@ msgstr "" msgid "Showing %s of %s" msgstr "Weergave %s van %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:184 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 msgid "Shows a list of all series available at that point in time" msgstr "" @@ -13749,7 +13932,7 @@ msgstr "" msgid "Significance Level" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:341 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 @@ -13798,24 +13981,24 @@ msgstr "" msgid "Sizes of vehicles" msgstr "" -#: superset/views/database/forms.py:177 +#: superset/views/database/forms.py:187 msgid "Skip Blank Lines" msgstr "Blanco regels overslaan" -#: superset/views/database/forms.py:174 +#: superset/views/database/forms.py:184 msgid "Skip Initial Space" msgstr "Eerste spatie overslaan" -#: superset/views/database/forms.py:260 superset/views/database/forms.py:354 +#: superset/views/database/forms.py:270 superset/views/database/forms.py:364 msgid "Skip Rows" msgstr "Rijen overslaan" -#: superset/views/database/forms.py:178 +#: superset/views/database/forms.py:188 #, fuzzy msgid "Skip blank lines rather than interpreting them as Not A Number values" msgstr "Sla lege regels over in plaats van ze te interpreteren als NaN waarden." -#: superset/views/database/forms.py:174 +#: superset/views/database/forms.py:184 #, fuzzy msgid "Skip spaces after delimiter" msgstr "Spaties overslaan na het scheidingsteken." @@ -13852,7 +14035,7 @@ msgstr "" msgid "Solid" msgstr "" -#: superset/commands/exceptions.py:115 +#: superset/commands/exceptions.py:119 msgid "Some roles do not exist" msgstr "Sommige rollen bestaan niet" @@ -13861,7 +14044,7 @@ msgstr "Sommige rollen bestaan niet" msgid "Something went wrong." msgstr "Sorry, er ging iets mis. Probeer het later nog eens." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:864 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:919 #, python-format msgid "Sorry there was an error fetching database information: %s" msgstr "" @@ -13881,7 +14064,7 @@ msgstr "Sorry, er is een fout opgetreden" msgid "Sorry, an error occurred" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:357 +#: superset-frontend/src/dashboard/actions/dashboardState.js:359 #, fuzzy msgid "Sorry, an unknown error occurred" msgstr "Sorry, er is een fout opgetreden" @@ -13913,14 +14096,14 @@ msgstr "" msgid "Sorry, there was an error saving this %s: %s" msgstr "Sorry er was een fout bij het ophalen van de opgeslagen grafieken: " -#: superset-frontend/src/dashboard/actions/dashboardState.js:360 +#: superset-frontend/src/dashboard/actions/dashboardState.js:362 #, python-format msgid "Sorry, there was an error saving this dashboard: %s" msgstr "" #: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 #: superset-frontend/src/pages/SavedQueryList/index.tsx:229 -#: superset-frontend/src/views/CRUD/hooks.ts:676 +#: superset-frontend/src/views/CRUD/hooks.ts:680 msgid "Sorry, your browser does not support copying." msgstr "Sorry, uw browser ondersteunt het kopiëren niet." @@ -13930,7 +14113,7 @@ msgstr "Sorry, uw browser ondersteunt het kopiëren niet. Gebruik Ctrl / Cmd + C #: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 #: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 -#: superset-frontend/src/components/Table/index.tsx:208 +#: superset-frontend/src/components/Table/index.tsx:212 msgid "Sort" msgstr "" @@ -13948,12 +14131,12 @@ msgstr "" msgid "Sort Metric" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:247 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:238 #, fuzzy msgid "Sort Series Ascending" msgstr "Sorteer oplopend" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:227 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:224 #, fuzzy msgid "Sort Series By" msgstr "Importeer queries" @@ -14029,7 +14212,7 @@ msgstr "Sorteer meeteenheid" msgid "Sort rows by" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:250 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:241 msgid "Sort series in ascending order" msgstr "" @@ -14060,6 +14243,7 @@ msgstr "" msgid "Sparkline" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:978 msgid "Spatial" msgstr "Ruimtelijk" @@ -14068,23 +14252,23 @@ msgstr "Ruimtelijk" msgid "Specific Date/Time" msgstr "" -#: superset/views/database/forms.py:312 superset/views/database/forms.py:443 +#: superset/views/database/forms.py:322 superset/views/database/forms.py:453 msgid "Specify a schema (if database flavor supports this)." msgstr "Geef een schema op (als de databasesmaak dit ondersteunt)." -#: superset/views/database/forms.py:351 +#: superset/views/database/forms.py:361 msgid "Specify duplicate columns as \"X.0, X.1\"." msgstr "Specificeer dubbele kolommen als “X.0, X.1”." -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:711 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:705 msgid "Specify name to CREATE TABLE AS schema in: public" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:710 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:704 msgid "Specify name to CREATE VIEW AS schema in: public" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:515 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:551 msgid "" "Specify the database version. This should be used with Presto in order to" " enable query cost estimation." @@ -14109,7 +14293,7 @@ msgstr "Parameters" msgid "Square miles" msgstr "queries" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 msgid "Stack" msgstr "" @@ -14123,7 +14307,7 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:161 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:115 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:128 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:125 msgid "Stack series on top of each other" msgstr "" @@ -14143,7 +14327,7 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:124 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:121 #: superset-frontend/src/explore/fixtures.tsx:58 msgid "Stacked Style" msgstr "" @@ -14214,7 +14398,7 @@ msgstr "Status" msgid "State" msgstr "Status" -#: superset/sql_lab.py:511 +#: superset/sql_lab.py:503 #, python-format msgid "Statement %(statement_num)s out of %(statement_count)s" msgstr "" @@ -14264,21 +14448,21 @@ msgid "" "irregular intervals." msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:47 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:46 #: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 msgid "Stop" msgstr "Stop" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:337 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:339 msgid "Stop query" msgstr "Query stoppen" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:116 #, fuzzy msgid "Stop running (Ctrl + e)" msgstr "Stop de uitvoering (Ctrl + x)" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:114 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 msgid "Stop running (Ctrl + x)" msgstr "Stop de uitvoering (Ctrl + x)" @@ -14286,7 +14470,7 @@ msgstr "Stop de uitvoering (Ctrl + x)" msgid "Stopped an unsafe database connection" msgstr "Stopte een onveilige database connectie" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 #, fuzzy msgid "Stream" msgstr "Histogram" @@ -14304,7 +14488,7 @@ msgstr "" msgid "Stretched style" msgstr "" -#: superset/views/database/forms.py:299 +#: superset/views/database/forms.py:309 msgid "Strings used for sheet names (default is the first sheet)." msgstr "Strings gebruikt voor bladnamen (standaard is het eerste blad)." @@ -14333,11 +14517,11 @@ msgstr "Stijl" msgid "Style the ends of the progress bar with a round cap" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:56 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 msgid "Subdomain" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 msgid "Subheader" msgstr "" @@ -14349,8 +14533,8 @@ msgstr "" msgid "Submit" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:472 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:678 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 #: superset/charts/post_processing.py:161 #: superset/charts/post_processing.py:178 msgid "Subtotal" @@ -14362,7 +14546,7 @@ msgstr "" msgid "Success" msgstr "Succes" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:193 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 #, fuzzy msgid "Successfully changed dataset!" msgstr "Wijzig dataset" @@ -14397,7 +14581,7 @@ msgstr "" msgid "Sum values" msgstr "Nul waarden" -#: superset/viz.py:1888 +#: superset/viz.py:1805 msgid "Sunburst" msgstr "Sunburst" @@ -14423,7 +14607,7 @@ msgid "Superset Embedded SDK documentation." msgstr "" #: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:470 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:473 msgid "Superset chart" msgstr "Superset grafiek" @@ -14439,7 +14623,7 @@ msgstr "een fout is opgetreden in Superset tijdens het uitvoeren van een command msgid "Superset encountered an unexpected error." msgstr "Er is een onverwachte fout opgetreden in Superset." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:920 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 msgid "Supported databases" msgstr "" @@ -14447,11 +14631,7 @@ msgstr "" msgid "Survey Responses" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:101 -msgid "Swap Groups and Columns" -msgstr "" - -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:254 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:311 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:435 #, fuzzy @@ -14500,6 +14680,11 @@ msgstr "Synchroniseer kolommen van bron" msgid "Syntax" msgstr "Syntax" +#: superset/db_engine_specs/ocient.py:282 +#, python-format +msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +msgstr "" + #: superset-frontend/src/pages/QueryHistoryList/index.tsx:268 #: superset-frontend/src/pages/SavedQueryList/index.tsx:315 msgid "TABLES" @@ -14533,36 +14718,36 @@ msgstr "Tab naam" msgid "Tab title" msgstr "Titel tabblad" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:26 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 -#: superset-frontend/src/components/TableSelector/index.tsx:290 +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 +#: superset-frontend/src/components/TableSelector/index.tsx:279 #: superset-frontend/src/visualizations/TimeTable/index.ts:26 -#: superset/connectors/sqla/views.py:160 superset/connectors/sqla/views.py:255 -#: superset/connectors/sqla/views.py:477 superset/views/chart/mixin.py:86 +#: superset/connectors/sqla/views.py:159 superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:384 superset/views/chart/mixin.py:86 msgid "Table" msgstr "Tabel" -#: superset/views/core.py:1740 +#: superset/views/core.py:1775 #, python-format msgid "Table %(table)s wasn't found in the database %(db)s" msgstr "Tabwl %(table)s werd niet gevonden in de database %(db)s" -#: superset/views/database/forms.py:317 superset/views/database/forms.py:448 +#: superset/views/database/forms.py:327 superset/views/database/forms.py:458 msgid "Table Exists" msgstr "De tabel bestaat reeds" -#: superset/connectors/sqla/views.py:487 superset/views/database/forms.py:128 -#: superset/views/database/forms.py:269 superset/views/database/forms.py:405 +#: superset/connectors/sqla/views.py:394 superset/views/database/forms.py:128 +#: superset/views/database/forms.py:279 superset/views/database/forms.py:415 msgid "Table Name" msgstr "Tabel Naam" -#: superset/viz.py:698 +#: superset/viz.py:722 msgid "Table View" msgstr "Tabel Weergave" -#: superset/datasets/commands/exceptions.py:130 +#: superset/datasets/commands/exceptions.py:147 #, python-format msgid "" "Table [%(table_name)s] could not be found, please double check your " @@ -14577,7 +14762,7 @@ msgstr "" "De tabel [%{table}s] kon niet worden gevonden, controleer uw " "databaseverbinding, schema en tabelnaam, fout: {}" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:268 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:278 msgid "Table cache timeout" msgstr "" @@ -14590,8 +14775,8 @@ msgstr "Geen tijdskolommen" msgid "Table loading" msgstr "" -#: superset/views/database/forms.py:132 superset/views/database/forms.py:273 -#: superset/views/database/forms.py:409 +#: superset/views/database/forms.py:132 superset/views/database/forms.py:283 +#: superset/views/database/forms.py:419 msgid "Table name cannot contain a schema" msgstr "" @@ -14599,15 +14784,22 @@ msgstr "" msgid "Table name undefined" msgstr "Tabelnaam niet gedefinieerd" +#: superset/db_engine_specs/ocient.py:287 +#, fuzzy, python-format +msgid "Table or View \"%(table)s\" does not exist." +msgstr "De gebruikersnaam “%(username)s” bestaat niet." + #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 msgid "" "Table that visualizes paired t-tests, which are used to understand " "statistical differences between groups." msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:384 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:393 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:287 #: superset-frontend/src/pages/SavedQueryList/index.tsx:334 -#: superset/connectors/sqla/views.py:363 superset/connectors/sqla/views.py:384 +#: superset/connectors/sqla/views.py:291 msgid "Tables" msgstr "Tabellen" @@ -14658,7 +14850,7 @@ msgstr "Dataset kon niet worden verwijderd." #: superset-frontend/src/pages/SavedQueryList/index.tsx:382 #: superset-frontend/src/pages/SavedQueryList/index.tsx:487 #: superset-frontend/src/pages/Tags/index.tsx:279 -#: superset/initialization/__init__.py:384 +#: superset/initialization/__init__.py:378 msgid "Tags" msgstr "" @@ -14685,7 +14877,7 @@ msgstr "" msgid "Target category" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:173 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 msgid "Target value" msgstr "" @@ -14695,7 +14887,7 @@ msgstr "Template Naam" #: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:962 -#: superset/connectors/sqla/views.py:493 +#: superset/connectors/sqla/views.py:400 msgid "Template parameters" msgstr "Template parameters" @@ -14705,7 +14897,7 @@ msgid "" "coming from the controls." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:317 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:327 msgid "" "Terminate running queries when browser window closed or navigated to " "another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " @@ -14729,7 +14921,7 @@ msgstr "" msgid "Text align" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:248 +#: superset-frontend/src/components/ReportModal/index.tsx:247 msgid "Text embedded in email" msgstr "" @@ -14774,7 +14966,7 @@ msgid "" " the filters list?" msgstr "" -#: superset/views/core.py:372 +#: superset/views/core.py:373 msgid "The access requests seem to have been deleted" msgstr "De toegangsverzoeken lijken te zijn gewist" @@ -14792,12 +14984,12 @@ msgid "" "associated with more than one category, only the first will be used." msgstr "" -#: superset/common/query_context_processor.py:586 +#: superset/common/query_context_processor.py:585 #, fuzzy msgid "The chart datasource does not exist" msgstr "De grafiek bestaat niet" -#: superset/common/query_context_processor.py:584 +#: superset/common/query_context_processor.py:583 msgid "The chart does not exist" msgstr "De grafiek bestaat niet" @@ -14850,14 +15042,14 @@ msgstr "Het dashboard is opgeslagen" msgid "The data source seems to have been deleted" msgstr "De gegevensbron lijkt te zijn verwijderd" -#: superset/connectors/sqla/views.py:115 +#: superset/connectors/sqla/views.py:114 msgid "" "The data type that was inferred by the database. It may be necessary to " "input a type manually for expression-defined columns in some cases. In " "most case users should not need to alter this." msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:515 +#: superset-frontend/src/pages/DatabaseList/index.tsx:529 #, python-format msgid "" "The database %s is linked to %s charts that appear on %s dashboards and " @@ -14897,11 +15089,11 @@ msgstr "De database gaf een onverwachte foutmelding." msgid "The database was deleted." msgstr "" -#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2002 +#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2039 msgid "The database was not found." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:710 +#: superset-frontend/src/pages/DatasetList/index.tsx:724 #, python-format msgid "" "The dataset %s is linked to %s charts that appear on %s dashboards. Are " @@ -14910,11 +15102,11 @@ msgid "" msgstr "" #: superset-frontend/src/components/Chart/Chart.jsx:88 -#: superset/views/utils.py:274 +#: superset/views/utils.py:272 msgid "The dataset associated with this chart no longer exists" msgstr "De dataset die bij deze grafiek hoort bestaat niet meer" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:168 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:210 msgid "" "The dataset configuration exposed here\n" " affects all the charts using this dataset.\n" @@ -14929,7 +15121,7 @@ msgstr "" " hier invloed kan hebben op andere grafieken\n" " op ongewenste manieren." -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:129 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:164 #: superset-frontend/src/pages/ChartCreation/index.tsx:261 msgid "The dataset has been saved" msgstr "De dataset is opgeslagen" @@ -14938,7 +15130,7 @@ msgstr "De dataset is opgeslagen" msgid "The dataset linked to this chart may have been deleted." msgstr "De aan deze grafiek gekoppelde dataset is mogelijk verwijderd." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1496 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1488 msgid "The datasource couldn't be loaded" msgstr "De datasource kon niet geladen worden" @@ -14952,7 +15144,7 @@ msgid "" " Supports markdown." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:104 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 msgid "The distance between cells, in pixels" msgstr "" @@ -14967,7 +15159,7 @@ msgstr "De tijdsduur in seconden voordat de cache ongeldig wordt gemaakt" msgid "The encoding format of the lines" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:495 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:531 msgid "" "The engine_params object gets unpacked into the sqlalchemy.create_engine " "call." @@ -14980,6 +15172,7 @@ msgid "" "%(columns)s. " msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:111 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:67 msgid "The function to use when aggregating points into groups" msgstr "" @@ -14990,9 +15183,9 @@ msgid "The host \"%(hostname)s\" might be down and can't be reached." msgstr "De host “%(hostname)s” is misschien down en kan niet worden bereikt." #: superset/db_engine_specs/mssql.py:103 -#: superset/db_engine_specs/postgres.py:140 -#: superset/db_engine_specs/presto.py:664 -#: superset/db_engine_specs/redshift.py:82 +#: superset/db_engine_specs/postgres.py:139 +#: superset/db_engine_specs/presto.py:691 +#: superset/db_engine_specs/redshift.py:86 #, python-format msgid "" "The host \"%(hostname)s\" might be down, and can't be reached on port " @@ -15006,9 +15199,9 @@ msgid "The host might be down, and can't be reached on the provided port." msgstr "" #: superset/db_engine_specs/mssql.py:93 -#: superset/db_engine_specs/postgres.py:130 -#: superset/db_engine_specs/presto.py:659 -#: superset/db_engine_specs/redshift.py:72 +#: superset/db_engine_specs/postgres.py:129 +#: superset/db_engine_specs/presto.py:686 +#: superset/db_engine_specs/redshift.py:76 #, python-format msgid "The hostname \"%(hostname)s\" cannot be resolved." msgstr "De hostnaam “%(hostname)s” kan niet worden opgelost." @@ -15022,7 +15215,7 @@ msgstr "De opgegeven hostnaam kan niet worden gevonden." msgid "The id of the active chart" msgstr "Het id van de actieve grafiek" -#: superset/connectors/sqla/views.py:418 +#: superset/connectors/sqla/views.py:325 msgid "" "The list of charts associated with this table. By altering this " "datasource, you may change how these associated charts behave. Also note " @@ -15063,7 +15256,7 @@ msgstr "" "De metadata_params in Extra veld is niet correct geconfigureerd. De " "sleutel %{key}s is ongeldig." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:469 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:505 msgid "" "The metadata_params object gets unpacked into the sqlalchemy.MetaData " "call." @@ -15083,7 +15276,7 @@ msgid "" "periods" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:130 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 msgid "The number color \"steps\"" msgstr "" @@ -15093,7 +15286,7 @@ msgid "" " can be used to move UTC time to local time." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:308 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:301 #, python-format msgid "" "The number of results displayed is limited to %(rows)d by the " @@ -15101,7 +15294,7 @@ msgid "" "download to csv to see more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:314 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:307 #, python-format msgid "" "The number of results displayed is limited to %(rows)d. Please add " @@ -15109,22 +15302,22 @@ msgid "" "more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:365 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:358 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the dropdown." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:334 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:326 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:319 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the query" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:339 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:332 #, python-format msgid "" "The number of rows displayed is limited to %(rows)d by the query and " @@ -15140,14 +15333,14 @@ msgstr "Het aantal seconden voor het verstrijken van de cache" msgid "The object does not exist in the given database." msgstr "" -#: superset/sqllab/query_render.py:96 +#: superset/sqllab/query_render.py:94 #, python-format msgid "The parameter %(parameters)s in your query is undefined." msgid_plural "The following parameters in your query are undefined: %(parameters)s." msgstr[0] "" msgstr[1] "" -#: superset/db_engine_specs/postgres.py:120 +#: superset/db_engine_specs/postgres.py:119 #, python-format msgid "The password provided for username \"%(username)s\" is incorrect." msgstr "Het opgegeven wachtwoord voor gebruikersnaam “%(username)s” is onjuist." @@ -15192,7 +15385,7 @@ msgid "" " they are needed." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1284 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1339 msgid "" "The passwords for the databases below are needed in order to import them." " Please note that the \"Secure Extra\" and \"Certificate\" sections of " @@ -15212,7 +15405,7 @@ msgid "" "\"freq\" expressions." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 msgid "The pixel radius" msgstr "" @@ -15236,7 +15429,7 @@ msgstr "" msgid "The primary metric is used to define the arc segment sizes" msgstr "" -#: superset/views/core.py:2212 +#: superset/views/core.py:2248 msgid "The provided `rows` argument is not a valid integer." msgstr "" @@ -15245,13 +15438,13 @@ msgid "The query associated with the results was deleted." msgstr "" #: superset/sqllab/commands/export.py:63 superset/sqllab/commands/results.py:91 -#: superset/views/core.py:2162 +#: superset/views/core.py:2198 msgid "" "The query associated with these results could not be found. You need to " "re-run the original query." msgstr "" -#: superset/sqllab/query_render.py:117 +#: superset/sqllab/query_render.py:115 msgid "The query contains one or more malformed template parameters." msgstr "" @@ -15270,11 +15463,11 @@ msgstr "" msgid "The query has a syntax error." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:519 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:512 msgid "The query returned no data" msgstr "De query leverde geen gegevens op" -#: superset/sql_lab.py:301 +#: superset/sql_lab.py:297 #, python-format msgid "" "The query was killed after %(sqllab_timeout)s seconds. It might be too " @@ -15315,14 +15508,14 @@ msgstr "" msgid "The rich tooltip shows a list of all series for that point in time" msgstr "" -#: superset/db_engine_specs/bigquery.py:202 +#: superset/db_engine_specs/bigquery.py:203 #, python-format msgid "" "The schema \"%(schema)s\" does not exist. A valid schema must be used to " "run this query." msgstr "" -#: superset/db_engine_specs/presto.py:646 +#: superset/db_engine_specs/presto.py:673 #, python-format msgid "" "The schema \"%(schema_name)s\" does not exist. A valid schema must be " @@ -15333,11 +15526,12 @@ msgstr "" msgid "The schema was deleted or renamed in the database." msgstr "Het schema werd verwijderd of hernoemd in de database." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:92 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 msgid "The size of the square cell, in pixels" msgstr "" -#: superset/views/datasource/views.py:88 +#: superset/datasets/commands/exceptions.py:72 +#: superset/views/datasource/views.py:90 msgid "" "The submitted URL is not considered safe, only use URLs with the same " "domain as Superset." @@ -15351,21 +15545,21 @@ msgstr "" msgid "The submitted payload has the incorrect schema." msgstr "" -#: superset/db_engine_specs/bigquery.py:189 +#: superset/db_engine_specs/bigquery.py:190 #, python-format msgid "" "The table \"%(table)s\" does not exist. A valid table must be used to run" " this query." msgstr "" -#: superset/db_engine_specs/presto.py:638 +#: superset/db_engine_specs/presto.py:665 #, python-format msgid "" "The table \"%(table_name)s\" does not exist. A valid table must be used " "to run this query." msgstr "" -#: superset/connectors/sqla/views.py:515 +#: superset/connectors/sqla/views.py:422 msgid "" "The table was created. As part of this two-phase configuration process, " "you should now click the edit button by the new table to configure it." @@ -15416,13 +15610,13 @@ msgid "" " the start and/or end time." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 msgid "" "The time unit for each block. Should be a smaller unit than " "domain_granularity. Should be larger or equal to Time Grain" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 msgid "The time unit used for the grouping of blocks" msgstr "" @@ -15440,7 +15634,12 @@ msgstr "" msgid "The user seems to have been deleted" msgstr "De gebruiker lijkt te zijn verwijderd" -#: superset/db_engine_specs/postgres.py:115 +#: superset/db_engine_specs/ocient.py:251 +msgid "The user/password combination is not valid (Incorrect password for user)." +msgstr "" + +#: superset/db_engine_specs/ocient.py:246 +#: superset/db_engine_specs/postgres.py:114 #, python-format msgid "The username \"%(username)s\" does not exist." msgstr "De gebruikersnaam “%(username)s” bestaat niet." @@ -15467,16 +15666,16 @@ msgstr "" msgid "There are associated alerts or reports" msgstr "Er zijn geassocieerde waarschuwingen of rapporten" -#: superset/charts/commands/bulk_delete.py:62 -#: superset/charts/commands/delete.py:71 -#: superset/dashboards/commands/bulk_delete.py:63 -#: superset/dashboards/commands/delete.py:64 -#: superset/databases/commands/delete.py:63 +#: superset/charts/commands/bulk_delete.py:61 +#: superset/charts/commands/delete.py:70 +#: superset/dashboards/commands/bulk_delete.py:62 +#: superset/dashboards/commands/delete.py:63 +#: superset/databases/commands/delete.py:62 #, python-format msgid "There are associated alerts or reports: %s," msgstr "Er zijn gerelateerde waarschuwingen of rapporten: %s," -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:710 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:711 msgid "There are no charts added to this dashboard" msgstr "" @@ -15536,7 +15735,7 @@ msgstr "" msgid "There was an error fetching tables" msgstr "Sorry er was een fout bij het ophalen van de opgeslagen grafieken: " -#: superset-frontend/src/views/CRUD/hooks.ts:589 +#: superset-frontend/src/views/CRUD/hooks.ts:593 #, python-format msgid "There was an error fetching the favorite status: %s" msgstr "" @@ -15545,6 +15744,13 @@ msgstr "" msgid "There was an error fetching your recent activity:" msgstr "Er is een fout opgetreden bij het ophalen van uw recente activiteit:" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:450 +#, fuzzy +msgid "There was an error loading the chart data" +msgstr "" +"Sorry er is een fout opgetreden bij het ophalen van database informatie: " +"%s" + #: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 #, fuzzy msgid "There was an error loading the dataset metadata" @@ -15552,15 +15758,15 @@ msgstr "" "Sorry er is een fout opgetreden bij het ophalen van database informatie: " "%s" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:241 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:240 msgid "There was an error loading the schemas" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:194 +#: superset-frontend/src/components/TableSelector/index.tsx:191 msgid "There was an error loading the tables" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:612 +#: superset-frontend/src/views/CRUD/hooks.ts:616 #, python-format msgid "There was an error saving the favorite status: %s" msgstr "" @@ -15574,14 +15780,20 @@ msgstr "Er is een fout opgetreden in uw verzoek." #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 #: superset-frontend/src/pages/AnnotationList/index.tsx:121 #: superset-frontend/src/pages/CssTemplateList/index.tsx:97 -#: superset-frontend/src/pages/DatabaseList/index.tsx:167 -#: superset-frontend/src/pages/DatasetList/index.tsx:657 +#: superset-frontend/src/pages/DatabaseList/index.tsx:178 +#: superset-frontend/src/pages/DatasetList/index.tsx:668 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:97 #: superset-frontend/src/pages/SavedQueryList/index.tsx:245 #: superset-frontend/src/views/CRUD/utils.tsx:315 #, python-format msgid "There was an issue deleting %s: %s" msgstr "Er was een probleem met het verwijderen van %s: %s" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:111 +#, fuzzy, python-format +msgid "There was an issue deleting rules: %s" +msgstr "Er was een probleem met het verwijderen van %s: %s" + #: superset-frontend/src/pages/AlertReportList/index.tsx:201 #, python-format msgid "There was an issue deleting the selected %s: %s" @@ -15603,7 +15815,7 @@ msgstr "Er was een probleem met het verwijderen van de geselecteerde grafieken: msgid "There was an issue deleting the selected dashboards: " msgstr "Er was een probleem met het verwijderen van de geselecteerde dashboards: " -#: superset-frontend/src/pages/DatasetList/index.tsx:675 +#: superset-frontend/src/pages/DatasetList/index.tsx:686 #, python-format msgid "There was an issue deleting the selected datasets: %s" msgstr "Er was een probleem bij het verwijderen van de geselecteerde datasets: %s" @@ -15628,17 +15840,17 @@ msgstr "Er was een probleem met het verwijderen van de geselecteerde templates: msgid "There was an issue deleting: %s" msgstr "Er was een probleem bij het verwijderen van: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:683 +#: superset-frontend/src/pages/DatasetList/index.tsx:694 #, fuzzy msgid "There was an issue duplicating the dataset." msgstr "Er was een probleem bij het verwijderen van de geselecteerde datasets: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:699 +#: superset-frontend/src/pages/DatasetList/index.tsx:710 #, fuzzy, python-format msgid "There was an issue duplicating the selected datasets: %s" msgstr "Er was een probleem bij het verwijderen van de geselecteerde datasets: %s" -#: superset-frontend/src/dashboard/actions/dashboardState.js:129 +#: superset-frontend/src/dashboard/actions/dashboardState.js:127 msgid "There was an issue favoriting this dashboard." msgstr "Er was een probleem met het promoten van dit dashboard." @@ -15646,7 +15858,7 @@ msgstr "Er was een probleem met het promoten van dit dashboard." msgid "There was an issue fetching reports attached to this dashboard." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:104 +#: superset-frontend/src/dashboard/actions/dashboardState.js:103 msgid "There was an issue fetching the favorite status of this dashboard." msgstr "" "Er was een probleem met het ophalen van de voorkeur status van dit " @@ -15682,13 +15894,13 @@ msgstr "Er was een probleem met het bekijken van de geselecteerde query %s" msgid "There was an issue previewing the selected query. %s" msgstr "Er was een probleem met het bekijken van de geselecteerde query. %s" -#: superset/viz.py:1992 +#: superset/viz.py:1915 msgid "" "There's a loop in your Sankey, please provide a tree. Here's a faulty " "link: {}" msgstr "" -#: superset/connectors/sqla/views.py:335 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:386 msgid "These are the tables this filter will be applied to." msgstr "Dit zijn de tabellen waarop dit filter zal worden toegepast." @@ -15739,10 +15951,10 @@ msgid "" "mydatabase.com)." msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:244 +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:245 msgid "" -"This chart emits/applies cross-filters to other charts that use the same " -"dataset" +"This chart applies cross-filters to charts whose datasets contain columns" +" with the same name." msgstr "" #: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 @@ -15757,7 +15969,7 @@ msgstr "" msgid "This chart might be incompatible with the filter (datasets don't match)" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:322 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 msgid "" "This chart type is not supported when using an unsaved query as a chart " "source. " @@ -15769,7 +15981,7 @@ msgid "" " Check the JSON metadata in the Advanced settings" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:121 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:113 msgid "This column might be incompatible with current dataset" msgstr "" @@ -15818,11 +16030,11 @@ msgstr "" "Dit dashboard is niet gepubliceerd, het verschijnt niet in de lijst van " "dashboards. Klik hier om dit dashboard te publiceren." -#: superset-frontend/src/dashboard/actions/dashboardState.js:154 +#: superset-frontend/src/dashboard/actions/dashboardState.js:152 msgid "This dashboard is now hidden" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:153 +#: superset-frontend/src/dashboard/actions/dashboardState.js:151 msgid "This dashboard is now published" msgstr "" @@ -15836,18 +16048,18 @@ msgid "" " id to the SDK:" msgstr "" -#: superset/views/core.py:1319 +#: superset/views/core.py:1353 msgid "" "This dashboard was changed recently. Please reload dashboard to get " "latest version." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:311 -#: superset-frontend/src/dashboard/actions/dashboardState.js:350 +#: superset-frontend/src/dashboard/actions/dashboardState.js:313 +#: superset-frontend/src/dashboard/actions/dashboardState.js:352 msgid "This dashboard was saved successfully." msgstr "Dit dashboard is succesvol opgeslagen." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1119 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1174 msgid "This database is managed externally, and can't be edited in Superset" msgstr "" @@ -15857,7 +16069,7 @@ msgid "" "table." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:240 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:282 msgid "This dataset is managed externally, and can't be edited in Superset" msgstr "" @@ -15874,7 +16086,7 @@ msgstr "Dit definieert het element dat op de grafiek moet worden uitgezet" msgid "This defines the level of the hierarchy" msgstr "" -#: superset/connectors/sqla/views.py:436 +#: superset/connectors/sqla/views.py:343 msgid "" "This fields acts a Superset view, meaning that Superset will run a query " "against this string as a subquery." @@ -15899,7 +16111,7 @@ msgstr "Deze filterset is identiek aan: “%s”" msgid "This functionality is disabled in your environment for security reasons." msgstr "" -#: superset/connectors/sqla/views.py:352 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:456 msgid "" "This is the condition that will be added to the WHERE clause. For " "example, to only return rows for a particular client, you might define a " @@ -15928,7 +16140,7 @@ msgstr "" msgid "This may be triggered by:" msgstr "Dit kan veroorzaakt worden door:" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:258 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:256 msgid "This metric might be incompatible with current dataset" msgstr "" @@ -15974,15 +16186,15 @@ msgid "" "associate one dataset with a table.\n" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:85 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 msgid "This value should be greater than the left target value" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:80 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 msgid "This value should be smaller than the right target value" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:141 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:171 #, fuzzy msgid "This visualization type does not support cross-filtering." msgstr "Dit visualisatietype wordt niet ondersteund." @@ -16020,6 +16232,7 @@ msgstr "Donderdag" #: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:38 #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 @@ -16049,7 +16262,7 @@ msgstr "" msgid "Time Comparison" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:141 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 msgid "Time Format" msgstr "" @@ -16081,39 +16294,39 @@ msgstr "Datetime formaat" msgid "Time Series" msgstr "" -#: superset/viz.py:1670 +#: superset/viz.py:1581 msgid "Time Series - Bar Chart" msgstr "Tijdreeks - Staafdiagram" -#: superset/viz.py:1596 +#: superset/viz.py:1504 msgid "Time Series - Dual Axis Line Chart" msgstr "Tijdreeks - lijngrafiek met twee assen" -#: superset/viz.py:1308 +#: superset/viz.py:1209 msgid "Time Series - Line Chart" msgstr "Tijdreeks - Lijngrafiek" -#: superset/viz.py:1518 +#: superset/viz.py:1424 msgid "Time Series - Multiple Line Charts" msgstr "Tijdreeksen - Meervoudige lijndiagrammen" -#: superset/viz.py:3036 +#: superset/viz.py:3033 msgid "Time Series - Nightingale Rose Chart" msgstr "Tijdreeks - Nightingale Rose grafiek" -#: superset/viz.py:2965 +#: superset/viz.py:2961 msgid "Time Series - Paired t-test" msgstr "Tijdreeks - Paired t-test" -#: superset/viz.py:1725 +#: superset/viz.py:1638 msgid "Time Series - Percent Change" msgstr "Tijdreeks - Procentuele verandering" -#: superset/viz.py:1679 +#: superset/viz.py:1590 msgid "Time Series - Period Pivot" msgstr "Tijdreeksen - Periode draaitabel" -#: superset/viz.py:1733 +#: superset/viz.py:1646 msgid "Time Series - Stacked" msgstr "Tijdreeksen - Gestapeld" @@ -16128,7 +16341,7 @@ msgstr "" msgid "Time Shift" msgstr "" -#: superset/viz.py:849 +#: superset/viz.py:878 msgid "Time Table View" msgstr "Tijd tabelweergave" @@ -16139,7 +16352,7 @@ msgstr "Tijd tabelweergave" msgid "Time column" msgstr "" -#: superset/connectors/sqla/models.py:1392 superset/models/helpers.py:1575 +#: superset/models/helpers.py:1659 #, python-format msgid "Time column \"%(col)s\" does not exist in dataset" msgstr "Tijdkolom “%(col)s” bestaat niet in dataset" @@ -16224,6 +16437,7 @@ msgid "Time ratio" msgstr "Datetime formaat" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 #: superset-frontend/src/explore/controlPanels/sections.tsx:66 msgid "Time related form attributes" msgstr "Tijdgerelateerde vormattributen" @@ -16346,12 +16560,12 @@ msgstr "Timeout fout" msgid "Timestamp format" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:326 +#: superset-frontend/src/components/ReportModal/index.tsx:325 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 msgid "Timezone" msgstr "" -#: superset/connectors/sqla/views.py:427 +#: superset/connectors/sqla/views.py:334 msgid "Timezone offset (in hours) for this datasource" msgstr "Tijdzone-offset (in uren) voor deze databron" @@ -16393,30 +16607,27 @@ msgstr "Om te filteren op een meeteenheid, gebruikt u het tabblad Aangepaste SQL msgid "To get a readable URL for your dashboard" msgstr "Om een leesbare URL voor uw dashboard te krijgen" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:288 -msgid "Too many columns to filter" -msgstr "" - #: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:27 msgid "Tools" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:216 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:213 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 msgid "Tooltip" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:201 msgid "Tooltip sort by metric" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:191 msgid "Tooltip time format" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 msgid "Top" msgstr "" @@ -16439,14 +16650,14 @@ msgstr "" msgid "Total (%(aggfunc)s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:497 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:562 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:784 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 #, python-format msgid "Total (%(aggregatorName)s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:230 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:68 #, fuzzy msgid "Total value" msgstr "Nul waarden" @@ -16461,7 +16672,7 @@ msgstr "" msgid "Totals" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:411 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:404 msgid "Track job" msgstr "Track job" @@ -16481,10 +16692,6 @@ msgstr "" msgid "Transparent" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:99 -msgid "Transpose Pivot" -msgstr "" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:238 msgid "Transpose pivot" msgstr "" @@ -16502,7 +16709,7 @@ msgid "Tree orientation" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:60 -#: superset/viz.py:1035 +#: superset/viz.py:925 msgid "Treemap" msgstr "Treemap" @@ -16569,7 +16776,7 @@ msgstr "" msgid "Truncates the specified date to the accuracy specified by the date unit." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 msgid "Try applying different filters or ensuring your datasource has data" msgstr "" @@ -16591,21 +16798,21 @@ msgstr "Dinsdag" msgid "Tukey" msgstr "query" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:216 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:65 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:272 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:276 -#: superset-frontend/src/pages/DatasetList/index.tsx:343 -#: superset-frontend/src/pages/DatasetList/index.tsx:552 -#: superset/connectors/sqla/views.py:164 superset/connectors/sqla/views.py:253 +#: superset-frontend/src/pages/DatasetList/index.tsx:354 +#: superset-frontend/src/pages/DatasetList/index.tsx:563 +#: superset/connectors/sqla/views.py:163 superset/connectors/sqla/views.py:252 msgid "Type" msgstr "Type" #: superset-frontend/src/components/DeleteModal/index.tsx:92 #: superset-frontend/src/components/ImportModal/index.tsx:397 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1405 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1460 #, python-format msgid "Type \"%s\" to confirm" msgstr "Type “%s” om te bevestigen" @@ -16631,7 +16838,7 @@ msgstr "" msgid "Type of comparison, value difference or percentage" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:404 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:407 #, python-format msgid "Type or Select [%s]" msgstr "Type of selecteer [%s]" @@ -16661,22 +16868,23 @@ msgstr "URL parameters" msgid "URL slug" msgstr "URL slag" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:622 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:618 msgid "Unable to add a new tab to the backend. Please contact your administrator." msgstr "" -#: superset/db_engine_specs/presto.py:677 +#: superset/db_engine_specs/presto.py:704 #, python-format msgid "Unable to connect to catalog named \"%(catalog_name)s\"." msgstr "Kan geen verbinding maken met catalogus genaamd “%(catalog_name)s”." #: superset/db_engine_specs/mysql.py:165 -#: superset/db_engine_specs/postgres.py:148 +#: superset/db_engine_specs/postgres.py:147 +#: superset/db_engine_specs/starrocks.py:127 #, python-format msgid "Unable to connect to database \"%(database)s\"." msgstr "Kan geen verbinding maken met database “%(database)s”." -#: superset/db_engine_specs/bigquery.py:177 +#: superset/db_engine_specs/bigquery.py:178 msgid "" "Unable to connect. Verify that the following roles are set on the service" " account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " @@ -16684,10 +16892,18 @@ msgid "" "\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:218 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:216 msgid "Unable to create chart without a query id." msgstr "" +#: superset/key_value/exceptions.py:66 +msgid "Unable to decode value" +msgstr "" + +#: superset/key_value/exceptions.py:62 +msgid "Unable to encode value" +msgstr "" + #: superset/utils/date_parser.py:393 #, python-format msgid "Unable to find such a holiday: [%(holiday)s]" @@ -16699,19 +16915,19 @@ msgid "" "table." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:589 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:585 msgid "" "Unable to migrate query editor state to backend. Superset will retry " "later. Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:543 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:539 msgid "" "Unable to migrate query state to backend. Superset will retry later. " "Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:525 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:521 msgid "" "Unable to migrate table schema state to backend. Superset will retry " "later. Please contact your administrator if this problem persists." @@ -16721,14 +16937,14 @@ msgstr "" msgid "Unable to retrieve dashboard colors" msgstr "" -#: superset/views/database/views.py:275 +#: superset/views/database/views.py:278 #, python-format msgid "" "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" " database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset/views/database/views.py:553 +#: superset/views/database/views.py:556 #, python-format msgid "" "Unable to upload Columnar file \"%(filename)s\" to table " @@ -16736,14 +16952,14 @@ msgid "" "%(error_msg)s" msgstr "" -#: superset/views/database/views.py:412 +#: superset/views/database/views.py:415 #, python-format msgid "" "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " "in database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:93 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:92 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 msgid "Undefined" msgstr "Ongedefinieerd" @@ -16757,7 +16973,7 @@ msgstr "Onbepaald venster voor rolling operation" msgid "Undo the action" msgstr "Selectie uitvoeren" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:131 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:132 msgid "Undo?" msgstr "Ongedaan maken?" @@ -16767,7 +16983,7 @@ msgid "Unexpected error" msgstr "Onverwachte fout" #: superset/databases/commands/exceptions.py:137 -#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1438 +#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1479 msgid "Unexpected error occurred, please check your logs for details" msgstr "Er is een onverwachte fout opgetreden, controleer uw logs voor details" @@ -16775,7 +16991,7 @@ msgstr "Er is een onverwachte fout opgetreden, controleer uw logs voor details" msgid "Unexpected error: " msgstr "" -#: superset/views/api.py:109 +#: superset/views/api.py:108 #, fuzzy, python-format msgid "Unexpected time range: %s" msgstr "Reële tijdspanne" @@ -16789,7 +17005,7 @@ msgstr "Onbekend" msgid "Unknown MySQL server host \"%(hostname)s\"." msgstr "Onbekende MySQL server host “%(hostname)s”." -#: superset/db_engine_specs/presto.py:1319 +#: superset/db_engine_specs/presto.py:1342 msgid "Unknown Presto Error" msgstr "Onbekende Presto Fout" @@ -16797,13 +17013,13 @@ msgstr "Onbekende Presto Fout" msgid "Unknown Status" msgstr "" -#: superset/connectors/sqla/models.py:1317 superset/models/helpers.py:1498 +#: superset/models/helpers.py:1582 #, python-format msgid "Unknown column used in orderby: %(col)s" msgstr "Onbekende kolom gebruikt in orderby: %(col)s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:402 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:480 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:398 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:476 msgid "Unknown error" msgstr "Onbekende fout" @@ -16864,7 +17080,7 @@ msgstr "Naamloze zoekopdracht" msgid "Untitled query" msgstr "Naamloze zoekopdracht" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:223 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:222 msgid "Update" msgstr "Update" @@ -16882,7 +17098,7 @@ msgstr "" msgid "Upload" msgstr "Upload" -#: superset-frontend/src/pages/DatabaseList/index.tsx:202 +#: superset-frontend/src/pages/DatabaseList/index.tsx:213 #, fuzzy msgid "Upload CSV" msgstr "Upload Excel" @@ -16901,7 +17117,7 @@ msgstr "" msgid "Upload Enabled" msgstr "Upload Excel" -#: superset-frontend/src/pages/DatabaseList/index.tsx:216 +#: superset-frontend/src/pages/DatabaseList/index.tsx:227 #, fuzzy msgid "Upload Excel file" msgstr "Upload Excel" @@ -16914,7 +17130,7 @@ msgstr "" msgid "Upload JSON file" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:209 +#: superset-frontend/src/pages/DatabaseList/index.tsx:220 msgid "Upload columnar file" msgstr "" @@ -16922,7 +17138,7 @@ msgstr "" msgid "Upload columnar file to database" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:199 +#: superset-frontend/src/pages/DatabaseList/index.tsx:210 #, fuzzy msgid "Upload file to database" msgstr "Bewerk database" @@ -16936,7 +17152,7 @@ msgstr "" msgid "Use \"%(menuName)s\" menu instead." msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:36 +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 #, fuzzy, python-format msgid "Use %s to open in a new tab." msgstr "Zoekopdracht in een nieuw tabblad" @@ -16947,7 +17163,7 @@ msgstr "Zoekopdracht in een nieuw tabblad" msgid "Use Area Proportions" msgstr "" -#: superset/views/database/forms.py:462 +#: superset/views/database/forms.py:472 msgid "Use Columns" msgstr "" @@ -16963,9 +17179,9 @@ msgstr "" msgid "Use a log scale for the Y-axis" msgstr "" -#: superset/db_engine_specs/base.py:1850 -#: superset/db_engine_specs/clickhouse.py:211 -#: superset/db_engine_specs/databricks.py:57 +#: superset/db_engine_specs/base.py:1889 +#: superset/db_engine_specs/clickhouse.py:216 +#: superset/db_engine_specs/databricks.py:58 msgid "Use an encrypted connection to the database" msgstr "" @@ -16976,12 +17192,12 @@ msgid "" " Your chart must be one of these visualization types: [%s]" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:87 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 msgid "Use date formatting even when metric value is not a timestamp" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:217 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 msgid "Use legacy datasource editor" msgstr "Gebruik de legacy datasource editor" @@ -17027,16 +17243,6 @@ msgid "" " from the pluginʼs package.json" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:28 -msgid "" -"Used to summarize a set of data by grouping together multiple statistics " -"along two axes. Examples: Sales numbers by region and month, tasks by " -"status and assignee, active users by age and location.\n" -"\n" -" This chart is being deprecated and we recommend checking out Pivot " -"Table V2 instead!" -msgstr "" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 msgid "" "Used to summarize a set of data by grouping together multiple statistics " @@ -17080,11 +17286,17 @@ msgstr "User query" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:133 #: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 -#: superset/db_engine_specs/base.py:1837 +#: superset/db_engine_specs/base.py:1868 #: superset/db_engine_specs/clickhouse.py:201 msgid "Username" msgstr "Gebruikersnaam" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:27 +msgid "" +"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" +" of data" +msgstr "" + #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:45 msgid "" "Uses a gauge to showcase progress of a metric towards a target. The " @@ -17134,9 +17346,9 @@ msgstr "" msgid "Value is required" msgstr "" -#: superset/reports/schemas.py:186 superset/reports/schemas.py:192 -#: superset/reports/schemas.py:198 superset/reports/schemas.py:280 -#: superset/reports/schemas.py:286 superset/reports/schemas.py:293 +#: superset/reports/schemas.py:190 superset/reports/schemas.py:195 +#: superset/reports/schemas.py:200 superset/reports/schemas.py:291 +#: superset/reports/schemas.py:296 superset/reports/schemas.py:302 msgid "Value must be greater than 0" msgstr "Waarde moet groter zijn dan 0" @@ -17158,16 +17370,16 @@ msgstr "" msgid "Vehicle Types" msgstr "" -#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:252 +#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:251 msgid "Verbose Name" msgstr "Verklarende naam" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:503 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:539 #: superset-frontend/src/features/home/RightMenu.tsx:501 msgid "Version" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:509 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:545 msgid "Version number" msgstr "" @@ -17178,7 +17390,7 @@ msgstr "" msgid "Vertical" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:162 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 msgid "Vertical (Left)" msgstr "" @@ -17208,7 +17420,7 @@ msgstr "Bewerk de dataset" msgid "View all charts" msgstr "Alle grafieken" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:434 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 #, fuzzy msgid "View as table" msgstr "Bekijk voorbeelden" @@ -17223,8 +17435,8 @@ msgstr "Bekijk in SQL Lab" msgid "View keys & indexes (%s)" msgstr "Bekijk sleutels & indexen (%s)" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:415 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:417 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:424 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:426 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:394 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:396 msgid "View query" @@ -17245,8 +17457,8 @@ msgstr "" msgid "Viewport" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:342 -#: superset-frontend/src/pages/DatasetList/index.tsx:559 +#: superset-frontend/src/pages/DatasetList/index.tsx:353 +#: superset-frontend/src/pages/DatasetList/index.tsx:570 #, fuzzy msgid "Virtual" msgstr "virtueel" @@ -17255,22 +17467,22 @@ msgstr "virtueel" msgid "Virtual (SQL)" msgstr "Virtueel (SQL)" -#: superset-frontend/src/pages/DatasetList/index.tsx:281 +#: superset-frontend/src/pages/DatasetList/index.tsx:292 msgid "Virtual dataset" msgstr "Virtuele dataset" -#: superset/connectors/sqla/models.py:960 superset/connectors/sqla/utils.py:111 -#: superset/models/helpers.py:1036 +#: superset/connectors/sqla/models.py:921 superset/connectors/sqla/utils.py:110 +#: superset/models/helpers.py:1079 msgid "Virtual dataset query cannot be empty" msgstr "Query virtuele dataset kan niet leeg zijn" -#: superset/connectors/sqla/models.py:963 superset/models/helpers.py:1039 +#: superset/connectors/sqla/models.py:924 superset/models/helpers.py:1082 msgid "Virtual dataset query cannot consist of multiple statements" msgstr "" "Een query voor een virtuele dataset kan niet uit meerdere statements " "bestaan" -#: superset/connectors/sqla/models.py:928 superset/models/helpers.py:1062 +#: superset/connectors/sqla/models.py:889 superset/models/helpers.py:1105 msgid "Virtual dataset query must be read-only" msgstr "Query voor virtuele gegevensverzameling moet alleen-lezen zijn" @@ -17399,7 +17611,7 @@ msgid "" "corresponds to higher frequency." msgstr "" -#: superset/viz.py:141 +#: superset/viz.py:140 msgid "Viz is missing a datasource" msgstr "Viz mist een gegevensbron" @@ -17411,21 +17623,21 @@ msgstr "Viz type" msgid "WED" msgstr "WO" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:948 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1003 msgid "Want to add a new database?" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1246 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:216 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:214 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 msgid "Warning" msgstr "Waarschuwing" -#: superset/connectors/sqla/views.py:258 +#: superset/connectors/sqla/views.py:257 msgid "Warning Message" msgstr "Waarschuwing" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:286 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 msgid "Warning!" msgstr "Waarschuwing!" @@ -17443,13 +17655,13 @@ msgstr "" msgid "Was unable to check your query" msgstr "Label voor uw zoekopdracht" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1468 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1523 msgid "" "We are unable to connect to your database. Click \"See more\" for " "database-provided information that may help troubleshoot the issue." msgstr "" -#: superset/db_engine_specs/bigquery.py:197 +#: superset/db_engine_specs/bigquery.py:198 #, python-format msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." msgstr "" @@ -17459,8 +17671,8 @@ msgstr "" msgid "We can't seem to resolve the column \"%(column_name)s\"" msgstr "" -#: superset/db_engine_specs/postgres.py:153 -#: superset/db_engine_specs/presto.py:630 +#: superset/db_engine_specs/postgres.py:152 +#: superset/db_engine_specs/presto.py:657 #, python-format msgid "" "We can't seem to resolve the column \"%(column_name)s\" at line " @@ -17482,7 +17694,7 @@ msgid "" "dataset." msgstr "" -#: superset/db_engine_specs/redshift.py:90 +#: superset/db_engine_specs/redshift.py:94 #, python-format msgid "" "We were unable to connect to your database named \"%(database)s\". Please" @@ -17499,31 +17711,31 @@ msgstr "" msgid "Wednesday" msgstr "Woensdag" -#: superset/db_engine_specs/base.py:107 +#: superset/db_engine_specs/base.py:108 msgid "Week" msgstr "Week" -#: superset/db_engine_specs/base.py:113 +#: superset/db_engine_specs/base.py:114 msgid "Week ending Saturday" msgstr "Week beginnend op zaterdag" -#: superset/db_engine_specs/base.py:112 +#: superset/db_engine_specs/base.py:113 msgid "Week starting Monday" msgstr "Week beginnend op maandag" -#: superset/db_engine_specs/base.py:111 +#: superset/db_engine_specs/base.py:112 msgid "Week starting Sunday" msgstr "Week beginnend op zondag" -#: superset/db_engine_specs/base.py:114 +#: superset/db_engine_specs/base.py:115 msgid "Week_ending Sunday" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:123 +#: superset-frontend/src/components/ReportModal/index.tsx:122 msgid "Weekly Report" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:122 +#: superset-frontend/src/components/ReportModal/index.tsx:121 #, python-format msgid "Weekly Report for %s" msgstr "" @@ -17537,6 +17749,7 @@ msgstr "" msgid "Weeks %s" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:49 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:77 msgid "Weight" @@ -17573,7 +17786,7 @@ msgstr[1] "" msgid "What should be shown on the label?" msgstr "" -#: superset/views/database/forms.py:165 +#: superset/views/database/forms.py:175 #, fuzzy msgid "What should happen if the table already exists" msgstr "Er bestaat al een filterset met deze naam" @@ -17601,7 +17814,7 @@ msgstr "" msgid "When checked, the map will zoom to your data after each query" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:189 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 msgid "When enabled, users are able to visualize SQL Lab results in Explore." msgstr "" @@ -17626,13 +17839,13 @@ msgid "" "relative time filter on a partitioned or indexed time-related field." msgstr "" -#: superset/viz.py:861 +#: superset/viz.py:891 msgid "When using 'Group By' you are limited to use a single metric" msgstr "" "Bij gebruik van ‘Group By’ bent u beperkt tot het gebruik van één " "meeteenheid" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:74 msgid "When using other than adaptive formatting, labels may overlap" msgstr "" @@ -17644,13 +17857,13 @@ msgstr "" msgid "Whether the progress bar overlaps when there are multiple groups of data" msgstr "" -#: superset/connectors/sqla/views.py:455 +#: superset/connectors/sqla/views.py:362 msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" msgstr "" "Geeft aan of de tabel werd gegenereerd door de “Visualize” stroom in SQL " "Lab" -#: superset/connectors/sqla/views.py:111 +#: superset/connectors/sqla/views.py:110 msgid "" "Whether this column is exposed in the `Filters` section of the explore " "view." @@ -17692,7 +17905,7 @@ msgstr "" msgid "Whether to display a bar chart background in table columns" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 msgid "Whether to display a legend for the chart" msgstr "" @@ -17723,14 +17936,14 @@ msgid "" " 5% threshold." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:157 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:118 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:159 msgid "Whether to display the legend (toggles)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:181 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 msgid "Whether to display the metric name as a title" msgstr "" @@ -17743,7 +17956,7 @@ msgstr "" msgid "Whether to display the min and max values of the Y-axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:167 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:187 msgid "Whether to display the numerical values within the cells" @@ -17807,7 +18020,7 @@ msgstr "" msgid "Whether to make the histogram cumulative" msgstr "" -#: superset/connectors/sqla/views.py:106 +#: superset/connectors/sqla/views.py:105 msgid "" "Whether to make this column available as a [Time Granularity] option, " "column has to be DATETIME or DATETIME-like" @@ -17821,7 +18034,7 @@ msgstr "" msgid "Whether to populate autocomplete filters options" msgstr "Geef aan of de autoaanvulfilteropties moeten worden ingevuld" -#: superset/connectors/sqla/views.py:450 +#: superset/connectors/sqla/views.py:357 msgid "" "Whether to populate the filter's dropdown in the explore view's filter " "section with a list of distinct values fetched from the backend on the " @@ -17851,7 +18064,8 @@ msgstr "" msgid "Whether to show the split lines on the axis" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:124 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:143 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:174 #, fuzzy msgid "Whether to sort ascending or descending on the base Axis." msgstr "Aflopend of oplopend sorteren" @@ -17883,7 +18097,7 @@ msgstr "Aflopend of oplopend sorteren" msgid "Whether to sort results by the selected metric in descending order." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:207 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 msgid "Whether to sort tooltip by the selected metric in descending order." msgstr "" @@ -17947,7 +18161,7 @@ msgid "Working timeout" msgstr "Time-out" #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 -#: superset/viz.py:2079 +#: superset/viz.py:2006 msgid "World Map" msgstr "Wereld kaart" @@ -17959,12 +18173,12 @@ msgstr "Schrijf een omschrijving voor uw zoekopdracht." msgid "Write a handlebars template to render the data" msgstr "" -#: superset/views/database/forms.py:219 +#: superset/views/database/forms.py:229 #, fuzzy msgid "Write dataframe index as a column" msgstr "Schrijf dataframe index als een kolom." -#: superset/views/database/forms.py:380 superset/views/database/forms.py:471 +#: superset/views/database/forms.py:390 superset/views/database/forms.py:481 msgid "Write dataframe index as a column." msgstr "Schrijf dataframe index als een kolom." @@ -18022,12 +18236,14 @@ msgstr "" msgid "X bounds" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:122 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:141 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:172 #, fuzzy msgid "X-Axis Sort Ascending" msgstr "Sorteer oplopend" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:69 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:156 msgid "X-Axis Sort By" msgstr "" @@ -18086,7 +18302,6 @@ msgid "Y Axis 2 Bounds" msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:260 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:248 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:192 @@ -18125,12 +18340,14 @@ msgstr "" msgid "Y bounds" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:121 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:140 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:171 #, fuzzy msgid "Y-Axis Sort Ascending" msgstr "Sorteer oplopend" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:68 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 msgid "Y-Axis Sort By" msgstr "" @@ -18146,7 +18363,7 @@ msgstr "" msgid "YScale Interval" msgstr "" -#: superset/db_engine_specs/base.py:110 +#: superset/db_engine_specs/base.py:111 msgid "Year" msgstr "Jaar" @@ -18171,9 +18388,9 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:707 #: superset-frontend/src/pages/DashboardList/index.tsx:506 #: superset-frontend/src/pages/DashboardList/index.tsx:588 -#: superset-frontend/src/pages/DatabaseList/index.tsx:467 -#: superset-frontend/src/pages/DatabaseList/index.tsx:487 -#: superset-frontend/src/pages/DatasetList/index.tsx:572 +#: superset-frontend/src/pages/DatabaseList/index.tsx:478 +#: superset-frontend/src/pages/DatabaseList/index.tsx:498 +#: superset-frontend/src/pages/DatasetList/index.tsx:583 msgid "Yes" msgstr "Ja" @@ -18203,7 +18420,7 @@ msgstr "" "ertoe leiden dat je een deel van je werk verloren gaat. Weet je zeker dat" " je wilt overschrijven?" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1394 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1449 msgid "" "You are importing one or more databases that already exist. Overwriting " "might cause you to lose some of your work. Are you sure you want to " @@ -18227,7 +18444,7 @@ msgid "" "want to overwrite?" msgstr "" -#: superset/views/core.py:2177 +#: superset/views/core.py:2213 msgid "" "You are not authorized to see this query. If you think this is an error, " "please reach out to your administrator." @@ -18246,7 +18463,7 @@ msgstr "" msgid "You can add the components in the edit mode." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:127 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:157 msgid "You can also just click on the chart to apply cross-filter." msgstr "" @@ -18269,7 +18486,7 @@ msgstr "" msgid "You can preview the list of dashboards in the chart settings dropdown." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:148 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:178 msgid "You can't apply cross-filter on this data point." msgstr "" @@ -18283,7 +18500,7 @@ msgstr "" msgid "You cannot use 45° tick layout along with the time range filter" msgstr "" -#: superset/viz.py:723 +#: superset/viz.py:748 msgid "" "You cannot use [Columns] in combination with [Group " "By]/[Metrics]/[Percentage Metrics]. Please choose one or the other." @@ -18299,7 +18516,7 @@ msgid "You do not have permission to edit this chart" msgstr "U heeft geen toestemming om deze grafiek te bewerken" #: superset-frontend/src/components/Tags/utils.tsx:69 -#: superset-frontend/src/dashboard/actions/dashboardState.js:366 +#: superset-frontend/src/dashboard/actions/dashboardState.js:368 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:134 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:40 @@ -18311,7 +18528,7 @@ msgstr "U hebt geen toestemming om dit dashboard te bewerken" msgid "You do not have permissions to access the datasource(s): %(name)s." msgstr "U hebt geen rechten voor toegang tot de gegevensbron(nen): %(name)s." -#: superset-frontend/src/dashboard/actions/dashboardState.js:162 +#: superset-frontend/src/dashboard/actions/dashboardState.js:160 msgid "You do not have permissions to edit this dashboard." msgstr "U hebt geen rechten om dit dashboard te bewerken." @@ -18323,7 +18540,7 @@ msgstr "" msgid "You don't have access to this dashboard." msgstr "Je hebt geen toegang tot dit dashboard." -#: superset/datasets/commands/exceptions.py:189 +#: superset/datasets/commands/exceptions.py:206 msgid "You don't have access to this dataset." msgstr "" @@ -18341,17 +18558,17 @@ msgstr "Je hebt nog geen favorieten!" msgid "You don't have permission to modify the value." msgstr "" -#: superset/security/manager.py:2267 +#: superset/security/manager.py:2262 #, fuzzy, python-format msgid "You don't have the rights to alter %(resource)s" msgstr "Je hebt niet de rechten om deze titel te veranderen." -#: superset/views/core.py:923 +#: superset/views/core.py:945 #, fuzzy msgid "You don't have the rights to alter this chart" msgstr "Je hebt niet de rechten om deze titel te veranderen." -#: superset/views/core.py:1097 +#: superset/views/core.py:1119 #, fuzzy msgid "You don't have the rights to alter this dashboard" msgstr "Je hebt niet de rechten om deze titel te veranderen." @@ -18360,22 +18577,22 @@ msgstr "Je hebt niet de rechten om deze titel te veranderen." msgid "You don't have the rights to alter this title." msgstr "Je hebt niet de rechten om deze titel te veranderen." -#: superset/views/core.py:929 +#: superset/views/core.py:951 #, fuzzy msgid "You don't have the rights to create a chart" msgstr "Je hebt niet de rechten om " -#: superset/views/core.py:1113 +#: superset/views/core.py:1135 #, fuzzy msgid "You don't have the rights to create a dashboard" msgstr "Je hebt niet de rechten om " -#: superset/views/core.py:644 +#: superset/views/core.py:649 #, fuzzy msgid "You don't have the rights to download as csv" msgstr "Je hebt niet de rechten om " -#: superset/views/core.py:424 +#: superset/views/core.py:425 msgid "You have no permission to approve this request" msgstr "Je hebt geen toestemming om dit verzoek goed te keuren" @@ -18387,7 +18604,7 @@ msgstr "Je hebt deze filter verwijderd." msgid "You have unsaved changes." msgstr "Je hebt niet opgeslagen wijzigingen." -#: superset-frontend/src/dashboard/actions/dashboardState.js:652 +#: superset-frontend/src/dashboard/actions/dashboardState.js:650 #, python-format msgid "" "You have used all %(historyLength)s undo slots and will not be able to " @@ -18396,7 +18613,7 @@ msgid "" msgstr "" #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:300 -#: superset-frontend/src/pages/DatasetList/index.tsx:453 +#: superset-frontend/src/pages/DatasetList/index.tsx:464 msgid "" "You must be a dataset owner in order to edit. Please reach out to a " "dataset owner to request modifications or edit access." @@ -18406,7 +18623,7 @@ msgstr "" msgid "You must pick a name for the new dashboard" msgstr "U moet een naam kiezen voor het nieuwe dashboard" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:525 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:519 msgid "You must run the query successfully first" msgstr "U moet de query eerst succesvol uitvoeren" @@ -18414,7 +18631,7 @@ msgstr "U moet de query eerst succesvol uitvoeren" msgid "You need to configure HTML sanitization to use CSS" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:350 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 msgid "" "You updated the values in the control panel, but the chart was not " "updated automatically. Run the query by clicking on the \"Update chart\" " @@ -18427,7 +18644,7 @@ msgid "" "match this new dataset have been retained." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:343 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 msgid "Your chart is not up to date" msgstr "" @@ -18439,7 +18656,7 @@ msgstr "" msgid "Your dashboard is too large. Please reduce its size before saving it." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1036 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1028 msgid "Your query could not be saved" msgstr "Uw zoekopdracht kon niet worden opgeslagen" @@ -18447,7 +18664,7 @@ msgstr "Uw zoekopdracht kon niet worden opgeslagen" msgid "Your query could not be scheduled" msgstr "Uw vraag kon niet worden gepland" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1071 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1063 msgid "Your query could not be updated" msgstr "Uw zoekopdracht kon niet worden bijgewerkt" @@ -18459,15 +18676,15 @@ msgstr "" "Uw zoekopdracht is ingepland. Om de details van uw zoekopdracht te zien, " "navigeert u naar Opgeslagen zoekopdrachten" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1051 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 msgid "Your query was not properly saved" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1054 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1046 msgid "Your query was saved" msgstr "Uw zoekopdracht werd opgeslagen" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1067 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1059 msgid "Your query was updated" msgstr "Uw zoekopdracht werd bijgewerkt" @@ -18489,21 +18706,21 @@ msgstr "" msgid "Zoom level of the map" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:262 +#: superset-frontend/src/dashboard/actions/dashboardState.js:260 msgid "[ untitled dashboard ]" msgstr "" -#: superset/viz.py:2386 +#: superset/viz.py:2323 msgid "[Longitude] and [Latitude] columns must be present in [Group By]" msgstr "" "Kolommen [Lengtegraad] en [Breedtegraad] moeten aanwezig zijn in [Groepen" " per]" -#: superset/viz.py:2336 +#: superset/viz.py:2273 msgid "[Longitude] and [Latitude] must be set" msgstr "[Lengtegraad] en [Breedtegraad] moeten worden ingesteld" -#: superset/explore/commands/get.py:121 superset/views/core.py:870 +#: superset/explore/commands/get.py:121 superset/views/core.py:892 msgid "[Missing Dataset]" msgstr "[Missing Dataset]" @@ -18516,7 +18733,7 @@ msgstr "[Superset] Toegang tot de gegevensbron %(name)s werd verleend" msgid "[Untitled]" msgstr "[Untitled]" -#: superset/connectors/base/models.py:252 superset/models/sql_lab.py:228 +#: superset/connectors/base/models.py:262 superset/models/sql_lab.py:216 #, fuzzy msgid "[asc]" msgstr "Berekende kolom [%s] vereist een uitdrukking" @@ -18529,7 +18746,7 @@ msgstr "" msgid "[dashboard name]" msgstr "[dashboard naam]" -#: superset/connectors/base/models.py:255 superset/models/sql_lab.py:231 +#: superset/connectors/base/models.py:265 superset/models/sql_lab.py:219 msgid "[desc]" msgstr "" @@ -18554,7 +18771,7 @@ msgstr "" msgid "`compare_type` must be `difference`, `percentage` or `ratio`" msgstr "" -#: superset/charts/schemas.py:573 +#: superset/charts/schemas.py:654 msgid "`confidence_interval` must be between 0 and 1 (exclusive)" msgstr "`confidence_interval` moet tussen 0 en 1 liggen (exclusief)" @@ -18577,15 +18794,15 @@ msgstr "`prophet` package niet geïnstalleerd" msgid "`rename_columns` must have the same length as `columns`." msgstr "`rename_columns` moet dezelfde lengte hebben als `columns`." -#: superset/charts/schemas.py:1114 +#: superset/charts/schemas.py:1284 msgid "`row_limit` must be greater than or equal to 0" msgstr "`rij_limiet` moet groter of gelijk aan 0 zijn" -#: superset/charts/schemas.py:1121 +#: superset/charts/schemas.py:1291 msgid "`row_offset` must be greater than or equal to 0" msgstr "`rij_offset` moet groter zijn dan of gelijk aan 0" -#: superset/charts/schemas.py:972 +#: superset/charts/schemas.py:1108 msgid "`width` must be greater or equal to 0" msgstr "`breedte` moet groter of gelijk zijn aan 0" @@ -18593,10 +18810,16 @@ msgstr "`breedte` moet groter of gelijk zijn aan 0" msgid "aggregate" msgstr "aggregaat" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 #: superset-frontend/src/pages/AlertReportList/index.tsx:110 msgid "alert" msgstr "Waarschuwing" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 +#, fuzzy +msgid "alert dark" +msgstr "Waarschuwing" + #: superset-frontend/src/pages/AlertReportList/index.tsx:111 msgid "alerts" msgstr "waarschuwingen" @@ -18738,7 +18961,7 @@ msgid "clear all filters" msgstr "Zoek in alle filteropties" #: superset-frontend/src/components/Chart/Chart.jsx:290 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:354 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 msgid "click here" msgstr "" @@ -18768,7 +18991,7 @@ msgstr "" msgid "count" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:365 +#: superset-frontend/src/explore/components/SaveModal.tsx:400 #, fuzzy msgid "create" msgstr "Maak" @@ -18814,16 +19037,16 @@ msgid "dashboards" msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/index.tsx:543 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:712 -#: superset-frontend/src/pages/DatabaseList/index.tsx:91 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:729 +#: superset-frontend/src/pages/DatabaseList/index.tsx:102 msgid "database" msgstr "database" #: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 #: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 #: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 -#: superset-frontend/src/pages/DatasetList/index.tsx:148 -#: superset-frontend/src/pages/DatasetList/index.tsx:822 +#: superset-frontend/src/pages/DatasetList/index.tsx:159 +#: superset-frontend/src/pages/DatasetList/index.tsx:844 msgid "dataset" msgstr "dataset" @@ -18836,8 +19059,8 @@ msgstr "Dataset naam" msgid "date" msgstr "datum" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 msgid "day" msgstr "dag" @@ -18866,6 +19089,11 @@ msgstr "" msgid "deck.gl Grid" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:30 +#, fuzzy +msgid "deck.gl Heatmap" +msgstr "Heatmap" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:28 msgid "deck.gl Multiple Layers" msgstr "" @@ -18894,6 +19122,7 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:34 @@ -18979,11 +19208,11 @@ msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:112 #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:657 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:674 msgid "e.g. world_population" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:655 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:672 msgid "e.g. xy12345.us-east-2.aws" msgstr "" @@ -19000,7 +19229,16 @@ msgstr "" msgid "entries" msgstr "Series" -#: superset/connectors/sqla/models.py:1537 superset/models/helpers.py:1742 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +#, fuzzy +msgid "error" +msgstr "%s Fout" + +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 +msgid "error dark" +msgstr "" + +#: superset/models/helpers.py:1803 #, fuzzy msgid "error_message" msgstr "Foutmelding" @@ -19086,10 +19324,6 @@ msgstr "" msgid "geohash (square)" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 -msgid "green" -msgstr "" - #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:168 #, fuzzy msgid "heatmap" @@ -19103,13 +19337,13 @@ msgstr "" #: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:125 #: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1800 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1856 msgid "here" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 msgid "hour" msgstr "uur" @@ -19147,7 +19381,7 @@ msgstr "" msgid "joined" msgstr "joined" -#: superset/views/base.py:595 +#: superset/views/base.py:596 msgid "json isn't valid" msgstr "json is ongeldig" @@ -19207,7 +19441,7 @@ msgstr "Verwijder" msgid "log" msgstr "log" -#: superset/charts/schemas.py:645 +#: superset/charts/schemas.py:735 msgid "" "lower percentile must be greater than 0 and less than 100. Must be lower " "than upper percentile." @@ -19216,7 +19450,6 @@ msgstr "" " zijn dan het bovenste percentiel." #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:189 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:58 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 #: superset-frontend/src/filters/components/Range/buildQuery.ts:69 #, fuzzy @@ -19226,9 +19459,9 @@ msgstr "Max" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:187 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:254 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:56 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:136 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:119 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:403 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:531 @@ -19246,15 +19479,14 @@ msgstr "" msgid "median" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:60 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:62 #: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 #, fuzzy msgid "metric" msgstr "Meeteenheid" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:188 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:57 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 #: superset-frontend/src/filters/components/Range/buildQuery.ts:58 #, fuzzy @@ -19275,8 +19507,8 @@ msgid "monotone" msgstr "maand" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 #: superset-frontend/src/explore/controls.jsx:267 msgid "month" @@ -19287,7 +19519,7 @@ msgid "more than {max} {name}" msgstr "" #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:53 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:78 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:77 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:116 msgid "must have a value" msgstr "" @@ -19353,7 +19585,7 @@ msgstr "uur" msgid "or use existing ones from the panel on the right" msgstr "" -#: superset/charts/schemas.py:1143 +#: superset/charts/schemas.py:1313 msgid "orderby column must be populated" msgstr "" @@ -19411,7 +19643,7 @@ msgid "" " first is lower than the second value" msgstr "" -#: superset/views/core.py:1921 +#: superset/views/core.py:1958 #, fuzzy msgid "permalink state not found" msgstr "Rapport Schedule state niet gevonden" @@ -19468,11 +19700,7 @@ msgstr "Recente" msgid "recents" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 -msgid "red" -msgstr "" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:563 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:566 #: superset-frontend/src/pages/AlertReportList/index.tsx:110 msgid "report" msgstr "rapport" @@ -19484,7 +19712,7 @@ msgstr "rapport" msgid "reports" msgstr "rapporten" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:491 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:522 msgid "restore zoom" msgstr "" @@ -19493,6 +19721,11 @@ msgstr "" msgid "right" msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:139 +#, fuzzy +msgid "rowlevelsecurity" +msgstr "Beveiligingsfilter op rijniveau" + #: superset-frontend/src/SqlLab/constants.ts:36 #: superset-frontend/src/SqlLab/constants.ts:52 #, fuzzy @@ -19543,7 +19776,6 @@ msgstr "Gewijzigd" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:190 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:59 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:138 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:405 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:185 @@ -19577,16 +19809,22 @@ msgstr "" #: superset-frontend/src/SqlLab/constants.ts:38 #: superset-frontend/src/SqlLab/constants.ts:50 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 #, fuzzy msgid "success" msgstr "Succes" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +#, fuzzy +msgid "success dark" +msgstr "Succes" + #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:186 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:255 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:378 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:55 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:260 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:532 @@ -19633,7 +19871,7 @@ msgstr "Ongedaan maken?" msgid "unknown type icon" msgstr "Onbekende fout" -#: superset/charts/schemas.py:660 +#: superset/charts/schemas.py:750 msgid "" "upper percentile must be greater than 0 and less than 100. Must be higher" " than lower percentile." @@ -19655,7 +19893,6 @@ msgid "value descending" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:60 msgid "var" msgstr "" @@ -19678,13 +19915,13 @@ msgstr "virtueel" msgid "viz type" msgstr "Viz type" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:451 msgid "was created" msgstr "werd gecreëerd" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:62 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 #: superset-frontend/src/explore/controls.jsx:264 msgid "week" @@ -19719,16 +19956,12 @@ msgid "y: values are normalized within each row" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 #: superset-frontend/src/explore/controls.jsx:269 msgid "year" msgstr "jaar" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 -msgid "yellow" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:490 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:521 msgid "zoom area" msgstr "" diff --git a/superset/translations/pt/LC_MESSAGES/messages.json b/superset/translations/pt/LC_MESSAGES/messages.json index bcca4cdb5b..0382e15934 100644 --- a/superset/translations/pt/LC_MESSAGES/messages.json +++ b/superset/translations/pt/LC_MESSAGES/messages.json @@ -131,6 +131,9 @@ "A comma-separated list of schemas that files are allowed to upload to.": [ "" ], + "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ + "" + ], "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ "" ], @@ -195,7 +198,7 @@ "Add Database": ["Adicionar Base de Dados"], "Add Log": [""], "Add Metric": ["Adicionar Métrica"], - "Add Row level security filter": [""], + "Add Rule": [""], "Add Saved Query": ["Adicionar Query"], "Add a Plugin": ["Adicionar Coluna"], "Add a new tab to create SQL Query": [""], @@ -203,6 +206,7 @@ "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ "" ], + "Add custom scoping": [""], "Add delivery method": [""], "Add filter": ["Adicionar filtro"], "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ @@ -255,6 +259,7 @@ "All": [""], "All Text": [""], "All charts": ["Gráfico de bala"], + "All charts/global scoping": [""], "All filters": ["Filtros"], "All filters (%(filterCount)d)": [""], "All panels": [""], @@ -475,6 +480,7 @@ "Are you sure you want to delete the selected datasets?": [""], "Are you sure you want to delete the selected layers?": [""], "Are you sure you want to delete the selected queries?": [""], + "Are you sure you want to delete the selected rules?": [""], "Are you sure you want to delete the selected tags?": [""], "Are you sure you want to delete the selected templates?": [""], "Are you sure you want to overwrite this dataset?": [""], @@ -528,6 +534,12 @@ "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ "" ], + "Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "" + ], + "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [ + "" + ], "Box Plot": ["Box Plot"], "Breakdowns": [""], "Bubble Chart": ["Gráfico de bolhas"], @@ -684,7 +696,6 @@ "Choose a metric for right axis": [ "Escolha uma métrica para o eixo direito" ], - "Choose a unique name": [""], "Choose one of the available databases from the panel on the left.": [""], "Choose the format for legend values": [""], "Choose the source of your annotations": [""], @@ -723,7 +734,6 @@ ], "Click to cancel sorting": [""], "Click to edit": ["clique para editar o título"], - "Click to edit %s in a new tab": [""], "Click to favorite/unfavorite": ["Clique para tornar favorito"], "Click to force-refresh": ["Clique para forçar atualização"], "Click to see difference": ["Clique para forçar atualização"], @@ -860,6 +870,7 @@ "Copy the name of the HTTP Path of your cluster.": [""], "Copy the name of the database you are trying to connect to.": [""], "Copy to clipboard": ["Copiar para área de transferência"], + "Could not connect to database: \"%(database)s\"": [""], "Could not determine datasource type": [""], "Could not fetch all saved charts": [ "Não foi possível ligar ao servidor" @@ -870,6 +881,7 @@ "Could not load database driver: {}": [ "Não foi possível ligar ao servidor" ], + "Could not resolve hostname: \"%(host)s\".": [""], "Count Unique Values": [""], "Count as Fraction of Columns": [""], "Count as Fraction of Rows": [""], @@ -1007,6 +1019,7 @@ "Db engine did not return all queried columns": [""], "December": [""], "Decides which column to sort the base axis by.": [""], + "Decides which measure to sort the base axis by.": [""], "Decimal Character": [""], "Deck.gl - 3D Grid": [""], "Deck.gl - 3D HEX": [""], @@ -1131,7 +1144,6 @@ ], "Display row level total": [""], "Display settings": [""], - "Display total row/column": [""], "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ "" ], @@ -1169,12 +1181,7 @@ "Drop columns/metrics here or click" ], "Drop a temporal column here or click": [""], - "Drop column here": ["", "Drop columns here"], - "Drop column or metric here": ["", "Drop columns or metrics here"], - "Drop columns here": [""], - "Drop columns or metrics here": [""], "Drop columns/metrics here or click": [""], - "Drop temporal column here": [""], "Duplicate": [""], "Duplicate column name(s): %(columns)s": [""], "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ @@ -1217,7 +1224,6 @@ "Edit Log": ["Editar"], "Edit Metric": ["Editar Métrica"], "Edit Plugin": ["Editar Coluna"], - "Edit Row level security filter": [""], "Edit Saved Query": ["Editar Query"], "Edit Table": ["Editar Tabela"], "Edit chart properties": ["Editar propriedades da visualização"], @@ -1311,6 +1317,7 @@ "Edite a configuração da origem de dados" ], "Exclude selected values": [""], + "Excluded roles": [""], "Executed query": ["Executar a query selecionada"], "Existing dataset": [""], "Exit fullscreen": [""], @@ -1358,8 +1365,11 @@ "Failed at stopping query. %s": [""], "Failed to create report": [""], "Failed to execute %(query)s": [""], + "Failed to generate chart edit URL": [""], "Failed to load chart data": [""], "Failed to load chart data.": [""], + "Failed to load dimensions for drill by": [""], + "Failed to save cross-filter scoping": [""], "Failed to start remote query on a worker.": [""], "Failed to update report": [""], "Failed to verify select options: %s": [""], @@ -1378,6 +1388,7 @@ "Fill method": [""], "Filter Configuration": ["Controlo de filtro"], "Filter List": ["Filtros"], + "Filter box (deprecated)": [""], "Filter configuration for the filter box": [""], "Filter has default value": [""], "Filter metadata changed in dashboard. It will not be applied.": [""], @@ -1459,9 +1470,6 @@ "Grid": [""], "Grid Size": [""], "Group By filter plugin": [""], - "Group By' and 'Columns' can't overlap": [ - "Os campos 'Agrupar por' e 'Colunas' não se podem sobrepor" - ], "Group By, Metrics or Percentage Metrics must have a value": [""], "Group by": ["Agrupar por"], "Groupable": ["Agrupável"], @@ -1541,8 +1549,15 @@ "Inner Radius": [""], "Inner radius of donut hole": [""], "Input field supports custom rotation. e.g. 30 for 30°": [""], + "Intensity Radius is the radius at which the weight is distributed": [""], + "Intensity is the value multiplied by the weight to obtain the final weight": [ + "" + ], "Interpret Datetime Format Automatically": [""], "Interpret the datetime format automatically": [""], + "Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:port/database'.": [ + "" + ], "Invalid JSON": [""], "Invalid advanced data type: %(advanced_data_type)s": [""], "Invalid certificate": [""], @@ -1569,6 +1584,7 @@ "Invalid numpy function: %(operator)s": [""], "Invalid options for %(rolling_type)s: %(options)s": [""], "Invalid permalink key": [""], + "Invalid reference to column: \"%(column)s\"": [""], "Invalid result type: %(result_type)s": [""], "Invalid rolling_type: %(type)s": [""], "Invalid spatial point encountered: %s": [""], @@ -1867,7 +1883,6 @@ "No data in file": [""], "No database tables found": [""], "No databases match your search": [""], - "No dimensions available for drill by": [""], "No favorite charts yet, go click on stars!": [ "Ainda não há dashboards favoritos, comece a clicar nas estrelas!" ], @@ -2009,7 +2024,6 @@ "Optional d3 number format string": [""], "Optional name of the data column.": [""], "Optional warning about use of this metric": [""], - "Optionally add a detailed description": [""], "Or choose from a list of other databases we support:": [""], "Order by entity id": [""], "Order results by selected columns": [""], @@ -2115,7 +2129,6 @@ ], "Pie shape": [""], "Pivot Table": ["Tabela Pivot"], - "Pivot Table (legacy)": [""], "Pivot operation must include at least one aggregate": [""], "Pivot operation requires at least one index": [""], "Pixel height of each series": [""], @@ -2135,7 +2148,6 @@ "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ "" ], - "Please choose at least one metric": ["Selecione pelo menos uma métrica"], "Please choose different metrics on left and right axis": [ "Selecione métricas diferentes para o eixo esquerdo e direito" ], @@ -2180,6 +2192,7 @@ "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ "" ], + "Port out of range 0-65535": [""], "Position JSON": ["Posição JSON"], "Position of child node label on tree": [""], "Position of column level subtotal": [""], @@ -2198,6 +2211,7 @@ "Primary": [""], "Primary key": [""], "Primary or secondary y-axis": [""], + "Primary y-axis Bounds": [""], "Primary y-axis format": [""], "Private Key": [""], "Private Key & Password": [""], @@ -2268,7 +2282,8 @@ "Refresh frequency": [""], "Refresh the default values": [""], "Regex": [""], - "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter. Base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ + "Regular": [""], + "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter, base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ "" ], "Relationships between community channels": [""], @@ -2362,13 +2377,13 @@ "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ "" ], - "Row level security filter": [""], "Row limit": ["Limite de linha"], "Rows": [""], "Rows per page, 0 means no pagination": [""], "Rows subtotal position": [""], "Rows to Read": ["Cargos a permitir ao utilizador"], "Rule": [""], + "Rule added": [""], "Run": [""], "Run in SQL Lab": ["Expor no SQL Lab"], "Run query": ["Executar query"], @@ -2453,6 +2468,7 @@ "Search Metrics & Columns": ["Colunas das séries temporais"], "Search by query text": [""], "Search...": ["Pesquisa"], + "Secondary y-axis Bounds": [""], "Secondary y-axis format": [""], "Secondary y-axis title": [""], "Secure Extra": ["Segurança"], @@ -2487,6 +2503,12 @@ "Select subject": [""], "Select table or type to search tables": [""], "Select the Annotation Layer you would like to use.": [""], + "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" + ], + "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" + ], "Select the geojson column": [""], "Select the number of bins for the histogram": [""], "Select the numeric columns to draw the histogram": [""], @@ -2539,7 +2561,6 @@ "Show Log": ["Mostrar totais"], "Show Markers": [""], "Show Metric": ["Mostrar Métrica"], - "Show Row level security filter": [""], "Show Saved Query": ["Mostrar Query"], "Show Table": ["Mostrar Tabela"], "Show Timestamp": [""], @@ -2723,7 +2744,6 @@ "Superset encountered an error while running a command.": [""], "Superset encountered an unexpected error.": [""], "Survey Responses": [""], - "Swap Groups and Columns": [""], "Swap rows and columns": [""], "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ "" @@ -2734,6 +2754,9 @@ "Symbol of two ends of edge line": [""], "Sync columns from source": [""], "Syntax": [""], + "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ + "" + ], "TABLES": [""], "THU": [""], "TUE": [""], @@ -3017,6 +3040,9 @@ "The user seems to have been deleted": [ "O utilizador parece ter sido eliminado" ], + "The user/password combination is not valid (Incorrect password for user).": [ + "" + ], "The username \"%(username)s\" does not exist.": [""], "The username provided when connecting to a database is not valid.": [""], "The way the ticks are laid out on the X-axis": [""], @@ -3077,7 +3103,7 @@ "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ "" ], - "This chart emits/applies cross-filters to other charts that use the same dataset": [ + "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ "" ], "This chart has been moved to a different filter scope.": [""], @@ -3252,7 +3278,6 @@ "To get a readable URL for your dashboard": [ "Obter um URL legível para o seu dashboard" ], - "Too many columns to filter": [""], "Tooltip": [""], "Top left": [""], "Top right": [""], @@ -3263,7 +3288,6 @@ "Totals": [""], "Transformable": [""], "Transparent": [""], - "Transpose Pivot": [""], "Transpose pivot": [""], "Tree layout": [""], "Treemap": ["Treemap"], @@ -3307,6 +3331,8 @@ "" ], "Unable to create chart without a query id.": [""], + "Unable to decode value": [""], + "Unable to encode value": [""], "Unable to find such a holiday: [%(holiday)s]": [""], "Unable to load columns for the selected table. Please select a different table.": [ "" @@ -3389,9 +3415,6 @@ "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ "" ], - "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location.\n\n This chart is being deprecated and we recommend checking out Pivot Table V2 instead!": [ - "" - ], "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ "" ], @@ -3400,6 +3423,9 @@ "User must select a value before applying the filter": [""], "User must select a value for this filter": [""], "User query": ["partilhar query"], + "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ + "" + ], "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ "" ], @@ -3875,6 +3901,7 @@ "e.g. xy12345.us-east-2.aws": [""], "e.g., a \"user id\" column": [""], "edit mode": [""], + "error dark": [""], "every": [""], "every day of the month": ["Código de 3 letras do país"], "every day of the week": [""], @@ -3890,7 +3917,6 @@ "for more information on how to structure your URI.": [""], "function type icon": [""], "geohash (square)": [""], - "green": [""], "heatmap: values are normalized across the entire heatmap": [""], "hour": ["hora"], "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ @@ -3952,6 +3978,7 @@ "report": ["Janela de exibição"], "reports": ["Janela de exibição"], "restore zoom": [""], + "rowlevelsecurity": [""], "search by tags": [""], "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ "" @@ -3984,7 +4011,6 @@ "y": [""], "y: values are normalized within each row": [""], "year": ["ano"], - "yellow": [""], "zoom area": [""] } } diff --git a/superset/translations/pt/LC_MESSAGES/messages.po b/superset/translations/pt/LC_MESSAGES/messages.po index 035846d122..7a12191898 100644 --- a/superset/translations/pt/LC_MESSAGES/messages.po +++ b/superset/translations/pt/LC_MESSAGES/messages.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-04-07 19:09+0200\n" +"POT-Creation-Date: 2023-05-23 16:30-0300\n" "PO-Revision-Date: 2018-03-12 16:24+0000\n" "Last-Translator: Nuno Heli Beires \n" "Language: pt\n" @@ -37,7 +37,7 @@ msgid "" " " msgstr "" -#: superset/reports/notifications/email.py:88 +#: superset/reports/notifications/email.py:89 #, python-format msgid "" "\n" @@ -56,12 +56,12 @@ msgid "" "in the GeoJSON" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:364 +#: superset-frontend/src/explore/components/SaveModal.tsx:399 #, fuzzy msgid " a dashboard OR " msgstr "Dashboard" -#: superset-frontend/src/explore/components/SaveModal.tsx:366 +#: superset-frontend/src/explore/components/SaveModal.tsx:401 #, fuzzy msgid " a new one" msgstr "Alterado em" @@ -92,7 +92,7 @@ msgid "" " database/column name level via the extra parameter." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:334 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:340 #, fuzzy msgid " to add calculated columns" msgstr "Lista de Colunas" @@ -106,8 +106,8 @@ msgstr "Adicionar Métrica" msgid " to edit or add columns and metrics." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:323 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:358 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:364 msgid " to mark a column as a time column" msgstr "" @@ -115,7 +115,7 @@ msgstr "" msgid " to open SQL Lab. From there you can save the query as a dataset." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:333 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 msgid " to visualize your data." msgstr "" @@ -123,7 +123,7 @@ msgstr "" msgid "!= (Is not equal)" msgstr "" -#: superset/security/analytics_db_safety.py:44 +#: superset/security/analytics_db_safety.py:48 #, python-format msgid "%(dialect)s cannot be used as a data source for security reasons." msgstr "" @@ -136,7 +136,7 @@ msgid "" "%(issues)s" msgstr "" -#: superset/reports/notifications/email.py:168 +#: superset/reports/notifications/email.py:171 #, python-format msgid "%(name)s.csv" msgstr "" @@ -166,14 +166,14 @@ msgstr "" msgid "%(other)s saved queries will appear here" msgstr "" -#: superset/reports/notifications/email.py:177 +#: superset/reports/notifications/email.py:180 #, python-format msgid "%(prefix)s %(title)s" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:345 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:363 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:377 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:338 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:356 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:370 #, python-format msgid "%(rows)d rows returned" msgstr "" @@ -195,7 +195,7 @@ msgid_plural "" msgstr[0] "" msgstr[1] "" -#: superset/views/core.py:384 +#: superset/views/core.py:385 #, python-format msgid "" "%(user)s was granted the role %(role)s that gives access to the " @@ -204,12 +204,12 @@ msgstr "" "Ao utilizador %(user)s foi concedido o cargo %(role)s que dá acesso ao " "%(datasource)s" -#: superset/views/core.py:2672 +#: superset/views/core.py:2709 #, python-format msgid "%(user)s's profile" msgstr "" -#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2327 +#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2369 #, python-format msgid "" "%(validator)s was unable to check your query.\n" @@ -223,25 +223,25 @@ msgid "%s Error" msgstr "Erro" #: superset-frontend/src/components/ImportModal/index.tsx:298 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1300 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1355 #, fuzzy, python-format msgid "%s PASSWORD" msgstr "Broker Port" #: superset-frontend/src/components/ImportModal/index.tsx:318 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1318 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1373 #, python-format msgid "%s SSH TUNNEL PASSWORD" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:341 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1336 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1391 #, python-format msgid "%s SSH TUNNEL PRIVATE KEY" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:363 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1356 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1411 #, python-format msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" msgstr "" @@ -251,17 +251,17 @@ msgstr "" msgid "%s Selected" msgstr "Executar a query selecionada" -#: superset-frontend/src/pages/DatasetList/index.tsx:808 +#: superset-frontend/src/pages/DatasetList/index.tsx:830 #, python-format msgid "%s Selected (%s Physical, %s Virtual)" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:801 +#: superset-frontend/src/pages/DatasetList/index.tsx:823 #, python-format msgid "%s Selected (Physical)" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:794 +#: superset-frontend/src/pages/DatasetList/index.tsx:816 #, python-format msgid "%s Selected (Virtual)" msgstr "" @@ -271,8 +271,8 @@ msgstr "" msgid "%s aggregates(s)" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:274 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:371 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:280 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:377 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:346 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 #, python-format @@ -311,8 +311,8 @@ msgstr[1] "" msgid "%s saved metric(s)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:636 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:652 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:639 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:655 #, fuzzy, python-format msgid "%s updated" msgstr "%s - sem título" @@ -329,7 +329,7 @@ msgstr "" msgid "%s-%s of %s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:115 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:116 msgid "(Removed)" msgstr "" @@ -379,22 +379,22 @@ msgstr "" msgid "+ %s more" msgstr "" -#: superset/views/database/forms.py:153 +#: superset/views/database/forms.py:163 msgid "," msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:656 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:652 msgid "" "-- Note: Unless you save your query, these tabs will NOT persist if you " "clear your cookies or change browsers.\n" "\n" msgstr "" -#: superset/views/database/forms.py:154 +#: superset/views/database/forms.py:164 msgid "." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:791 +#: superset-frontend/src/pages/DatasetList/index.tsx:813 msgid "0 Selected" msgstr "Executar a query selecionada" @@ -489,7 +489,7 @@ msgstr "" msgid "1 year start frequency" msgstr "" -#: superset/db_engine_specs/base.py:101 +#: superset/db_engine_specs/base.py:102 #, fuzzy msgid "10 minute" msgstr "1 minuto" @@ -506,7 +506,7 @@ msgstr "semana" msgid "104 weeks ago" msgstr "" -#: superset/db_engine_specs/base.py:102 +#: superset/db_engine_specs/base.py:103 #, fuzzy msgid "15 minute" msgstr "1 minuto" @@ -627,7 +627,7 @@ msgstr "" msgid "30 days ago" msgstr "" -#: superset/db_engine_specs/base.py:103 +#: superset/db_engine_specs/base.py:104 #, fuzzy msgid "30 minute" msgstr "10 minutos" @@ -637,7 +637,7 @@ msgstr "10 minutos" msgid "30 minutes" msgstr "10 minutos" -#: superset/db_engine_specs/base.py:98 +#: superset/db_engine_specs/base.py:99 #, fuzzy msgid "30 second" msgstr "30 segundos" @@ -658,7 +658,7 @@ msgstr "" msgid "4 weeks (freq=4W-MON)" msgstr "" -#: superset/db_engine_specs/base.py:100 +#: superset/db_engine_specs/base.py:101 #, fuzzy msgid "5 minute" msgstr "5 minutos" @@ -668,7 +668,7 @@ msgstr "5 minutos" msgid "5 minutes" msgstr "5 minutos" -#: superset/db_engine_specs/base.py:97 +#: superset/db_engine_specs/base.py:98 #, fuzzy msgid "5 second" msgstr "30 segundos" @@ -697,7 +697,7 @@ msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 #: superset-frontend/src/explore/controls.jsx:261 -#: superset/db_engine_specs/base.py:105 +#: superset/db_engine_specs/base.py:106 #, fuzzy msgid "6 hour" msgstr "hora" @@ -785,15 +785,15 @@ msgstr "" msgid "A Big Number" msgstr "Número grande" -#: superset/views/database/forms.py:184 +#: superset/views/database/forms.py:194 msgid "A comma separated list of columns that should be parsed as dates" msgstr "" -#: superset/views/database/forms.py:367 +#: superset/views/database/forms.py:377 msgid "A comma separated list of columns that should be parsed as dates." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:433 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 msgid "A comma-separated list of schemas that files are allowed to upload to." msgstr "" @@ -802,6 +802,12 @@ msgstr "" msgid "A database with the same name already exists." msgstr "Origem de dados %(name)s já existe" +#: superset/views/database/forms.py:145 +msgid "" +"A dictionary with column names and their data types if you need to change" +" the defaults. Example: {\"user_id\":\"integer\"}" +msgstr "" + #: superset/views/dynamic_plugins.py:52 msgid "" "A full URL pointing to the location of the built plugin (could be hosted " @@ -869,16 +875,16 @@ msgstr "" msgid "A report named \"%(name)s\" already exists" msgstr "Origem de dados %(name)s já existe" -#: superset-frontend/src/explore/components/SaveModal.tsx:333 +#: superset-frontend/src/explore/components/SaveModal.tsx:368 msgid "A reusable dataset will be saved with your chart." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:309 +#: superset-frontend/src/components/ReportModal/index.tsx:308 msgid "A screenshot of the dashboard will be sent to your email at" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 -#: superset/connectors/sqla/views.py:458 +#: superset/connectors/sqla/views.py:365 msgid "" "A set of parameters that become available in the query using Jinja " "templating syntax" @@ -926,8 +932,8 @@ msgstr "" msgid "APR" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:312 -#: superset-frontend/src/pages/DatabaseList/index.tsx:478 +#: superset-frontend/src/pages/DatabaseList/index.tsx:323 +#: superset-frontend/src/pages/DatabaseList/index.tsx:489 msgid "AQE" msgstr "" @@ -954,7 +960,7 @@ msgstr "" msgid "Access" msgstr "Não há acesso!" -#: superset/initialization/__init__.py:431 +#: superset/initialization/__init__.py:425 msgid "Access requests" msgstr "Solicitações de acesso" @@ -966,7 +972,7 @@ msgstr "" msgid "Access token" msgstr "" -#: superset/views/core.py:317 +#: superset/views/core.py:318 msgid "Access was requested" msgstr "O acesso foi solicitado" @@ -974,7 +980,7 @@ msgstr "O acesso foi solicitado" msgid "Action" msgstr "Acção" -#: superset/initialization/__init__.py:393 +#: superset/initialization/__init__.py:387 msgid "Action Log" msgstr "Registo de Acções" @@ -985,9 +991,10 @@ msgstr "Registo de Acções" #: superset-frontend/src/pages/ChartList/index.tsx:569 #: superset-frontend/src/pages/CssTemplateList/index.tsx:229 #: superset-frontend/src/pages/DashboardList/index.tsx:477 -#: superset-frontend/src/pages/DatabaseList/index.tsx:448 -#: superset-frontend/src/pages/DatasetList/index.tsx:488 +#: superset-frontend/src/pages/DatabaseList/index.tsx:459 +#: superset-frontend/src/pages/DatasetList/index.tsx:499 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:327 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:216 #: superset-frontend/src/pages/SavedQueryList/index.tsx:437 #: superset-frontend/src/pages/Tags/index.tsx:171 msgid "Actions" @@ -1020,18 +1027,19 @@ msgstr "Valor de filtro" msgid "Actual values" msgstr "Valor de filtro" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:35 -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 #: superset-frontend/src/explore/controls.jsx:78 #: superset-frontend/src/explore/controls.jsx:101 msgid "Adaptive formatting" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:229 +#: superset-frontend/src/components/ReportModal/index.tsx:228 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 #: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 #: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 msgid "Add" msgstr "" @@ -1053,7 +1061,7 @@ msgstr "Modelos CSS" msgid "Add Chart" msgstr "Gráfico de Queijo" -#: superset/connectors/sqla/views.py:74 +#: superset/connectors/sqla/views.py:73 msgid "Add Column" msgstr "Adicionar Coluna" @@ -1069,7 +1077,7 @@ msgstr "Adicionar Base de Dados" msgid "Add Log" msgstr "" -#: superset/connectors/sqla/views.py:209 +#: superset/connectors/sqla/views.py:208 msgid "Add Metric" msgstr "Adicionar Métrica" @@ -1078,8 +1086,8 @@ msgstr "Adicionar Métrica" msgid "Add Report" msgstr "Janela de exibição" -#: superset/connectors/sqla/views.py:292 -msgid "Add Row level security filter" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +msgid "Add Rule" msgstr "" #: superset/views/sql_lab/views.py:54 @@ -1095,12 +1103,12 @@ msgstr "Adicionar Coluna" msgid "Add a dataset" msgstr "Adicionar Base de Dados" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:262 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:272 #, fuzzy msgid "Add a new tab" msgstr "Query numa nova aba" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:286 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:296 msgid "Add a new tab to create SQL Query" msgstr "" @@ -1136,24 +1144,28 @@ msgstr "Anotações" msgid "Add annotation layer" msgstr "Camadas de anotação" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:300 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:306 msgid "Add calculated columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:297 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:303 msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:167 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:197 #, fuzzy msgid "Add cross-filter" msgstr "Adicionar filtro" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 +msgid "Add custom scoping" +msgstr "" + #: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 msgid "Add delivery method" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:330 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 #, fuzzy msgid "Add extra connection information." msgstr "Metadados adicionais" @@ -1228,7 +1240,7 @@ msgstr "O id da visualização ativa" msgid "Add the name of the dashboard" msgstr "Gravar e ir para o dashboard" -#: superset-frontend/src/explore/components/SaveModal.tsx:351 +#: superset-frontend/src/explore/components/SaveModal.tsx:386 msgid "Add to dashboard" msgstr "Adicionar ao novo dashboard" @@ -1255,7 +1267,7 @@ msgstr[1] "" msgid "Additional Parameters" msgstr "Editar propriedades da visualização" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1787 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1843 msgid "Additional fields may be required" msgstr "" @@ -1269,17 +1281,17 @@ msgstr "Metadados adicionais" msgid "Additional metadata" msgstr "Atualizar coluna de metadados" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:54 msgid "Additional padding for legend." msgstr "" -#: superset/db_engine_specs/base.py:1847 -#: superset/db_engine_specs/clickhouse.py:214 +#: superset/db_engine_specs/base.py:1885 +#: superset/db_engine_specs/clickhouse.py:221 #, fuzzy msgid "Additional parameters" msgstr "Editar propriedades da visualização" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:444 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 #, fuzzy msgid "Additional settings." msgstr "Metadados adicionais" @@ -1295,17 +1307,18 @@ msgstr "" msgid "Additive" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:75 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 msgid "Adjust how this database will interact with SQL Lab." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:221 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:231 msgid "Adjust performance settings of this database." msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:132 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:91 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:127 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:93 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 @@ -1314,7 +1327,7 @@ msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:939 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:771 #: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1811 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 msgid "Advanced" msgstr "Análise Avançada" @@ -1420,7 +1433,6 @@ msgid "" "produce the cluster label." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:63 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:202 msgid "" "Aggregate function to apply when pivoting and computing the total rows " @@ -1433,13 +1445,16 @@ msgid "" " values to a dynamic color scale" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +#, fuzzy +msgid "Aggregation" +msgstr "Soma Agregada" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 #, fuzzy msgid "Aggregation function" msgstr "Função de agregação" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:593 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:162 #, fuzzy msgid "Alert" @@ -1523,7 +1538,7 @@ msgstr "" msgid "Alerts" msgstr "" -#: superset/initialization/__init__.py:410 +#: superset/initialization/__init__.py:404 msgid "Alerts & Reports" msgstr "" @@ -1550,8 +1565,8 @@ msgstr "" #: superset-frontend/src/pages/DashboardList/index.tsx:528 #: superset-frontend/src/pages/DashboardList/index.tsx:550 #: superset-frontend/src/pages/DashboardList/index.tsx:600 -#: superset-frontend/src/pages/DatabaseList/index.tsx:465 -#: superset-frontend/src/pages/DatabaseList/index.tsx:485 +#: superset-frontend/src/pages/DatabaseList/index.tsx:476 +#: superset-frontend/src/pages/DatabaseList/index.tsx:496 #: superset-frontend/src/pages/Home/index.tsx:205 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:354 #: superset-frontend/src/pages/SavedQueryList/index.tsx:453 @@ -1560,7 +1575,7 @@ msgid "All" msgstr "" #: superset-frontend/src/pages/AllEntities/index.tsx:76 -#: superset/initialization/__init__.py:376 +#: superset/initialization/__init__.py:370 #, fuzzy msgid "All Entities" msgstr "Filtros" @@ -1572,13 +1587,18 @@ msgstr "Filtros" msgid "All Text" msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 #: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:69 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 #: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:85 #: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:128 msgid "All charts" msgstr "Gráfico de bala" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 +msgid "All charts/global scoping" +msgstr "" + #: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 msgid "All filters" msgstr "Filtros" @@ -1588,7 +1608,7 @@ msgstr "Filtros" msgid "All filters (%(filterCount)d)" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:49 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 msgid "All panels" msgstr "" @@ -1596,7 +1616,7 @@ msgstr "" msgid "All panels with this column will be affected by this filter" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:107 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 #: superset/views/database/mixins.py:184 msgid "Allow CREATE TABLE AS" msgstr "Permitir CREATE TABLE AS" @@ -1605,7 +1625,7 @@ msgstr "Permitir CREATE TABLE AS" msgid "Allow CREATE TABLE AS option in SQL Lab" msgstr "Permitir a opção CREATE TABLE AS no SQL Lab" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:121 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 #: superset/views/database/mixins.py:185 msgid "Allow CREATE VIEW AS" msgstr "Permitir CREATE TABLE AS" @@ -1618,7 +1638,7 @@ msgstr "Permitir a opção CREATE TABLE AS no SQL Lab" msgid "Allow Csv Upload" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 #: superset/views/database/mixins.py:186 msgid "Allow DML" msgstr "Permitir DML" @@ -1627,15 +1647,15 @@ msgstr "Permitir DML" msgid "Allow columns to be rearranged" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:110 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 msgid "Allow creation of new tables based on queries" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:124 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 msgid "Allow creation of new views based on queries" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:329 +#: superset-frontend/src/pages/DatabaseList/index.tsx:340 msgid "Allow data manipulation language" msgstr "" @@ -1645,11 +1665,11 @@ msgid "" "their changes won't persist for the next time they open the chart." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:411 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:421 msgid "Allow file uploads to database" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:157 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 msgid "" "Allow manipulation of the database using non-SELECT statements such as " "UPDATE, DELETE, CREATE, etc." @@ -1667,11 +1687,11 @@ msgstr "" msgid "Allow sending multiple polygons as a filter event" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:186 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 msgid "Allow this database to be explored" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:91 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 msgid "Allow this database to be queried in SQL Lab" msgstr "" @@ -1716,20 +1736,20 @@ msgstr "Ocorreu um erro ao criar a origem dos dados" msgid "An alert named \"%(name)s\" already exists" msgstr "Origem de dados %(name)s já existe" -#: superset/common/query_context_processor.py:326 superset/viz.py:1447 +#: superset/common/query_context_processor.py:326 superset/viz.py:1352 msgid "" "An enclosed time range (both start and end) must be specified when using " "a Time Comparison." msgstr "" -#: superset/databases/schemas.py:285 +#: superset/databases/schemas.py:289 msgid "" "An engine must be specified when passing individual parameters to a " "database." msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:791 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:141 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:183 #: superset-frontend/src/components/Tags/utils.tsx:67 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:127 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:109 @@ -1744,7 +1764,7 @@ msgstr "" msgid "An error occurred" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:317 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:323 msgid "An error occurred saving dataset" msgstr "Ocorreu um erro ao criar a origem dos dados" @@ -1756,19 +1776,19 @@ msgstr "Ocorreu um erro ao criar a origem dos dados" msgid "An error occurred while accessing the value." msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1368 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1360 msgid "" "An error occurred while collapsing the table schema. Please contact your " "administrator." msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/src/views/CRUD/hooks.ts:304 +#: superset-frontend/src/views/CRUD/hooks.ts:308 #, fuzzy, python-format msgid "An error occurred while creating %ss: %s" msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1529 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1551 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1530 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1552 msgid "An error occurred while creating the data source" msgstr "Ocorreu um erro ao criar a origem dos dados" @@ -1786,7 +1806,7 @@ msgstr "Ocorreu um erro ao criar a origem dos dados" msgid "An error occurred while deleting the value." msgstr "Ocorreu um erro ao renderizar a visualização: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1344 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1336 msgid "" "An error occurred while expanding the table schema. Please contact your " "administrator." @@ -1798,8 +1818,8 @@ msgid "An error occurred while fetching %s info: %s" msgstr "Ocorreu um erro ao criar a origem dos dados" #: superset-frontend/src/views/CRUD/hooks.ts:174 -#: superset-frontend/src/views/CRUD/hooks.ts:261 -#: superset-frontend/src/views/CRUD/hooks.ts:349 +#: superset-frontend/src/views/CRUD/hooks.ts:265 +#: superset-frontend/src/views/CRUD/hooks.ts:353 #, fuzzy, python-format msgid "An error occurred while fetching %ss: %s" msgstr "Ocorreu um erro ao criar a origem dos dados" @@ -1843,7 +1863,7 @@ msgstr "Ocorreu um erro ao criar a origem dos dados" msgid "An error occurred while fetching dashboards: %s" msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/src/pages/DatabaseList/index.tsx:145 +#: superset-frontend/src/pages/DatabaseList/index.tsx:156 #, python-format msgid "An error occurred while fetching database related data: %s" msgstr "Ocorreu um erro ao carregar os metadados da tabela" @@ -1860,26 +1880,26 @@ msgstr "Ocorreu um erro ao criar a origem dos dados" msgid "An error occurred while fetching dataset datasource values: %s" msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/src/pages/DatasetList/index.tsx:510 +#: superset-frontend/src/pages/DatasetList/index.tsx:521 #, python-format msgid "An error occurred while fetching dataset owner values: %s" msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/src/pages/DatasetList/index.tsx:222 +#: superset-frontend/src/pages/DatasetList/index.tsx:233 msgid "An error occurred while fetching dataset related data" msgstr "Ocorreu um erro ao carregar os metadados da tabela" -#: superset-frontend/src/pages/DatasetList/index.tsx:242 +#: superset-frontend/src/pages/DatasetList/index.tsx:253 #, python-format msgid "An error occurred while fetching dataset related data: %s" msgstr "Ocorreu um erro ao carregar os metadados da tabela" -#: superset-frontend/src/pages/DatasetList/index.tsx:530 +#: superset-frontend/src/pages/DatasetList/index.tsx:541 #, python-format msgid "An error occurred while fetching datasets: %s" msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1581 +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx:120 #, fuzzy msgid "An error occurred while fetching function names." msgstr "Ocorreu um erro ao carregar os metadados da tabela" @@ -1889,23 +1909,23 @@ msgstr "Ocorreu um erro ao carregar os metadados da tabela" msgid "An error occurred while fetching owners values: %s" msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/src/pages/DatasetList/index.tsx:546 +#: superset-frontend/src/pages/DatasetList/index.tsx:557 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:378 #: superset-frontend/src/pages/SavedQueryList/index.tsx:480 #, python-format msgid "An error occurred while fetching schema values: %s" msgstr "Ocorreu um erro ao renderizar a visualização: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:799 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:795 msgid "An error occurred while fetching tab state" msgstr "Ocorreu um erro ao carregar os metadados da tabela" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1199 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1224 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1191 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1216 msgid "An error occurred while fetching table metadata" msgstr "Ocorreu um erro ao carregar os metadados da tabela" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1296 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1288 msgid "" "An error occurred while fetching table metadata. Please contact your " "administrator." @@ -1921,24 +1941,29 @@ msgstr "Ocorreu um erro ao renderizar a visualização: %s" msgid "An error occurred while fetching user values: %s" msgstr "Ocorreu um erro ao renderizar a visualização: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:835 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:831 #, fuzzy msgid "" "An error occurred while hiding the left bar. Please contact your " "administrator." msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/src/views/CRUD/hooks.ts:502 -#: superset-frontend/src/views/CRUD/hooks.ts:518 +#: superset-frontend/src/views/CRUD/hooks.ts:506 +#: superset-frontend/src/views/CRUD/hooks.ts:522 #, fuzzy, python-format msgid "An error occurred while importing %s: %s" msgstr "Ocorreu um erro ao renderizar a visualização: %s" +#: superset-frontend/src/explore/components/SaveModal.tsx:135 +#, fuzzy +msgid "An error occurred while loading dashboard information." +msgstr "Ocorreu um erro ao criar a origem dos dados" + #: superset-frontend/src/components/Chart/chartAction.js:579 msgid "An error occurred while loading the SQL" msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:332 +#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:325 #, fuzzy msgid "An error occurred while opening Explore" msgstr "Ocorreu um erro ao renderizar a visualização: %s" @@ -1952,15 +1977,15 @@ msgstr "Ocorreu um erro ao criar a origem dos dados" msgid "An error occurred while pruning logs " msgstr "Ocorreu um erro ao renderizar a visualização: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:892 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:888 msgid "An error occurred while removing query. Please contact your administrator." msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:857 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:853 msgid "An error occurred while removing tab. Please contact your administrator." msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1396 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1388 msgid "" "An error occurred while removing the table schema. Please contact your " "administrator." @@ -1971,39 +1996,39 @@ msgstr "Ocorreu um erro ao criar a origem dos dados" msgid "An error occurred while rendering the visualization: %s" msgstr "Ocorreu um erro ao renderizar a visualização: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:710 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:706 msgid "" "An error occurred while setting the active tab. Please contact your " "administrator." msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:975 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:967 msgid "" "An error occurred while setting the tab autorun. Please contact your " "administrator." msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:915 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:911 msgid "" "An error occurred while setting the tab database ID. Please contact your " "administrator." msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1004 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1128 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:996 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1120 #, fuzzy msgid "" "An error occurred while setting the tab name. Please contact your " "administrator." msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:946 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:942 msgid "" "An error occurred while setting the tab schema. Please contact your " "administrator." msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1154 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1146 msgid "" "An error occurred while setting the tab template parameters. Please " "contact your administrator." @@ -2014,14 +2039,14 @@ msgstr "" msgid "An error occurred while starring this chart" msgstr "Ocorreu um erro ao criar a origem dos dados" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:251 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:297 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:255 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:301 msgid "" "An error occurred while storing the latest query id in the backend. " "Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1095 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1087 msgid "" "An error occurred while storing your query in the backend. To avoid " "losing your changes, please save your query using the \"Save Query\" " @@ -2043,7 +2068,7 @@ msgstr "Ocorreu um erro ao renderizar a visualização: %s" msgid "An unexpected error occurred" msgstr "" -#: superset/views/core.py:734 +#: superset/views/core.py:745 msgid "An unknown error occurred. Please contact your Superset administrator" msgstr "Ocorreu um erro desconhecido. (Estado: %s )" @@ -2076,7 +2101,7 @@ msgstr "Camadas de anotação" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:127 -#: superset/initialization/__init__.py:420 +#: superset/initialization/__init__.py:414 msgid "Annotation Layers" msgstr "Camadas de anotação" @@ -2242,7 +2267,8 @@ msgstr "" #: superset-frontend/src/pages/DashboardList/index.tsx:504 #: superset-frontend/src/pages/DashboardList/index.tsx:572 #: superset-frontend/src/pages/DashboardList/index.tsx:586 -#: superset-frontend/src/pages/DatasetList/index.tsx:570 +#: superset-frontend/src/pages/DatasetList/index.tsx:581 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:260 #, fuzzy msgid "Any" msgstr "dia" @@ -2258,18 +2284,18 @@ msgid "" "dashboard's individual charts" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:953 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1008 msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:967 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1022 msgid "" "Any databases that allow connections via SQL Alchemy URIs can be added. " "Learn about how to connect a database driver " msgstr "" -#: superset/views/database/forms.py:169 superset/views/database/forms.py:326 -#: superset/views/database/forms.py:457 +#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 +#: superset/views/database/forms.py:467 msgid "Append" msgstr "" @@ -2288,7 +2314,7 @@ msgstr "Adicionar filtro" msgid "Applied filters: %s" msgstr "Adicionar filtro" -#: superset/viz.py:246 +#: superset/viz.py:250 msgid "" "Applied rolling window did not return any data. Please make sure the " "source query satisfies the minimum periods defined in the rolling window." @@ -2297,11 +2323,16 @@ msgstr "" #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:856 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:228 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:476 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:479 msgid "Apply" msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:100 +#, fuzzy +msgid "Apply conditional color formatting to metric" +msgstr "Metadados adicionais" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:386 msgid "Apply conditional color formatting to metrics" msgstr "" @@ -2350,6 +2381,7 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:509 #: superset-frontend/src/pages/DashboardList/index.tsx:418 #: superset-frontend/src/pages/DashboardList/index.tsx:739 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:173 #: superset-frontend/src/pages/Tags/index.tsx:144 msgid "Are you sure you want to delete" msgstr "" @@ -2376,7 +2408,7 @@ msgstr "" msgid "Are you sure you want to delete the selected dashboards?" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:741 +#: superset-frontend/src/pages/DatasetList/index.tsx:763 msgid "Are you sure you want to delete the selected datasets?" msgstr "" @@ -2388,6 +2420,10 @@ msgstr "" msgid "Are you sure you want to delete the selected queries?" msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:305 +msgid "Are you sure you want to delete the selected rules?" +msgstr "" + #: superset-frontend/src/pages/Tags/index.tsx:282 msgid "Are you sure you want to delete the selected tags?" msgstr "" @@ -2396,7 +2432,7 @@ msgstr "" msgid "Are you sure you want to delete the selected templates?" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:426 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:434 msgid "Are you sure you want to overwrite this dataset?" msgstr "" @@ -2404,7 +2440,7 @@ msgstr "" msgid "Are you sure you want to proceed?" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:174 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:216 msgid "Are you sure you want to save and apply changes?" msgstr "" @@ -2447,7 +2483,7 @@ msgstr "" msgid "Assign a set of parameters as" msgstr "" -#: superset/connectors/sqla/views.py:476 +#: superset/connectors/sqla/views.py:383 msgid "Associated Charts" msgstr "Visualizações Associadas" @@ -2455,9 +2491,9 @@ msgstr "Visualizações Associadas" msgid "Async Execution" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:295 -#: superset-frontend/src/pages/DatabaseList/index.tsx:309 -#: superset-frontend/src/pages/DatabaseList/index.tsx:475 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:305 +#: superset-frontend/src/pages/DatabaseList/index.tsx:320 +#: superset-frontend/src/pages/DatabaseList/index.tsx:486 msgid "Asynchronous query execution" msgstr "" @@ -2474,7 +2510,7 @@ msgstr "" msgid "Auto Zoom" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:530 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 msgid "Autocomplete" msgstr "" @@ -2501,7 +2537,7 @@ msgstr "" msgid "Average" msgstr "Gerir" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:233 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 msgid "Average value" msgstr "" @@ -2539,10 +2575,10 @@ msgstr "Ordenar decrescente" msgid "BOOLEAN" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:366 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1051 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1068 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1088 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:373 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1123 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1143 msgid "Back" msgstr "" @@ -2552,7 +2588,7 @@ msgstr "" msgid "Back to all" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:300 +#: superset-frontend/src/pages/DatabaseList/index.tsx:311 #: superset/views/database/mixins.py:200 msgid "Backend" msgstr "" @@ -2566,7 +2602,7 @@ msgstr "" msgid "Bad formula." msgstr "" -#: superset/viz.py:2509 superset/viz.py:2545 +#: superset/viz.py:2452 superset/viz.py:2492 msgid "Bad spatial key" msgstr "" @@ -2602,6 +2638,12 @@ msgstr "Valor de filtro" msgid "Bar orientation" msgstr "Anotações" +#: superset-frontend/src/features/rls/constants.ts:28 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:263 +#, fuzzy +msgid "Base" +msgstr "Base de dados" + #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:239 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 msgid "Base layer map style" @@ -2616,12 +2658,12 @@ msgstr "Selecione métrica" msgid "Based on granularity, number of time periods to compare against" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:228 msgid "Based on what should series be ordered on the chart and legend" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:854 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1723 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1779 msgid "Basic" msgstr "" @@ -2654,7 +2696,7 @@ msgid "Before" msgstr "Intervalo de atualização" #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:37 -#: superset/viz.py:1286 +#: superset/viz.py:1186 msgid "Big Number" msgstr "Número grande" @@ -2663,11 +2705,11 @@ msgid "Big Number Font Size" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:36 -#: superset/viz.py:1252 +#: superset/viz.py:1150 msgid "Big Number with Trendline" msgstr "Número grande com linha de tendência" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 #, fuzzy msgid "Bottom" @@ -2697,7 +2739,6 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:261 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:277 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:263 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:251 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:195 @@ -2716,6 +2757,24 @@ msgid "" " the axis range. It won't narrow the data's extent." msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 +msgid "" +"Bounds for the primary Y-axis. When left empty, the bounds are " +"dynamically defined based on the min/max of the data. Note that this " +"feature will only expand the axis range. It won't narrow the data's " +"extent." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:411 +msgid "" +"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" +" bounds are enabled. When left empty, the bounds are " +"dynamically defined\n" +" based on the min/max of the data. Note that this feature " +"will only expand\n" +" the axis range. It won't narrow the data's extent." +msgstr "" + #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:58 #: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/createMetadata.ts:27 @@ -2727,7 +2786,7 @@ msgid "Breakdowns" msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:32 -#: superset/viz.py:1171 +#: superset/viz.py:1065 msgid "Bubble Chart" msgstr "Gráfico de bolhas" @@ -2760,7 +2819,8 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:789 #: superset-frontend/src/pages/CssTemplateList/index.tsx:262 #: superset-frontend/src/pages/DashboardList/index.tsx:662 -#: superset-frontend/src/pages/DatasetList/index.tsx:596 +#: superset-frontend/src/pages/DatasetList/index.tsx:607 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 #: superset-frontend/src/pages/SavedQueryList/index.tsx:177 #: superset-frontend/src/pages/Tags/index.tsx:267 #, fuzzy @@ -2768,7 +2828,7 @@ msgid "Bulk select" msgstr "Selecione %s" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 -#: superset/viz.py:1222 +#: superset/viz.py:1118 msgid "Bullet Chart" msgstr "Gráfico de bala" @@ -2784,7 +2844,7 @@ msgstr "Gráfico de bala" msgid "Business" msgstr "" -#: superset/connectors/sqla/views.py:165 +#: superset/connectors/sqla/views.py:164 msgid "Business Data Type" msgstr "" @@ -2815,16 +2875,16 @@ msgstr "" msgid "CANCEL" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1520 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1575 #, fuzzy msgid "CREATE DATASET" msgstr "Criado em" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:585 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:579 msgid "CREATE TABLE AS" msgstr "Permitir CREATE TABLE AS" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:596 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:590 msgid "CREATE VIEW AS" msgstr "Permitir CREATE TABLE AS" @@ -2851,7 +2911,7 @@ msgstr "CSS" msgid "CSS Styles" msgstr "Modelos CSS" -#: superset/initialization/__init__.py:286 superset/views/css_templates.py:38 +#: superset/initialization/__init__.py:288 superset/views/css_templates.py:38 msgid "CSS Templates" msgstr "Modelos CSS" @@ -2887,26 +2947,26 @@ msgstr "Modelos CSS" msgid "CSV Upload" msgstr "" -#: superset/views/database/views.py:287 +#: superset/views/database/views.py:290 #, python-format msgid "" "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " "database \"%(db_name)s\"" msgstr "" -#: superset/views/database/views.py:160 +#: superset/views/database/views.py:161 msgid "CSV to Database configuration" msgstr "Edite a configuração da origem de dados" -#: superset-frontend/src/pages/DatabaseList/index.tsx:344 +#: superset-frontend/src/pages/DatabaseList/index.tsx:355 msgid "CSV upload" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:130 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 msgid "CTAS & CVAS SCHEMA" msgstr "" -#: superset/sql_lab.py:440 +#: superset/sql_lab.py:432 msgid "" "CTAS (create table as select) can only be run with a query where the last" " statement is a SELECT. Please make sure your query has a SELECT as its " @@ -2917,7 +2977,7 @@ msgstr "" msgid "CTAS Schema" msgstr "Esquema CTAS" -#: superset/sql_lab.py:457 +#: superset/sql_lab.py:449 msgid "" "CVAS (create view as select) can only be run with a query with a single " "SELECT statement. Please make sure your query has only a SELECT " @@ -2932,7 +2992,7 @@ msgstr "" msgid "CVAS (create view as select) query is not a SELECT statement." msgstr "" -#: superset/connectors/sqla/views.py:486 superset/views/chart/mixin.py:76 +#: superset/connectors/sqla/views.py:393 superset/views/chart/mixin.py:76 msgid "Cache Timeout" msgstr "Tempo limite para cache" @@ -2951,16 +3011,16 @@ msgstr "Tempo limite para cache" msgid "Cached" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:349 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:351 #, python-format msgid "Cached %s" msgstr "" -#: superset/viz.py:562 +#: superset/viz.py:578 msgid "Cached value not found" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:53 msgid "Calculate contribution per series or row" msgstr "" @@ -2983,7 +3043,7 @@ msgid "Calculation type" msgstr "Escolha um tipo de visualização" #: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 -#: superset/viz.py:1080 +#: superset/viz.py:972 msgid "Calendar Heatmap" msgstr "Calendário com Mapa de Calor" @@ -2996,17 +3056,17 @@ msgstr "" msgid "Can select multiple values" msgstr "" -#: superset/viz.py:1810 +#: superset/viz.py:1727 msgid "Can't have overlap between Series and Breakdowns" msgstr "Não pode haver sobreposição entre Séries e Desagregação" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:206 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:759 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:263 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:185 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 -#: superset-frontend/src/components/Modal/Modal.tsx:262 -#: superset-frontend/src/components/ReportModal/index.tsx:220 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:205 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:753 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:227 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:268 +#: superset-frontend/src/components/Modal/Modal.tsx:269 +#: superset-frontend/src/components/ReportModal/index.tsx:219 #: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:72 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:649 #: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 @@ -3014,14 +3074,14 @@ msgstr "Não pode haver sobreposição entre Séries e Desagregação" #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:76 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 -#: superset-frontend/src/explore/components/SaveModal.tsx:379 +#: superset-frontend/src/explore/components/SaveModal.tsx:413 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:843 #: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 #: superset/templates/superset/request_access.html:34 msgid "Cancel" msgstr "Cancelar" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:314 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 msgid "Cancel query on window unload event" msgstr "" @@ -3037,7 +3097,7 @@ msgstr "" msgid "Cannot have multiple credentials for the SSH Tunnel" msgstr "" -#: superset/views/core.py:723 +#: superset/views/core.py:734 #, python-format msgid "" "Cannot import dashboard: %(db_error)s.\n" @@ -3102,7 +3162,7 @@ msgstr "" msgid "Category and Value" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:229 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:67 #, fuzzy msgid "Category name" msgstr "nome da origem de dados" @@ -3117,15 +3177,15 @@ msgstr "" msgid "Category, Value and Percentage" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:103 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 msgid "Cell Padding" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:117 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 msgid "Cell Radius" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 #, fuzzy msgid "Cell Size" msgstr "Tamanho da bolha" @@ -3135,7 +3195,7 @@ msgstr "Tamanho da bolha" msgid "Cell bars" msgstr "Gráfico de bala" -#: superset-frontend/src/components/FilterableTable/index.tsx:431 +#: superset-frontend/src/components/FilterableTable/index.tsx:303 #, fuzzy msgid "Cell content" msgstr "Conteúdo Criado" @@ -3149,6 +3209,7 @@ msgstr "Limite de série" msgid "Center" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:33 msgid "Centroid (Longitude and Latitude): " msgstr "" @@ -3170,7 +3231,7 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:699 #: superset-frontend/src/pages/DashboardList/index.tsx:580 -#: superset-frontend/src/pages/DatasetList/index.tsx:564 +#: superset-frontend/src/pages/DatasetList/index.tsx:575 msgid "Certified" msgstr "" @@ -3202,7 +3263,7 @@ msgstr "" msgid "Change order of rows." msgstr "" -#: superset/connectors/sqla/views.py:478 +#: superset/connectors/sqla/views.py:385 msgid "Changed By" msgstr "Alterado por" @@ -3249,7 +3310,7 @@ msgstr "" msgid "Changing this control takes effect instantly" msgstr "Esta edição tem efeito instantâneo" -#: superset/datasets/commands/exceptions.py:181 +#: superset/datasets/commands/exceptions.py:198 msgid "Changing this dataset is forbidden" msgstr "" @@ -3268,14 +3329,15 @@ msgstr "Editar propriedades do dashboard" msgid "Changing this report is forbidden" msgstr "" -#: superset/views/database/forms.py:196 +#: superset/views/database/forms.py:206 msgid "Character to interpret as decimal point" msgstr "" -#: superset/views/database/forms.py:375 +#: superset/views/database/forms.py:385 msgid "Character to interpret as decimal point." msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:51 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:449 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:405 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:69 @@ -3283,11 +3345,11 @@ msgstr "" #: superset-frontend/src/features/home/RightMenu.tsx:219 #: superset-frontend/src/pages/ChartList/index.tsx:369 #: superset-frontend/src/pages/ChartList/index.tsx:799 -#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:90 +#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 msgid "Chart" msgstr "Carregar" -#: superset/views/core.py:1727 +#: superset/views/core.py:1762 #, python-format msgid "Chart %(id)s not found" msgstr "Visualização %(id)s não encontrada" @@ -3296,7 +3358,7 @@ msgstr "Visualização %(id)s não encontrada" msgid "Chart Cache Timeout" msgstr "Tempo limite para cache" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:437 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:442 #, fuzzy, python-format msgid "Chart Data: %s" msgstr "Opções do gráfico" @@ -3306,7 +3368,7 @@ msgstr "Opções do gráfico" msgid "Chart ID" msgstr "Tipo de gráfico" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:53 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:55 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:61 @@ -3328,7 +3390,7 @@ msgstr "Tipo de gráfico" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:59 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:131 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:107 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:74 @@ -3375,34 +3437,34 @@ msgstr "Fonte de dados" msgid "Chart Title" msgstr "Mover gráfico" -#: superset-frontend/src/explore/actions/saveModalActions.js:127 +#: superset-frontend/src/explore/actions/saveModalActions.js:121 #, python-format msgid "Chart [%s] has been overwritten" msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:124 +#: superset-frontend/src/explore/actions/saveModalActions.js:118 #, fuzzy, python-format msgid "Chart [%s] has been saved" msgstr "Esta origem de dados parece ter sido excluída" -#: superset-frontend/src/explore/actions/saveModalActions.js:145 +#: superset-frontend/src/explore/actions/saveModalActions.js:139 #, python-format msgid "Chart [%s] was added to dashboard [%s]" msgstr "" -#: superset/views/core.py:1077 +#: superset/views/core.py:1099 msgid "Chart [{}] has been overwritten" msgstr "" -#: superset/views/core.py:1073 +#: superset/views/core.py:1095 msgid "Chart [{}] has been saved" msgstr "" -#: superset/views/core.py:1102 +#: superset/views/core.py:1124 msgid "Chart [{}] was added to dashboard [{}]" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:228 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:238 #, fuzzy msgid "Chart cache timeout" msgstr "Tempo limite para cache" @@ -3462,7 +3524,7 @@ msgstr "Última Alteração" msgid "Chart last modified by" msgstr "Última Alteração" -#: superset-frontend/src/explore/components/SaveModal.tsx:320 +#: superset-frontend/src/explore/components/SaveModal.tsx:355 msgid "Chart name" msgstr "Tipo de gráfico" @@ -3496,7 +3558,7 @@ msgstr "Mover gráfico" msgid "Chart type" msgstr "Tipo de gráfico" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:315 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 msgid "Chart type requires a dataset" msgstr "" @@ -3512,7 +3574,7 @@ msgstr "Mover gráfico" #: superset-frontend/src/pages/Home/index.tsx:399 #: superset-frontend/src/profile/components/CreatedContent.tsx:104 #: superset-frontend/src/profile/components/Favorites.tsx:102 -#: superset/initialization/__init__.py:257 superset/views/chart/mixin.py:25 +#: superset/initialization/__init__.py:259 superset/views/chart/mixin.py:25 #: superset/views/dashboard/mixin.py:80 msgid "Charts" msgstr "Gráfico de Queijo" @@ -3545,7 +3607,7 @@ msgstr "" msgid "Check out this chart in dashboard:" msgstr "Verificar dashboard: %s" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:474 #, fuzzy msgid "Check out this chart: " msgstr "Verificar dashboard: %s" @@ -3578,11 +3640,11 @@ msgstr "Selecione para incluir seleção da Origem do tempo" msgid "Child label position" msgstr "" -#: superset/viz.py:2370 +#: superset/viz.py:2307 msgid "Choice of [Label] must be present in [Group By]" msgstr "A escolha do [Rótulo] deve estar presente em [Agrupar por]" -#: superset/viz.py:2378 +#: superset/viz.py:2315 msgid "Choice of [Point Radius] must be present in [Group By]" msgstr "A escolha de [Ponto de Raio] deve estar presente em [Agrupar por]" @@ -3595,7 +3657,7 @@ msgstr "Escolha uma fonte" msgid "Choose a chart or dashboard not both" msgstr "Remover gráfico do dashboard" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:924 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:979 #, fuzzy msgid "Choose a database..." msgstr "Escolha uma origem de dados" @@ -3636,16 +3698,12 @@ msgstr "Escolha uma origem de dados" msgid "Choose a target" msgstr "Escolha uma origem de dados" -#: superset/connectors/sqla/views.py:327 -msgid "Choose a unique name" -msgstr "" - #: superset-frontend/src/pages/ChartCreation/index.tsx:404 #, fuzzy msgid "Choose chart type" msgstr "Escolha uma origem de dados" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:745 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:739 msgid "Choose one of the available databases from the panel on the left." msgstr "" @@ -3725,7 +3783,8 @@ msgid "" "showcase a view into the underlying data or to show aggregated metrics." msgstr "" -#: superset/connectors/sqla/views.py:365 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:454 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:144 msgid "Clause" msgstr "" @@ -3737,7 +3796,7 @@ msgstr "" msgid "Clear all" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:206 +#: superset-frontend/src/components/Table/index.tsx:210 msgid "Clear all data" msgstr "" @@ -3763,19 +3822,19 @@ msgstr "" msgid "Click the lock to prevent further changes." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1955 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2012 msgid "" "Click this link to switch to an alternate form that allows you to input " "the SQLAlchemy URL for this database manually." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1771 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1827 msgid "" "Click this link to switch to an alternate form that exposes only the " "required fields needed to connect this database." msgstr "" -#: superset-frontend/src/components/Table/index.tsx:213 +#: superset-frontend/src/components/Table/index.tsx:217 msgid "Click to cancel sorting" msgstr "" @@ -3784,17 +3843,11 @@ msgid "Click to edit" msgstr "clique para editar o título" #: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 -#, python-format -msgid "Click to edit %s in a new tab" -msgstr "" - -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:32 #, fuzzy, python-format msgid "Click to edit %s." msgstr "clique para editar o título" #: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:33 #, fuzzy msgid "Click to edit chart." msgstr "clique para editar o título" @@ -3817,27 +3870,27 @@ msgstr "Clique para forçar atualização" msgid "Click to see difference" msgstr "Clique para forçar atualização" -#: superset-frontend/src/components/Table/index.tsx:212 +#: superset-frontend/src/components/Table/index.tsx:216 #, fuzzy msgid "Click to sort ascending" msgstr "Ordenar de forma descendente ou ascendente" -#: superset-frontend/src/components/Table/index.tsx:211 +#: superset-frontend/src/components/Table/index.tsx:215 #, fuzzy msgid "Click to sort descending" msgstr "Ordenar de forma descendente ou ascendente" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:83 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:132 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:52 #: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:209 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:219 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:224 #: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:786 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:408 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:414 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:339 #: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:36 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1109 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1164 msgid "Close" msgstr "" @@ -3870,15 +3923,15 @@ msgstr "" msgid "Collapse data panel" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:210 +#: superset-frontend/src/components/Table/index.tsx:214 msgid "Collapse row" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:598 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:599 msgid "Collapse tab content" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:197 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 #, fuzzy msgid "Collapse table preview" msgstr "Remover pré-visualização de tabela" @@ -3902,7 +3955,7 @@ msgstr "Métrica de cor" msgid "Color Scheme" msgstr "Esquema de cores" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:129 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 #, fuzzy msgid "Color Steps" msgstr "Esquema de cores" @@ -3925,8 +3978,8 @@ msgid "Color of the target location" msgstr "" #: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:214 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:218 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 #: superset-frontend/src/explore/controlPanels/sections.tsx:60 #: superset-frontend/src/explore/controls.jsx:460 msgid "Color scheme" @@ -3946,8 +3999,8 @@ msgstr "Cor" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 #: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:204 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:250 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:256 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:137 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:140 #: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 @@ -3955,7 +4008,7 @@ msgstr "Cor" #: superset-frontend/src/filters/components/Range/controlPanel.ts:39 #: superset-frontend/src/filters/components/Select/controlPanel.ts:49 #: superset-frontend/src/filters/components/Time/controlPanel.ts:37 -#: superset/connectors/sqla/views.py:155 +#: superset/connectors/sqla/views.py:154 msgid "Column" msgstr "Coluna" @@ -3971,12 +4024,17 @@ msgstr "" msgid "Column Configuration" msgstr "Contribuição" +#: superset/views/database/forms.py:144 +#, fuzzy +msgid "Column Data Types" +msgstr "Dados carregados em cache" + #: superset-frontend/src/explore/components/DataTableControl/index.tsx:194 msgid "Column Formatting" msgstr "" -#: superset/views/database/forms.py:222 superset/views/database/forms.py:383 -#: superset/views/database/forms.py:474 +#: superset/views/database/forms.py:232 superset/views/database/forms.py:393 +#: superset/views/database/forms.py:484 msgid "Column Label(s)" msgstr "Colunas" @@ -3994,6 +4052,11 @@ msgstr "" msgid "Column containing longitude data" msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:69 +#, fuzzy +msgid "Column datatype" +msgstr "Colunas" + #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 msgid "Column header tooltip" msgstr "" @@ -4003,19 +4066,19 @@ msgstr "" msgid "Column is required" msgstr "Origem de dados" -#: superset/views/database/forms.py:384 superset/views/database/forms.py:475 +#: superset/views/database/forms.py:394 superset/views/database/forms.py:485 msgid "" "Column label for index column(s). If None is given and Dataframe Index is" " True, Index Names are used." msgstr "" -#: superset/views/database/forms.py:223 +#: superset/views/database/forms.py:233 msgid "" "Column label for index column(s). If None is given and Dataframe Index is" " checked, Index Names are used" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:77 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:90 #, fuzzy msgid "Column name" msgstr "Colunas" @@ -4035,31 +4098,31 @@ msgstr "" msgid "Column select" msgstr "Coluna" -#: superset/views/database/forms.py:211 +#: superset/views/database/forms.py:221 msgid "" "Column to use as the row labels of the dataframe. Leave empty if no index" " column" msgstr "" -#: superset/views/database/forms.py:342 +#: superset/views/database/forms.py:352 msgid "" "Column to use as the row labels of the dataframe. Leave empty if no index" " column." msgstr "" -#: superset/views/database/forms.py:414 +#: superset/views/database/forms.py:424 #, fuzzy msgid "Columnar File" msgstr "Coluna" -#: superset/views/database/views.py:565 +#: superset/views/database/views.py:568 #, python-format msgid "" "Columnar file \"%(columnar_filename)s\" uploaded to table " "\"%(table_name)s\" in database \"%(db_name)s\"" msgstr "" -#: superset/views/database/views.py:440 +#: superset/views/database/views.py:443 #, fuzzy msgid "Columnar to Database configuration" msgstr "Edite a configuração da origem de dados" @@ -4076,15 +4139,15 @@ msgstr "Edite a configuração da origem de dados" #: superset-frontend/src/explore/controls.jsx:244 #: superset-frontend/src/explore/fixtures.tsx:97 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 -#: superset/connectors/sqla/views.py:72 +#: superset/connectors/sqla/views.py:71 msgid "Columns" msgstr "Colunas" -#: superset/views/database/forms.py:183 +#: superset/views/database/forms.py:193 msgid "Columns To Be Parsed as Dates" msgstr "" -#: superset/views/database/forms.py:231 +#: superset/views/database/forms.py:241 #, fuzzy msgid "Columns To Read" msgstr "Cargos a permitir ao utilizador" @@ -4094,7 +4157,7 @@ msgstr "Cargos a permitir ao utilizador" msgid "Columns missing in dataset: %(invalid_columns)s" msgstr "" -#: superset/viz.py:577 +#: superset/viz.py:593 #, python-format msgid "Columns missing in datasource: %(invalid_columns)s" msgstr "" @@ -4135,11 +4198,6 @@ msgstr "" msgid "Columns to show" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:85 -#, fuzzy -msgid "Combine Metrics" -msgstr "Lista de Métricas" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:250 #, fuzzy msgid "Combine metrics" @@ -4198,6 +4256,7 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:35 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:35 @@ -4244,6 +4303,11 @@ msgstr "Calcular contribuição para o total" msgid "Condition" msgstr "Contribuição" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 +#, fuzzy +msgid "Conditional Formatting" +msgstr "Metadados adicionais" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:385 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:504 #, fuzzy @@ -4299,15 +4363,15 @@ msgstr "" msgid "Confirm overwrite" msgstr "Substitua a visualização %s" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:180 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:222 msgid "Confirm save" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1059 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1097 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1656 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1695 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1857 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1152 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1712 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 #, fuzzy msgid "Connect" msgstr "Conexão de teste" @@ -4320,9 +4384,9 @@ msgstr "" msgid "Connect Google Sheets as tables to this database" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1660 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1700 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1861 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1716 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1918 #, fuzzy msgid "Connect a database" msgstr "Selecione uma base de dados" @@ -4332,24 +4396,24 @@ msgstr "Selecione uma base de dados" msgid "Connect database" msgstr "Selecione uma base de dados" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1768 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 msgid "Connect this database using the dynamic form instead" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1950 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2007 msgid "Connect this database with a SQLAlchemy URI string instead" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:225 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 msgid "Connection" msgstr "Conexão de teste" #: superset/databases/commands/exceptions.py:107 -#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1430 +#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1471 msgid "Connection failed, please check your connection settings" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:697 +#: superset-frontend/src/views/CRUD/hooks.ts:701 msgid "Connection looks good!" msgstr "" @@ -4373,7 +4437,7 @@ msgstr "" msgid "Contribution" msgstr "Contribuição" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:42 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 #, fuzzy msgid "Contribution Mode" msgstr "Contribuição" @@ -4429,8 +4493,8 @@ msgstr "" msgid "Copy message" msgstr "Mensagem de Aviso" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:683 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1469 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:679 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1461 #: superset-frontend/src/SqlLab/reducers/sqlLab.js:107 #, python-format msgid "Copy of %s" @@ -4441,7 +4505,7 @@ msgid "Copy partition query to clipboard" msgstr "Copiar query de partição para a área de transferência" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:329 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:468 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:340 #, fuzzy msgid "Copy permalink to clipboard" @@ -4467,7 +4531,7 @@ msgstr "" msgid "Copy the name of the database you are trying to connect to." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:273 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:271 #, fuzzy msgid "Copy to Clipboard" msgstr "Copiar para área de transferência" @@ -4490,7 +4554,12 @@ msgstr "Descrição" msgid "Cost estimate" msgstr "Modelos CSS" -#: superset/views/utils.py:498 +#: superset/db_engine_specs/ocient.py:259 +#, python-format +msgid "Could not connect to database: \"%(database)s\"" +msgstr "" + +#: superset/views/utils.py:496 msgid "Could not determine datasource type" msgstr "" @@ -4499,7 +4568,7 @@ msgstr "" msgid "Could not fetch all saved charts" msgstr "Não foi possível ligar ao servidor" -#: superset/views/utils.py:514 +#: superset/views/utils.py:512 msgid "Could not find viz object" msgstr "" @@ -4507,7 +4576,7 @@ msgstr "" msgid "Could not load database driver" msgstr "Não foi possível ligar ao servidor" -#: superset/views/core.py:1413 +#: superset/views/core.py:1454 #, python-format msgid "Could not load database driver: %(driver_name)s" msgstr "" @@ -4516,6 +4585,11 @@ msgstr "" msgid "Could not load database driver: {}" msgstr "Não foi possível ligar ao servidor" +#: superset/db_engine_specs/ocient.py:264 +#, python-format +msgid "Could not resolve hostname: \"%(host)s\"." +msgstr "" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 #, fuzzy msgid "Count" @@ -4559,12 +4633,12 @@ msgid "Country Field Type" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 -#: superset/viz.py:2044 +#: superset/viz.py:1969 msgid "Country Map" msgstr "Mapa de País" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:767 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:761 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:770 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:96 #, fuzzy msgid "Create" @@ -4576,10 +4650,10 @@ msgid "Create Chart" msgstr "Crie uma nova visualização" #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:331 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:321 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:332 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:356 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:327 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:338 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:362 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 #, fuzzy msgid "Create a dataset" @@ -4627,7 +4701,7 @@ msgstr "Crie uma nova visualização" msgid "Create new filter set" msgstr "Crie uma nova visualização" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 msgid "Create or select schema..." msgstr "" @@ -4650,7 +4724,7 @@ msgstr "Criado em" #: superset-frontend/src/pages/CssTemplateList/index.tsx:273 #: superset-frontend/src/pages/DashboardList/index.tsx:358 #: superset-frontend/src/pages/DashboardList/index.tsx:545 -#: superset-frontend/src/pages/DatabaseList/index.tsx:365 +#: superset-frontend/src/pages/DatabaseList/index.tsx:376 #: superset-frontend/src/pages/Tags/index.tsx:128 #: superset-frontend/src/pages/Tags/index.tsx:183 #, fuzzy @@ -4683,9 +4757,8 @@ msgstr "" msgid "Creating a data source and creating a new tab" msgstr "A criar uma nova origem de dados, a exibir numa nova aba" -#: superset/connectors/sqla/views.py:366 superset/views/chart/mixin.py:77 -#: superset/views/dashboard/mixin.py:84 superset/views/dashboard/views.py:185 -#: superset/views/database/mixins.py:189 +#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 +#: superset/views/dashboard/views.py:185 superset/views/database/mixins.py:189 msgid "Creator" msgstr "Criador" @@ -4694,15 +4767,27 @@ msgstr "Criador" msgid "Crimson" msgstr "Acção" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:122 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:152 msgid "Cross-filter will be applied to all of the charts that use this dataset." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:134 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:164 #, fuzzy msgid "Cross-filtering is not enabled for this dashboard." msgstr "Desculpe, houve um erro ao gravar este dashbard: " +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 +#, fuzzy +msgid "Cross-filtering is not enabled in this dashboard" +msgstr "Desculpe, houve um erro ao gravar este dashbard: " + +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:414 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 +#, fuzzy +msgid "Cross-filtering scoping" +msgstr "Perfil" + #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 #, fuzzy msgid "Cross-filters" @@ -4730,7 +4815,7 @@ msgstr "" msgid "Custom Plugins" msgstr "Cláusula WHERE personalizada" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:385 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:391 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 @@ -4741,8 +4826,7 @@ msgstr "" msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" msgstr "" -#: superset/connectors/sqla/utils.py:194 superset/errors.py:145 -#: superset/models/helpers.py:129 superset/models/helpers.py:864 +#: superset/errors.py:145 superset/models/helpers.py:138 msgid "Custom SQL fields cannot contain sub-queries." msgstr "" @@ -4767,7 +4851,7 @@ msgstr "Cláusula WHERE personalizada" msgid "Cyclic dependency detected" msgstr "" -#: superset/connectors/sqla/views.py:256 +#: superset/connectors/sqla/views.py:255 msgid "D3 Format" msgstr "Formato D3" @@ -4778,7 +4862,7 @@ msgstr "Formato D3" msgid "D3 format" msgstr "Formato D3" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:22 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:146 msgid "D3 format syntax: https://github.com/d3/d3-format" msgstr "" @@ -4794,7 +4878,7 @@ msgstr "" msgid "D3 time format for datetime columns" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:53 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 msgid "D3 time format syntax: https://github.com/d3/d3-time-format" msgstr "" @@ -4817,7 +4901,7 @@ msgstr "" msgid "DELETE" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:332 +#: superset-frontend/src/pages/DatabaseList/index.tsx:343 msgid "DML" msgstr "" @@ -4846,12 +4930,12 @@ msgstr "" msgid "Dashboard" msgstr "Dashboard" -#: superset-frontend/src/explore/actions/saveModalActions.js:135 +#: superset-frontend/src/explore/actions/saveModalActions.js:129 #, python-format msgid "Dashboard [%s] just got created and chart [%s] was added to it" msgstr "" -#: superset/views/core.py:1122 +#: superset/views/core.py:1144 msgid "Dashboard [{}] just got created and chart [{}] was added to it" msgstr "" @@ -4919,7 +5003,7 @@ msgstr "[Nome do dashboard]" #: superset-frontend/src/pages/Home/index.tsx:385 #: superset-frontend/src/profile/components/CreatedContent.tsx:101 #: superset-frontend/src/profile/components/Favorites.tsx:99 -#: superset/initialization/__init__.py:249 superset/views/chart/mixin.py:78 +#: superset/initialization/__init__.py:251 superset/views/chart/mixin.py:78 #: superset/views/dashboard/mixin.py:24 msgid "Dashboards" msgstr "Dashboards" @@ -4945,7 +5029,7 @@ msgstr "Dashboard" #: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:708 #: superset-frontend/src/features/home/RightMenu.tsx:169 -#: superset/initialization/__init__.py:244 +#: superset/initialization/__init__.py:246 msgid "Data" msgstr "Base de dados" @@ -4954,7 +5038,7 @@ msgstr "Base de dados" msgid "Data Table" msgstr "Editar Tabela" -#: superset/datasets/commands/exceptions.py:197 +#: superset/datasets/commands/exceptions.py:214 msgid "Data URI is not allowed." msgstr "" @@ -4968,14 +5052,14 @@ msgstr "" msgid "Data Zoom" msgstr "" -#: superset/sqllab/commands/results.py:116 superset/views/core.py:2195 +#: superset/sqllab/commands/results.py:116 superset/views/core.py:2231 msgid "" "Data could not be deserialized from the results backend. The storage " "format might have changed, rendering the old data stake. You need to re-" "run the original query." msgstr "" -#: superset/sqllab/commands/results.py:75 superset/views/core.py:2148 +#: superset/sqllab/commands/results.py:75 superset/views/core.py:2184 msgid "" "Data could not be retrieved from the results backend. You need to re-run " "the original query." @@ -4989,7 +5073,7 @@ msgstr "" msgid "Data preview" msgstr "Pré-visualização de dados" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:283 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:278 #, fuzzy msgid "Data refreshed" msgstr "Não atualize" @@ -5010,51 +5094,51 @@ msgstr "Selecione pelo menos uma métrica" msgid "DataFrame must include temporal column" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:275 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:274 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -#: superset-frontend/src/pages/DatabaseList/index.tsx:267 -#: superset-frontend/src/pages/DatabaseList/index.tsx:296 -#: superset-frontend/src/pages/DatasetList/index.tsx:349 -#: superset-frontend/src/pages/DatasetList/index.tsx:520 +#: superset-frontend/src/pages/DatabaseList/index.tsx:278 +#: superset-frontend/src/pages/DatabaseList/index.tsx:307 +#: superset-frontend/src/pages/DatasetList/index.tsx:360 +#: superset-frontend/src/pages/DatasetList/index.tsx:531 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:241 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:349 #: superset-frontend/src/pages/SavedQueryList/index.tsx:287 #: superset-frontend/src/pages/SavedQueryList/index.tsx:448 -#: superset/connectors/sqla/views.py:479 superset/connectors/sqla/views.py:480 +#: superset/connectors/sqla/views.py:386 superset/connectors/sqla/views.py:387 #: superset/templates/superset/import_dashboards.html:53 -#: superset/views/database/forms.py:137 superset/views/database/forms.py:305 -#: superset/views/database/forms.py:436 superset/views/database/mixins.py:188 +#: superset/views/database/forms.py:137 superset/views/database/forms.py:315 +#: superset/views/database/forms.py:446 superset/views/database/mixins.py:188 #: superset/views/sql_lab/views.py:83 msgid "Database" msgstr "Base de dados" -#: superset/views/database/views.py:478 +#: superset/views/database/views.py:481 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " "for columnar uploads. Please contact your Superset Admin." msgstr "" -#: superset/views/database/views.py:179 +#: superset/views/database/views.py:180 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " "for csv uploads. Please contact your Superset Admin." msgstr "" -#: superset/views/database/views.py:318 +#: superset/views/database/views.py:321 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " "for excel uploads. Please contact your Superset Admin." msgstr "" -#: superset/initialization/__init__.py:241 +#: superset/initialization/__init__.py:243 #, fuzzy msgid "Database Connections" msgstr "Selecione qualquer coluna para inspeção de metadados" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1467 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1522 #, fuzzy msgid "Database Creation Error" msgstr "Expressão de base de dados" @@ -5064,9 +5148,9 @@ msgid "Database URL" msgstr "URL da Base de Dados" #: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:827 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:849 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1150 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:882 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:904 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1205 #, fuzzy msgid "Database connected" msgstr "Não foi possível gravar a sua query" @@ -5093,7 +5177,7 @@ msgstr "" msgid "Database does not exist" msgstr "" -#: superset/connectors/sqla/models.py:1793 superset/models/helpers.py:1966 +#: superset/models/helpers.py:2063 #, fuzzy msgid "Database does not support subqueries" msgstr "Origem de dados %(name)s já existe" @@ -5104,7 +5188,7 @@ msgid "" "documentation page for installation instructions: " msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:429 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 #, fuzzy msgid "Database error" msgstr "Expressão de base de dados" @@ -5118,8 +5202,8 @@ msgid "Database is required for alerts" msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:113 -#: superset/db_engine_specs/base.py:1845 -#: superset/db_engine_specs/clickhouse.py:209 +#: superset/db_engine_specs/base.py:1880 +#: superset/db_engine_specs/clickhouse.py:212 #, fuzzy msgid "Database name" msgstr "nome da origem de dados" @@ -5132,7 +5216,7 @@ msgstr "" msgid "Database not found." msgstr "" -#: superset/views/core.py:1179 +#: superset/views/core.py:1201 #, python-format msgid "Database not found: %(id)s" msgstr "" @@ -5146,26 +5230,26 @@ msgstr "" msgid "Database passwords" msgstr "Expressão de base de dados" -#: superset/db_engine_specs/base.py:1842 -#: superset/db_engine_specs/clickhouse.py:206 +#: superset/db_engine_specs/base.py:1876 +#: superset/db_engine_specs/clickhouse.py:208 #: superset/db_engine_specs/databricks.py:52 #, fuzzy msgid "Database port" msgstr "Base de dados" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:811 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:853 #, fuzzy msgid "Database settings updated" msgstr "Não foi possível gravar a sua query" -#: superset-frontend/src/pages/DatabaseList/index.tsx:258 +#: superset-frontend/src/pages/DatabaseList/index.tsx:269 #: superset-frontend/src/profile/components/Security.tsx:47 #: superset/views/database/mixins.py:33 msgid "Databases" msgstr "Bases de dados" -#: superset/views/database/forms.py:219 superset/views/database/forms.py:380 -#: superset/views/database/forms.py:471 +#: superset/views/database/forms.py:229 superset/views/database/forms.py:390 +#: superset/views/database/forms.py:481 msgid "Dataframe Index" msgstr "" @@ -5177,7 +5261,7 @@ msgstr "" #: superset-frontend/src/pages/ChartCreation/index.tsx:390 #: superset-frontend/src/pages/ChartList/index.tsx:391 #: superset-frontend/src/pages/ChartList/index.tsx:678 -#: superset-frontend/src/pages/DatasetList/index.tsx:606 +#: superset-frontend/src/pages/DatasetList/index.tsx:617 msgid "Dataset" msgstr "Base de dados" @@ -5186,7 +5270,7 @@ msgstr "Base de dados" msgid "Dataset %(name)s already exists" msgstr "Origem de dados %(name)s já existe" -#: superset-frontend/src/explore/components/SaveModal.tsx:331 +#: superset-frontend/src/explore/components/SaveModal.tsx:366 #, fuzzy msgid "Dataset Name" msgstr "nome da origem de dados" @@ -5201,29 +5285,29 @@ msgstr "Camadas de anotação" msgid "Dataset column not found." msgstr "Anotações" -#: superset/datasets/commands/exceptions.py:157 +#: superset/datasets/commands/exceptions.py:174 msgid "Dataset could not be created." msgstr "Não foi possível gravar a sua query" -#: superset/datasets/commands/exceptions.py:165 +#: superset/datasets/commands/exceptions.py:182 msgid "Dataset could not be deleted." msgstr "" -#: superset/datasets/commands/exceptions.py:193 +#: superset/datasets/commands/exceptions.py:210 #, fuzzy msgid "Dataset could not be duplicated." msgstr "Não foi possível gravar a sua query" -#: superset/datasets/commands/exceptions.py:161 -#: superset/datasets/commands/exceptions.py:173 +#: superset/datasets/commands/exceptions.py:178 +#: superset/datasets/commands/exceptions.py:190 msgid "Dataset could not be updated." msgstr "Não foi possível gravar a sua query" -#: superset/datasets/commands/exceptions.py:149 +#: superset/datasets/commands/exceptions.py:166 msgid "Dataset does not exist" msgstr "Origem de dados %(name)s já existe" -#: superset-frontend/src/pages/DatasetList/index.tsx:185 +#: superset-frontend/src/pages/DatasetList/index.tsx:196 #, fuzzy msgid "Dataset imported" msgstr "nome da origem de dados" @@ -5249,22 +5333,22 @@ msgstr "Anotações" msgid "Dataset name" msgstr "nome da origem de dados" -#: superset/datasets/commands/exceptions.py:153 +#: superset/datasets/commands/exceptions.py:170 msgid "Dataset parameters are invalid." msgstr "" -#: superset/dashboards/api.py:430 +#: superset/dashboards/api.py:415 #, python-format msgid "Dataset schema is invalid, caused by: %(error)s" msgstr "" -#: superset/datasets/commands/exceptions.py:169 +#: superset/datasets/commands/exceptions.py:186 msgid "Dataset(s) could not be bulk deleted." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:589 +#: superset-frontend/src/pages/DatasetList/index.tsx:600 #: superset-frontend/src/profile/components/Security.tsx:61 -#: superset/initialization/__init__.py:265 +#: superset/initialization/__init__.py:267 msgid "Datasets" msgstr "Bases de dados" @@ -5288,12 +5372,12 @@ msgstr "Fonte de dados" msgid "Datasource & Chart Type" msgstr "Nome da origem de dados" -#: superset/commands/exceptions.py:131 +#: superset/commands/exceptions.py:135 #, fuzzy msgid "Datasource does not exist" msgstr "Origem de dados %(name)s já existe" -#: superset/commands/exceptions.py:123 +#: superset/commands/exceptions.py:127 #, fuzzy msgid "Datasource type is invalid" msgstr "Origem de dados" @@ -5313,8 +5397,7 @@ msgstr "Formato de data e hora" msgid "Date filter" msgstr "Filtro de data" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:71 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:151 #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:135 @@ -5335,11 +5418,11 @@ msgstr "" msgid "Date/Time" msgstr "Formato da datahora" -#: superset/connectors/sqla/views.py:163 +#: superset/connectors/sqla/views.py:162 msgid "Datetime Format" msgstr "Formato de data e hora" -#: superset/connectors/sqla/models.py:1237 superset/models/helpers.py:1427 +#: superset/models/helpers.py:1502 msgid "" "Datetime column not provided as part table configuration and is required " "by this type of chart" @@ -5352,7 +5435,7 @@ msgstr "" msgid "Datetime format" msgstr "Formato de data e hora" -#: superset/db_engine_specs/base.py:106 +#: superset/db_engine_specs/base.py:107 #, fuzzy msgid "Day" msgstr "dia" @@ -5366,7 +5449,7 @@ msgstr "" msgid "Days %s" msgstr "dia" -#: superset/connectors/sqla/models.py:1936 superset/models/helpers.py:988 +#: superset/connectors/sqla/models.py:1222 superset/models/helpers.py:1024 msgid "Db engine did not return all queried columns" msgstr "" @@ -5379,47 +5462,56 @@ msgstr "Acção" msgid "December" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:70 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:89 msgid "Decides which column to sort the base axis by." msgstr "" -#: superset/views/database/forms.py:194 superset/views/database/forms.py:373 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:160 +msgid "Decides which measure to sort the base axis by." +msgstr "" + +#: superset/views/database/forms.py:204 superset/views/database/forms.py:383 msgid "Decimal Character" msgstr "" -#: superset/viz.py:2743 +#: superset/viz.py:2700 msgid "Deck.gl - 3D Grid" msgstr "" -#: superset/viz.py:2859 +#: superset/viz.py:2825 msgid "Deck.gl - 3D HEX" msgstr "" -#: superset/viz.py:2899 +#: superset/viz.py:2890 msgid "Deck.gl - Arc" msgstr "" -#: superset/viz.py:2880 +#: superset/viz.py:2869 msgid "Deck.gl - GeoJSON" msgstr "" -#: superset/viz.py:2468 +#: superset/viz.py:2848 +#, fuzzy +msgid "Deck.gl - Heatmap" +msgstr "Gráfico de bala" + +#: superset/viz.py:2406 msgid "Deck.gl - Multiple Layers" msgstr "" -#: superset/viz.py:2775 +#: superset/viz.py:2735 msgid "Deck.gl - Paths" msgstr "" -#: superset/viz.py:2826 +#: superset/viz.py:2789 msgid "Deck.gl - Polygon" msgstr "" -#: superset/viz.py:2662 +#: superset/viz.py:2612 msgid "Deck.gl - Scatter plot" msgstr "" -#: superset/viz.py:2714 +#: superset/viz.py:2668 msgid "Deck.gl - Screen Grid" msgstr "" @@ -5427,7 +5519,7 @@ msgstr "" msgid "Default" msgstr "Latitude padrão" -#: superset/connectors/sqla/views.py:484 +#: superset/connectors/sqla/views.py:391 msgid "Default Endpoint" msgstr "Endpoint Padrão" @@ -5562,11 +5654,13 @@ msgstr "" #: superset-frontend/src/pages/CssTemplateList/index.tsx:338 #: superset-frontend/src/pages/DashboardList/index.tsx:427 #: superset-frontend/src/pages/DashboardList/index.tsx:712 -#: superset-frontend/src/pages/DatasetList/index.tsx:418 -#: superset-frontend/src/pages/DatasetList/index.tsx:751 +#: superset-frontend/src/pages/DatasetList/index.tsx:429 +#: superset-frontend/src/pages/DatasetList/index.tsx:773 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:182 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:313 #: superset-frontend/src/pages/SavedQueryList/index.tsx:542 #: superset-frontend/src/pages/Tags/index.tsx:153 -#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:663 +#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:664 msgid "Delete" msgstr "Eliminar" @@ -5579,11 +5673,11 @@ msgstr "Eliminar" msgid "Delete Annotation?" msgstr "Anotações" -#: superset-frontend/src/pages/DatabaseList/index.tsx:529 +#: superset-frontend/src/pages/DatabaseList/index.tsx:551 msgid "Delete Database?" msgstr "Selecione uma base de dados" -#: superset-frontend/src/pages/DatasetList/index.tsx:723 +#: superset-frontend/src/pages/DatasetList/index.tsx:745 msgid "Delete Dataset?" msgstr "Tem a certeza que pretende eliminar tudo?" @@ -5605,7 +5699,7 @@ msgstr "Modelos CSS" msgid "Delete Template?" msgstr "Modelos CSS" -#: superset/views/base.py:663 +#: superset/views/base.py:664 msgid "Delete all Really?" msgstr "Tem a certeza que pretende eliminar tudo?" @@ -5618,7 +5712,7 @@ msgstr "Anotações" msgid "Delete dashboard tab?" msgstr "Por favor insira um nome para o dashboard" -#: superset-frontend/src/pages/DatabaseList/index.tsx:405 +#: superset-frontend/src/pages/DatabaseList/index.tsx:416 msgid "Delete database" msgstr "Selecione uma base de dados" @@ -5640,6 +5734,11 @@ msgstr "Carregue um modelo" msgid "Delete this container and save to remove this message." msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:108 +#, fuzzy +msgid "Deleted" +msgstr "Eliminar" + #: superset/annotation_layers/annotations/api.py:504 #, python-format msgid "Deleted %(num)d annotation" @@ -5654,7 +5753,7 @@ msgid_plural "Deleted %(num)d annotation layers" msgstr[0] "Selecione uma camada de anotação" msgstr[1] "Selecione uma camada de anotação" -#: superset/charts/api.py:524 +#: superset/charts/api.py:521 #, python-format msgid "Deleted %(num)d chart" msgid_plural "Deleted %(num)d charts" @@ -5668,14 +5767,14 @@ msgid_plural "Deleted %(num)d css templates" msgstr[0] "" msgstr[1] "" -#: superset/dashboards/api.py:760 +#: superset/dashboards/api.py:745 #, python-format msgid "Deleted %(num)d dashboard" msgid_plural "Deleted %(num)d dashboards" msgstr[0] "Por favor selecione um dashboard" msgstr[1] "Por favor selecione um dashboard" -#: superset/datasets/api.py:783 +#: superset/datasets/api.py:789 #, python-format msgid "Deleted %(num)d dataset" msgid_plural "Deleted %(num)d datasets" @@ -5689,6 +5788,13 @@ msgid_plural "Deleted %(num)d report schedules" msgstr[0] "" msgstr[1] "" +#: superset/row_level_security/api.py:349 +#, fuzzy, python-format +msgid "Deleted %(num)d rules" +msgid_plural "Deleted %(num)d rules" +msgstr[0] "" +msgstr[1] "" + #: superset/queries/saved_queries/api.py:222 #, python-format msgid "Deleted %(num)d saved query" @@ -5696,13 +5802,18 @@ msgid_plural "Deleted %(num)d saved queries" msgstr[0] "" msgstr[1] "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:94 +#, fuzzy, python-format +msgid "Deleted %s" +msgstr "Eliminar" + #: superset-frontend/src/features/home/SavedQueries.tsx:172 #: superset-frontend/src/pages/AlertReportList/index.tsx:183 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 #: superset-frontend/src/pages/AnnotationList/index.tsx:117 #: superset-frontend/src/pages/CssTemplateList/index.tsx:93 -#: superset-frontend/src/pages/DatabaseList/index.tsx:158 -#: superset-frontend/src/pages/DatasetList/index.tsx:653 +#: superset-frontend/src/pages/DatabaseList/index.tsx:169 +#: superset-frontend/src/pages/DatasetList/index.tsx:664 #: superset-frontend/src/pages/SavedQueryList/index.tsx:242 #: superset-frontend/src/reports/actions/reports.js:158 #: superset-frontend/src/views/CRUD/utils.tsx:272 @@ -5721,7 +5832,7 @@ msgstr "" msgid "Delimited long & lat single column" msgstr "" -#: superset/views/database/forms.py:150 +#: superset/views/database/forms.py:160 msgid "Delimiter" msgstr "" @@ -5750,33 +5861,35 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:40 +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 #, fuzzy msgid "Deprecated" msgstr "Criado em" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:83 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:114 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:96 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:127 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:55 #: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:157 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:156 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:265 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1206 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1210 -#: superset-frontend/src/components/ReportModal/index.tsx:294 +#: superset-frontend/src/components/ReportModal/index.tsx:293 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1158 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:465 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 #: superset-frontend/src/pages/AnnotationList/index.tsx:161 -#: superset/connectors/sqla/views.py:157 superset/connectors/sqla/views.py:251 -#: superset/connectors/sqla/views.py:362 superset/connectors/sqla/views.py:491 -#: superset/views/chart/mixin.py:80 superset/views/sql_lab/views.py:84 +#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:398 superset/views/chart/mixin.py:80 +#: superset/views/sql_lab/views.py:84 msgid "Description" msgstr "Descrição" @@ -5790,7 +5903,7 @@ msgstr "" msgid "Description Columns" msgstr "descrição" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:50 msgid "Description text that shows up below your Big Number" msgstr "" @@ -5860,7 +5973,7 @@ msgstr "" msgid "Dimensions" msgstr "" -#: superset/viz.py:2005 +#: superset/viz.py:1928 msgid "Directed Force Layout" msgstr "Layout de Forças" @@ -5871,11 +5984,11 @@ msgstr "Layout de Forças" msgid "Directional" msgstr "descrição" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:202 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 msgid "Disable SQL Lab data preview queries" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:205 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 msgid "" "Disable data preview when fetching table metadata in SQL Lab. Useful to " "avoid browser performance issues when using databases with very wide " @@ -5918,7 +6031,6 @@ msgstr "" msgid "Display configuration" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:87 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:252 msgid "" "Display metrics side by side within each column, as opposed to each " @@ -5929,14 +6041,10 @@ msgstr "" msgid "Display row level total" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:39 msgid "Display settings" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:78 -msgid "Display total row/column" -msgstr "" - #: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:35 msgid "" "Displays connections between entities in a graph structure. Useful for " @@ -5957,7 +6065,7 @@ msgstr "" msgid "Distribution" msgstr "Contribuição" -#: superset/viz.py:1801 +#: superset/viz.py:1717 msgid "Distribution - Bar Chart" msgstr "Gráfico de barras" @@ -5976,7 +6084,7 @@ msgstr "" msgid "Documentation" msgstr "Anotações" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:40 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 msgid "Domain" msgstr "" @@ -5991,18 +6099,18 @@ msgstr "mês" msgid "Dotted" msgstr "Editar" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:480 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:482 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:292 msgid "Download" msgstr "" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:317 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:504 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:512 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:329 msgid "Download as image" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:264 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:262 msgid "Download to CSV" msgstr "" @@ -6054,20 +6162,20 @@ msgstr "" msgid "Draw split lines for minor y-axis ticks" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:181 -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:191 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 msgid "Drill by" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:172 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 msgid "Drill by is not available for this data point" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:170 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 msgid "Drill by is not yet supported for this chart type" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:154 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:420 #, fuzzy, python-format msgid "Drill by: %s" msgstr "Ordenar por" @@ -6096,61 +6204,37 @@ msgstr "" msgid "Drill to detail: %s" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:206 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:184 msgid "Drop a column here or click" msgid_plural "Drop columns here or click" msgstr[0] "" msgstr[1] "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:335 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:330 msgid "Drop a column/metric here or click" msgid_plural "Drop columns/metrics here or click" msgstr[0] "" msgstr[1] "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:248 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 msgid "Drop a temporal column here or click" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:216 -msgid "Drop column here" -msgid_plural "Drop columns here" -msgstr[0] "" -msgstr[1] "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:340 -msgid "Drop column or metric here" -msgid_plural "Drop columns or metrics here" -msgstr[0] "" -msgstr[1] "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndSelectLabel.tsx:83 -msgid "Drop columns here" -msgstr "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:402 -msgid "Drop columns or metrics here" -msgstr "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:401 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:405 msgid "Drop columns/metrics here or click" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 -msgid "Drop temporal column here" -msgstr "" - #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:32 #, fuzzy msgid "Dual Line Chart" msgstr "Gráfico de bala" #: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 -#: superset-frontend/src/pages/DatasetList/index.tsx:472 +#: superset-frontend/src/pages/DatasetList/index.tsx:483 msgid "Duplicate" msgstr "" -#: superset/views/datasource/views.py:122 +#: superset/views/datasource/views.py:124 #, python-format msgid "Duplicate column name(s): %(columns)s" msgstr "" @@ -6176,7 +6260,7 @@ msgstr "" msgid "Duration" msgstr "Descrição" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:239 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:249 msgid "" "Duration (in seconds) of the caching timeout for charts of this database." " A timeout of 0 indicates that the cache never expires, and -1 bypasses " @@ -6204,28 +6288,28 @@ msgid "" "undefined." msgstr "Duração (em segundos) do tempo limite da cache para esta visualização." -#: superset/connectors/sqla/views.py:462 +#: superset/connectors/sqla/views.py:369 msgid "" "Duration (in seconds) of the caching timeout for this table. A timeout of" " 0 indicates that the cache never expires. Note this defaults to the " "database timeout if undefined." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:261 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:271 #, fuzzy msgid "" "Duration (in seconds) of the metadata caching timeout for schemas of this" " database. If left unset, the cache never expires." msgstr "Duração (em segundos) do tempo limite da cache para esta visualização." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:282 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:292 #, fuzzy msgid "" "Duration (in seconds) of the metadata caching timeout for tables of this " "database. If left unset, the cache never expires. " msgstr "Duração (em segundos) do tempo limite da cache para esta visualização." -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:50 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" msgstr "" @@ -6233,7 +6317,7 @@ msgstr "" msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:49 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 #: superset-frontend/src/explore/controls.jsx:89 msgid "Duration in ms (66000 => 1m 6s)" msgstr "" @@ -6272,7 +6356,7 @@ msgstr "" msgid "ECharts" msgstr "Mover gráfico" -#: superset/reports/notifications/email.py:130 +#: superset/reports/notifications/email.py:133 msgid "EMAIL_REPORTS_CTA" msgstr "" @@ -6282,12 +6366,12 @@ msgstr "" msgid "END (EXCLUSIVE)" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:171 +#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 #, fuzzy msgid "ERROR" msgstr "Erro" -#: superset-frontend/src/views/CRUD/hooks.ts:700 +#: superset-frontend/src/views/CRUD/hooks.ts:704 #, python-format msgid "ERROR: %s" msgstr "" @@ -6319,8 +6403,9 @@ msgstr "Largura" #: superset-frontend/src/pages/AlertReportList/index.tsx:385 #: superset-frontend/src/pages/ChartList/index.tsx:553 #: superset-frontend/src/pages/DashboardList/index.tsx:461 -#: superset-frontend/src/pages/DatabaseList/index.tsx:431 -#: superset-frontend/src/pages/DatasetList/index.tsx:452 +#: superset-frontend/src/pages/DatabaseList/index.tsx:442 +#: superset-frontend/src/pages/DatasetList/index.tsx:463 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:200 msgid "Edit" msgstr "Editar" @@ -6351,7 +6436,7 @@ msgstr "Editar gráfico" msgid "Edit Chart Properties" msgstr "Editar propriedades da visualização" -#: superset/connectors/sqla/views.py:75 +#: superset/connectors/sqla/views.py:74 msgid "Edit Column" msgstr "Editar Coluna" @@ -6363,7 +6448,7 @@ msgstr "Editar Dashboard" msgid "Edit Database" msgstr "Editar Base de Dados" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:199 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:241 msgid "Edit Dataset " msgstr "Editar Base de Dados" @@ -6371,7 +6456,7 @@ msgstr "Editar Base de Dados" msgid "Edit Log" msgstr "Editar" -#: superset/connectors/sqla/views.py:210 +#: superset/connectors/sqla/views.py:209 msgid "Edit Metric" msgstr "Editar Métrica" @@ -6384,15 +6469,16 @@ msgstr "Editar Coluna" msgid "Edit Report" msgstr "Janela de exibição" -#: superset/connectors/sqla/views.py:293 -msgid "Edit Row level security filter" -msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +#, fuzzy +msgid "Edit Rule" +msgstr "Query vazia?" #: superset/views/sql_lab/views.py:55 msgid "Edit Saved Query" msgstr "Editar Query" -#: superset/connectors/sqla/views.py:387 +#: superset/connectors/sqla/views.py:294 msgid "Edit Table" msgstr "Editar Tabela" @@ -6412,9 +6498,9 @@ msgstr "Camadas de anotação" msgid "Edit annotation layer properties" msgstr "Camadas de anotação" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:74 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:122 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:44 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:212 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:217 #: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:405 #, fuzzy msgid "Edit chart" @@ -6430,7 +6516,7 @@ msgstr "Editar propriedades da visualização" msgid "Edit dashboard" msgstr "Editar Dashboard" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1700 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 #, fuzzy msgid "Edit database" msgstr "Editar Base de Dados" @@ -6442,7 +6528,7 @@ msgstr "Editar Base de Dados" #: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:243 #: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:264 -#: superset-frontend/src/components/ReportModal/index.tsx:212 +#: superset-frontend/src/components/ReportModal/index.tsx:211 msgid "Edit email report" msgstr "" @@ -6467,7 +6553,7 @@ msgstr "Carregue um modelo" msgid "Edit template parameters" msgstr "Editar propriedades da visualização" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:717 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:718 #: superset-frontend/src/dashboard/components/DashboardGrid.jsx:242 #, fuzzy msgid "Edit the dashboard" @@ -6493,8 +6579,9 @@ msgstr "" msgid "Either the database is spelled incorrectly or does not exist." msgstr "" -#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:654 -#: superset/db_engine_specs/redshift.py:67 +#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:681 +#: superset/db_engine_specs/redshift.py:71 +#: superset/db_engine_specs/starrocks.py:122 #, python-format msgid "Either the username \"%(username)s\" or the password is incorrect." msgstr "" @@ -6564,12 +6651,12 @@ msgstr "Conexão de teste" msgid "Empty column" msgstr "Coluna de tempo" -#: superset/charts/data/api.py:363 +#: superset/charts/data/api.py:366 #, fuzzy msgid "Empty query result" msgstr "Query vazia?" -#: superset/connectors/sqla/models.py:1243 superset/models/helpers.py:1433 +#: superset/models/helpers.py:1508 msgid "Empty query?" msgstr "Query vazia?" @@ -6582,11 +6669,11 @@ msgstr "" msgid "Enable 'Allow file uploads to database' in any database's settings" msgstr "" -#: superset/connectors/sqla/views.py:482 +#: superset/connectors/sqla/views.py:389 msgid "Enable Filter Select" msgstr "Ativar Filtro de Seleção" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:139 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 msgid "Enable cross-filtering" msgstr "" @@ -6621,7 +6708,7 @@ msgstr "" msgid "Enable node dragging" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:170 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 msgid "Enable query cost estimation" msgstr "" @@ -6630,7 +6717,7 @@ msgstr "" msgid "Enable server side pagination of results (experimental feature)" msgstr "" -#: superset/viz.py:2567 +#: superset/viz.py:2514 msgid "" "Encountered invalid NULL spatial entry," " please consider filtering those " @@ -6678,19 +6765,19 @@ msgstr "Data de inicio não pode ser posterior à data de fim" msgid "Engine \"%(engine)s\" cannot be configured through parameters." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:476 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:512 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:516 #, fuzzy msgid "Engine Parameters" msgstr "Nome do modelo" -#: superset/databases/schemas.py:298 +#: superset/databases/schemas.py:302 msgid "" "Engine spec \"InvalidEngine\" does not support being configured via " "individual parameters." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:366 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:376 msgid "Enter CA_BUNDLE" msgstr "" @@ -6698,7 +6785,7 @@ msgstr "" msgid "Enter Primary Credentials" msgstr "" -#: superset/views/database/forms.py:151 +#: superset/views/database/forms.py:161 #, fuzzy msgid "Enter a delimiter for this data" msgstr "Insira um novo título para a aba" @@ -6712,15 +6799,15 @@ msgstr "Insira um novo título para a aba" msgid "Enter a new title for the tab" msgstr "Insira um novo título para a aba" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:234 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:255 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:276 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:244 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:286 #, fuzzy msgid "Enter duration in seconds" msgstr "10 segundos" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:265 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:367 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:369 msgid "Enter fullscreen" msgstr "" @@ -6748,7 +6835,7 @@ msgstr "" msgid "Equal to (=)" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:140 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:182 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:139 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:298 #: superset-frontend/src/explore/components/EmbedCodeContent.jsx:57 @@ -6758,22 +6845,22 @@ msgstr "" msgid "Error" msgstr "Erro" -#: superset/connectors/sqla/models.py:1650 superset/models/helpers.py:1843 +#: superset/models/helpers.py:1919 #, python-format msgid "Error in jinja expression in HAVING clause: %(msg)s" msgstr "" -#: superset/connectors/sqla/models.py:1145 +#: superset/connectors/sqla/models.py:1105 superset/models/helpers.py:835 #, python-format msgid "Error in jinja expression in RLS filters: %(msg)s" msgstr "" -#: superset/connectors/sqla/models.py:1633 superset/models/helpers.py:1831 +#: superset/models/helpers.py:1901 #, python-format msgid "Error in jinja expression in WHERE clause: %(msg)s" msgstr "" -#: superset/connectors/sqla/models.py:826 +#: superset/connectors/sqla/models.py:789 #, python-format msgid "Error in jinja expression in fetch values predicate: %(msg)s" msgstr "" @@ -6799,7 +6886,7 @@ msgstr "O carregamento de dados falhou" msgid "Error while fetching data: %s" msgstr "O carregamento de dados falhou" -#: superset/connectors/sqla/models.py:953 superset/models/helpers.py:1029 +#: superset/connectors/sqla/models.py:914 superset/models/helpers.py:1072 #, fuzzy, python-format msgid "Error while rendering virtual dataset query: %(msg)s" msgstr "Erro ao carregar a lista de base de dados" @@ -6809,12 +6896,12 @@ msgstr "Erro ao carregar a lista de base de dados" msgid "Error: %(error)s" msgstr "" -#: superset/views/core.py:820 superset/views/core.py:1918 +#: superset/views/core.py:842 superset/views/core.py:1955 #, python-format msgid "Error: %(msg)s" msgstr "" -#: superset/views/core.py:817 +#: superset/views/core.py:839 msgid "Error: permalink state not found" msgstr "" @@ -6827,7 +6914,7 @@ msgstr "" msgid "Estimate selected query cost" msgstr "Executar a query selecionada" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:621 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:615 msgid "Estimate the cost before running a query" msgstr "" @@ -6851,7 +6938,7 @@ msgstr "Nome Detalhado" msgid "Event definition" msgstr "" -#: superset/viz.py:2933 +#: superset/viz.py:2927 msgid "Event flow" msgstr "Fluxo de eventos" @@ -6899,18 +6986,18 @@ msgstr "" msgid "Examples" msgstr "" -#: superset/views/database/forms.py:278 +#: superset/views/database/forms.py:288 msgid "Excel File" msgstr "" -#: superset/views/database/views.py:424 +#: superset/views/database/views.py:427 #, python-format msgid "" "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" " database \"%(db_name)s\"" msgstr "" -#: superset/views/database/views.py:303 +#: superset/views/database/views.py:306 msgid "Excel to Database configuration" msgstr "Edite a configuração da origem de dados" @@ -6918,6 +7005,10 @@ msgstr "Edite a configuração da origem de dados" msgid "Exclude selected values" msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:405 +msgid "Excluded roles" +msgstr "" + #: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 #, fuzzy msgid "Executed SQL" @@ -6937,16 +7028,16 @@ msgstr "Registo de Acções" msgid "Execution log" msgstr "Registo de Acções" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:411 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:419 msgid "Existing dataset" msgstr "" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:264 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:366 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:368 msgid "Exit fullscreen" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 msgid "Expand" msgstr "" @@ -6958,11 +7049,11 @@ msgstr "" msgid "Expand data panel" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:209 +#: superset-frontend/src/components/Table/index.tsx:213 msgid "Expand row" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:197 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 #, fuzzy msgid "Expand table preview" msgstr "Remover pré-visualização de tabela" @@ -6980,6 +7071,7 @@ msgid "" msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:38 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:37 @@ -6994,11 +7086,11 @@ msgid "Experimental" msgstr "" #: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 -#: superset/views/core.py:987 +#: superset/views/core.py:1009 msgid "Explore" msgstr "Explorar gráfico" -#: superset/views/core.py:985 +#: superset/views/core.py:1007 #, python-format msgid "Explore - %(table)s" msgstr "" @@ -7014,9 +7106,9 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:854 #: superset-frontend/src/pages/DashboardList/index.tsx:445 #: superset-frontend/src/pages/DashboardList/index.tsx:720 -#: superset-frontend/src/pages/DatabaseList/index.tsx:415 -#: superset-frontend/src/pages/DatasetList/index.tsx:434 -#: superset-frontend/src/pages/DatasetList/index.tsx:759 +#: superset-frontend/src/pages/DatabaseList/index.tsx:426 +#: superset-frontend/src/pages/DatasetList/index.tsx:445 +#: superset-frontend/src/pages/DatasetList/index.tsx:781 #: superset-frontend/src/pages/SavedQueryList/index.tsx:550 #: superset/views/dashboard/views.py:65 msgid "Export" @@ -7031,7 +7123,7 @@ msgstr "Exportar dashboards?" msgid "Export query" msgstr "partilhar query" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:485 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:487 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:316 #, fuzzy msgid "Export to .CSV" @@ -7042,20 +7134,21 @@ msgstr "Exportar para .json" msgid "Export to .JSON" msgstr "Exportar para .json" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:335 #, fuzzy msgid "Export to Excel" msgstr "Exportar para .json" -#: superset/views/base.py:606 +#: superset/views/base.py:607 msgid "Export to YAML" msgstr "Exportar para .json" -#: superset/views/base.py:606 +#: superset/views/base.py:607 msgid "Export to YAML?" msgstr "Exportar para .json" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:496 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:498 #, fuzzy msgid "Export to full .CSV" msgstr "Exportar para o formato .csv" @@ -7069,12 +7162,12 @@ msgstr "" msgid "Export to pivoted .CSV" msgstr "Exportar para o formato .csv" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:88 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 msgid "Expose database in SQL Lab" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:354 -#: superset-frontend/src/pages/DatabaseList/index.tsx:460 +#: superset-frontend/src/pages/DatabaseList/index.tsx:365 +#: superset-frontend/src/pages/DatabaseList/index.tsx:471 #: superset/views/database/mixins.py:183 msgid "Expose in SQL Lab" msgstr "Expor no SQL Lab" @@ -7083,12 +7176,12 @@ msgstr "Expor no SQL Lab" msgid "Expose this DB in SQL Lab" msgstr "Expor esta BD no SQL Lab" -#: superset/connectors/sqla/views.py:161 +#: superset/connectors/sqla/views.py:160 msgid "Expression" msgstr "Expressão" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:908 -#: superset/connectors/sqla/views.py:257 superset/connectors/sqla/views.py:494 +#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:401 #: superset/views/database/mixins.py:193 msgid "Extra" msgstr "Extra" @@ -7156,8 +7249,8 @@ msgstr "Criador" msgid "Factor to multiply the metric by" msgstr "" -#: superset/views/database/forms.py:167 superset/views/database/forms.py:324 -#: superset/views/database/forms.py:455 +#: superset/views/database/forms.py:177 superset/views/database/forms.py:334 +#: superset/views/database/forms.py:465 msgid "Fail" msgstr "" @@ -7168,16 +7261,16 @@ msgid "Failed" msgstr "" #: superset-frontend/src/SqlLab/actions/sqlLab.js:210 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:346 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:350 msgid "Failed at retrieving results" msgstr "O carregamento dos resultados a partir do backend falhou" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:500 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:496 #, python-format msgid "Failed at stopping query. %s" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:343 +#: superset-frontend/src/components/ReportModal/index.tsx:342 msgid "Failed to create report" msgstr "" @@ -7186,24 +7279,37 @@ msgstr "" msgid "Failed to execute %(query)s" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:97 +msgid "Failed to generate chart edit URL" +msgstr "" + #: superset-frontend/src/pages/Chart/index.tsx:57 msgid "Failed to load chart data" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:402 #: superset-frontend/src/pages/Chart/index.tsx:69 msgid "Failed to load chart data." msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 +msgid "Failed to load dimensions for drill by" +msgstr "" + #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 #, fuzzy msgid "Failed to retrieve advanced type" msgstr "O carregamento dos resultados a partir do backend falhou" +#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +msgid "Failed to save cross-filter scoping" +msgstr "" + #: superset/errors.py:143 superset/sqllab/sql_json_executer.py:189 msgid "Failed to start remote query on a worker." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:342 +#: superset-frontend/src/components/ReportModal/index.tsx:341 msgid "Failed to update report" msgstr "" @@ -7227,15 +7333,15 @@ msgstr "Favoritos" msgid "February" msgstr "" -#: superset/connectors/sqla/views.py:488 +#: superset/connectors/sqla/views.py:395 msgid "Fetch Values Predicate" msgstr "Carregar Valores de Predicado" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:538 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:531 msgid "Fetch data preview" msgstr "Obter pré-visualização de dados" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:352 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:354 #, python-format msgid "Fetched %s" msgstr "" @@ -7303,14 +7409,18 @@ msgid "Filter Settings" msgstr "Lista de Métricas" #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:825 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:362 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:373 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:134 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:255 #, fuzzy msgid "Filter Type" msgstr "Valor de filtro" #: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:28 -#, fuzzy -msgid "Filter box" -msgstr "Caixa de filtro" +msgid "Filter box (deprecated)" +msgstr "" #: superset-frontend/src/dashboard/components/SliceAdder.jsx:351 #, fuzzy @@ -7330,7 +7440,7 @@ msgstr "" msgid "Filter has default value" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:197 +#: superset-frontend/src/components/Table/index.tsx:201 #, fuzzy msgid "Filter menu" msgstr "Valor de filtro" @@ -7348,7 +7458,7 @@ msgstr "Valor de filtro" msgid "Filter only displays values relevant to selections made in other filters." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:289 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:283 #, fuzzy msgid "Filter results" msgstr "Procurar Resultados" @@ -7389,7 +7499,7 @@ msgstr "" msgid "Filter value is required" msgstr "Origem de dados" -#: superset/connectors/sqla/models.py:1549 superset/models/helpers.py:1754 +#: superset/models/helpers.py:1815 msgid "Filter value list cannot be empty" msgstr "" @@ -7397,7 +7507,7 @@ msgstr "" msgid "Filter your charts" msgstr "Controlo de filtro" -#: superset/connectors/sqla/views.py:159 +#: superset/connectors/sqla/views.py:158 msgid "Filterable" msgstr "Filtrável" @@ -7405,7 +7515,7 @@ msgstr "Filtrável" #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 #: superset-frontend/src/explore/controls.jsx:446 #: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:35 -#: superset/viz.py:2142 +#: superset/viz.py:2071 msgid "Filters" msgstr "Filtros" @@ -7434,7 +7544,7 @@ msgstr "Edite a configuração da origem de dados" msgid "Filters out of scope (%d)" msgstr "" -#: superset/connectors/sqla/views.py:342 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:435 msgid "" "Filters with the same group key will be ORed together within the group, " "while different filter groups will be ANDed together. Undefined group " @@ -7446,9 +7556,9 @@ msgid "" " 'Europe')." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1077 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1125 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1857 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1132 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1180 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 msgid "Finish" msgstr "" @@ -7507,7 +7617,7 @@ msgstr "" msgid "Font size for the smallest value in the list" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:173 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 msgid "" "For Bigquery, Presto and Postgres, shows a button to compute cost before " "running a query." @@ -7523,7 +7633,7 @@ msgid "" "function, refer to the" msgstr "" -#: superset/connectors/sqla/views.py:336 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:408 msgid "" "For regular filters, these are the roles this filter will be applied to. " "For base filters, these are the roles that the filter DOES NOT apply to, " @@ -7535,27 +7645,27 @@ msgstr "" msgid "Force" msgstr "Fonte" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:141 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 msgid "" "Force all tables and views to be created in this schema when clicking " "CTAS or CVAS in SQL Lab." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:84 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 #, fuzzy msgid "Force date format" msgstr "Formato de data e hora" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:381 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 msgid "Force refresh" msgstr "Forçar atualização de dados" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:292 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:291 msgid "Force refresh schema list" msgstr "Forçar atualização de dados" -#: superset-frontend/src/components/TableSelector/index.tsx:317 +#: superset-frontend/src/components/TableSelector/index.tsx:307 msgid "Force refresh table list" msgstr "Forçar atualização de dados" @@ -7572,11 +7682,11 @@ msgstr "" msgid "Forest Green" msgstr "Cargos a permitir ao utilizador" -#: superset/explore/commands/get.py:87 superset/views/core.py:834 +#: superset/explore/commands/get.py:87 superset/views/core.py:856 msgid "Form data not found in cache, reverting to chart metadata." msgstr "" -#: superset/explore/commands/get.py:95 superset/views/core.py:840 +#: superset/explore/commands/get.py:95 superset/views/core.py:862 msgid "Form data not found in cache, reverting to dataset metadata." msgstr "" @@ -7587,7 +7697,7 @@ msgstr "" msgid "Formattable" msgstr "Chaves para tabela" -#: superset-frontend/src/components/ReportModal/index.tsx:255 +#: superset-frontend/src/components/ReportModal/index.tsx:254 msgid "Formatted CSV attached in email" msgstr "" @@ -7639,7 +7749,7 @@ msgstr "" msgid "Friday" msgstr "" -#: superset/utils/date_parser.py:267 superset/viz.py:392 +#: superset/utils/date_parser.py:267 superset/viz.py:403 msgid "From date cannot be larger than to date" msgstr "Data de inicio não pode ser posterior à data de fim" @@ -7715,7 +7825,7 @@ msgstr "" msgid "Get the specify date for the holiday" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:713 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:714 msgid "Go to the edit mode to configure the dashboard and add charts" msgstr "" @@ -7772,20 +7882,23 @@ msgstr "Agrupar por" msgid "Group By filter plugin" msgstr "" -#: superset/viz.py:927 -msgid "Group By' and 'Columns' can't overlap" -msgstr "Os campos 'Agrupar por' e 'Colunas' não se podem sobrepor" - #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:84 msgid "Group By, Metrics or Percentage Metrics must have a value" msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:433 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:139 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:267 +#, fuzzy +msgid "Group Key" +msgstr "Agrupar por" + #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 msgid "Group by" msgstr "Agrupar por" -#: superset/connectors/sqla/views.py:158 +#: superset/connectors/sqla/views.py:157 msgid "Groupable" msgstr "Agrupável" @@ -7813,12 +7926,12 @@ msgstr "foi criado" msgid "Header" msgstr "Subtítulo" -#: superset/views/database/forms.py:244 superset/views/database/forms.py:331 +#: superset/views/database/forms.py:254 superset/views/database/forms.py:341 msgid "Header Row" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 -#: superset/viz.py:2249 +#: superset/viz.py:2183 msgid "Heatmap" msgstr "Mapa de Calor" @@ -7842,7 +7955,7 @@ msgstr "" msgid "Hide Line" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:394 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:396 #, fuzzy msgid "Hide chart description" msgstr "Alternar descrição do gráfico" @@ -7873,12 +7986,12 @@ msgid "Hierarchy" msgstr "Pesquisa" #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 -#: superset/viz.py:1743 +#: superset/viz.py:1656 msgid "Histogram" msgstr "Histograma" #: superset-frontend/src/pages/Home/index.tsx:333 -#: superset/initialization/__init__.py:233 +#: superset/initialization/__init__.py:235 msgid "Home" msgstr "" @@ -7887,7 +8000,7 @@ msgstr "" msgid "Horizon Chart" msgstr "Gráfico de Horizonte" -#: superset/viz.py:2310 +#: superset/viz.py:2246 msgid "Horizon Charts" msgstr "Gráfico de Horizonte" @@ -7895,7 +8008,7 @@ msgstr "Gráfico de Horizonte" msgid "Horizontal" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:166 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 msgid "Horizontal (Top)" msgstr "" @@ -7907,12 +8020,12 @@ msgstr "" msgid "Host" msgstr "" -#: superset/db_engine_specs/base.py:1839 -#: superset/db_engine_specs/clickhouse.py:203 +#: superset/db_engine_specs/base.py:1872 +#: superset/db_engine_specs/clickhouse.py:204 msgid "Hostname or IP address" msgstr "" -#: superset/db_engine_specs/base.py:104 +#: superset/db_engine_specs/base.py:105 #, fuzzy msgid "Hour" msgstr "hora" @@ -7971,7 +8084,7 @@ msgstr "id:" msgid "Id of root node of the tree." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:391 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:401 #, fuzzy msgid "" "If Presto or Trino, all the queries in SQL Lab are going to be executed " @@ -8002,7 +8115,7 @@ msgstr "" "utilizador atualmente conectado recorrendo à propriedade " "hive.server2.proxy.user." -#: superset/views/database/forms.py:164 +#: superset/views/database/forms.py:174 #, fuzzy msgid "If Table Already Exists" msgstr "Origem de dados %(name)s já existe" @@ -8011,7 +8124,7 @@ msgstr "Origem de dados %(name)s já existe" msgid "If a metric is specified, sorting will be done based on the metric value" msgstr "" -#: superset/views/database/forms.py:238 +#: superset/views/database/forms.py:248 msgid "" "If duplicate columns are not overridden, they will be presented as \"X.1," " X.2 ...X.x\"" @@ -8021,7 +8134,7 @@ msgstr "" msgid "If selected, please set the schemas allowed for csv upload in Extra." msgstr "" -#: superset/views/database/forms.py:318 superset/views/database/forms.py:449 +#: superset/views/database/forms.py:328 superset/views/database/forms.py:459 msgid "" "If table exists do one of the following: Fail (do nothing), Replace (drop" " and recreate table) or Append (insert data)." @@ -8039,7 +8152,7 @@ msgstr "" msgid "Ignore time" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:252 +#: superset-frontend/src/components/ReportModal/index.tsx:251 msgid "Image (PNG) embedded in email" msgstr "" @@ -8047,7 +8160,7 @@ msgstr "" msgid "Image download failed, please refresh and try again." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:386 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:396 #, fuzzy msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" msgstr "Personificar o utilizador conectado" @@ -8069,11 +8182,11 @@ msgstr "Importar" msgid "Import Dashboard(s)" msgstr "Importar Dashboards" -#: superset/initialization/__init__.py:337 +#: superset/initialization/__init__.py:331 msgid "Import Dashboards" msgstr "Importar Dashboards" -#: superset/connectors/sqla/views.py:386 +#: superset/connectors/sqla/views.py:293 msgid "Import a table definition" msgstr "" @@ -8099,15 +8212,15 @@ msgstr "Importar Dashboards" msgid "Import database failed for an unknown reason" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1912 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1969 msgid "Import database from file" msgstr "" -#: superset/datasets/commands/exceptions.py:185 +#: superset/datasets/commands/exceptions.py:202 msgid "Import dataset failed for an unknown reason" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:620 +#: superset-frontend/src/pages/DatasetList/index.tsx:631 #, fuzzy msgid "Import datasets" msgstr "Editar Base de Dados" @@ -8136,7 +8249,7 @@ msgstr "Mín" msgid "Include Series" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:295 +#: superset-frontend/src/components/ReportModal/index.tsx:294 msgid "Include a description that will be sent with your report" msgstr "" @@ -8154,7 +8267,7 @@ msgstr "Fim" msgid "Index" msgstr "" -#: superset/views/database/forms.py:210 superset/views/database/forms.py:341 +#: superset/views/database/forms.py:220 superset/views/database/forms.py:351 msgid "Index Column" msgstr "Adicionar Coluna" @@ -8195,11 +8308,24 @@ msgstr "Filtragem instantânea" msgid "Intensity" msgstr "Entidade" -#: superset/views/database/forms.py:190 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:85 +#, fuzzy +msgid "Intensity Radius" +msgstr "Entidade" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:86 +msgid "Intensity Radius is the radius at which the weight is distributed" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:69 +msgid "Intensity is the value multiplied by the weight to obtain the final weight" +msgstr "" + +#: superset/views/database/forms.py:200 msgid "Interpret Datetime Format Automatically" msgstr "" -#: superset/views/database/forms.py:191 +#: superset/views/database/forms.py:201 msgid "Interpret the datetime format automatically" msgstr "" @@ -8234,6 +8360,17 @@ msgstr "Controlo de filtro" msgid "Intervals" msgstr "Filtrável" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:68 +#, fuzzy +msgid "Intesity" +msgstr "Entidade" + +#: superset/db_engine_specs/ocient.py:274 +msgid "" +"Invalid Connection String: Expecting String of the form " +"'ocient://user:pass@host:port/database'." +msgstr "" + #: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 msgid "Invalid JSON" msgstr "" @@ -8247,7 +8384,7 @@ msgstr "" msgid "Invalid certificate" msgstr "" -#: superset/views/core.py:1422 +#: superset/views/core.py:1463 msgid "" "Invalid connection string, a valid string usually follows:\n" "'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" @@ -8276,15 +8413,15 @@ msgstr "" msgid "Invalid cumulative operator: %(operator)s" msgstr "" -#: superset/connectors/sqla/views.py:181 superset/datasets/schemas.py:44 +#: superset/connectors/sqla/views.py:180 superset/datasets/schemas.py:44 msgid "Invalid date/timestamp format" msgstr "Formato da Tabela Datahora" -#: superset/viz.py:2160 +#: superset/viz.py:2091 msgid "Invalid filter configuration, please select a column" msgstr "" -#: superset/connectors/sqla/models.py:1623 superset/models/helpers.py:1820 +#: superset/models/helpers.py:1891 #, python-format msgid "Invalid filter operation type: %(op)s" msgstr "" @@ -8309,7 +8446,7 @@ msgstr "" msgid "Invalid longitude/latitude" msgstr "" -#: superset/utils/core.py:1364 +#: superset/utils/core.py:1373 #, python-format msgid "Invalid metric object: %(metric)s" msgstr "" @@ -8328,7 +8465,12 @@ msgstr "" msgid "Invalid permalink key" msgstr "" -#: superset/common/query_actions.py:228 +#: superset/db_engine_specs/ocient.py:292 +#, python-format +msgid "Invalid reference to column: \"%(column)s\"" +msgstr "" + +#: superset/common/query_actions.py:227 #, python-format msgid "Invalid result type: %(result_type)s" msgstr "" @@ -8338,7 +8480,7 @@ msgstr "" msgid "Invalid rolling_type: %(type)s" msgstr "" -#: superset/viz.py:2530 +#: superset/viz.py:2474 #, python-format msgid "Invalid spatial point encountered: %s" msgstr "" @@ -8348,7 +8490,7 @@ msgstr "" msgid "Invalid state." msgstr "" -#: superset/reports/commands/create.py:144 +#: superset/reports/commands/create.py:142 #, python-format msgid "Invalid tab ids: %s(tab_ids)" msgstr "" @@ -8357,7 +8499,7 @@ msgstr "" msgid "Inverse selection" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:205 +#: superset-frontend/src/components/Table/index.tsx:209 msgid "Invert current page" msgstr "" @@ -8376,7 +8518,7 @@ msgstr "" msgid "Is false" msgstr "" -#: superset/views/base_api.py:143 +#: superset/views/base_api.py:149 msgid "Is favorite" msgstr "Favoritos" @@ -8394,13 +8536,13 @@ msgstr "" msgid "Is null" msgstr "" -#: superset/views/base_api.py:171 +#: superset/views/base_api.py:177 msgid "Is tagged" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:362 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 -#: superset/connectors/sqla/views.py:162 +#: superset/connectors/sqla/views.py:161 msgid "Is temporal" msgstr "É temporal" @@ -8445,7 +8587,7 @@ msgstr "Atualizar coluna de metadados" msgid "JSON metadata is invalid!" msgstr "Atualizar coluna de metadados" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 msgid "" "JSON string containing additional connection configuration. This is used " "to provide connection information for systems like Hive, Presto and " @@ -8482,24 +8624,24 @@ msgstr "" msgid "Jinja templating" msgstr "Carregue um modelo" -#: superset/views/database/forms.py:233 +#: superset/views/database/forms.py:243 msgid "Json list of the column names that should be read" msgstr "" -#: superset/views/database/forms.py:464 +#: superset/views/database/forms.py:474 msgid "" "Json list of the column names that should be read. If not None, only " "these columns will be read from the file." msgstr "" -#: superset/views/database/forms.py:203 +#: superset/views/database/forms.py:213 msgid "" "Json list of the values that should be treated as null. Examples: [\"\"] " "for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " "Hive database supports only a single value" msgstr "" -#: superset/views/database/forms.py:394 +#: superset/views/database/forms.py:404 msgid "" "Json list of the values that should be treated as null. Examples: [\"\"]," " [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " @@ -8549,8 +8691,8 @@ msgstr "Filtros" msgid "LIMIT" msgstr "Limite de linha" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:80 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:109 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:93 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:122 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:251 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:255 @@ -8630,7 +8772,7 @@ msgstr "" msgid "Last" msgstr "" -#: superset/connectors/sqla/views.py:481 superset/views/database/mixins.py:190 +#: superset/connectors/sqla/views.py:388 superset/views/database/mixins.py:190 msgid "Last Changed" msgstr "Modificado pela última vez" @@ -8657,7 +8799,7 @@ msgstr "" #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:177 #: superset-frontend/src/pages/ChartList/index.tsx:445 #: superset-frontend/src/pages/CssTemplateList/index.tsx:158 -#: superset-frontend/src/pages/DatabaseList/index.tsx:380 +#: superset-frontend/src/pages/DatabaseList/index.tsx:391 #, fuzzy msgid "Last modified" msgstr "Última Alteração" @@ -8719,7 +8861,7 @@ msgstr "Última Alteração" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:28 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:90 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:371 #, fuzzy msgid "Left" @@ -8755,7 +8897,7 @@ msgstr "" msgid "Left to Right" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:144 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 #, fuzzy msgid "Left value" msgstr "Latitude padrão" @@ -8769,7 +8911,6 @@ msgstr "Latitude padrão" #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:33 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 #: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 #: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 @@ -8785,15 +8926,16 @@ msgstr "Latitude padrão" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:35 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 #: superset-frontend/src/visualizations/TimeTable/index.ts:35 msgid "Legacy" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:154 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:289 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:115 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:99 msgid "Legend" msgstr "" @@ -8801,7 +8943,7 @@ msgstr "" msgid "Legend Format" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:95 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:92 #, fuzzy msgid "Legend Orientation" msgstr "Anotações" @@ -8811,7 +8953,7 @@ msgstr "Anotações" msgid "Legend Position" msgstr "Conexão de teste" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:72 msgid "Legend type" msgstr "" @@ -8955,7 +9097,7 @@ msgid "Lines encoding" msgstr "" #: superset-frontend/src/pages/SavedQueryList/index.tsx:226 -#: superset-frontend/src/views/CRUD/hooks.ts:673 +#: superset-frontend/src/views/CRUD/hooks.ts:677 msgid "Link Copied!" msgstr "Copiado!" @@ -8983,7 +9125,7 @@ msgstr "" msgid "List of values to mark with triangles" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:187 +#: superset-frontend/src/components/TableSelector/index.tsx:184 msgid "List updated" msgstr "" @@ -9013,8 +9155,8 @@ msgid "Loading" msgstr "" #: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:495 -#: superset-frontend/src/components/Select/Select.tsx:470 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:496 +#: superset-frontend/src/components/Select/Select.tsx:477 #: superset-frontend/src/components/Select/utils.tsx:152 #: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 #: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 @@ -9044,13 +9186,13 @@ msgstr "" msgid "Logarithmic scale on primary y-axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:432 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:449 msgid "Logarithmic scale on secondary y-axis" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:396 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:420 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:429 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:437 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:446 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:222 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:225 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:210 @@ -9121,17 +9263,17 @@ msgstr "" msgid "MON" msgstr "" -#: superset/connectors/sqla/views.py:490 +#: superset/connectors/sqla/views.py:397 msgid "Main Datetime Column" msgstr "Coluna Datahora principal" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:283 +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:292 msgid "" "Make sure that the controls are configured properly and the datasource " "contains data for the selected time range" msgstr "" -#: superset/views/core.py:1717 +#: superset/views/core.py:1752 msgid "" "Malformed request. slice_id or table_name and db_name arguments are " "expected" @@ -9139,11 +9281,11 @@ msgstr "" "Pedido mal formado. Os argumentos slice_id ou table_name e db_name não " "foram preenchidos" -#: superset/initialization/__init__.py:277 -#: superset/initialization/__init__.py:289 -#: superset/initialization/__init__.py:341 -#: superset/initialization/__init__.py:412 -#: superset/initialization/__init__.py:425 +#: superset/initialization/__init__.py:279 +#: superset/initialization/__init__.py:291 +#: superset/initialization/__init__.py:335 +#: superset/initialization/__init__.py:406 +#: superset/initialization/__init__.py:419 msgid "Manage" msgstr "Gerir" @@ -9161,7 +9303,7 @@ msgstr "" msgid "Mandatory" msgstr "" -#: superset/views/database/forms.py:350 +#: superset/views/database/forms.py:360 msgid "Mangle Duplicate Columns" msgstr "Coluna Datahora principal" @@ -9180,6 +9322,8 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:67 @@ -9204,7 +9348,7 @@ msgstr "" msgid "MapBox" msgstr "Mapbox" -#: superset/viz.py:2322 +#: superset/viz.py:2258 msgid "Mapbox" msgstr "Mapbox" @@ -9212,12 +9356,12 @@ msgstr "Mapbox" msgid "March" msgstr "Pesquisa" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:50 #, fuzzy msgid "Margin" msgstr "Origem" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:348 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:354 msgid "Mark a column as temporal in \"Edit datasource\" modal" msgstr "" @@ -9299,7 +9443,7 @@ msgid "" "this insures that the circle respects this maximum radius." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:232 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 msgid "Maximum value" msgstr "" @@ -9350,7 +9494,7 @@ msgstr "" msgid "Menu actions trigger" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:237 +#: superset-frontend/src/components/ReportModal/index.tsx:236 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 #, fuzzy msgid "Message content" @@ -9361,8 +9505,8 @@ msgstr "Conteúdo Criado" msgid "Metadata" msgstr "Atualizar coluna de metadados" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:450 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:454 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:486 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:490 #, fuzzy msgid "Metadata Parameters" msgstr "Nome do modelo" @@ -9388,13 +9532,12 @@ msgstr "" #: superset-frontend/src/explore/controls.jsx:167 #: superset-frontend/src/explore/controls.jsx:168 #: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 -#: superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:249 msgid "Metric" msgstr "Métrica" -#: superset/connectors/sqla/models.py:1264 -#: superset/connectors/sqla/models.py:1847 superset/models/helpers.py:1192 -#: superset/models/helpers.py:1448 +#: superset/connectors/sqla/models.py:1133 superset/models/helpers.py:1236 +#: superset/models/helpers.py:1529 #, python-format msgid "Metric '%(metric)s' does not exist" msgstr "" @@ -9431,7 +9574,7 @@ msgstr "" msgid "Metric for node values" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:106 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:119 #, fuzzy msgid "Metric name" msgstr "nome da origem de dados" @@ -9458,6 +9601,7 @@ msgstr "Selecione uma métrica para visualizar" msgid "Metric to sort the results by" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:139 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:78 msgid "Metric used as a weight for the grid's coloring" msgstr "" @@ -9496,7 +9640,7 @@ msgstr "" #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 #: superset-frontend/src/explore/controls.jsx:152 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 -#: superset/connectors/sqla/views.py:207 +#: superset/connectors/sqla/views.py:206 msgid "Metrics" msgstr "Métricas" @@ -9580,11 +9724,11 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:85 #: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:152 msgid "Minimum threshold in percentage points for showing labels." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:231 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:69 msgid "Minimum value" msgstr "" @@ -9606,7 +9750,7 @@ msgstr "" msgid "Minor Split Line" msgstr "" -#: superset/db_engine_specs/base.py:99 +#: superset/db_engine_specs/base.py:100 #, fuzzy msgid "Minute" msgstr "minuto" @@ -9640,12 +9784,13 @@ msgstr "" #: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:278 #: superset-frontend/src/pages/AlertReportList/index.tsx:335 #: superset-frontend/src/pages/DashboardList/index.tsx:347 -#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:375 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:152 #: superset-frontend/src/pages/SavedQueryList/index.tsx:369 #: superset-frontend/src/pages/Tags/index.tsx:118 -#: superset/connectors/sqla/views.py:367 superset/connectors/sqla/views.py:495 -#: superset/views/dashboard/mixin.py:85 superset/views/dashboard/views.py:186 -#: superset/views/database/mixins.py:199 superset/views/sql_lab/views.py:85 +#: superset/connectors/sqla/views.py:402 superset/views/dashboard/mixin.py:85 +#: superset/views/dashboard/views.py:186 superset/views/database/mixins.py:199 +#: superset/views/sql_lab/views.py:85 msgid "Modified" msgstr "Modificado" @@ -9660,7 +9805,7 @@ msgstr "Última Alteração" #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 #: superset-frontend/src/pages/ChartList/index.tsx:431 #: superset-frontend/src/pages/DashboardList/index.tsx:326 -#: superset-frontend/src/pages/DatasetList/index.tsx:374 +#: superset-frontend/src/pages/DatasetList/index.tsx:385 #, fuzzy msgid "Modified by" msgstr "Modificado" @@ -9674,7 +9819,7 @@ msgstr "" msgid "Monday" msgstr "" -#: superset/db_engine_specs/base.py:108 +#: superset/db_engine_specs/base.py:109 #, fuzzy msgid "Month" msgstr "mês" @@ -9742,7 +9887,7 @@ msgstr "" msgid "Multiple Line Charts" msgstr "Série Temporal - Gráfico de linhas" -#: superset/views/database/views.py:465 +#: superset/views/database/views.py:468 msgid "" "Multiple file extensions are not allowed for columnar uploads. Please " "make sure all files are of the same extension." @@ -9776,11 +9921,11 @@ msgstr "" msgid "Must choose either a chart or a dashboard" msgstr "Remover gráfico do dashboard" -#: superset/viz.py:2346 +#: superset/viz.py:2283 msgid "Must have a [Group By] column to have 'count' as the [Label]" msgstr "Deve ter uma coluna [Agrupar por] para ter 'count' como [Label]" -#: superset/viz.py:1752 +#: superset/viz.py:1666 msgid "Must have at least one numeric column specified" msgstr "Deve ser especificada uma coluna númerica" @@ -9788,7 +9933,7 @@ msgstr "Deve ser especificada uma coluna númerica" msgid "Must provide credentials for the SSH Tunnel" msgstr "" -#: superset/connectors/sqla/models.py:1582 superset/models/helpers.py:1780 +#: superset/models/helpers.py:1848 msgid "Must specify a value for filters with comparison operators" msgstr "" @@ -9831,19 +9976,21 @@ msgid "NUMERIC" msgstr "Métrica" #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:149 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:782 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:212 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:148 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:789 #: superset-frontend/src/pages/AlertReportList/index.tsx:272 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 #: superset-frontend/src/pages/CssTemplateList/index.tsx:131 -#: superset-frontend/src/pages/DatasetList/index.tsx:334 +#: superset-frontend/src/pages/DatasetList/index.tsx:345 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:130 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:248 #: superset-frontend/src/pages/SavedQueryList/index.tsx:283 #: superset-frontend/src/pages/Tags/index.tsx:109 -#: superset/connectors/sqla/views.py:361 superset/views/chart/mixin.py:85 +#: superset/views/chart/mixin.py:85 msgid "Name" msgstr "Nome" @@ -9856,12 +10003,12 @@ msgstr "" msgid "Name must be unique" msgstr "" -#: superset/views/database/forms.py:406 +#: superset/views/database/forms.py:416 #, fuzzy msgid "Name of table to be created from columnar data." msgstr "Nome da tabela que existe na base de dados de origem" -#: superset/views/database/forms.py:270 +#: superset/views/database/forms.py:280 msgid "Name of table to be created from excel data." msgstr "Nome da tabela que existe na base de dados de origem" @@ -9882,7 +10029,7 @@ msgstr "" msgid "Name of the source nodes" msgstr "" -#: superset/connectors/sqla/views.py:428 +#: superset/connectors/sqla/views.py:335 msgid "Name of the table that exists in the source database" msgstr "Nome da tabela que existe na base de dados de origem" @@ -9942,17 +10089,17 @@ msgstr "Ativar Filtro de Seleção" msgid "New header" msgstr "Mover gráfico" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:329 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:331 msgid "New tab" msgstr "fechar aba" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:268 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:310 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:278 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:320 msgid "New tab (Ctrl + q)" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:269 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:311 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:279 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:321 msgid "New tab (Ctrl + t)" msgstr "" @@ -9975,9 +10122,9 @@ msgstr "Série Temporal - Gráfico de linhas" #: superset-frontend/src/pages/ChartList/index.tsx:708 #: superset-frontend/src/pages/DashboardList/index.tsx:507 #: superset-frontend/src/pages/DashboardList/index.tsx:589 -#: superset-frontend/src/pages/DatabaseList/index.tsx:468 -#: superset-frontend/src/pages/DatabaseList/index.tsx:488 -#: superset-frontend/src/pages/DatasetList/index.tsx:573 +#: superset-frontend/src/pages/DatabaseList/index.tsx:479 +#: superset-frontend/src/pages/DatabaseList/index.tsx:499 +#: superset-frontend/src/pages/DatasetList/index.tsx:584 msgid "No" msgstr "" @@ -10001,6 +10148,11 @@ msgstr "Metadados" msgid "No Results" msgstr "ver resultados" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:235 +#, fuzzy +msgid "No Rules yet" +msgstr "Mover gráfico" + #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:116 #, fuzzy msgid "No annotation layers" @@ -10039,7 +10191,7 @@ msgstr "Mover gráfico" msgid "No columns" msgstr "Coluna" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:242 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 #, fuzzy msgid "No columns found" msgstr "Coluna" @@ -10052,7 +10204,7 @@ msgstr "" msgid "No compatible datasets found" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 msgid "No compatible schema found" msgstr "" @@ -10065,14 +10217,14 @@ msgstr "Sem dashboards" msgid "No dashboards yet" msgstr "Sem dashboards" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:133 -#: superset-frontend/src/components/Table/index.tsx:203 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 +#: superset-frontend/src/components/Table/index.tsx:207 #: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:225 #: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 msgid "No data" msgstr "Metadados" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 msgid "No data after filtering or data is NULL for the latest time record" msgstr "" @@ -10093,10 +10245,6 @@ msgstr "" msgid "No description available." msgstr "descrição" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:174 -msgid "No dimensions available for drill by" -msgstr "" - #: superset-frontend/src/profile/components/Favorites.tsx:61 msgid "No favorite charts yet, go click on stars!" msgstr "Ainda não há dashboards favoritos, comece a clicar nas estrelas!" @@ -10116,7 +10264,7 @@ msgstr "Adicionar filtro" msgid "No filter is selected." msgstr "" -#: superset-frontend/src/components/Table/index.tsx:200 +#: superset-frontend/src/components/Table/index.tsx:204 #, fuzzy msgid "No filters" msgstr "Filtros" @@ -10160,7 +10308,7 @@ msgid "No results" msgstr "ver resultados" #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:425 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:428 msgid "No results found" msgstr "Nenhum registo encontrado" @@ -10168,7 +10316,7 @@ msgstr "Nenhum registo encontrado" msgid "No results match your filter criteria" msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:280 +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:289 #: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 msgid "No results were returned for this query" msgstr "" @@ -10188,8 +10336,8 @@ msgstr "" msgid "No samples were returned for this dataset" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:293 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:311 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:299 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:317 msgid "No saved expressions found" msgstr "" @@ -10217,9 +10365,9 @@ msgstr "" msgid "No table columns" msgstr "Ordenação original das colunas" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:292 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:310 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:345 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:298 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:316 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:351 msgid "No temporal columns found" msgstr "" @@ -10250,7 +10398,7 @@ msgid "Node size" msgstr "Tamanho da bolha" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:45 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:187 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:270 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:286 @@ -10260,12 +10408,12 @@ msgstr "Tamanho da bolha" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:402 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:182 #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:124 #: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 #: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:196 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:576 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:48 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:51 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:138 #: superset-frontend/src/explore/controlPanels/sections.tsx:134 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:127 @@ -10349,7 +10497,7 @@ msgstr "" msgid "Now" msgstr "" -#: superset/views/database/forms.py:201 +#: superset/views/database/forms.py:211 #, fuzzy msgid "Null Values" msgstr "Valor de filtro" @@ -10363,11 +10511,11 @@ msgstr "" msgid "Null or Empty" msgstr "" -#: superset/views/database/forms.py:392 +#: superset/views/database/forms.py:402 msgid "Null values" msgstr "Valor de filtro" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:191 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 msgid "Number Format" msgstr "" @@ -10382,11 +10530,10 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:60 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:65 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:144 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:117 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:67 #: superset-frontend/plugins/legacy-plugin-chart-treemap/src/controlPanel.ts:67 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:97 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:137 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:276 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:137 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:113 @@ -10427,19 +10574,19 @@ msgstr "" msgid "Number of periods to ratio against" msgstr "" -#: superset/views/database/forms.py:255 +#: superset/views/database/forms.py:265 msgid "Number of rows of file to read" msgstr "" -#: superset/views/database/forms.py:361 +#: superset/views/database/forms.py:371 msgid "Number of rows of file to read." msgstr "" -#: superset/views/database/forms.py:261 +#: superset/views/database/forms.py:271 msgid "Number of rows to skip at start of file" msgstr "" -#: superset/views/database/forms.py:355 +#: superset/views/database/forms.py:365 msgid "Number of rows to skip at start of file." msgstr "" @@ -10464,15 +10611,15 @@ msgstr "Granularidade Temporal" msgid "OCT" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:184 -#: superset-frontend/src/components/Modal/Modal.tsx:231 -#: superset-frontend/src/components/Table/index.tsx:198 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 +#: superset-frontend/src/components/Modal/Modal.tsx:238 +#: superset-frontend/src/components/Table/index.tsx:202 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:865 msgid "OK" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:267 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1379 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1434 msgid "OVERWRITE" msgstr "" @@ -10485,7 +10632,7 @@ msgstr "" msgid "Offline" msgstr "" -#: superset/connectors/sqla/views.py:485 +#: superset/connectors/sqla/views.py:392 msgid "Offset" msgstr "Offset" @@ -10527,27 +10674,27 @@ msgstr "Um ou vários controles para pivotar como colunas" msgid "One or many metrics to display" msgstr "Uma ou várias métricas para exibir" -#: superset/datasets/commands/exceptions.py:90 +#: superset/datasets/commands/exceptions.py:107 msgid "One or more columns already exist" msgstr "" -#: superset/datasets/commands/exceptions.py:80 +#: superset/datasets/commands/exceptions.py:97 msgid "One or more columns are duplicated" msgstr "" -#: superset/datasets/commands/exceptions.py:70 +#: superset/datasets/commands/exceptions.py:87 msgid "One or more columns do not exist" msgstr "" -#: superset/datasets/commands/exceptions.py:119 +#: superset/datasets/commands/exceptions.py:136 msgid "One or more metrics already exist" msgstr "Uma ou várias métricas para exibir" -#: superset/datasets/commands/exceptions.py:109 +#: superset/datasets/commands/exceptions.py:126 msgid "One or more metrics are duplicated" msgstr "Uma ou várias métricas para exibir" -#: superset/datasets/commands/exceptions.py:99 +#: superset/datasets/commands/exceptions.py:116 msgid "One or more metrics do not exist" msgstr "Uma ou várias métricas para exibir" @@ -10563,7 +10710,7 @@ msgstr "" msgid "One or more parameters specified in the query are missing." msgstr "" -#: superset/views/core.py:1992 +#: superset/views/core.py:2029 msgid "" "One or more required fields are missing in the request. Please try again," " and if the problem persists contact your administrator." @@ -10573,23 +10720,23 @@ msgstr "" msgid "One ore more annotation layers failed loading." msgstr "" -#: superset/sql_lab.py:230 +#: superset/sql_lab.py:228 msgid "Only SELECT statements are allowed against this database." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:133 msgid "Only Total" msgstr "" -#: superset/connectors/sqla/utils.py:123 +#: superset/connectors/sqla/utils.py:122 msgid "Only `SELECT` statements are allowed" msgstr "Copiar a instrução SELECT para a área de transferência" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:29 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 msgid "Only applies when \"Label Type\" is not set to a percentage." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:26 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 msgid "Only applies when \"Label Type\" is set to show values." msgstr "" @@ -10597,18 +10744,18 @@ msgstr "" msgid "Only selected panels will be affected by this filter" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:139 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 msgid "" "Only show the total value on the stacked chart, and not show on the " "selected category" msgstr "" -#: superset/connectors/sqla/utils.py:132 +#: superset/connectors/sqla/utils.py:131 msgid "Only single queries supported" msgstr "" -#: superset/views/database/forms.py:119 superset/views/database/forms.py:288 -#: superset/views/database/forms.py:426 +#: superset/views/database/forms.py:119 superset/views/database/forms.py:298 +#: superset/views/database/forms.py:436 #, python-format msgid "Only the following file extensions are allowed: %(allowed_extensions)s" msgstr "" @@ -10657,7 +10804,7 @@ msgstr "Expor no SQL Lab" msgid "Open query in SQL Lab" msgstr "Expor no SQL Lab" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:298 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 #: superset/views/database/mixins.py:104 msgid "" "Operate the database in asynchronous mode, meaning that the queries are " @@ -10666,8 +10813,8 @@ msgid "" " Refer to the installation docs for more information." msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:126 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:130 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 #, fuzzy msgid "Operator" msgstr "Selecione operador" @@ -10677,7 +10824,7 @@ msgstr "Selecione operador" msgid "Operator undefined for aggregator: %(name)s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:381 msgid "" "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" " certain database engines." @@ -10699,13 +10846,8 @@ msgstr "" msgid "Optional warning about use of this metric" msgstr "" -#: superset/connectors/sqla/views.py:328 -msgid "Optionally add a detailed description" -msgstr "" - #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:39 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:68 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:108 #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:74 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:45 #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:70 @@ -10719,7 +10861,7 @@ msgstr "" msgid "Options" msgstr "Opções" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:918 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:973 msgid "Or choose from a list of other databases we support:" msgstr "" @@ -10737,7 +10879,7 @@ msgstr "" msgid "Ordering" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:83 #, fuzzy msgid "Orientation" msgstr "Anotações" @@ -10747,7 +10889,7 @@ msgstr "Anotações" msgid "Orientation of bar chart" msgstr "Gráfico de barras" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:158 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 msgid "Orientation of filter bar" msgstr "" @@ -10764,7 +10906,7 @@ msgstr "Origem" msgid "Original table column order" msgstr "Ordenação original das colunas" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 #: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 #: superset-frontend/src/explore/controls.jsx:79 @@ -10776,10 +10918,10 @@ msgid "Orthogonal" msgstr "" #: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:126 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:938 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:479 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:993 #: superset-frontend/src/features/home/EmptyState.tsx:112 -#: superset/views/database/forms.py:155 superset/views/database/forms.py:161 +#: superset/views/database/forms.py:165 superset/views/database/forms.py:171 #, fuzzy msgid "Other" msgstr "mês" @@ -10845,15 +10987,15 @@ msgstr "Granularidade Temporal" #: superset-frontend/src/components/ImportModal/index.tsx:426 #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:493 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:459 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:463 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:464 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:148 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 msgid "Overwrite" msgstr "Substitua a visualização %s" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:249 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:192 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:247 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 msgid "Overwrite & Explore" msgstr "Substitua a visualização %s" @@ -10862,12 +11004,12 @@ msgstr "Substitua a visualização %s" msgid "Overwrite Dashboard [%s]" msgstr "Substituir Dashboard [%s]" -#: superset/views/database/forms.py:237 +#: superset/views/database/forms.py:247 #, fuzzy msgid "Overwrite Duplicate Columns" msgstr "Coluna Datahora principal" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:404 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:412 msgid "Overwrite existing" msgstr "" @@ -10882,11 +11024,11 @@ msgstr "" #: superset-frontend/src/pages/AlertReportList/index.tsx:452 #: superset-frontend/src/pages/ChartList/index.tsx:608 #: superset-frontend/src/pages/DashboardList/index.tsx:523 -#: superset-frontend/src/pages/DatasetList/index.tsx:500 +#: superset-frontend/src/pages/DatasetList/index.tsx:511 msgid "Owner" msgstr "Proprietário" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:235 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:93 #: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:408 @@ -10901,14 +11043,14 @@ msgstr "Proprietário" #: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 #: superset-frontend/src/pages/AlertReportList/index.tsx:324 #: superset-frontend/src/pages/DashboardList/index.tsx:369 -#: superset-frontend/src/pages/DatasetList/index.tsx:389 -#: superset/connectors/sqla/views.py:489 superset/views/chart/mixin.py:82 +#: superset-frontend/src/pages/DatasetList/index.tsx:400 +#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:82 #: superset/views/dashboard/mixin.py:81 msgid "Owners" msgstr "Proprietários" -#: superset/commands/exceptions.py:108 -#: superset/datasets/commands/exceptions.py:144 +#: superset/commands/exceptions.py:112 +#: superset/datasets/commands/exceptions.py:161 msgid "Owners are invalid" msgstr "" @@ -10950,7 +11092,7 @@ msgid "Pandas resample rule" msgstr "Regra de remistura de pandas" #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 -#: superset/viz.py:2219 +#: superset/viz.py:2152 msgid "Parallel Coordinates" msgstr "Coordenadas paralelas" @@ -10977,7 +11119,7 @@ msgstr "" msgid "Parent" msgstr "" -#: superset/views/database/forms.py:366 +#: superset/views/database/forms.py:376 msgid "Parse Dates" msgstr "" @@ -10996,7 +11138,7 @@ msgstr "" msgid "Partition Chart" msgstr "Diagrama de Partição" -#: superset/viz.py:3071 +#: superset/viz.py:3069 msgid "Partition Diagram" msgstr "Diagrama de Partição" @@ -11017,7 +11159,7 @@ msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:154 #: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 -#: superset/db_engine_specs/base.py:1838 +#: superset/db_engine_specs/base.py:1870 #: superset/db_engine_specs/clickhouse.py:202 #, fuzzy msgid "Password" @@ -11071,7 +11213,7 @@ msgstr "Selecione métrica" #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:81 #: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:148 msgid "Percentage threshold" msgstr "" @@ -11089,7 +11231,7 @@ msgstr "" msgid "Percentages" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:219 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:229 msgid "Performance" msgstr "" @@ -11124,8 +11266,8 @@ msgid "Person or group that has certified this metric" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1114 -#: superset-frontend/src/pages/DatasetList/index.tsx:342 -#: superset-frontend/src/pages/DatasetList/index.tsx:560 +#: superset-frontend/src/pages/DatasetList/index.tsx:353 +#: superset-frontend/src/pages/DatasetList/index.tsx:571 msgid "Physical" msgstr "" @@ -11133,7 +11275,7 @@ msgstr "" msgid "Physical (table or view)" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:273 +#: superset-frontend/src/pages/DatasetList/index.tsx:284 #, fuzzy msgid "Physical dataset" msgstr "Escolha uma origem de dados" @@ -11143,27 +11285,27 @@ msgstr "Escolha uma origem de dados" msgid "Pick a dimension from which categorical colors are defined" msgstr "" -#: superset/viz.py:769 +#: superset/viz.py:795 msgid "Pick a granularity in the Time section or uncheck 'Include Time'" msgstr "Escolha uma granularidade na secção Tempo ou desmarque 'Incluir hora'" -#: superset/viz.py:1605 +#: superset/viz.py:1514 msgid "Pick a metric for left axis!" msgstr "Selecione uma métrica para o eixo esquerdo!" -#: superset/viz.py:1607 +#: superset/viz.py:1516 msgid "Pick a metric for right axis!" msgstr "Selecione uma métrica para o eixo direito!" -#: superset/viz.py:1195 +#: superset/viz.py:1090 msgid "Pick a metric for x, y and size" msgstr "Selecione uma métrica para x, y e tamanho" -#: superset/viz.py:1234 +#: superset/viz.py:1131 msgid "Pick a metric to display" msgstr "Selecione uma métrica para visualizar" -#: superset/viz.py:1260 superset/viz.py:1294 +#: superset/viz.py:1159 superset/viz.py:1195 msgid "Pick a metric!" msgstr "Selecione uma métrica!" @@ -11179,7 +11321,7 @@ msgstr "" msgid "Pick a set of deck.gl charts to layer on top of one another" msgstr "" -#: superset/viz.py:1390 superset/viz.py:1653 +#: superset/viz.py:1294 superset/viz.py:1564 msgid "Pick a time granularity for your time series" msgstr "Selecione uma granularidade para as suas séries temporais" @@ -11187,15 +11329,15 @@ msgstr "Selecione uma granularidade para as suas séries temporais" msgid "Pick a title for you annotation." msgstr "" -#: superset/viz.py:1815 +#: superset/viz.py:1732 msgid "Pick at least one field for [Series]" msgstr "Escolha pelo menos um campo para [Séries]" -#: superset/viz.py:857 superset/viz.py:1813 +#: superset/viz.py:887 superset/viz.py:1730 msgid "Pick at least one metric" msgstr "Selecione pelo menos uma métrica" -#: superset/viz.py:1943 +#: superset/viz.py:1863 msgid "Pick exactly 2 columns as [Source / Target]" msgstr "Selecione exatamente 2 colunas [Origem e Alvo]" @@ -11224,20 +11366,10 @@ msgstr "" msgid "Pin" msgstr "Mín" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:45 -#, fuzzy -msgid "Pivot Options" -msgstr "Opções" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 -#: superset/viz.py:894 msgid "Pivot Table" msgstr "Tabela Pivot" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:32 -msgid "Pivot Table (legacy)" -msgstr "" - #: superset/utils/pandas_postprocessing/pivot.py:70 msgid "Pivot operation must include at least one aggregate" msgstr "" @@ -11259,7 +11391,7 @@ msgstr "" msgid "Pixels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 msgid "Plain" msgstr "" @@ -11271,7 +11403,7 @@ msgstr "" msgid "Please apply filter changes" msgstr "" -#: superset/sqllab/query_render.py:120 +#: superset/sqllab/query_render.py:118 msgid "" "Please check your query and confirm that all template parameters are " "surround by double braces, for example, \"{{ ds }}\". Then, try running " @@ -11279,8 +11411,8 @@ msgid "" msgstr "" #: superset/db_engine_specs/athena.py:56 -#: superset/db_engine_specs/bigquery.py:210 -#: superset/db_engine_specs/postgres.py:161 +#: superset/db_engine_specs/bigquery.py:211 +#: superset/db_engine_specs/postgres.py:160 #: superset/db_engine_specs/snowflake.py:117 #, python-format msgid "" @@ -11288,7 +11420,7 @@ msgid "" "\"%(syntax_error)s\". Then, try running your query again." msgstr "" -#: superset/db_engine_specs/gsheets.py:80 superset/db_engine_specs/mysql.py:170 +#: superset/db_engine_specs/gsheets.py:82 superset/db_engine_specs/mysql.py:170 #, python-format msgid "" "Please check your query for syntax errors near \"%(server_error)s\". " @@ -11302,21 +11434,12 @@ msgid "" "your query again." msgstr "" -#: superset/viz.py:911 -#, fuzzy -msgid "Please choose at least one 'Group by' field" -msgstr "Selecione pelo menos um campo \"Agrupar por\" " - -#: superset/viz.py:3229 +#: superset/viz.py:3234 #, fuzzy msgid "Please choose at least one groupby" msgstr "Selecione pelo menos um campo \"Agrupar por\" " -#: superset/viz.py:923 -msgid "Please choose at least one metric" -msgstr "Selecione pelo menos uma métrica" - -#: superset/viz.py:1610 +#: superset/viz.py:1519 msgid "Please choose different metrics on left and right axis" msgstr "Selecione métricas diferentes para o eixo esquerdo e direito" @@ -11332,18 +11455,20 @@ msgstr "Selecione métricas diferentes para o eixo esquerdo e direito" #: superset-frontend/src/pages/DashboardList/index.tsx:415 #: superset-frontend/src/pages/DashboardList/index.tsx:701 #: superset-frontend/src/pages/DashboardList/index.tsx:756 -#: superset-frontend/src/pages/DatasetList/index.tsx:740 +#: superset-frontend/src/pages/DatasetList/index.tsx:762 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:170 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:304 #: superset-frontend/src/pages/SavedQueryList/index.tsx:533 #: superset-frontend/src/pages/Tags/index.tsx:141 #: superset-frontend/src/pages/Tags/index.tsx:281 msgid "Please confirm" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:442 +#: superset-frontend/src/dashboard/actions/dashboardState.js:447 msgid "Please confirm the overwrite values." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:624 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:641 msgid "Please enter a SQLAlchemy URI to test" msgstr "Por favor insira um nome para a visualização" @@ -11352,11 +11477,11 @@ msgstr "Por favor insira um nome para a visualização" msgid "Please filter set name" msgstr "Por favor insira um nome para o dashboard" -#: superset/db_engine_specs/postgres.py:125 +#: superset/db_engine_specs/postgres.py:124 msgid "Please re-enter the password." msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:435 +#: superset-frontend/src/views/CRUD/hooks.ts:439 msgid "Please re-export your file and try importing again" msgstr "" @@ -11384,7 +11509,7 @@ msgstr "" msgid "Please select both a Dataset and a Chart type to proceed" msgstr "" -#: superset/viz.py:1193 +#: superset/viz.py:1088 msgid "Please use 3 different metric labels" msgstr "Selecione métricas diferentes para o eixo esquerdo e direito" @@ -11399,7 +11524,7 @@ msgid "" "multiple metrics across all of the samples or rows in the data." msgstr "" -#: superset/initialization/__init__.py:275 +#: superset/initialization/__init__.py:277 msgid "Plugins" msgstr "" @@ -11496,13 +11621,17 @@ msgid "Port" msgstr "Janela de exibição" #: superset/db_engine_specs/mssql.py:98 -#: superset/db_engine_specs/postgres.py:135 -#: superset/db_engine_specs/presto.py:672 -#: superset/db_engine_specs/redshift.py:77 +#: superset/db_engine_specs/postgres.py:134 +#: superset/db_engine_specs/presto.py:699 +#: superset/db_engine_specs/redshift.py:81 #, python-format msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." msgstr "" +#: superset/db_engine_specs/ocient.py:269 +msgid "Port out of range 0-65535" +msgstr "" + #: superset/views/dashboard/mixin.py:86 msgid "Position JSON" msgstr "Posição JSON" @@ -11541,7 +11670,7 @@ msgstr "" msgid "Pre-filter is required" msgstr "Origem de dados" -#: superset/connectors/sqla/views.py:440 +#: superset/connectors/sqla/views.py:347 msgid "" "Predicate applied when fetching distinct value to populate the filter " "control component. Supports jinja template syntax. Applies only when " @@ -11587,7 +11716,7 @@ msgstr "Pré-visualização para %s" msgid "Previous" msgstr "Pré-visualização para %s" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:346 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:348 #, fuzzy msgid "Previous Line" msgstr "Pré-visualização para %s" @@ -11610,6 +11739,10 @@ msgstr "" msgid "Primary or secondary y-axis" msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 +msgid "Primary y-axis Bounds" +msgstr "" + #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:387 msgid "Primary y-axis format" msgstr "" @@ -11627,7 +11760,7 @@ msgstr "" msgid "Private Key Password" msgstr "Broker Port" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:269 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 msgid "Proceed" msgstr "" @@ -11706,11 +11839,11 @@ msgstr "Insira o seu código aqui" msgid "Python datetime string pattern" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1530 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1585 msgid "QUERY DATA IN SQL LAB" msgstr "" -#: superset/db_engine_specs/base.py:109 +#: superset/db_engine_specs/base.py:110 #, fuzzy msgid "Quarter" msgstr "Query" @@ -11725,9 +11858,9 @@ msgstr "Opções do gráfico" msgid "Queries" msgstr "Séries" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:51 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:43 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:53 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:30 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:33 #: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:90 @@ -11738,7 +11871,6 @@ msgstr "Séries" #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:36 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:32 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:34 #: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:30 @@ -11749,6 +11881,7 @@ msgstr "Séries" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:44 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:55 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:43 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:41 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:60 @@ -11762,7 +11895,7 @@ msgstr "Séries" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:361 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:34 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:35 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:44 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:43 @@ -11778,7 +11911,7 @@ msgstr "Séries" #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:152 #: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:30 #: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:26 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1479 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1471 #: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 #: superset-frontend/src/explore/controlPanels/sections.tsx:94 #: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:34 @@ -11790,7 +11923,7 @@ msgstr "Séries" msgid "Query" msgstr "Query" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:361 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:363 #, python-format msgid "Query %s: %s" msgstr "" @@ -11807,11 +11940,11 @@ msgstr "Query" msgid "Query B" msgstr "Query" -#: superset/initialization/__init__.py:366 +#: superset/initialization/__init__.py:360 msgid "Query History" msgstr "Histórico de queries" -#: superset/commands/exceptions.py:138 +#: superset/commands/exceptions.py:142 #, fuzzy msgid "Query does not exist" msgstr "Origem de dados %(name)s já existe" @@ -11827,7 +11960,7 @@ msgstr "Histórico de queries" msgid "Query imported" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:465 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 msgid "Query in a new tab" msgstr "Query numa nova aba" @@ -11854,12 +11987,12 @@ msgstr "Nome do país" msgid "Query preview" msgstr "Pré-visualização de dados" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:415 #, fuzzy msgid "Query was stopped" msgstr "A query foi interrompida." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:498 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:494 msgid "Query was stopped." msgstr "A query foi interrompida." @@ -11873,6 +12006,16 @@ msgstr "" msgid "RGB Color" msgstr "Selecione uma cor" +#: superset/row_level_security/commands/exceptions.py:29 +#, fuzzy +msgid "RLS Rule could not be deleted." +msgstr "Não foi possível carregar a query" + +#: superset/row_level_security/commands/exceptions.py:25 +#, fuzzy +msgid "RLS Rule not found." +msgstr "Modelos CSS" + #: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:159 msgid "Radar" msgstr "" @@ -12014,7 +12157,7 @@ msgstr "Número de Registos" msgid "Rectangle" msgstr "" -#: superset/connectors/sqla/views.py:446 +#: superset/connectors/sqla/views.py:353 msgid "Redirects to this endpoint when clicking on the table from the table list" msgstr "Redireciona para este endpoint ao clicar na tabela da respetiva lista" @@ -12043,7 +12186,7 @@ msgstr "mês" msgid "Referenced columns not available in DataFrame." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:549 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:542 #, fuzzy msgid "Refetch results" msgstr "Procurar Resultados" @@ -12099,10 +12242,15 @@ msgstr "Atualizar coluna de metadados" msgid "Regex" msgstr "" -#: superset/connectors/sqla/views.py:329 +#: superset-frontend/src/features/rls/constants.ts:24 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:262 +msgid "Regular" +msgstr "" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:364 msgid "" "Regular filters add where clauses to queries if a user belongs to a role " -"referenced in the filter. Base filters apply filters to all queries " +"referenced in the filter, base filters apply filters to all queries " "except the roles defined in the filter, and can be used to define what " "users can see if no RLS filters within a filter group apply to them." msgstr "" @@ -12150,7 +12298,7 @@ msgstr "" msgid "Remove" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:164 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:194 msgid "Remove cross-filter" msgstr "" @@ -12184,8 +12332,8 @@ msgstr "renomear aba" msgid "Rendering" msgstr "Ordenar decrescente" -#: superset/views/database/forms.py:168 superset/views/database/forms.py:325 -#: superset/views/database/forms.py:456 +#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 +#: superset/views/database/forms.py:466 msgid "Replace" msgstr "" @@ -12199,13 +12347,12 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:593 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:163 #, fuzzy msgid "Report" msgstr "Janela de exibição" -#: superset-frontend/src/components/ReportModal/index.tsx:282 +#: superset-frontend/src/components/ReportModal/index.tsx:281 msgid "Report Name" msgstr "Nome do modelo" @@ -12331,7 +12478,7 @@ msgid "Request Permissions" msgstr "Requisição de Permissão" #: superset/charts/data/api.py:153 superset/charts/data/api.py:243 -#: superset/charts/data/api.py:309 +#: superset/charts/data/api.py:312 #, python-format msgid "Request is incorrect: %(error)s" msgstr "" @@ -12341,7 +12488,7 @@ msgstr "" msgid "Request is not JSON" msgstr "Requisição de Permissão" -#: superset/views/datasource/views.py:75 +#: superset/views/datasource/views.py:77 msgid "Request missing data field." msgstr "" @@ -12349,14 +12496,14 @@ msgstr "" msgid "Request timed out" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:94 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:98 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:105 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:252 msgid "Required" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:342 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 msgid "Required control values have been removed" msgstr "" @@ -12378,11 +12525,11 @@ msgstr "Método de preenchimento da remistura de pandas" msgid "Resample operation requires DatetimeIndex" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:199 +#: superset-frontend/src/components/Table/index.tsx:203 msgid "Reset" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:293 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:280 #, fuzzy msgid "Reset state" msgstr "Repor Estado" @@ -12407,14 +12554,15 @@ msgstr "Filtros de resultados" msgid "Results" msgstr "Resultados" +#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 #: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:212 #: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 #, fuzzy, python-format msgid "Results %s" msgstr "Resultados" -#: superset/sql_lab.py:410 superset/sqllab/commands/results.py:59 -#: superset/views/core.py:2133 +#: superset/sql_lab.py:402 superset/sqllab/commands/results.py:59 +#: superset/views/core.py:2169 msgid "Results backend is not configured." msgstr "" @@ -12440,12 +12588,12 @@ msgstr "" msgid "Rich Tooltip" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:178 msgid "Rich tooltip" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:372 #, fuzzy msgid "Right" @@ -12474,7 +12622,7 @@ msgstr "Metric do Eixo Direito" msgid "Right to Left" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:157 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 msgid "Right value" msgstr "" @@ -12487,7 +12635,7 @@ msgstr "" msgid "Role" msgstr "Perfil" -#: superset/views/core.py:407 +#: superset/views/core.py:408 #, python-format msgid "Role %(r)s was extended to provide the access to the datasource %(ds)s" msgstr "" @@ -12498,8 +12646,10 @@ msgstr "" #: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:389 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:551 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:406 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:415 #: superset-frontend/src/profile/components/Security.tsx:35 -#: superset/connectors/sqla/views.py:364 superset/views/dashboard/mixin.py:82 +#: superset/views/dashboard/mixin.py:82 msgid "Roles" msgstr "Cargo" @@ -12547,7 +12697,7 @@ msgstr "Rolling" msgid "Rolling window" msgstr "Rolling" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 #: superset/views/database/mixins.py:195 msgid "Root certificate" msgstr "" @@ -12578,31 +12728,29 @@ msgstr "" msgid "Round cap" msgstr "Mapa de País" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 #: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 msgid "Row" msgstr "" -#: superset/initialization/__init__.py:295 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:70 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:302 +#: superset/initialization/__init__.py:436 msgid "Row Level Security" msgstr "" -#: superset/views/database/forms.py:245 +#: superset/views/database/forms.py:255 msgid "" "Row containing the headers to use as column names (0 is first line of " "data). Leave empty if there is no header row" msgstr "" -#: superset/views/database/forms.py:332 +#: superset/views/database/forms.py:342 msgid "" "Row containing the headers to use as column names (0 is first line of " "data). Leave empty if there is no header row." msgstr "" -#: superset/connectors/sqla/views.py:290 -msgid "Row level security filter" -msgstr "" - #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:247 #: superset-frontend/src/explore/controls.jsx:340 msgid "Row limit" @@ -12625,7 +12773,7 @@ msgstr "" msgid "Rows subtotal position" msgstr "" -#: superset/views/database/forms.py:254 superset/views/database/forms.py:360 +#: superset/views/database/forms.py:264 superset/views/database/forms.py:370 msgid "Rows to Read" msgstr "Cargos a permitir ao utilizador" @@ -12635,10 +12783,20 @@ msgstr "Cargos a permitir ao utilizador" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:504 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:233 #: superset-frontend/src/explore/controlPanels/sections.tsx:230 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:286 msgid "Rule" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:54 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:355 +#, fuzzy +msgid "Rule Name" +msgstr "Valor de filtro" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:253 +msgid "Rule added" +msgstr "" + +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:53 msgid "Run" msgstr "" @@ -12657,12 +12815,12 @@ msgstr "Executar uma query para exibir resultados aqui" msgid "Run in SQL Lab" msgstr "Expor no SQL Lab" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:309 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:319 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:311 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:321 msgid "Run query" msgstr "Executar query" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:131 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:132 msgid "Run query (Ctrl + Return)" msgstr "" @@ -12670,7 +12828,7 @@ msgstr "" msgid "Run query in a new tab" msgstr "Executar a query em nova aba" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:52 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:51 #, fuzzy msgid "Run selection" msgstr "Executar a query selecionada" @@ -12680,7 +12838,7 @@ msgstr "Executar a query selecionada" msgid "Running" msgstr "" -#: superset/sql_lab.py:488 +#: superset/sql_lab.py:480 #, python-format msgid "Running statement %(statement_num)s out of %(statement_count)s" msgstr "" @@ -12703,8 +12861,8 @@ msgstr "Esquema" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 #: superset-frontend/src/features/home/commonMenuData.ts:22 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:312 -#: superset/initialization/__init__.py:354 -#: superset/initialization/__init__.py:362 +#: superset/initialization/__init__.py:348 +#: superset/initialization/__init__.py:356 msgid "SQL" msgstr "SQL" @@ -12712,17 +12870,17 @@ msgstr "SQL" msgid "SQL Copied!" msgstr "Copiado!" -#: superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:253 msgid "SQL Expression" msgstr "Expressão SQL" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:73 -#: superset/initialization/__init__.py:349 -#: superset/initialization/__init__.py:371 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 +#: superset/initialization/__init__.py:343 +#: superset/initialization/__init__.py:365 msgid "SQL Lab" msgstr "SQL Lab" -#: superset/connectors/sqla/views.py:492 +#: superset/connectors/sqla/views.py:399 msgid "SQL Lab View" msgstr "SQL Lab" @@ -12845,7 +13003,7 @@ msgstr "" msgid "Samples" msgstr "Tabelas" -#: superset/datasets/commands/exceptions.py:177 +#: superset/datasets/commands/exceptions.py:194 #, fuzzy msgid "Samples for dataset could not be retrieved." msgstr "Não foi possível gravar a sua query" @@ -12855,7 +13013,7 @@ msgstr "Não foi possível gravar a sua query" msgid "Samples for datasource could not be retrieved." msgstr "Não foi possível gravar a sua query" -#: superset/viz.py:1935 +#: superset/viz.py:1854 msgid "Sankey" msgstr "Sankey" @@ -12884,25 +13042,26 @@ msgstr "" #: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 #: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:199 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:214 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:246 -#: superset-frontend/src/components/ReportModal/index.tsx:229 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:288 +#: superset-frontend/src/components/ReportModal/index.tsx:228 #: superset-frontend/src/dashboard/components/Header/index.jsx:607 #: superset-frontend/src/dashboard/components/Header/index.jsx:609 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 #: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 #: superset-frontend/src/dashboard/components/SaveModal.tsx:211 #: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:794 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:156 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:492 #: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:268 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:458 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:462 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 -#: superset-frontend/src/explore/components/SaveModal.tsx:415 +#: superset-frontend/src/explore/components/SaveModal.tsx:449 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:418 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:424 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:147 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 @@ -12912,30 +13071,31 @@ msgstr "" #: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 #: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1695 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 #: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 msgid "Save" msgstr "Salvar" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:246 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:190 msgid "Save & Explore" msgstr "Grave uma visualização" -#: superset-frontend/src/explore/components/SaveModal.tsx:396 +#: superset-frontend/src/explore/components/SaveModal.tsx:430 msgid "Save & go to dashboard" msgstr "Gravar e ir para o dashboard" -#: superset-frontend/src/explore/components/SaveModal.tsx:395 +#: superset-frontend/src/explore/components/SaveModal.tsx:429 #, fuzzy msgid "Save & go to new dashboard" msgstr "Gravar e ir para o dashboard" -#: superset-frontend/src/explore/components/SaveModal.tsx:308 +#: superset-frontend/src/explore/components/SaveModal.tsx:343 msgid "Save (Overwrite)" msgstr "Queries Gravadas" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:199 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:306 msgid "Save as" msgstr "Gravar como" @@ -12950,17 +13110,17 @@ msgstr "Escolha uma origem de dados" msgid "Save as dataset" msgstr "Escolha uma origem de dados" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:394 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:214 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:402 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 #, fuzzy msgid "Save as new" msgstr "Grave uma visualização" -#: superset-frontend/src/explore/components/SaveModal.tsx:412 +#: superset-frontend/src/explore/components/SaveModal.tsx:446 msgid "Save as new chart" msgstr "Gravar Dashboard" -#: superset-frontend/src/explore/components/SaveModal.tsx:316 +#: superset-frontend/src/explore/components/SaveModal.tsx:351 #, fuzzy msgid "Save as..." msgstr "Gravar como" @@ -12974,7 +13134,7 @@ msgstr "Gravar como:" msgid "Save changes" msgstr "Modificado pela última vez" -#: superset-frontend/src/explore/components/SaveModal.tsx:432 +#: superset-frontend/src/explore/components/SaveModal.tsx:466 #, fuzzy msgid "Save chart" msgstr "Gráfico de Queijo" @@ -12984,7 +13144,7 @@ msgstr "Gráfico de Queijo" msgid "Save dashboard" msgstr "Gravar Dashboard" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:106 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:105 #, fuzzy msgid "Save dataset" msgstr "Escolha uma origem de dados" @@ -12993,11 +13153,11 @@ msgstr "Escolha uma origem de dados" msgid "Save for this session" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:350 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:356 msgid "Save or Overwrite Dataset" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:202 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:201 #, fuzzy msgid "Save query" msgstr "partilhar query" @@ -13006,28 +13166,28 @@ msgstr "partilhar query" msgid "Save the query to enable this feature" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:250 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:465 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:149 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 msgid "Save this query as a virtual dataset to continue exploring" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:414 +#: superset-frontend/src/explore/components/SaveModal.tsx:448 #, fuzzy msgid "Save to new dashboard" msgstr "Gravar e ir para o dashboard" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:265 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:271 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 msgid "Saved" msgstr "Salvar" -#: superset/initialization/__init__.py:358 +#: superset/initialization/__init__.py:352 msgid "Saved Queries" msgstr "Queries Gravadas" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:249 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:255 #, fuzzy msgid "Saved expressions" msgstr "Expressão" @@ -13089,12 +13249,12 @@ msgid "" msgstr "" #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 -#: superset-frontend/src/components/ReportModal/index.tsx:306 +#: superset-frontend/src/components/ReportModal/index.tsx:305 #: superset-frontend/src/pages/AlertReportList/index.tsx:276 msgid "Schedule" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:212 +#: superset-frontend/src/components/ReportModal/index.tsx:211 msgid "Schedule a new email report" msgstr "" @@ -13111,7 +13271,7 @@ msgstr "Gravar query" msgid "Schedule settings" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:518 msgid "Schedule the query periodically" msgstr "" @@ -13129,35 +13289,35 @@ msgstr "" msgid "Scheduled task executor not found" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:299 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:221 -#: superset-frontend/src/pages/DatasetList/index.tsx:354 -#: superset-frontend/src/pages/DatasetList/index.tsx:536 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:298 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 +#: superset-frontend/src/pages/DatasetList/index.tsx:365 +#: superset-frontend/src/pages/DatasetList/index.tsx:547 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:250 #: superset-frontend/src/pages/SavedQueryList/index.tsx:297 #: superset-frontend/src/pages/SavedQueryList/index.tsx:469 -#: superset/connectors/sqla/views.py:483 superset/views/database/forms.py:144 -#: superset/views/database/forms.py:311 superset/views/database/forms.py:442 +#: superset/connectors/sqla/views.py:390 superset/views/database/forms.py:154 +#: superset/views/database/forms.py:321 superset/views/database/forms.py:452 msgid "Schema" msgstr "Esquema" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:247 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:257 #, fuzzy msgid "Schema cache timeout" msgstr "Tempo limite para cache" -#: superset/views/core.py:1164 +#: superset/views/core.py:1186 #, fuzzy msgid "Schema undefined" msgstr "Indefinido" -#: superset/connectors/sqla/views.py:429 +#: superset/connectors/sqla/views.py:336 msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" msgstr "" "Esquema, como utilizado em algumas base de dados, como Postgres, Redshift" " e DB2" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:419 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:429 msgid "Schemas allowed for File upload" msgstr "" @@ -13169,7 +13329,7 @@ msgstr "" msgid "Scoping" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 msgid "Scroll" msgstr "" @@ -13185,15 +13345,15 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:724 #: superset-frontend/src/pages/CssTemplateList/index.tsx:293 #: superset-frontend/src/pages/DashboardList/index.tsx:516 -#: superset-frontend/src/pages/DatabaseList/index.tsx:492 -#: superset-frontend/src/pages/DatasetList/index.tsx:577 +#: superset-frontend/src/pages/DatabaseList/index.tsx:503 +#: superset-frontend/src/pages/DatasetList/index.tsx:588 #: superset-frontend/src/pages/SavedQueryList/index.tsx:494 #: superset-frontend/src/pages/Tags/index.tsx:204 #: superset/templates/appbuilder/general/widgets/search.html:40 msgid "Search" msgstr "Pesquisa" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:294 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 msgid "Search / Filter" msgstr "Pesquisa / Filtro" @@ -13220,12 +13380,12 @@ msgstr "Pesquisa" msgid "Search by query text" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:207 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 #, fuzzy msgid "Search columns" msgstr "Lista de Colunas" -#: superset-frontend/src/components/Table/index.tsx:202 +#: superset-frontend/src/components/Table/index.tsx:206 #, fuzzy msgid "Search in filters" msgstr "Pesquisa / Filtro" @@ -13239,7 +13399,7 @@ msgstr "Selecione uma base de dados" msgid "Search..." msgstr "Pesquisa" -#: superset/db_engine_specs/base.py:96 +#: superset/db_engine_specs/base.py:97 #, fuzzy msgid "Second" msgstr "30 segundos" @@ -13256,10 +13416,14 @@ msgid "Secondary Metric" msgstr "Métrica de cor" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:408 +msgid "Secondary y-axis Bounds" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:425 msgid "Secondary y-axis format" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:417 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:434 msgid "Secondary y-axis title" msgstr "" @@ -13272,16 +13436,16 @@ msgstr "30 segundos" msgid "Secure Extra" msgstr "Segurança" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:336 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:341 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:346 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 #, fuzzy msgid "Secure extra" msgstr "Segurança" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:329 -#: superset/initialization/__init__.py:297 -#: superset/initialization/__init__.py:395 -#: superset/initialization/__init__.py:433 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:339 +#: superset/initialization/__init__.py:389 +#: superset/initialization/__init__.py:427 +#: superset/initialization/__init__.py:438 msgid "Security" msgstr "Segurança" @@ -13305,15 +13469,15 @@ msgstr "Cargo do Utilizador" msgid "See more" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:412 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:405 msgid "See query details" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:288 +#: superset-frontend/src/components/TableSelector/index.tsx:277 msgid "See table schema" msgstr "Selecione um esquema (%s)" -#: superset-frontend/src/explore/components/SaveModal.tsx:363 +#: superset-frontend/src/explore/components/SaveModal.tsx:398 #: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 #, fuzzy msgid "Select" @@ -13321,9 +13485,9 @@ msgstr "Executar a query selecionada" #: superset-frontend/src/components/AsyncSelect/index.jsx:41 #: superset-frontend/src/components/Select/AsyncSelect.tsx:123 -#: superset-frontend/src/components/Select/Select.tsx:103 +#: superset-frontend/src/components/Select/Select.tsx:104 #: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 -#: superset-frontend/src/explore/components/controls/SelectControl.jsx:230 +#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 msgid "Select ..." msgstr "Selecione ..." @@ -13336,11 +13500,11 @@ msgstr "" msgid "Select Viz Type" msgstr "Selecione um tipo de visualização" -#: superset/views/database/forms.py:415 +#: superset/views/database/forms.py:425 msgid "Select a Columnar file to be uploaded to a database." msgstr "" -#: superset/views/database/forms.py:279 +#: superset/views/database/forms.py:289 msgid "Select a Excel file to be uploaded to a database." msgstr "" @@ -13349,7 +13513,7 @@ msgstr "" msgid "Select a column" msgstr "Coluna de tempo" -#: superset-frontend/src/explore/components/SaveModal.tsx:357 +#: superset-frontend/src/explore/components/SaveModal.tsx:392 #, fuzzy msgid "Select a dashboard" msgstr "Por favor insira um nome para o dashboard" @@ -13372,7 +13536,7 @@ msgstr "Selecione uma base de dados" msgid "Select a database to upload the file to" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:744 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:738 #, fuzzy msgid "Select a database to write a query" msgstr "Selecione uma base de dados" @@ -13385,7 +13549,7 @@ msgstr "" msgid "Select a file to be uploaded to the database" msgstr "" -#: superset/views/database/forms.py:145 +#: superset/views/database/forms.py:155 msgid "Select a schema if the database supports this" msgstr "" @@ -13397,12 +13561,12 @@ msgstr "Selecione um tipo de visualização" msgid "Select aggregate options" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:207 +#: superset-frontend/src/components/Table/index.tsx:211 #, fuzzy msgid "Select all data" msgstr "Selecione uma base de dados" -#: superset-frontend/src/components/Table/index.tsx:201 +#: superset-frontend/src/components/Table/index.tsx:205 #, fuzzy msgid "Select all items" msgstr "Filtros de resultados" @@ -13411,6 +13575,11 @@ msgstr "Filtros de resultados" msgid "Select any columns for metadata inspection" msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +#, fuzzy +msgid "Select chart" +msgstr "Gráfico de bala" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:45 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:103 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:138 @@ -13423,14 +13592,14 @@ msgstr "Gráfico de bala" msgid "Select color scheme" msgstr "Esquema de cores lineares" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:208 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 #, fuzzy msgid "Select column" msgstr "Coluna de tempo" -#: superset-frontend/src/components/Table/index.tsx:204 +#: superset-frontend/src/components/Table/index.tsx:208 #, fuzzy msgid "Select current page" msgstr "Filtros de resultados" @@ -13440,8 +13609,8 @@ msgstr "Filtros de resultados" msgid "Select database & schema" msgstr "Selecione um esquema (%s)" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:272 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:280 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:271 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:279 msgid "Select database or type to search databases" msgstr "" @@ -13450,7 +13619,7 @@ msgstr "" msgid "Select database table" msgstr "Selecione uma base de dados" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1791 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1847 msgid "" "Select databases require additional fields to be completed in the " "Advanced tab to successfully connect the database. Learn what " @@ -13491,7 +13660,7 @@ msgstr "Selecione operador" msgid "Select or type a value" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:410 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:418 #, fuzzy msgid "Select or type dataset name" msgstr "nome da origem de dados" @@ -13505,8 +13674,8 @@ msgstr "" msgid "Select saved metrics" msgstr "Selecione métrica" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:297 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:304 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:296 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 msgid "Select schema or type to search schemas" msgstr "" @@ -13515,7 +13684,7 @@ msgstr "" msgid "Select scheme" msgstr "Selecione um esquema (%s)" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:304 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:307 msgid "Select start and end date" msgstr "Selecione uma base de dados" @@ -13523,8 +13692,8 @@ msgstr "Selecione uma base de dados" msgid "Select subject" msgstr "" +#: superset-frontend/src/components/TableSelector/index.tsx:284 #: superset-frontend/src/components/TableSelector/index.tsx:295 -#: superset-frontend/src/components/TableSelector/index.tsx:306 msgid "Select table or type to search tables" msgstr "" @@ -13532,6 +13701,23 @@ msgstr "" msgid "Select the Annotation Layer you would like to use." msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +msgid "" +"Select the charts to which you want to apply cross-filters in this " +"dashboard. Deselecting a chart will exclude it from being filtered when " +"applying cross-filters from any chart on the dashboard. You can select " +"\"All charts\" to apply cross-filters to all charts that use the same " +"dataset or contain the same column name in the dashboard." +msgstr "" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +msgid "" +"Select the charts to which you want to apply cross-filters when " +"interacting with this chart. You can select \"All charts\" to apply " +"filters to all charts that use the same dataset or contain the same " +"column name in the dashboard." +msgstr "" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:392 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:37 msgid "Select the geojson column" @@ -13577,7 +13763,7 @@ msgstr "" msgid "Sequential" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 msgid "Series" msgstr "Séries" @@ -13596,7 +13782,7 @@ msgstr "Limite de série" msgid "Series Limit Sort Descending" msgstr "Ordenar decrescente" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:255 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:246 msgid "Series Order" msgstr "" @@ -13670,13 +13856,13 @@ msgid "Settings for time series" msgstr "" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:325 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:464 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:467 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 #: superset-frontend/src/features/home/SavedQueries.tsx:211 msgid "Share" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:469 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:472 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:343 #, fuzzy msgid "Share chart by email" @@ -13686,7 +13872,7 @@ msgstr "Explorar gráfico" msgid "Share permalink by email" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1429 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1421 #, fuzzy msgid "Shared query" msgstr "query partilhada" @@ -13696,7 +13882,7 @@ msgstr "query partilhada" msgid "Shared query fields" msgstr "query partilhada" -#: superset/views/database/forms.py:298 +#: superset/views/database/forms.py:308 msgid "Sheet Name" msgstr "Nome Detalhado" @@ -13747,7 +13933,7 @@ msgstr "Modelos CSS" msgid "Show Chart" msgstr "Mostrar Dashboard" -#: superset/connectors/sqla/views.py:73 +#: superset/connectors/sqla/views.py:72 msgid "Show Column" msgstr "Mostrar Coluna" @@ -13782,11 +13968,11 @@ msgstr "Mostrar totais" msgid "Show Markers" msgstr "" -#: superset/connectors/sqla/views.py:208 +#: superset/connectors/sqla/views.py:207 msgid "Show Metric" msgstr "Mostrar Métrica" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:178 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 #, fuzzy msgid "Show Metric Names" msgstr "Mostrar Métrica" @@ -13796,15 +13982,11 @@ msgstr "Mostrar Métrica" msgid "Show Range Filter" msgstr "Filtros de resultados" -#: superset/connectors/sqla/views.py:291 -msgid "Show Row level security filter" -msgstr "" - #: superset/views/sql_lab/views.py:53 msgid "Show Saved Query" msgstr "Mostrar Query" -#: superset/connectors/sqla/views.py:385 +#: superset/connectors/sqla/views.py:292 msgid "Show Table" msgstr "Mostrar Tabela" @@ -13826,12 +14008,12 @@ msgstr "" msgid "Show Upper Labels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:110 #, fuzzy msgid "Show Value" msgstr "Mostrar Tabela" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:164 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:315 #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:184 #, fuzzy @@ -13866,7 +14048,7 @@ msgstr "" msgid "Show cell bars" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:395 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 #, fuzzy msgid "Show chart description" msgstr "Alternar descrição do gráfico" @@ -13905,7 +14087,7 @@ msgstr "Mostrar Tabela" msgid "Show labels when the node has children." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:39 msgid "Show legend" msgstr "" @@ -13943,7 +14125,7 @@ msgstr "" msgid "Show rows total" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 msgid "Show series values on the chart" msgstr "" @@ -13972,7 +14154,6 @@ msgid "" " apply to the result." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:76 #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:365 msgid "Show totals" @@ -14017,7 +14198,7 @@ msgstr "" msgid "Showing %s of %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:184 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 msgid "Shows a list of all series available at that point in time" msgstr "" @@ -14037,7 +14218,7 @@ msgstr "" msgid "Significance Level" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:341 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 @@ -14089,23 +14270,23 @@ msgstr "" msgid "Sizes of vehicles" msgstr "" -#: superset/views/database/forms.py:177 +#: superset/views/database/forms.py:187 msgid "Skip Blank Lines" msgstr "" -#: superset/views/database/forms.py:174 +#: superset/views/database/forms.py:184 msgid "Skip Initial Space" msgstr "" -#: superset/views/database/forms.py:260 superset/views/database/forms.py:354 +#: superset/views/database/forms.py:270 superset/views/database/forms.py:364 msgid "Skip Rows" msgstr "" -#: superset/views/database/forms.py:178 +#: superset/views/database/forms.py:188 msgid "Skip blank lines rather than interpreting them as Not A Number values" msgstr "" -#: superset/views/database/forms.py:174 +#: superset/views/database/forms.py:184 msgid "Skip spaces after delimiter" msgstr "" @@ -14141,7 +14322,7 @@ msgstr "" msgid "Solid" msgstr "" -#: superset/commands/exceptions.py:115 +#: superset/commands/exceptions.py:119 #, fuzzy msgid "Some roles do not exist" msgstr "Dashboards" @@ -14150,7 +14331,7 @@ msgstr "Dashboards" msgid "Something went wrong." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:864 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:919 #, python-format msgid "Sorry there was an error fetching database information: %s" msgstr "Desculpe, houve um erro ao gravar este dashbard: " @@ -14168,7 +14349,7 @@ msgstr "" msgid "Sorry, an error occurred" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:357 +#: superset-frontend/src/dashboard/actions/dashboardState.js:359 msgid "Sorry, an unknown error occurred" msgstr "" @@ -14197,14 +14378,14 @@ msgstr "" msgid "Sorry, there was an error saving this %s: %s" msgstr "Desculpe, houve um erro ao gravar este dashbard: " -#: superset-frontend/src/dashboard/actions/dashboardState.js:360 +#: superset-frontend/src/dashboard/actions/dashboardState.js:362 #, fuzzy, python-format msgid "Sorry, there was an error saving this dashboard: %s" msgstr "Desculpe, houve um erro ao gravar este dashbard: " #: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 #: superset-frontend/src/pages/SavedQueryList/index.tsx:229 -#: superset-frontend/src/views/CRUD/hooks.ts:676 +#: superset-frontend/src/views/CRUD/hooks.ts:680 msgid "Sorry, your browser does not support copying." msgstr "Desculpe, o seu navegador não suporta 'copiar'. Use Ctrl+C ou Cmd+C!" @@ -14214,7 +14395,7 @@ msgstr "Desculpe, o seu navegador não suporta 'copiar'. Use Ctrl+C ou Cmd+C!" #: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 #: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 -#: superset-frontend/src/components/Table/index.tsx:208 +#: superset-frontend/src/components/Table/index.tsx:212 #, fuzzy msgid "Sort" msgstr "Janela de exibição" @@ -14234,12 +14415,12 @@ msgstr "Ordenar decrescente" msgid "Sort Metric" msgstr "Mostrar Métrica" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:247 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:238 #, fuzzy msgid "Sort Series Ascending" msgstr "Ordenar decrescente" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:227 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:224 msgid "Sort Series By" msgstr "" @@ -14321,7 +14502,7 @@ msgstr "Mostrar Métrica" msgid "Sort rows by" msgstr "Ordenar por" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:250 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:241 msgid "Sort series in ascending order" msgstr "" @@ -14355,6 +14536,7 @@ msgstr "Nome da origem de dados" msgid "Sparkline" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:978 msgid "Spatial" msgstr "" @@ -14363,23 +14545,23 @@ msgstr "" msgid "Specific Date/Time" msgstr "" -#: superset/views/database/forms.py:312 superset/views/database/forms.py:443 +#: superset/views/database/forms.py:322 superset/views/database/forms.py:453 msgid "Specify a schema (if database flavor supports this)." msgstr "" -#: superset/views/database/forms.py:351 +#: superset/views/database/forms.py:361 msgid "Specify duplicate columns as \"X.0, X.1\"." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:711 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:705 msgid "Specify name to CREATE TABLE AS schema in: public" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:710 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:704 msgid "Specify name to CREATE VIEW AS schema in: public" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:515 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:551 msgid "" "Specify the database version. This should be used with Presto in order to" " enable query cost estimation." @@ -14404,7 +14586,7 @@ msgstr "Parâmetros" msgid "Square miles" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 msgid "Stack" msgstr "" @@ -14418,7 +14600,7 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:161 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:115 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:128 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:125 msgid "Stack series on top of each other" msgstr "" @@ -14438,7 +14620,7 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:124 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:121 #: superset-frontend/src/explore/fixtures.tsx:58 msgid "Stacked Style" msgstr "" @@ -14510,7 +14692,7 @@ msgstr "Estado" msgid "State" msgstr "Estado" -#: superset/sql_lab.py:511 +#: superset/sql_lab.py:503 #, python-format msgid "Statement %(statement_num)s out of %(statement_count)s" msgstr "" @@ -14560,20 +14742,20 @@ msgid "" "irregular intervals." msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:47 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:46 #: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 msgid "Stop" msgstr "Parar" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:337 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:339 msgid "Stop query" msgstr "Query vazia?" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:116 msgid "Stop running (Ctrl + e)" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:114 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 msgid "Stop running (Ctrl + x)" msgstr "" @@ -14581,7 +14763,7 @@ msgstr "" msgid "Stopped an unsafe database connection" msgstr "Selecione qualquer coluna para inspeção de metadados" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 #, fuzzy msgid "Stream" msgstr "Histograma" @@ -14599,7 +14781,7 @@ msgstr "" msgid "Stretched style" msgstr "" -#: superset/views/database/forms.py:299 +#: superset/views/database/forms.py:309 msgid "Strings used for sheet names (default is the first sheet)." msgstr "" @@ -14629,11 +14811,11 @@ msgstr "Estilo do mapa" msgid "Style the ends of the progress bar with a round cap" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:56 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 msgid "Subdomain" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 #, fuzzy msgid "Subheader" msgstr "Subtítulo" @@ -14646,8 +14828,8 @@ msgstr "" msgid "Submit" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:472 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:678 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 #: superset/charts/post_processing.py:161 #: superset/charts/post_processing.py:178 msgid "Subtotal" @@ -14659,7 +14841,7 @@ msgstr "" msgid "Success" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:193 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 msgid "Successfully changed dataset!" msgstr "" @@ -14693,7 +14875,7 @@ msgstr "" msgid "Sum values" msgstr "Valor de filtro" -#: superset/viz.py:1888 +#: superset/viz.py:1805 msgid "Sunburst" msgstr "Sunburst" @@ -14721,7 +14903,7 @@ msgid "Superset Embedded SDK documentation." msgstr "" #: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:470 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:473 msgid "Superset chart" msgstr "Explorar gráfico" @@ -14738,7 +14920,7 @@ msgstr "" msgid "Superset encountered an unexpected error." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:920 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 #, fuzzy msgid "Supported databases" msgstr "Selecione uma base de dados" @@ -14747,11 +14929,7 @@ msgstr "Selecione uma base de dados" msgid "Survey Responses" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:101 -msgid "Swap Groups and Columns" -msgstr "" - -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:254 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:311 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:435 #, fuzzy @@ -14802,6 +14980,11 @@ msgstr "" msgid "Syntax" msgstr "" +#: superset/db_engine_specs/ocient.py:282 +#, python-format +msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +msgstr "" + #: superset-frontend/src/pages/QueryHistoryList/index.tsx:268 #: superset-frontend/src/pages/SavedQueryList/index.tsx:315 msgid "TABLES" @@ -14836,36 +15019,36 @@ msgstr "Nome da Tabela" msgid "Tab title" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:26 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 -#: superset-frontend/src/components/TableSelector/index.tsx:290 +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 +#: superset-frontend/src/components/TableSelector/index.tsx:279 #: superset-frontend/src/visualizations/TimeTable/index.ts:26 -#: superset/connectors/sqla/views.py:160 superset/connectors/sqla/views.py:255 -#: superset/connectors/sqla/views.py:477 superset/views/chart/mixin.py:86 +#: superset/connectors/sqla/views.py:159 superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:384 superset/views/chart/mixin.py:86 msgid "Table" msgstr "Tabela" -#: superset/views/core.py:1740 +#: superset/views/core.py:1775 #, python-format msgid "Table %(table)s wasn't found in the database %(db)s" msgstr "A tabela %(t)s não foi encontrada na base de dados %(d)s" -#: superset/views/database/forms.py:317 superset/views/database/forms.py:448 +#: superset/views/database/forms.py:327 superset/views/database/forms.py:458 msgid "Table Exists" msgstr "Filtro de Tabela" -#: superset/connectors/sqla/views.py:487 superset/views/database/forms.py:128 -#: superset/views/database/forms.py:269 superset/views/database/forms.py:405 +#: superset/connectors/sqla/views.py:394 superset/views/database/forms.py:128 +#: superset/views/database/forms.py:279 superset/views/database/forms.py:415 msgid "Table Name" msgstr "Nome da Tabela" -#: superset/viz.py:698 +#: superset/viz.py:722 msgid "Table View" msgstr "Vista de tabela" -#: superset/datasets/commands/exceptions.py:130 +#: superset/datasets/commands/exceptions.py:147 #, python-format msgid "" "Table [%(table_name)s] could not be found, please double check your " @@ -14882,7 +15065,7 @@ msgstr "" "Tabela [{}] não encontrada, por favor verifique conexão à base de dados, " "esquema e nome da tabela" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:268 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:278 #, fuzzy msgid "Table cache timeout" msgstr "Tempo limite para cache" @@ -14896,8 +15079,8 @@ msgstr "Coluna de tempo" msgid "Table loading" msgstr "" -#: superset/views/database/forms.py:132 superset/views/database/forms.py:273 -#: superset/views/database/forms.py:409 +#: superset/views/database/forms.py:132 superset/views/database/forms.py:283 +#: superset/views/database/forms.py:419 msgid "Table name cannot contain a schema" msgstr "" @@ -14905,15 +15088,22 @@ msgstr "" msgid "Table name undefined" msgstr "Nome da Tabela" +#: superset/db_engine_specs/ocient.py:287 +#, fuzzy, python-format +msgid "Table or View \"%(table)s\" does not exist." +msgstr "Uma ou várias métricas para exibir" + #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 msgid "" "Table that visualizes paired t-tests, which are used to understand " "statistical differences between groups." msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:384 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:393 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:287 #: superset-frontend/src/pages/SavedQueryList/index.tsx:334 -#: superset/connectors/sqla/views.py:363 superset/connectors/sqla/views.py:384 +#: superset/connectors/sqla/views.py:291 msgid "Tables" msgstr "Tabelas" @@ -14964,7 +15154,7 @@ msgstr "Não foi possível carregar a query" #: superset-frontend/src/pages/SavedQueryList/index.tsx:382 #: superset-frontend/src/pages/SavedQueryList/index.tsx:487 #: superset-frontend/src/pages/Tags/index.tsx:279 -#: superset/initialization/__init__.py:384 +#: superset/initialization/__init__.py:378 #, fuzzy msgid "Tags" msgstr "Estado" @@ -14994,7 +15184,7 @@ msgstr "" msgid "Target category" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:173 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 msgid "Target value" msgstr "" @@ -15004,7 +15194,7 @@ msgstr "Nome do modelo" #: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:962 -#: superset/connectors/sqla/views.py:493 +#: superset/connectors/sqla/views.py:400 msgid "Template parameters" msgstr "Nome do modelo" @@ -15016,7 +15206,7 @@ msgstr "" "Ligação predefinida, é possível incluir {{ metric }} ou outros valores " "provenientes dos controlos." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:317 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:327 msgid "" "Terminate running queries when browser window closed or navigated to " "another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " @@ -15042,7 +15232,7 @@ msgstr "textarea" msgid "Text align" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:248 +#: superset-frontend/src/components/ReportModal/index.tsx:247 msgid "Text embedded in email" msgstr "" @@ -15089,7 +15279,7 @@ msgid "" " the filters list?" msgstr "" -#: superset/views/core.py:372 +#: superset/views/core.py:373 msgid "The access requests seem to have been deleted" msgstr "Os pedidos de acesso parecem ter sido eliminados" @@ -15109,12 +15299,12 @@ msgid "" "associated with more than one category, only the first will be used." msgstr "" -#: superset/common/query_context_processor.py:586 +#: superset/common/query_context_processor.py:585 #, fuzzy msgid "The chart datasource does not exist" msgstr "Origem de dados %(name)s já existe" -#: superset/common/query_context_processor.py:584 +#: superset/common/query_context_processor.py:583 #, fuzzy msgid "The chart does not exist" msgstr "Origem de dados %(name)s já existe" @@ -15168,7 +15358,7 @@ msgstr "Dashboard gravado com sucesso." msgid "The data source seems to have been deleted" msgstr "Esta origem de dados parece ter sido excluída" -#: superset/connectors/sqla/views.py:115 +#: superset/connectors/sqla/views.py:114 msgid "" "The data type that was inferred by the database. It may be necessary to " "input a type manually for expression-defined columns in some cases. In " @@ -15179,7 +15369,7 @@ msgstr "" "alguns casos. A maioria dos casos não requer alteração por parte do " "utilizador." -#: superset-frontend/src/pages/DatabaseList/index.tsx:515 +#: superset-frontend/src/pages/DatabaseList/index.tsx:529 #, python-format msgid "" "The database %s is linked to %s charts that appear on %s dashboards and " @@ -15220,12 +15410,12 @@ msgstr "" msgid "The database was deleted." msgstr "Esta origem de dados parece ter sido excluída" -#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2002 +#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2039 #, fuzzy msgid "The database was not found." msgstr "Visualização %(id)s não encontrada" -#: superset-frontend/src/pages/DatasetList/index.tsx:710 +#: superset-frontend/src/pages/DatasetList/index.tsx:724 #, python-format msgid "" "The dataset %s is linked to %s charts that appear on %s dashboards. Are " @@ -15234,11 +15424,11 @@ msgid "" msgstr "" #: superset-frontend/src/components/Chart/Chart.jsx:88 -#: superset/views/utils.py:274 +#: superset/views/utils.py:272 msgid "The dataset associated with this chart no longer exists" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:168 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:210 msgid "" "The dataset configuration exposed here\n" " affects all the charts using this dataset.\n" @@ -15247,7 +15437,7 @@ msgid "" " in undesirable ways." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:129 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:164 #: superset-frontend/src/pages/ChartCreation/index.tsx:261 msgid "The dataset has been saved" msgstr "Esta origem de dados parece ter sido excluída" @@ -15257,7 +15447,7 @@ msgstr "Esta origem de dados parece ter sido excluída" msgid "The dataset linked to this chart may have been deleted." msgstr "Esta origem de dados parece ter sido excluída" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1496 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1488 msgid "The datasource couldn't be loaded" msgstr "Não foi possível carregar a query" @@ -15272,7 +15462,7 @@ msgid "" " Supports markdown." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:104 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 msgid "The distance between cells, in pixels" msgstr "" @@ -15287,7 +15477,7 @@ msgstr "O número de segundos antes de expirar a cache" msgid "The encoding format of the lines" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:495 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:531 msgid "" "The engine_params object gets unpacked into the sqlalchemy.create_engine " "call." @@ -15300,6 +15490,7 @@ msgid "" "%(columns)s. " msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:111 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:67 msgid "The function to use when aggregating points into groups" msgstr "" @@ -15310,9 +15501,9 @@ msgid "The host \"%(hostname)s\" might be down and can't be reached." msgstr "" #: superset/db_engine_specs/mssql.py:103 -#: superset/db_engine_specs/postgres.py:140 -#: superset/db_engine_specs/presto.py:664 -#: superset/db_engine_specs/redshift.py:82 +#: superset/db_engine_specs/postgres.py:139 +#: superset/db_engine_specs/presto.py:691 +#: superset/db_engine_specs/redshift.py:86 #, python-format msgid "" "The host \"%(hostname)s\" might be down, and can't be reached on port " @@ -15324,9 +15515,9 @@ msgid "The host might be down, and can't be reached on the provided port." msgstr "" #: superset/db_engine_specs/mssql.py:93 -#: superset/db_engine_specs/postgres.py:130 -#: superset/db_engine_specs/presto.py:659 -#: superset/db_engine_specs/redshift.py:72 +#: superset/db_engine_specs/postgres.py:129 +#: superset/db_engine_specs/presto.py:686 +#: superset/db_engine_specs/redshift.py:76 #, python-format msgid "The hostname \"%(hostname)s\" cannot be resolved." msgstr "" @@ -15340,7 +15531,7 @@ msgstr "" msgid "The id of the active chart" msgstr "O id da visualização ativa" -#: superset/connectors/sqla/views.py:418 +#: superset/connectors/sqla/views.py:325 msgid "" "The list of charts associated with this table. By altering this " "datasource, you may change how these associated charts behave. Also note " @@ -15383,7 +15574,7 @@ msgid "" "%{key}s is invalid." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:469 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:505 msgid "" "The metadata_params object gets unpacked into the sqlalchemy.MetaData " "call." @@ -15408,7 +15599,7 @@ msgstr "" "mostrados sejam o total de 7 períodos. Esta opção esconde a " "\"aceleração\" que ocorre nos primeiros 7 períodos" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:130 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 msgid "The number color \"steps\"" msgstr "" @@ -15418,7 +15609,7 @@ msgid "" " can be used to move UTC time to local time." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:308 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:301 #, python-format msgid "" "The number of results displayed is limited to %(rows)d by the " @@ -15426,7 +15617,7 @@ msgid "" "download to csv to see more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:314 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:307 #, python-format msgid "" "The number of results displayed is limited to %(rows)d. Please add " @@ -15434,22 +15625,22 @@ msgid "" "more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:365 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:358 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the dropdown." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:334 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:326 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:319 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the query" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:339 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:332 #, python-format msgid "" "The number of rows displayed is limited to %(rows)d by the query and " @@ -15466,14 +15657,14 @@ msgstr "O número de segundos antes de expirar a cache" msgid "The object does not exist in the given database." msgstr "Nome da tabela que existe na base de dados de origem" -#: superset/sqllab/query_render.py:96 +#: superset/sqllab/query_render.py:94 #, python-format msgid "The parameter %(parameters)s in your query is undefined." msgid_plural "The following parameters in your query are undefined: %(parameters)s." msgstr[0] "" msgstr[1] "" -#: superset/db_engine_specs/postgres.py:120 +#: superset/db_engine_specs/postgres.py:119 #, python-format msgid "The password provided for username \"%(username)s\" is incorrect." msgstr "" @@ -15518,7 +15709,7 @@ msgid "" " they are needed." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1284 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1339 msgid "" "The passwords for the databases below are needed in order to import them." " Please note that the \"Secure Extra\" and \"Certificate\" sections of " @@ -15538,7 +15729,7 @@ msgid "" "\"freq\" expressions." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 msgid "The pixel radius" msgstr "" @@ -15563,7 +15754,7 @@ msgstr "" msgid "The primary metric is used to define the arc segment sizes" msgstr "Métrica usada para definir a série superior" -#: superset/views/core.py:2212 +#: superset/views/core.py:2248 msgid "The provided `rows` argument is not a valid integer." msgstr "" @@ -15572,13 +15763,13 @@ msgid "The query associated with the results was deleted." msgstr "" #: superset/sqllab/commands/export.py:63 superset/sqllab/commands/results.py:91 -#: superset/views/core.py:2162 +#: superset/views/core.py:2198 msgid "" "The query associated with these results could not be found. You need to " "re-run the original query." msgstr "" -#: superset/sqllab/query_render.py:117 +#: superset/sqllab/query_render.py:115 msgid "The query contains one or more malformed template parameters." msgstr "" @@ -15597,11 +15788,11 @@ msgstr "" msgid "The query has a syntax error." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:519 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:512 msgid "The query returned no data" msgstr "" -#: superset/sql_lab.py:301 +#: superset/sql_lab.py:297 #, python-format msgid "" "The query was killed after %(sqllab_timeout)s seconds. It might be too " @@ -15643,14 +15834,14 @@ msgstr "" msgid "The rich tooltip shows a list of all series for that point in time" msgstr "" -#: superset/db_engine_specs/bigquery.py:202 +#: superset/db_engine_specs/bigquery.py:203 #, python-format msgid "" "The schema \"%(schema)s\" does not exist. A valid schema must be used to " "run this query." msgstr "" -#: superset/db_engine_specs/presto.py:646 +#: superset/db_engine_specs/presto.py:673 #, python-format msgid "" "The schema \"%(schema_name)s\" does not exist. A valid schema must be " @@ -15661,11 +15852,12 @@ msgstr "" msgid "The schema was deleted or renamed in the database." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:92 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 msgid "The size of the square cell, in pixels" msgstr "" -#: superset/views/datasource/views.py:88 +#: superset/datasets/commands/exceptions.py:72 +#: superset/views/datasource/views.py:90 msgid "" "The submitted URL is not considered safe, only use URLs with the same " "domain as Superset." @@ -15679,21 +15871,21 @@ msgstr "" msgid "The submitted payload has the incorrect schema." msgstr "" -#: superset/db_engine_specs/bigquery.py:189 +#: superset/db_engine_specs/bigquery.py:190 #, python-format msgid "" "The table \"%(table)s\" does not exist. A valid table must be used to run" " this query." msgstr "" -#: superset/db_engine_specs/presto.py:638 +#: superset/db_engine_specs/presto.py:665 #, python-format msgid "" "The table \"%(table_name)s\" does not exist. A valid table must be used " "to run this query." msgstr "" -#: superset/connectors/sqla/views.py:515 +#: superset/connectors/sqla/views.py:422 msgid "" "The table was created. As part of this two-phase configuration process, " "you should now click the edit button by the new table to configure it." @@ -15762,13 +15954,13 @@ msgid "" " the start and/or end time." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 msgid "" "The time unit for each block. Should be a smaller unit than " "domain_granularity. Should be larger or equal to Time Grain" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 msgid "The time unit used for the grouping of blocks" msgstr "" @@ -15786,7 +15978,12 @@ msgstr "" msgid "The user seems to have been deleted" msgstr "O utilizador parece ter sido eliminado" -#: superset/db_engine_specs/postgres.py:115 +#: superset/db_engine_specs/ocient.py:251 +msgid "The user/password combination is not valid (Incorrect password for user)." +msgstr "" + +#: superset/db_engine_specs/ocient.py:246 +#: superset/db_engine_specs/postgres.py:114 #, python-format msgid "The username \"%(username)s\" does not exist." msgstr "" @@ -15814,16 +16011,16 @@ msgstr "O id da visualização ativa" msgid "There are associated alerts or reports" msgstr "" -#: superset/charts/commands/bulk_delete.py:62 -#: superset/charts/commands/delete.py:71 -#: superset/dashboards/commands/bulk_delete.py:63 -#: superset/dashboards/commands/delete.py:64 -#: superset/databases/commands/delete.py:63 +#: superset/charts/commands/bulk_delete.py:61 +#: superset/charts/commands/delete.py:70 +#: superset/dashboards/commands/bulk_delete.py:62 +#: superset/dashboards/commands/delete.py:63 +#: superset/databases/commands/delete.py:62 #, python-format msgid "There are associated alerts or reports: %s," msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:710 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:711 #, fuzzy msgid "There are no charts added to this dashboard" msgstr "Desculpe, houve um erro ao gravar este dashbard: " @@ -15881,7 +16078,7 @@ msgstr "Desculpe, houve um erro ao gravar este dashbard: " msgid "There was an error fetching tables" msgstr "Desculpe, houve um erro ao gravar este dashbard: " -#: superset-frontend/src/views/CRUD/hooks.ts:589 +#: superset-frontend/src/views/CRUD/hooks.ts:593 #, fuzzy, python-format msgid "There was an error fetching the favorite status: %s" msgstr "Desculpe, houve um erro ao gravar este dashbard: " @@ -15890,21 +16087,26 @@ msgstr "Desculpe, houve um erro ao gravar este dashbard: " msgid "There was an error fetching your recent activity:" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:450 +#, fuzzy +msgid "There was an error loading the chart data" +msgstr "Desculpe, houve um erro ao gravar este dashbard: " + #: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 #, fuzzy msgid "There was an error loading the dataset metadata" msgstr "Desculpe, houve um erro ao gravar este dashbard: " -#: superset-frontend/src/components/DatabaseSelector/index.tsx:241 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:240 #, fuzzy msgid "There was an error loading the schemas" msgstr "Desculpe, houve um erro ao gravar este dashbard: " -#: superset-frontend/src/components/TableSelector/index.tsx:194 +#: superset-frontend/src/components/TableSelector/index.tsx:191 msgid "There was an error loading the tables" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:612 +#: superset-frontend/src/views/CRUD/hooks.ts:616 #, fuzzy, python-format msgid "There was an error saving the favorite status: %s" msgstr "Desculpe, houve um erro ao gravar este dashbard: " @@ -15918,14 +16120,20 @@ msgstr "" #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 #: superset-frontend/src/pages/AnnotationList/index.tsx:121 #: superset-frontend/src/pages/CssTemplateList/index.tsx:97 -#: superset-frontend/src/pages/DatabaseList/index.tsx:167 -#: superset-frontend/src/pages/DatasetList/index.tsx:657 +#: superset-frontend/src/pages/DatabaseList/index.tsx:178 +#: superset-frontend/src/pages/DatasetList/index.tsx:668 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:97 #: superset-frontend/src/pages/SavedQueryList/index.tsx:245 #: superset-frontend/src/views/CRUD/utils.tsx:315 #, python-format msgid "There was an issue deleting %s: %s" msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:111 +#, fuzzy, python-format +msgid "There was an issue deleting rules: %s" +msgstr "Desculpe, houve um erro ao gravar este dashbard: " + #: superset-frontend/src/pages/AlertReportList/index.tsx:201 #, python-format msgid "There was an issue deleting the selected %s: %s" @@ -15945,7 +16153,7 @@ msgstr "" msgid "There was an issue deleting the selected dashboards: " msgstr "Desculpe, houve um erro ao gravar este dashbard: " -#: superset-frontend/src/pages/DatasetList/index.tsx:675 +#: superset-frontend/src/pages/DatasetList/index.tsx:686 #, python-format msgid "There was an issue deleting the selected datasets: %s" msgstr "" @@ -15970,17 +16178,17 @@ msgstr "" msgid "There was an issue deleting: %s" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:683 +#: superset-frontend/src/pages/DatasetList/index.tsx:694 #, fuzzy msgid "There was an issue duplicating the dataset." msgstr "Desculpe, houve um erro ao gravar este dashbard: " -#: superset-frontend/src/pages/DatasetList/index.tsx:699 +#: superset-frontend/src/pages/DatasetList/index.tsx:710 #, fuzzy, python-format msgid "There was an issue duplicating the selected datasets: %s" msgstr "Desculpe, houve um erro ao gravar este dashbard: " -#: superset-frontend/src/dashboard/actions/dashboardState.js:129 +#: superset-frontend/src/dashboard/actions/dashboardState.js:127 msgid "There was an issue favoriting this dashboard." msgstr "Desculpe, houve um erro ao gravar este dashbard: " @@ -15989,7 +16197,7 @@ msgstr "Desculpe, houve um erro ao gravar este dashbard: " msgid "There was an issue fetching reports attached to this dashboard." msgstr "Desculpe, houve um erro ao gravar este dashbard: " -#: superset-frontend/src/dashboard/actions/dashboardState.js:104 +#: superset-frontend/src/dashboard/actions/dashboardState.js:103 msgid "There was an issue fetching the favorite status of this dashboard." msgstr "" @@ -16023,7 +16231,7 @@ msgstr "" msgid "There was an issue previewing the selected query. %s" msgstr "" -#: superset/viz.py:1992 +#: superset/viz.py:1915 msgid "" "There's a loop in your Sankey, please provide a tree. Here's a faulty " "link: {}" @@ -16031,7 +16239,7 @@ msgstr "" "Há um loop no gráfico Sankey, por favor, forneça uma ligação correta. " "Aqui está a conexão defeituosa: {}" -#: superset/connectors/sqla/views.py:335 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:386 msgid "These are the tables this filter will be applied to." msgstr "" @@ -16087,10 +16295,10 @@ msgid "" "mydatabase.com)." msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:244 +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:245 msgid "" -"This chart emits/applies cross-filters to other charts that use the same " -"dataset" +"This chart applies cross-filters to charts whose datasets contain columns" +" with the same name." msgstr "" #: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 @@ -16105,7 +16313,7 @@ msgstr "" msgid "This chart might be incompatible with the filter (datasets don't match)" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:322 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 msgid "" "This chart type is not supported when using an unsaved query as a chart " "source. " @@ -16117,7 +16325,7 @@ msgid "" " Check the JSON metadata in the Advanced settings" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:121 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:113 msgid "This column might be incompatible with current dataset" msgstr "" @@ -16164,12 +16372,12 @@ msgid "" "dashboards. Click here to publish this dashboard." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:154 +#: superset-frontend/src/dashboard/actions/dashboardState.js:152 #, fuzzy msgid "This dashboard is now hidden" msgstr "Editar propriedades do dashboard" -#: superset-frontend/src/dashboard/actions/dashboardState.js:153 +#: superset-frontend/src/dashboard/actions/dashboardState.js:151 #, fuzzy msgid "This dashboard is now published" msgstr "Editar propriedades do dashboard" @@ -16184,18 +16392,18 @@ msgid "" " id to the SDK:" msgstr "" -#: superset/views/core.py:1319 +#: superset/views/core.py:1353 msgid "" "This dashboard was changed recently. Please reload dashboard to get " "latest version." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:311 -#: superset-frontend/src/dashboard/actions/dashboardState.js:350 +#: superset-frontend/src/dashboard/actions/dashboardState.js:313 +#: superset-frontend/src/dashboard/actions/dashboardState.js:352 msgid "This dashboard was saved successfully." msgstr "Dashboard gravado com sucesso." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1119 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1174 msgid "This database is managed externally, and can't be edited in Superset" msgstr "" @@ -16205,7 +16413,7 @@ msgid "" "table." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:240 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:282 msgid "This dataset is managed externally, and can't be edited in Superset" msgstr "" @@ -16223,7 +16431,7 @@ msgstr "Esta opção define o elemento a ser desenhado no gráfico" msgid "This defines the level of the hierarchy" msgstr "Esta opção define o elemento a ser desenhado no gráfico" -#: superset/connectors/sqla/views.py:436 +#: superset/connectors/sqla/views.py:343 msgid "" "This fields acts a Superset view, meaning that Superset will run a query " "against this string as a subquery." @@ -16248,7 +16456,7 @@ msgstr "" msgid "This functionality is disabled in your environment for security reasons." msgstr "" -#: superset/connectors/sqla/views.py:352 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:456 msgid "" "This is the condition that will be added to the WHERE clause. For " "example, to only return rows for a particular client, you might define a " @@ -16281,7 +16489,7 @@ msgstr "" msgid "This may be triggered by:" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:258 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:256 msgid "This metric might be incompatible with current dataset" msgstr "" @@ -16324,15 +16532,15 @@ msgid "" "associate one dataset with a table.\n" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:85 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 msgid "This value should be greater than the left target value" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:80 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 msgid "This value should be smaller than the right target value" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:141 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:171 #, fuzzy msgid "This visualization type does not support cross-filtering." msgstr "Escolha um tipo de visualização" @@ -16370,6 +16578,7 @@ msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:38 #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 @@ -16400,7 +16609,7 @@ msgstr "Coluna de tempo" msgid "Time Comparison" msgstr "Coluna de tempo" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:141 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 #, fuzzy msgid "Time Format" msgstr "Formato de data e hora" @@ -16436,39 +16645,39 @@ msgstr "Granularidade Temporal" msgid "Time Series" msgstr "Tabela de séries temporais" -#: superset/viz.py:1670 +#: superset/viz.py:1581 msgid "Time Series - Bar Chart" msgstr "Série Temporal - Gráfico de barras" -#: superset/viz.py:1596 +#: superset/viz.py:1504 msgid "Time Series - Dual Axis Line Chart" msgstr "Série Temporal - Gráfico de linha de dois eixos" -#: superset/viz.py:1308 +#: superset/viz.py:1209 msgid "Time Series - Line Chart" msgstr "Série Temporal - Gráfico de linhas" -#: superset/viz.py:1518 +#: superset/viz.py:1424 msgid "Time Series - Multiple Line Charts" msgstr "Série Temporal - Gráfico de linhas" -#: superset/viz.py:3036 +#: superset/viz.py:3033 msgid "Time Series - Nightingale Rose Chart" msgstr "Série Temporal - Gráfico de linhas" -#: superset/viz.py:2965 +#: superset/viz.py:2961 msgid "Time Series - Paired t-test" msgstr "Série temporal - teste emparelhado T" -#: superset/viz.py:1725 +#: superset/viz.py:1638 msgid "Time Series - Percent Change" msgstr "Série Temporal - Variação Percentual" -#: superset/viz.py:1679 +#: superset/viz.py:1590 msgid "Time Series - Period Pivot" msgstr "Série temporal - teste emparelhado T" -#: superset/viz.py:1733 +#: superset/viz.py:1646 msgid "Time Series - Stacked" msgstr "Série Temporal - Barras Sobrepostas" @@ -16484,7 +16693,7 @@ msgstr "Colunas das séries temporais" msgid "Time Shift" msgstr "Mudança de hora" -#: superset/viz.py:849 +#: superset/viz.py:878 msgid "Time Table View" msgstr "Visualização da tabela de tempo" @@ -16495,7 +16704,7 @@ msgstr "Visualização da tabela de tempo" msgid "Time column" msgstr "Coluna de tempo" -#: superset/connectors/sqla/models.py:1392 superset/models/helpers.py:1575 +#: superset/models/helpers.py:1659 #, python-format msgid "Time column \"%(col)s\" does not exist in dataset" msgstr "" @@ -16584,6 +16793,7 @@ msgid "Time ratio" msgstr "Granularidade Temporal" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 #: superset-frontend/src/explore/controlPanels/sections.tsx:66 msgid "Time related form attributes" msgstr "Atributos de formulário relacionados ao tempo" @@ -16718,12 +16928,12 @@ msgstr "" msgid "Timestamp format" msgstr "Formato da Tabela Datahora" -#: superset-frontend/src/components/ReportModal/index.tsx:326 +#: superset-frontend/src/components/ReportModal/index.tsx:325 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 msgid "Timezone" msgstr "" -#: superset/connectors/sqla/views.py:427 +#: superset/connectors/sqla/views.py:334 msgid "Timezone offset (in hours) for this datasource" msgstr "Diferença do fuso horário (em horas) para esta fonte de dados" @@ -16768,33 +16978,30 @@ msgstr "" msgid "To get a readable URL for your dashboard" msgstr "Obter um URL legível para o seu dashboard" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:288 -msgid "Too many columns to filter" -msgstr "" - #: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:27 #, fuzzy msgid "Tools" msgstr "Cargo" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:216 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:213 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 msgid "Tooltip" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:201 #, fuzzy msgid "Tooltip sort by metric" msgstr "Lista de Métricas" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:191 #, fuzzy msgid "Tooltip time format" msgstr "Formato de data e hora" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 #, fuzzy msgid "Top" @@ -16817,14 +17024,14 @@ msgstr "" msgid "Total (%(aggfunc)s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:497 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:562 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:784 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 #, python-format msgid "Total (%(aggregatorName)s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:230 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:68 #, fuzzy msgid "Total value" msgstr "Valor de filtro" @@ -16839,7 +17046,7 @@ msgstr "" msgid "Totals" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:411 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:404 #, fuzzy msgid "Track job" msgstr "Acompanhar trabalho" @@ -16860,10 +17067,6 @@ msgstr "" msgid "Transparent" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:99 -msgid "Transpose Pivot" -msgstr "" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:238 msgid "Transpose pivot" msgstr "" @@ -16883,7 +17086,7 @@ msgid "Tree orientation" msgstr "Anotações" #: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:60 -#: superset/viz.py:1035 +#: superset/viz.py:925 msgid "Treemap" msgstr "Treemap" @@ -16950,7 +17153,7 @@ msgstr "" msgid "Truncates the specified date to the accuracy specified by the date unit." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 msgid "Try applying different filters or ensuring your datasource has data" msgstr "" @@ -16972,21 +17175,21 @@ msgstr "" msgid "Tukey" msgstr "Query" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:216 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:65 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:272 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:276 -#: superset-frontend/src/pages/DatasetList/index.tsx:343 -#: superset-frontend/src/pages/DatasetList/index.tsx:552 -#: superset/connectors/sqla/views.py:164 superset/connectors/sqla/views.py:253 +#: superset-frontend/src/pages/DatasetList/index.tsx:354 +#: superset-frontend/src/pages/DatasetList/index.tsx:563 +#: superset/connectors/sqla/views.py:163 superset/connectors/sqla/views.py:252 msgid "Type" msgstr "Tipo" #: superset-frontend/src/components/DeleteModal/index.tsx:92 #: superset-frontend/src/components/ImportModal/index.tsx:397 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1405 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1460 #, python-format msgid "Type \"%s\" to confirm" msgstr "" @@ -17012,7 +17215,7 @@ msgstr "" msgid "Type of comparison, value difference or percentage" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:404 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:407 #, python-format msgid "Type or Select [%s]" msgstr "Selecionar [%s]" @@ -17044,22 +17247,23 @@ msgstr "Parâmetros" msgid "URL slug" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:622 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:618 msgid "Unable to add a new tab to the backend. Please contact your administrator." msgstr "" -#: superset/db_engine_specs/presto.py:677 +#: superset/db_engine_specs/presto.py:704 #, python-format msgid "Unable to connect to catalog named \"%(catalog_name)s\"." msgstr "" #: superset/db_engine_specs/mysql.py:165 -#: superset/db_engine_specs/postgres.py:148 +#: superset/db_engine_specs/postgres.py:147 +#: superset/db_engine_specs/starrocks.py:127 #, python-format msgid "Unable to connect to database \"%(database)s\"." msgstr "" -#: superset/db_engine_specs/bigquery.py:177 +#: superset/db_engine_specs/bigquery.py:178 msgid "" "Unable to connect. Verify that the following roles are set on the service" " account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " @@ -17067,10 +17271,18 @@ msgid "" "\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:218 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:216 msgid "Unable to create chart without a query id." msgstr "" +#: superset/key_value/exceptions.py:66 +msgid "Unable to decode value" +msgstr "" + +#: superset/key_value/exceptions.py:62 +msgid "Unable to encode value" +msgstr "" + #: superset/utils/date_parser.py:393 #, python-format msgid "Unable to find such a holiday: [%(holiday)s]" @@ -17082,19 +17294,19 @@ msgid "" "table." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:589 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:585 msgid "" "Unable to migrate query editor state to backend. Superset will retry " "later. Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:543 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:539 msgid "" "Unable to migrate query state to backend. Superset will retry later. " "Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:525 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:521 msgid "" "Unable to migrate table schema state to backend. Superset will retry " "later. Please contact your administrator if this problem persists." @@ -17104,14 +17316,14 @@ msgstr "" msgid "Unable to retrieve dashboard colors" msgstr "" -#: superset/views/database/views.py:275 +#: superset/views/database/views.py:278 #, python-format msgid "" "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" " database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset/views/database/views.py:553 +#: superset/views/database/views.py:556 #, python-format msgid "" "Unable to upload Columnar file \"%(filename)s\" to table " @@ -17119,14 +17331,14 @@ msgid "" "%(error_msg)s" msgstr "" -#: superset/views/database/views.py:412 +#: superset/views/database/views.py:415 #, python-format msgid "" "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " "in database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:93 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:92 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 msgid "Undefined" msgstr "Indefinido" @@ -17140,7 +17352,7 @@ msgstr "" msgid "Undo the action" msgstr "Executar a query selecionada" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:131 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:132 msgid "Undo?" msgstr "" @@ -17150,7 +17362,7 @@ msgid "Unexpected error" msgstr "" #: superset/databases/commands/exceptions.py:137 -#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1438 +#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1479 msgid "Unexpected error occurred, please check your logs for details" msgstr "" @@ -17158,7 +17370,7 @@ msgstr "" msgid "Unexpected error: " msgstr "" -#: superset/views/api.py:109 +#: superset/views/api.py:108 #, python-format msgid "Unexpected time range: %s" msgstr "" @@ -17172,7 +17384,7 @@ msgstr "" msgid "Unknown MySQL server host \"%(hostname)s\"." msgstr "" -#: superset/db_engine_specs/presto.py:1319 +#: superset/db_engine_specs/presto.py:1342 msgid "Unknown Presto Error" msgstr "" @@ -17180,13 +17392,13 @@ msgstr "" msgid "Unknown Status" msgstr "" -#: superset/connectors/sqla/models.py:1317 superset/models/helpers.py:1498 +#: superset/models/helpers.py:1582 #, python-format msgid "Unknown column used in orderby: %(col)s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:402 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:480 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:398 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:476 msgid "Unknown error" msgstr "" @@ -17247,7 +17459,7 @@ msgstr "Query sem título" msgid "Untitled query" msgstr "Query sem título" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:223 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:222 msgid "Update" msgstr "" @@ -17265,7 +17477,7 @@ msgstr "A atualização do gráfico parou" msgid "Upload" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:202 +#: superset-frontend/src/pages/DatabaseList/index.tsx:213 msgid "Upload CSV" msgstr "" @@ -17282,7 +17494,7 @@ msgstr "" msgid "Upload Enabled" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:216 +#: superset-frontend/src/pages/DatabaseList/index.tsx:227 msgid "Upload Excel file" msgstr "" @@ -17294,7 +17506,7 @@ msgstr "" msgid "Upload JSON file" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:209 +#: superset-frontend/src/pages/DatabaseList/index.tsx:220 msgid "Upload columnar file" msgstr "" @@ -17302,7 +17514,7 @@ msgstr "" msgid "Upload columnar file to database" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:199 +#: superset-frontend/src/pages/DatabaseList/index.tsx:210 #, fuzzy msgid "Upload file to database" msgstr "Selecione uma base de dados" @@ -17316,7 +17528,7 @@ msgstr "" msgid "Use \"%(menuName)s\" menu instead." msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:36 +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 #, fuzzy, python-format msgid "Use %s to open in a new tab." msgstr "Query numa nova aba" @@ -17327,7 +17539,7 @@ msgstr "Query numa nova aba" msgid "Use Area Proportions" msgstr "" -#: superset/views/database/forms.py:462 +#: superset/views/database/forms.py:472 #, fuzzy msgid "Use Columns" msgstr "Lista de Colunas" @@ -17344,9 +17556,9 @@ msgstr "" msgid "Use a log scale for the Y-axis" msgstr "" -#: superset/db_engine_specs/base.py:1850 -#: superset/db_engine_specs/clickhouse.py:211 -#: superset/db_engine_specs/databricks.py:57 +#: superset/db_engine_specs/base.py:1889 +#: superset/db_engine_specs/clickhouse.py:216 +#: superset/db_engine_specs/databricks.py:58 msgid "Use an encrypted connection to the database" msgstr "" @@ -17357,12 +17569,12 @@ msgid "" " Your chart must be one of these visualization types: [%s]" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:87 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 msgid "Use date formatting even when metric value is not a timestamp" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:217 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 msgid "Use legacy datasource editor" msgstr "" @@ -17408,16 +17620,6 @@ msgid "" " from the pluginʼs package.json" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:28 -msgid "" -"Used to summarize a set of data by grouping together multiple statistics " -"along two axes. Examples: Sales numbers by region and month, tasks by " -"status and assignee, active users by age and location.\n" -"\n" -" This chart is being deprecated and we recommend checking out Pivot " -"Table V2 instead!" -msgstr "" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 msgid "" "Used to summarize a set of data by grouping together multiple statistics " @@ -17462,12 +17664,18 @@ msgstr "partilhar query" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:133 #: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 -#: superset/db_engine_specs/base.py:1837 +#: superset/db_engine_specs/base.py:1868 #: superset/db_engine_specs/clickhouse.py:201 #, fuzzy msgid "Username" msgstr "Nome do país" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:27 +msgid "" +"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" +" of data" +msgstr "" + #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:45 msgid "" "Uses a gauge to showcase progress of a metric towards a target. The " @@ -17520,9 +17728,9 @@ msgstr "Formato de valor" msgid "Value is required" msgstr "Origem de dados" -#: superset/reports/schemas.py:186 superset/reports/schemas.py:192 -#: superset/reports/schemas.py:198 superset/reports/schemas.py:280 -#: superset/reports/schemas.py:286 superset/reports/schemas.py:293 +#: superset/reports/schemas.py:190 superset/reports/schemas.py:195 +#: superset/reports/schemas.py:200 superset/reports/schemas.py:291 +#: superset/reports/schemas.py:296 superset/reports/schemas.py:302 #, fuzzy msgid "Value must be greater than 0" msgstr "Data de inicio não pode ser posterior à data de fim" @@ -17545,16 +17753,16 @@ msgstr "" msgid "Vehicle Types" msgstr "" -#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:252 +#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:251 msgid "Verbose Name" msgstr "Nome Detalhado" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:503 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:539 #: superset-frontend/src/features/home/RightMenu.tsx:501 msgid "Version" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:509 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:545 msgid "Version number" msgstr "" @@ -17565,7 +17773,7 @@ msgstr "" msgid "Vertical" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:162 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 msgid "Vertical (Left)" msgstr "" @@ -17595,7 +17803,7 @@ msgstr "Escolha uma origem de dados" msgid "View all charts" msgstr "Gráfico de bala" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:434 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 #, fuzzy msgid "View as table" msgstr "fechar aba" @@ -17610,8 +17818,8 @@ msgstr "Expor no SQL Lab" msgid "View keys & indexes (%s)" msgstr "Ver chaves e índices (%s)" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:415 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:417 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:424 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:426 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:394 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:396 msgid "View query" @@ -17633,8 +17841,8 @@ msgstr "Pré-visualização para %s" msgid "Viewport" msgstr "Janela de exibição" -#: superset-frontend/src/pages/DatasetList/index.tsx:342 -#: superset-frontend/src/pages/DatasetList/index.tsx:559 +#: superset-frontend/src/pages/DatasetList/index.tsx:353 +#: superset-frontend/src/pages/DatasetList/index.tsx:570 msgid "Virtual" msgstr "" @@ -17642,21 +17850,21 @@ msgstr "" msgid "Virtual (SQL)" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:281 +#: superset-frontend/src/pages/DatasetList/index.tsx:292 #, fuzzy msgid "Virtual dataset" msgstr "Editar Base de Dados" -#: superset/connectors/sqla/models.py:960 superset/connectors/sqla/utils.py:111 -#: superset/models/helpers.py:1036 +#: superset/connectors/sqla/models.py:921 superset/connectors/sqla/utils.py:110 +#: superset/models/helpers.py:1079 msgid "Virtual dataset query cannot be empty" msgstr "" -#: superset/connectors/sqla/models.py:963 superset/models/helpers.py:1039 +#: superset/connectors/sqla/models.py:924 superset/models/helpers.py:1082 msgid "Virtual dataset query cannot consist of multiple statements" msgstr "" -#: superset/connectors/sqla/models.py:928 superset/models/helpers.py:1062 +#: superset/connectors/sqla/models.py:889 superset/models/helpers.py:1105 msgid "Virtual dataset query must be read-only" msgstr "" @@ -17785,7 +17993,7 @@ msgid "" "corresponds to higher frequency." msgstr "" -#: superset/viz.py:141 +#: superset/viz.py:140 msgid "Viz is missing a datasource" msgstr "Viz está sem origem de dados" @@ -17798,22 +18006,22 @@ msgstr "Tipo" msgid "WED" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:948 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1003 msgid "Want to add a new database?" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1246 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:216 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:214 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 #, fuzzy msgid "Warning" msgstr "Mensagem de Aviso" -#: superset/connectors/sqla/views.py:258 +#: superset/connectors/sqla/views.py:257 msgid "Warning Message" msgstr "Mensagem de Aviso" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:286 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 msgid "Warning!" msgstr "Mensagem de Aviso" @@ -17829,13 +18037,13 @@ msgstr "" msgid "Was unable to check your query" msgstr "Rótulo para a sua query" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1468 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1523 msgid "" "We are unable to connect to your database. Click \"See more\" for " "database-provided information that may help troubleshoot the issue." msgstr "" -#: superset/db_engine_specs/bigquery.py:197 +#: superset/db_engine_specs/bigquery.py:198 #, python-format msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." msgstr "" @@ -17845,8 +18053,8 @@ msgstr "" msgid "We can't seem to resolve the column \"%(column_name)s\"" msgstr "" -#: superset/db_engine_specs/postgres.py:153 -#: superset/db_engine_specs/presto.py:630 +#: superset/db_engine_specs/postgres.py:152 +#: superset/db_engine_specs/presto.py:657 #, python-format msgid "" "We can't seem to resolve the column \"%(column_name)s\" at line " @@ -17868,7 +18076,7 @@ msgid "" "dataset." msgstr "" -#: superset/db_engine_specs/redshift.py:90 +#: superset/db_engine_specs/redshift.py:94 #, python-format msgid "" "We were unable to connect to your database named \"%(database)s\". Please" @@ -17885,33 +18093,33 @@ msgstr "" msgid "Wednesday" msgstr "" -#: superset/db_engine_specs/base.py:107 +#: superset/db_engine_specs/base.py:108 #, fuzzy msgid "Week" msgstr "semana" -#: superset/db_engine_specs/base.py:113 +#: superset/db_engine_specs/base.py:114 msgid "Week ending Saturday" msgstr "" -#: superset/db_engine_specs/base.py:112 +#: superset/db_engine_specs/base.py:113 msgid "Week starting Monday" msgstr "" -#: superset/db_engine_specs/base.py:111 +#: superset/db_engine_specs/base.py:112 msgid "Week starting Sunday" msgstr "" -#: superset/db_engine_specs/base.py:114 +#: superset/db_engine_specs/base.py:115 msgid "Week_ending Sunday" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:123 +#: superset-frontend/src/components/ReportModal/index.tsx:122 #, fuzzy msgid "Weekly Report" msgstr "Janela de exibição" -#: superset-frontend/src/components/ReportModal/index.tsx:122 +#: superset-frontend/src/components/ReportModal/index.tsx:121 #, python-format msgid "Weekly Report for %s" msgstr "" @@ -17925,6 +18133,7 @@ msgstr "" msgid "Weeks %s" msgstr "semana" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:49 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:77 #, fuzzy @@ -17962,7 +18171,7 @@ msgstr[1] "" msgid "What should be shown on the label?" msgstr "" -#: superset/views/database/forms.py:165 +#: superset/views/database/forms.py:175 #, fuzzy msgid "What should happen if the table already exists" msgstr "Origem de dados %(name)s já existe" @@ -17990,7 +18199,7 @@ msgstr "" msgid "When checked, the map will zoom to your data after each query" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:189 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 msgid "When enabled, users are able to visualize SQL Lab results in Explore." msgstr "" @@ -18015,11 +18224,11 @@ msgid "" "relative time filter on a partitioned or indexed time-related field." msgstr "" -#: superset/viz.py:861 +#: superset/viz.py:891 msgid "When using 'Group By' you are limited to use a single metric" msgstr "Utilizando 'Agrupar por' só é possível utilizar uma única métrica" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:74 msgid "When using other than adaptive formatting, labels may overlap" msgstr "" @@ -18031,11 +18240,11 @@ msgstr "" msgid "Whether the progress bar overlaps when there are multiple groups of data" msgstr "" -#: superset/connectors/sqla/views.py:455 +#: superset/connectors/sqla/views.py:362 msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" msgstr "" -#: superset/connectors/sqla/views.py:111 +#: superset/connectors/sqla/views.py:110 msgid "" "Whether this column is exposed in the `Filters` section of the explore " "view." @@ -18077,7 +18286,7 @@ msgstr "" msgid "Whether to display a bar chart background in table columns" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 msgid "Whether to display a legend for the chart" msgstr "" @@ -18108,14 +18317,14 @@ msgid "" " 5% threshold." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:157 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:118 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:159 msgid "Whether to display the legend (toggles)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:181 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 msgid "Whether to display the metric name as a title" msgstr "" @@ -18128,7 +18337,7 @@ msgstr "" msgid "Whether to display the min and max values of the Y-axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:167 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:187 msgid "Whether to display the numerical values within the cells" @@ -18195,7 +18404,7 @@ msgstr "" msgid "Whether to make the histogram cumulative" msgstr "" -#: superset/connectors/sqla/views.py:106 +#: superset/connectors/sqla/views.py:105 msgid "" "Whether to make this column available as a [Time Granularity] option, " "column has to be DATETIME or DATETIME-like" @@ -18211,7 +18420,7 @@ msgstr "" msgid "Whether to populate autocomplete filters options" msgstr "Incluir um filtro temporal" -#: superset/connectors/sqla/views.py:450 +#: superset/connectors/sqla/views.py:357 msgid "" "Whether to populate the filter's dropdown in the explore view's filter " "section with a list of distinct values fetched from the backend on the " @@ -18243,7 +18452,8 @@ msgstr "" msgid "Whether to show the split lines on the axis" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:124 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:143 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:174 #, fuzzy msgid "Whether to sort ascending or descending on the base Axis." msgstr "Ordenar de forma descendente ou ascendente" @@ -18275,7 +18485,7 @@ msgstr "Ordenar de forma descendente ou ascendente" msgid "Whether to sort results by the selected metric in descending order." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:207 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 msgid "Whether to sort tooltip by the selected metric in descending order." msgstr "" @@ -18341,7 +18551,7 @@ msgid "Working timeout" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 -#: superset/viz.py:2079 +#: superset/viz.py:2006 msgid "World Map" msgstr "Mapa Mundo" @@ -18353,11 +18563,11 @@ msgstr "Escreva uma descrição para sua consulta" msgid "Write a handlebars template to render the data" msgstr "" -#: superset/views/database/forms.py:219 +#: superset/views/database/forms.py:229 msgid "Write dataframe index as a column" msgstr "" -#: superset/views/database/forms.py:380 superset/views/database/forms.py:471 +#: superset/views/database/forms.py:390 superset/views/database/forms.py:481 msgid "Write dataframe index as a column." msgstr "" @@ -18416,12 +18626,14 @@ msgstr "" msgid "X bounds" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:122 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:141 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:172 #, fuzzy msgid "X-Axis Sort Ascending" msgstr "Ordenar decrescente" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:69 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:156 msgid "X-Axis Sort By" msgstr "" @@ -18480,7 +18692,6 @@ msgid "Y Axis 2 Bounds" msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:260 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:248 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:192 @@ -18519,12 +18730,14 @@ msgstr "" msgid "Y bounds" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:121 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:140 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:171 #, fuzzy msgid "Y-Axis Sort Ascending" msgstr "Ordenar decrescente" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:68 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 msgid "Y-Axis Sort By" msgstr "" @@ -18540,7 +18753,7 @@ msgstr "" msgid "YScale Interval" msgstr "" -#: superset/db_engine_specs/base.py:110 +#: superset/db_engine_specs/base.py:111 #, fuzzy msgid "Year" msgstr "ano" @@ -18566,9 +18779,9 @@ msgstr "ano" #: superset-frontend/src/pages/ChartList/index.tsx:707 #: superset-frontend/src/pages/DashboardList/index.tsx:506 #: superset-frontend/src/pages/DashboardList/index.tsx:588 -#: superset-frontend/src/pages/DatabaseList/index.tsx:467 -#: superset-frontend/src/pages/DatabaseList/index.tsx:487 -#: superset-frontend/src/pages/DatasetList/index.tsx:572 +#: superset-frontend/src/pages/DatabaseList/index.tsx:478 +#: superset-frontend/src/pages/DatabaseList/index.tsx:498 +#: superset-frontend/src/pages/DatasetList/index.tsx:583 msgid "Yes" msgstr "" @@ -18595,7 +18808,7 @@ msgid "" "overwrite?" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1394 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1449 msgid "" "You are importing one or more databases that already exist. Overwriting " "might cause you to lose some of your work. Are you sure you want to " @@ -18616,7 +18829,7 @@ msgid "" "want to overwrite?" msgstr "" -#: superset/views/core.py:2177 +#: superset/views/core.py:2213 msgid "" "You are not authorized to see this query. If you think this is an error, " "please reach out to your administrator." @@ -18634,7 +18847,7 @@ msgstr "" msgid "You can add the components in the edit mode." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:127 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:157 msgid "You can also just click on the chart to apply cross-filter." msgstr "" @@ -18657,7 +18870,7 @@ msgstr "" msgid "You can preview the list of dashboards in the chart settings dropdown." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:148 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:178 msgid "You can't apply cross-filter on this data point." msgstr "" @@ -18671,7 +18884,7 @@ msgstr "" msgid "You cannot use 45° tick layout along with the time range filter" msgstr "" -#: superset/viz.py:723 +#: superset/viz.py:748 msgid "" "You cannot use [Columns] in combination with [Group " "By]/[Metrics]/[Percentage Metrics]. Please choose one or the other." @@ -18687,7 +18900,7 @@ msgid "You do not have permission to edit this chart" msgstr "Não tem permissão para aprovar este pedido" #: superset-frontend/src/components/Tags/utils.tsx:69 -#: superset-frontend/src/dashboard/actions/dashboardState.js:366 +#: superset-frontend/src/dashboard/actions/dashboardState.js:368 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:134 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:40 @@ -18699,7 +18912,7 @@ msgstr "Não tem acesso a esta origem de dados" msgid "You do not have permissions to access the datasource(s): %(name)s." msgstr "Não tem permissão para aceder à origem de dados: %(name)s." -#: superset-frontend/src/dashboard/actions/dashboardState.js:162 +#: superset-frontend/src/dashboard/actions/dashboardState.js:160 msgid "You do not have permissions to edit this dashboard." msgstr "Não tem permissão para aceder à origem de dados: %(name)s." @@ -18713,7 +18926,7 @@ msgstr "Não tem permissão para aprovar este pedido" msgid "You don't have access to this dashboard." msgstr "Não tem permissão para aceder à origem de dados: %(name)s." -#: superset/datasets/commands/exceptions.py:189 +#: superset/datasets/commands/exceptions.py:206 #, fuzzy msgid "You don't have access to this dataset." msgstr "Parece que não tem acesso a nenhuma base de dados" @@ -18733,17 +18946,17 @@ msgstr "Não tem acesso a esta origem de dados" msgid "You don't have permission to modify the value." msgstr "Não tem permissão para aprovar este pedido" -#: superset/security/manager.py:2267 +#: superset/security/manager.py:2262 #, fuzzy, python-format msgid "You don't have the rights to alter %(resource)s" msgstr "Não tem direitos para alterar este título." -#: superset/views/core.py:923 +#: superset/views/core.py:945 #, fuzzy msgid "You don't have the rights to alter this chart" msgstr "Não tem direitos para alterar este título." -#: superset/views/core.py:1097 +#: superset/views/core.py:1119 #, fuzzy msgid "You don't have the rights to alter this dashboard" msgstr "Não tem direitos para alterar este título." @@ -18752,22 +18965,22 @@ msgstr "Não tem direitos para alterar este título." msgid "You don't have the rights to alter this title." msgstr "Não tem direitos para alterar este título." -#: superset/views/core.py:929 +#: superset/views/core.py:951 #, fuzzy msgid "You don't have the rights to create a chart" msgstr "Não tem direitos para alterar este título." -#: superset/views/core.py:1113 +#: superset/views/core.py:1135 #, fuzzy msgid "You don't have the rights to create a dashboard" msgstr "Não tem direitos para alterar este título." -#: superset/views/core.py:644 +#: superset/views/core.py:649 #, fuzzy msgid "You don't have the rights to download as csv" msgstr "Não tem direitos para alterar este título." -#: superset/views/core.py:424 +#: superset/views/core.py:425 msgid "You have no permission to approve this request" msgstr "Não tem permissão para aprovar este pedido" @@ -18779,7 +18992,7 @@ msgstr "" msgid "You have unsaved changes." msgstr "Existem alterações por gravar." -#: superset-frontend/src/dashboard/actions/dashboardState.js:652 +#: superset-frontend/src/dashboard/actions/dashboardState.js:650 #, python-format msgid "" "You have used all %(historyLength)s undo slots and will not be able to " @@ -18788,7 +19001,7 @@ msgid "" msgstr "" #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:300 -#: superset-frontend/src/pages/DatasetList/index.tsx:453 +#: superset-frontend/src/pages/DatasetList/index.tsx:464 msgid "" "You must be a dataset owner in order to edit. Please reach out to a " "dataset owner to request modifications or edit access." @@ -18798,7 +19011,7 @@ msgstr "" msgid "You must pick a name for the new dashboard" msgstr "Escolha um nome para o novo dashboard" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:525 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:519 msgid "You must run the query successfully first" msgstr "" @@ -18806,7 +19019,7 @@ msgstr "" msgid "You need to configure HTML sanitization to use CSS" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:350 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 msgid "" "You updated the values in the control panel, but the chart was not " "updated automatically. Run the query by clicking on the \"Update chart\" " @@ -18819,7 +19032,7 @@ msgid "" "match this new dataset have been retained." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:343 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 msgid "Your chart is not up to date" msgstr "" @@ -18831,7 +19044,7 @@ msgstr "" msgid "Your dashboard is too large. Please reduce its size before saving it." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1036 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1028 msgid "Your query could not be saved" msgstr "Não foi possível gravar a sua query" @@ -18839,7 +19052,7 @@ msgstr "Não foi possível gravar a sua query" msgid "Your query could not be scheduled" msgstr "Não foi possível gravar a sua query" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1071 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1063 msgid "Your query could not be updated" msgstr "Não foi possível gravar a sua query" @@ -18849,16 +19062,16 @@ msgid "" "Saved queries" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1051 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 #, fuzzy msgid "Your query was not properly saved" msgstr "A sua query foi gravada" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1054 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1046 msgid "Your query was saved" msgstr "A sua query foi gravada" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1067 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1059 msgid "Your query was updated" msgstr "A sua query foi gravada" @@ -18881,20 +19094,20 @@ msgstr "" msgid "Zoom level of the map" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:262 +#: superset-frontend/src/dashboard/actions/dashboardState.js:260 #, fuzzy msgid "[ untitled dashboard ]" msgstr "[Nome do dashboard]" -#: superset/viz.py:2386 +#: superset/viz.py:2323 msgid "[Longitude] and [Latitude] columns must be present in [Group By]" msgstr "As colunas [Longitude] e [Latitude] devem estar presentes em [Agrupar por]" -#: superset/viz.py:2336 +#: superset/viz.py:2273 msgid "[Longitude] and [Latitude] must be set" msgstr "As colunas [Longitude] e [Latitude] devem estar presentes em [Agrupar por]" -#: superset/explore/commands/get.py:121 superset/views/core.py:870 +#: superset/explore/commands/get.py:121 superset/views/core.py:892 #, fuzzy msgid "[Missing Dataset]" msgstr "Viz está sem origem de dados" @@ -18909,7 +19122,7 @@ msgstr "[Superset] O acesso à origem dos dados %(name)s foi concedido" msgid "[Untitled]" msgstr "%s - sem título" -#: superset/connectors/base/models.py:252 superset/models/sql_lab.py:228 +#: superset/connectors/base/models.py:262 superset/models/sql_lab.py:216 msgid "[asc]" msgstr "" @@ -18921,7 +19134,7 @@ msgstr "" msgid "[dashboard name]" msgstr "[Nome do dashboard]" -#: superset/connectors/base/models.py:255 superset/models/sql_lab.py:231 +#: superset/connectors/base/models.py:265 superset/models/sql_lab.py:219 msgid "[desc]" msgstr "" @@ -18946,7 +19159,7 @@ msgstr "" msgid "`compare_type` must be `difference`, `percentage` or `ratio`" msgstr "" -#: superset/charts/schemas.py:573 +#: superset/charts/schemas.py:654 msgid "`confidence_interval` must be between 0 and 1 (exclusive)" msgstr "" @@ -18969,15 +19182,15 @@ msgstr "" msgid "`rename_columns` must have the same length as `columns`." msgstr "" -#: superset/charts/schemas.py:1114 +#: superset/charts/schemas.py:1284 msgid "`row_limit` must be greater than or equal to 0" msgstr "" -#: superset/charts/schemas.py:1121 +#: superset/charts/schemas.py:1291 msgid "`row_offset` must be greater than or equal to 0" msgstr "" -#: superset/charts/schemas.py:972 +#: superset/charts/schemas.py:1108 msgid "`width` must be greater or equal to 0" msgstr "" @@ -18985,10 +19198,16 @@ msgstr "" msgid "aggregate" msgstr "Soma Agregada" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 #: superset-frontend/src/pages/AlertReportList/index.tsx:110 msgid "alert" msgstr "" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 +#, fuzzy +msgid "alert dark" +msgstr "Início" + #: superset-frontend/src/pages/AlertReportList/index.tsx:111 msgid "alerts" msgstr "" @@ -19129,7 +19348,7 @@ msgid "clear all filters" msgstr "Filtros" #: superset-frontend/src/components/Chart/Chart.jsx:290 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:354 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 msgid "click here" msgstr "" @@ -19160,7 +19379,7 @@ msgstr "" msgid "count" msgstr "Coluna" -#: superset-frontend/src/explore/components/SaveModal.tsx:365 +#: superset-frontend/src/explore/components/SaveModal.tsx:400 #, fuzzy msgid "create" msgstr "Criado em" @@ -19208,16 +19427,16 @@ msgid "dashboards" msgstr "Dashboard" #: superset-frontend/src/features/databases/DatabaseModal/index.tsx:543 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:712 -#: superset-frontend/src/pages/DatabaseList/index.tsx:91 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:729 +#: superset-frontend/src/pages/DatabaseList/index.tsx:102 msgid "database" msgstr "Base de dados" #: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 #: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 #: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 -#: superset-frontend/src/pages/DatasetList/index.tsx:148 -#: superset-frontend/src/pages/DatasetList/index.tsx:822 +#: superset-frontend/src/pages/DatasetList/index.tsx:159 +#: superset-frontend/src/pages/DatasetList/index.tsx:844 msgid "dataset" msgstr "" @@ -19229,8 +19448,8 @@ msgstr "nome da origem de dados" msgid "date" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 msgid "day" msgstr "dia" @@ -19259,6 +19478,11 @@ msgstr "" msgid "deck.gl Grid" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:30 +#, fuzzy +msgid "deck.gl Heatmap" +msgstr "Gráfico de bala" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:28 msgid "deck.gl Multiple Layers" msgstr "" @@ -19288,6 +19512,7 @@ msgstr "Gráfico de bala" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:34 @@ -19373,11 +19598,11 @@ msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:112 #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:657 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:674 msgid "e.g. world_population" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:655 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:672 msgid "e.g. xy12345.us-east-2.aws" msgstr "" @@ -19394,7 +19619,16 @@ msgstr "" msgid "entries" msgstr "Séries" -#: superset/connectors/sqla/models.py:1537 superset/models/helpers.py:1742 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +#, fuzzy +msgid "error" +msgstr "Erro" + +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 +msgid "error dark" +msgstr "" + +#: superset/models/helpers.py:1803 #, fuzzy msgid "error_message" msgstr "Mensagem de Aviso" @@ -19478,10 +19712,6 @@ msgstr "" msgid "geohash (square)" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 -msgid "green" -msgstr "" - #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:168 #, fuzzy msgid "heatmap" @@ -19495,14 +19725,14 @@ msgstr "" #: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:125 #: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1800 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1856 #, fuzzy msgid "here" msgstr "Séries" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 msgid "hour" msgstr "hora" @@ -19540,7 +19770,7 @@ msgstr "" msgid "joined" msgstr "agregado" -#: superset/views/base.py:595 +#: superset/views/base.py:596 msgid "json isn't valid" msgstr "json não é válido" @@ -19605,14 +19835,13 @@ msgstr "ano" msgid "log" msgstr "" -#: superset/charts/schemas.py:645 +#: superset/charts/schemas.py:735 msgid "" "lower percentile must be greater than 0 and less than 100. Must be lower " "than upper percentile." msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:189 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:58 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 #: superset-frontend/src/filters/components/Range/buildQuery.ts:69 #, fuzzy @@ -19622,9 +19851,9 @@ msgstr "Máx" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:187 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:254 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:56 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:136 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:119 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:403 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:531 @@ -19642,15 +19871,14 @@ msgstr "" msgid "median" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:60 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:62 #: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 #, fuzzy msgid "metric" msgstr "Métrica" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:188 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:57 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 #: superset-frontend/src/filters/components/Range/buildQuery.ts:58 #, fuzzy @@ -19672,8 +19900,8 @@ msgid "monotone" msgstr "mês" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 #: superset-frontend/src/explore/controls.jsx:267 msgid "month" @@ -19684,7 +19912,7 @@ msgid "more than {max} {name}" msgstr "" #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:53 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:78 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:77 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:116 msgid "must have a value" msgstr "" @@ -19748,7 +19976,7 @@ msgstr "hora" msgid "or use existing ones from the panel on the right" msgstr "" -#: superset/charts/schemas.py:1143 +#: superset/charts/schemas.py:1313 #, fuzzy msgid "orderby column must be populated" msgstr "Não foi possível gravar a sua query" @@ -19806,7 +20034,7 @@ msgid "" " first is lower than the second value" msgstr "" -#: superset/views/core.py:1921 +#: superset/views/core.py:1958 #, fuzzy msgid "permalink state not found" msgstr "Modelos CSS" @@ -19862,12 +20090,7 @@ msgstr "" msgid "recents" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 -#, fuzzy -msgid "red" -msgstr "Criado em" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:563 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:566 #: superset-frontend/src/pages/AlertReportList/index.tsx:110 msgid "report" msgstr "Janela de exibição" @@ -19879,7 +20102,7 @@ msgstr "Janela de exibição" msgid "reports" msgstr "Janela de exibição" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:491 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:522 msgid "restore zoom" msgstr "" @@ -19889,6 +20112,10 @@ msgstr "" msgid "right" msgstr "Altura" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:139 +msgid "rowlevelsecurity" +msgstr "" + #: superset-frontend/src/SqlLab/constants.ts:36 #: superset-frontend/src/SqlLab/constants.ts:52 #, fuzzy @@ -19938,7 +20165,6 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:190 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:59 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:138 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:405 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:185 @@ -19971,16 +20197,22 @@ msgstr "" #: superset-frontend/src/SqlLab/constants.ts:38 #: superset-frontend/src/SqlLab/constants.ts:50 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 #, fuzzy msgid "success" msgstr "Não há acesso!" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +#, fuzzy +msgid "success dark" +msgstr "Não há acesso!" + #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:186 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:255 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:378 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:55 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:260 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:532 @@ -20025,7 +20257,7 @@ msgstr "" msgid "unknown type icon" msgstr "" -#: superset/charts/schemas.py:660 +#: superset/charts/schemas.py:750 msgid "" "upper percentile must be greater than 0 and less than 100. Must be higher" " than lower percentile." @@ -20049,7 +20281,6 @@ msgid "value descending" msgstr "Ordenar decrescente" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:60 msgid "var" msgstr "" @@ -20072,13 +20303,13 @@ msgstr "" msgid "viz type" msgstr "Tipo" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:451 msgid "was created" msgstr "foi criado" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:62 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 #: superset-frontend/src/explore/controls.jsx:264 msgid "week" @@ -20111,16 +20342,12 @@ msgid "y: values are normalized within each row" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 #: superset-frontend/src/explore/controls.jsx:269 msgid "year" msgstr "ano" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 -msgid "yellow" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:490 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:521 msgid "zoom area" msgstr "" diff --git a/superset/translations/pt_BR/LC_MESSAGES/messages.json b/superset/translations/pt_BR/LC_MESSAGES/messages.json index 41d9a3d127..e83d89bc8c 100644 --- a/superset/translations/pt_BR/LC_MESSAGES/messages.json +++ b/superset/translations/pt_BR/LC_MESSAGES/messages.json @@ -2,51 +2,20 @@ "domain": "superset", "locale_data": { "superset": { - "22": ["22"], + "22": [""], "": { "domain": "superset", "plural_forms": "nplurals=2; plural=(n > 1)", "lang": "pt_BR" }, - "\n This filter was inherited from the dashboard's context.\n It won't be saved when saving the chart.\n ": [ - "\nEste filtro foi herdado do contexto do painel.\n Não será salvo ao salvar o gráfico." - ], - "\n Error: %(text)s\n ": ["\n Erro:%(text)s\n"], - "(excluded)": ["(excluído)"], - "Set the opacity to 0 if you do not want to override the color specified in the GeoJSON": [ - "Defina opacidade a 0 se você não quer sobrepor a cor especificada no GeoJSON" - ], - "a dashboard OR": ["um painel OU"], - "a new one": ["um novo"], - "expression which needs to adhere to the": [ - "expressão necessária para aderir ao" - ], - "source code of Superset's sandboxed parser": [ - "código-fonte do analisador em área restrita do Superset" - ], - "standard to ensure that the lexicographical ordering\n coincides with the chronological ordering. If the\n timestamp format does not adhere to the ISO 8601 standard\n you will need to define an expression and type for\n transforming the string into a date or timestamp. Note\n currently time zones are not supported. If time is stored\n in epoch format, put `epoch_s` or `epoch_ms`. If no pattern\n is specified we fall back to using the optional defaults on a per\n database/column name level via the extra parameter.": [ - "para garantir que a ordem lexicográfica coincida com a ordem cronológica. Se o\n formato do timestamp não for aderente ao padrão ISO 8601\n você precisará definir uma expressão e tipo para\n transformar o texto em data ou timestamp. Nota:\n naturalmente fusos horários não são suportados. Se o tempo é armazenado no formato epoch coloque ` epoch_s ` ou ` epoch_ms `. Se nenhum padrão for especificado\nemos utilizar os padrões de acordo com cada nível do banco de dados/nome de coluna via parâmetro extra." - ], - "to add calculated columns": ["para adicionar colunas calculadas"], - "to add metrics": ["para adicionar métricas"], - "to edit or add columns and metrics.": [ - "para editar ou adicionar colunas e métricas." - ], - "to mark a column as a time column": [ - "para marcar uma coluna como uma coluna de tempo" - ], - "to open SQL Lab. From there you can save the query as a dataset.": [ - "para abrir o SQL Lab. De lá você pode salvar a consulta como um conjunto de dados." - ], - "to visualize your data.": ["para visualizar seus dados."], "!= (Is not equal)": ["!= (diferente)"], - "%(name)s.csv": ["%(name)s.csv"], "%(dialect)s cannot be used as a data source for security reasons.": [ "%(dialect)s não pode ser usado como uma fonte de dados por motivos de segurança." ], "%(message)s\nThis may be triggered by: \n%(issues)s": [ "%(message)s\nIsso pode ser acionado por: \n%(issues)s" ], + "%(name)s.csv": ["%(name)s.csv"], "%(object)s does not exist in this database.": [ "%(object)s não existe neste banco de dados." ], @@ -59,17 +28,14 @@ "%(other)s recents will appear here": [ "%(other)s recentes irão aparecer aqui" ], - "%(prefix)s %(title)s": ["%(prefix)s %(title)s"], "%(other)s saved queries will appear here": [ "%(other)s As consultas salvas aparecerão aqui" ], + "%(prefix)s %(title)s": ["%(prefix)s %(title)s"], "%(rows)d rows returned": ["%(rows)d linhas retornadas"], "%(subtitle)s\nThis may be triggered by:\n %(issue)s": [ "%(subtitle)s\nIsso pode ser acionado por:\n %(issue)s" ], - "%(suggestion)s instead of \"%(undefinedParameter)s?\"": [ - "%(suggestion)s em vez de \"%(undefinedParameter)s?\"" - ], "%(user)s was granted the role %(role)s that gives access to the %(datasource)s": [ "%(user)s foi garantido a função %(role)s que dá acesso para a %(fonte de dados)s" ], @@ -93,9 +59,7 @@ "%s aggregates(s)": ["%s agregado(s)"], "%s column(s)": ["%s coluna(s)"], "%s operator(s)": ["%s operador(es)"], - "%s option": ["%s opção"], "%s option(s)": ["%s opção(ões)"], - "%s row": ["%s linha"], "%s saved metric(s)": ["%s salvos métrica(s)"], "%s updated": ["%s atualizado"], "%s%s": ["%s%s"], @@ -111,17 +75,8 @@ "), and they become available in your SQL (example:": [ "), e eles tornaram-se disponíveis no seu SQL (exemplo:" ], - "*%(name)s*\n\n%(description)s\n\n<%(url)s|Explore in Superset>\n\n%(table)s\n": [ - "*%(name)s*\n\n%(description)s\n\n<%(url) s|Explore no Superset >\n\n%(table)s\n" - ], - "*%(name)s*\n\n%(description)s\n\nError: %(text)s\n": [ - "*%(name)s*\n\n%(description)s\n\nErro: %(text)s\n" - ], "+ %s more": ["+ %s mais"], ",": [","], - "-- Note: Unless you save your query, these tabs will NOT persist if you clear your cookies or change browsers.\n\n": [ - "-- Nota: A menos que você salve sua consulta, estes guias NÃO irão persistir se você limpar seus cookies ou mudar de navegador.\n\n" - ], ".": ["."], "0 Selected": ["0 selecionado"], "1 calendar day frequency": ["1 dia de calendário de frequência"], @@ -177,10 +132,6 @@ "52 semanas iniciando Segunda-feira (freq=52S-SEG)" ], "6 hour": ["6 horas"], - "6 hours": ["6 horas"], - "12 hours": ["12 horas"], - "24 hours": ["24 horas"], - "10 seconds": ["10 segundos"], "60 days": ["60 dias"], "7 calendar day frequency": ["Frequência de 7 dias de calendário"], "7 days": ["7 dias"], @@ -202,14 +153,17 @@ "A comma separated list of columns that should be parsed as dates": [ "Uma lista separada por vírgulas de colunas que devem ser analisadas como datas" ], + "A comma separated list of columns that should be parsed as dates.": [ + "Uma lista separada por vírgulas de colunas que devem ser analisadas como datas." + ], "A comma-separated list of schemas that files are allowed to upload to.": [ "Uma lista separada por vírgulas de esquemas para os quais os arquivos têm permissão para fazer upload." ], "A database with the same name already exists.": [ "Já existe um banco de dados com o mesmo nome." ], - "A comma separated list of columns that should be parsed as dates.": [ - "Uma lista separada por vírgulas de colunas que devem ser analisadas como datas." + "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ + "" ], "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ "Um URL completo apontando para o localização do plug-in construído (poderia ser hospedado em um CDN, por exemplo)" @@ -218,12 +172,12 @@ "Um modelo de handlebars aplicado aos dados" ], "A human-friendly name": ["Um nome amigável ao ser humano"], - "A list of tags that have been applied to this chart.": [ - "Uma lista de tags que foram aplicadas a esse gráfico." - ], "A list of domain names that can embed this dashboard. Leaving this field empty will allow embedding from any domain.": [ "Uma lista de nomes de domínio que podem incorporar este dashboard. Se deixar este campo vazio, permitirá a incorporação a partir de qualquer domínio." ], + "A list of tags that have been applied to this chart.": [ + "Uma lista de tags que foram aplicadas a esse gráfico." + ], "A list of users who can alter the chart. Searchable by name or username.": [ "Uma lista de Usuários que podem alterar o gráfico. Pesquisável por nome ou nome de usuário." ], @@ -253,12 +207,12 @@ "A set of parameters that become available in the query using Jinja templating syntax": [ "Um conjunto de parâmetros que tornar-se disponível na consulta usando a sintaxe de modelagem Jinja" ], - "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ - "Um gráfico de séries temporais que visualiza como uma métrica relacionada de vários grupos varia ao longo do tempo. Cada grupo é visualizado usando uma cor diferente." - ], "A time column must be specified when using a Time Comparison.": [ "Uma coluna de tempo deve ser especificada ao usar uma comparação de tempo." ], + "A time series chart that visualizes how a related metric from multiple groups vary over time. Each group is visualized using a different color.": [ + "Um gráfico de séries temporais que visualiza como uma métrica relacionada de vários grupos varia ao longo do tempo. Cada grupo é visualizado usando uma cor diferente." + ], "A timeout occurred while executing the query.": [ "Ocorreu um tempo limite durante a execução da consulta." ], @@ -292,8 +246,8 @@ "Action Log": ["Log de ação"], "Actions": ["Ações"], "Active": ["Ativo"], - "Actual time range": ["Intervalo de tempo real"], "Actual Values": ["Valores reais"], + "Actual time range": ["Intervalo de tempo real"], "Actual value": ["Valor real"], "Actual values": ["Valores reais"], "Adaptive formatting": ["Formatação adaptável"], @@ -308,12 +262,6 @@ "Add Log": ["Adicionar Log"], "Add Metric": ["Adicionar Métrica"], "Add Report": ["Adicionar relatório"], - "Add Row level security filter": [ - "Adicionar filtro de segurança de nível de linha" - ], - "Add row level security filter": [ - "Adicionar filtro de segurança de nível de linha" - ], "Add Saved Query": ["Adicionar Consulta Salva"], "Add a Plugin": ["Adicionar um Plugin"], "Add a dataset": ["Adicionar um conjunto de dados"], @@ -329,13 +277,8 @@ "Add and edit filters": ["Adicionar e editar filtros"], "Add annotation": ["Adicionar anotação"], "Add annotation layer": ["Adicionar camada de anotação"], - "Add calculated columns to dataset in \"Edit datasource\"modal": [ - "Adicionar colunas calculadas para conjunto de dados em \"Edit datasource\"modal" - ], - "Add calculated temporal columns to dataset in \"Edit datasource\"modal": [ - "Adicionar colunas temporais calculadas para conjunto de dados em \"Edit datasource\"modal" - ], "Add cross-filter": ["Adicionar filtro cruzado"], + "Add custom scoping": [""], "Add delivery method": ["Adicionar método de entrega"], "Add extra connection information.": [ "Adicione informações adicionais sobre a conexão." @@ -347,9 +290,6 @@ "Add filters and dividers": ["Adicionar filtros e divisores"], "Add item": ["Adicionar item"], "Add metric": ["Adicionar métrica"], - "Add metrics to dataset in \"Edit datasource\"modal": [ - "Adicionar Métricas para conjunto de dados em \"Edit datasource\"modal" - ], "Add new color formatter": ["Adicionar novo formatador de cores"], "Add new formatter": ["Adicionar novo formatador"], "Add notification method": ["Adicionar método de notificação"], @@ -365,30 +305,29 @@ "Add to dashboard": ["Adicionar ao painel"], "Add/Edit Filters": ["Adicionar/Editar filtros"], "Added": ["Adicionado"], - "Added to 1 dashboard": ["Adicionado a 1 painel"], "Additional Parameters": ["Parâmetros adicionais"], "Additional fields may be required": [ "Adicional campos que podem ser necessários" ], "Additional information": ["Informação adicional"], + "Additional metadata": ["Metadados adicionais"], + "Additional padding for legend.": ["Preenchimento adicional da legenda."], + "Additional parameters": ["Parâmetros adicionais"], + "Additional settings.": ["Configurações adicionais."], "Additional text to add before or after the value, e.g. unit": [ "Texto adicional para adicionar antes ou depois o valor, por exemplo, unidade" ], + "Additive": ["Aditivo"], "Adjust how this database will interact with SQL Lab.": [ "Ajustar como esse banco de dados vai interagir com SQL Lab." ], "Adjust performance settings of this database.": [ "Ajuste as configurações de desempenho desse banco de dados." ], - "Additional metadata": ["Metadados adicionais"], - "Additional padding for legend.": ["Preenchimento adicional da legenda."], - "Additional parameters": ["Parâmetros adicionais"], - "Additional settings.": ["Configurações adicionais."], - "Additive": ["Aditivo"], "Advanced": ["Avançado"], - "Advanced analytics": ["Analytics avançado"], "Advanced Analytics": ["Análise avançada"], "Advanced Data type": ["Tipo de dados avançado"], + "Advanced analytics": ["Analytics avançado"], "Advanced analytics Query A": ["Análise avançada Consulta A"], "Advanced analytics Query B": ["Análise avançada Consulta B"], "Advanced data type": ["Tipo de dados avançado"], @@ -401,13 +340,13 @@ "Aggregate function applied to the list of points in each cluster to produce the cluster label.": [ "Função agregada aplicada à lista de pontos em cada cluster para produzir o rótulo do cluster." ], - "Aggregation function": ["Função de agregação"], "Aggregate function to apply when pivoting and computing the total rows and columns": [ "Função agregada a aplicar ao dinamizar e calcular o total de linhas e colunas" ], "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ "Agrega dados dentro dos limites das células do grid e mapeia os valores agregados para uma escala de cores dinâmica" ], + "Aggregation function": ["Função de agregação"], "Alert": ["Alerta"], "Alert Triggered, In Grace Period": [ "Alerta Acionado, em período de carência" @@ -434,7 +373,7 @@ "A consulta do alerta retornou mais de uma coluna. %s colunas retornadas" ], "Alert query returned more than one row.": [ - "A consulta do alerta retornou mais do que uma linha" + "A consulta do alerta retornou mais do que uma linha." ], "Alert query returned more than one row. %s rows returned": [ "A consulta do alerta retornou mais de uma linha. %s linhas retornadas" @@ -444,16 +383,17 @@ "Alerta acionado , notificação enviada" ], "Alert validator config error.": [ - "Erro na configuração do validador do alerta" + "Erro na configuração do validador do alerta." ], "Alerts": ["Alertas"], "Alerts & Reports": ["Alertas e Relatórios"], "Alerts & reports": ["Alertas e relatórios"], "Align +/-": ["Alinhar +/-"], "All": ["Todos"], + "All Entities": ["Todas as entidades"], "All Text": ["Todos os Textos"], "All charts": ["Todos os gráficos"], - "All Entities": ["Todas as entidades"], + "All charts/global scoping": [""], "All filters": ["Todos os filtros"], "All filters (%(filterCount)d)": ["Todos os filtros (%(filterCount)d)"], "All panels": ["Todos os painéis"], @@ -485,12 +425,12 @@ "Allow end user to drag-and-drop column headers to rearrange them. Note their changes won't persist for the next time they open the chart.": [ "Permitir que o usuário final arraste e solte os cabeçalhos das colunas para os reorganizar. Note que as alterações não persistirão na próxima vez que o utilizador abrir o gráfico." ], - "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ - "Permitir manipulação do banco de dados usando instruções não SELECT como UPDATE, DELETE, CREATE, etc." - ], "Allow file uploads to database": [ "Permitir uploads de arquivos para o banco de dados" ], + "Allow manipulation of the database using non-SELECT statements such as UPDATE, DELETE, CREATE, etc.": [ + "Permitir manipulação do banco de dados usando instruções não SELECT como UPDATE, DELETE, CREATE, etc." + ], "Allow multiple selections": ["Permitir seleções múltiplas"], "Allow node selections": ["Permitir seleções de nós"], "Allow sending multiple polygons as a filter event": [ @@ -502,9 +442,6 @@ "Allow this database to be queried in SQL Lab": [ "Permitir que o banco de dados seja consultado no SQL Lab" ], - "Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE,...) in SQL Lab": [ - "Permitir que usuários executem instruções não SELECT (UPDATE, DELETE, CREATE,...) no SQL Lab" - ], "Allowed Domains (comma separated)": [ "Domínios permitidos (separados por vírgula)" ], @@ -513,28 +450,27 @@ "Também conhecida como gráfico de caixa e bigode, esta visualização compara as distribuições de uma métrica relacionada em vários grupos. A caixa no meio enfatiza a média, a mediana e os dois quartis internos. Os bigodes em torno de cada caixa visualizam o mínimo, o máximo, o intervalo e os dois quartis externos." ], "Altered": ["Alterado"], - "a day ago": ["um dia atrás"], "An Error Occurred": ["Ocorreu um erro"], + "An alert named \"%(name)s\" already exists": [ + "Já existe um alerta chamado \"%(name)s\"" + ], "An enclosed time range (both start and end) must be specified when using a Time Comparison.": [ "Deve ser especificado um intervalo de tempo fechado (início e fim) quando se utiliza uma comparação de tempo." ], "An engine must be specified when passing individual parameters to a database.": [ "Deve ser especificado um motor ao passar parâmetros individuais para uma base de dados." ], - "An alert named \"%(name)s\" already exists": [ - "Já existe um alerta chamado \"%(name)s\"" - ], "An error has occurred": ["Ocorreu um erro"], "An error occurred": ["Ocorreu um erro"], "An error occurred saving dataset": [ "Ocorreu um erro ao salvar conjunto de dados" ], - "An error occurred while collapsing the table schema. Please contact your administrator.": [ - "Ocorreu um erro ao recolher o esquema da tabela. Por favor entre em contato com o seu administrador." - ], "An error occurred while accessing the value.": [ "Ocorreu um erro ao acessar o valor." ], + "An error occurred while collapsing the table schema. Please contact your administrator.": [ + "Ocorreu um erro ao recolher o esquema da tabela. Por favor entre em contato com o seu administrador." + ], "An error occurred while creating %ss: %s": [ "Ocorreu um erro ao criar %ss: %s" ], @@ -616,6 +552,9 @@ "An error occurred while fetching table metadata": [ "Ocorreu um erro ao obter os metadados da tabela" ], + "An error occurred while fetching table metadata. Please contact your administrator.": [ + "Ocorreu um erro ao obter os metadados da tabela. Por favor entre em contato com seu administrador." + ], "An error occurred while fetching tag created by values: %s": [ "Ocorreu um erro ao buscar a tag criada por valores: %s" ], @@ -628,9 +567,6 @@ "An error occurred while importing %s: %s": [ "Ocorreu um erro durante a importação de %s: %s" ], - "An error occurred while fetching table metadata. Please contact your administrator.": [ - "Ocorreu um erro ao obter os metadados da tabela. Por favor entre em contato com seu administrador." - ], "An error occurred while loading the SQL": [ "Ocorreu um erro ao carregar o SQL" ], @@ -640,9 +576,6 @@ "An error occurred while parsing the key.": [ "Ocorreu um erro ao analisar a chave." ], - "An error occurred while pruning logs": [ - "Ocorreu um erro ao podar os registos" - ], "An error occurred while removing query. Please contact your administrator.": [ "Ocorreu um erro ao remover a consulta. Por favor entre em contato com seu administrador." ], @@ -655,12 +588,30 @@ "An error occurred while rendering the visualization: %s": [ "Ocorreu um erro ao renderizar a visualização: %s" ], + "An error occurred while setting the active tab. Please contact your administrator.": [ + "Ocorreu um erro ao definir a aba ativa. Por favor entre em contato com seu administrador." + ], + "An error occurred while setting the tab autorun. Please contact your administrator.": [ + "Ocorreu um erro ao definir a aba. Por favor entre em contato com seu administrador." + ], + "An error occurred while setting the tab database ID. Please contact your administrator.": [ + "Ocorreu um erro ao definir o ID da base de dados da aba. Por favor entre em contato com seu administrador." + ], "An error occurred while setting the tab name. Please contact your administrator.": [ "Ocorreu um erro ao definir o nome da guia. Entre em contato com o administrador." ], + "An error occurred while setting the tab schema. Please contact your administrator.": [ + "Ocorreu um erro ao definir o esquema da aba. Por favor entre em contato com seu administrador." + ], + "An error occurred while setting the tab template parameters. Please contact your administrator.": [ + "Ocorreu um erro ao definir os parâmetros do modelo da aba. Por favor entre em contato com seu administrador." + ], "An error occurred while starring this chart": [ "Ocorreu um erro ao inserir esse gráfico" ], + "An error occurred while storing the latest query id in the backend. Please contact your administrator if this problem persists.": [ + "Ocorreu um erro ao armazenar o ID da consulta mais recente no backend. Por favor entre em contato com seu administrador se esse problema persist." + ], "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\" button.": [ "Ocorreu um erro ao armazenar sua consulta no backend. Para evitar a perda de suas alterações, salve a consulta usando o botão \"Save Query\"." ], @@ -671,27 +622,6 @@ "Ocorreu um erro ao inserir o valor." ], "An unexpected error occurred": ["Ocorreu um erro inesperado"], - "An error occurred while setting the active tab. Please contact your administrator.": [ - "Ocorreu um erro ao definir a aba ativa. Por favor entre em contato com seu administrador." - ], - "An error occurred while setting the tab autorun. Please contact your administrator.": [ - "Ocorreu um erro ao definir a aba. Por favor entre em contato com seu administrador." - ], - "An error occurred while setting the tab database ID. Please contact your administrator.": [ - "Ocorreu um erro ao definir o ID da base de dados da aba. Por favor entre em contato com seu administrador." - ], - "An error occurred while setting the tab schema. Please contact your administrator.": [ - "Ocorreu um erro ao definir o esquema da aba. Por favor entre em contato com seu administrador." - ], - "An error occurred while setting the tab template parameters. Please contact your administrator.": [ - "Ocorreu um erro ao definir os parâmetros do modelo da aba. Por favor entre em contato com seu administrador." - ], - "An error occurred while storing the latest query id in the backend. Please contact your administrator if this problem persists.": [ - "Ocorreu um erro ao armazenar o ID da consulta mais recente no backend. Por favor entre em contato com seu administrador se esse problema persist." - ], - "An error occurred while storing your query in the backend. To avoid losing your changes, please save your query using the \"Save Query\"button.": [ - "Ocorreu um erro ao armazenar a sua consulta no backend. Para evitar perder as suas alterações, guarde a sua consulta utilizando o botão \"Save Query\"." - ], "An unknown error occurred. Please contact your Superset administrator": [ "Ocorreu um erro desconhecido. Por favor entre em contato com seu administrador do Superset" ], @@ -715,12 +645,6 @@ ], "Annotation delete failed.": ["A eliminação da anotação falhou."], "Annotation layer": ["Camada de anotação"], - "Annotation layer description columns": [ - "Colunas de descrição da camada de anotação" - ], - "Annotation layer interval end": [ - "Fim do intervalo da camada de anotação" - ], "Annotation layer could not be created.": [ "Não foi possível criar uma camada de anotação." ], @@ -733,50 +657,50 @@ "Annotation layer delete failed.": [ "Exclusão da camada de anotação falhou." ], + "Annotation layer description columns": [ + "Colunas de descrição da camada de anotação" + ], "Annotation layer has associated annotations.": [ "A camada de anotação tem anotações associadas." ], + "Annotation layer interval end": [ + "Fim do intervalo da camada de anotação" + ], "Annotation layer name": ["Nome da camada de anotação"], + "Annotation layer not found.": ["Camada de anotação não encontrada."], "Annotation layer opacity": ["Opacidade da camada de anotação"], + "Annotation layer parameters are invalid.": [ + "Os parâmetros da camada de anotação são inválidos." + ], "Annotation layer stroke": ["Traço da camada de anotação"], "Annotation layer time column": ["Coluna de tempo da camada de anotação"], "Annotation layer title column": [ "Coluna de título da camada de anotação" ], - "Annotation layer not found.": ["Camada de anotação não encontrada."], - "Annotation layer parameters are invalid.": [ - "Os parâmetros da camada de anotação são inválidos." - ], "Annotation layer type": ["Tipo da camada de anotação"], "Annotation layer value": ["Valor da camada de anotação"], "Annotation layers": ["Camadas de anotação"], "Annotation layers are still loading.": [ "As camadas de anotação ainda estão carregando." ], - "Annotation source": ["Fonte de anotação"], - "Annotation source type": ["Tipo de fonte de anotação"], - "Annotation template created": ["Modelo de anotação criado"], - "Annotation template updated": ["Modelo de anotação atualizado"], - "Annotations and Layers": ["Anotações e camadas"], "Annotation name": ["Nome da anotação"], "Annotation not found.": ["Anotação não encontrada."], "Annotation parameters are invalid.": [ "Parâmetros de anotação são inválidos." ], + "Annotation source": ["Fonte de anotação"], + "Annotation source type": ["Tipo de fonte de anotação"], + "Annotation template created": ["Modelo de anotação criado"], + "Annotation template updated": ["Modelo de anotação atualizado"], + "Annotations and Layers": ["Anotações e camadas"], "Annotations and layers": ["Anotações e camadas"], - "Annotations could not be deleted.": ["Anotações não foram excluídas"], + "Annotations could not be deleted.": ["Anotações não foram excluídas."], "Any additional detail to show in the certification tooltip.": [ "Qualquer detalhe adicional a mostrar na dica de ferramenta de certificação." ], "Any color palette selected here will override the colors applied to this dashboard's individual charts": [ "Qualquer paleta de cores selecionada aqui substituirá as cores aplicadas aos gráficos individuais deste painel" ], - "Any databases that allow connections via SQL Alchemy URIs can be added.": [ - "Podem ser adicionadas quaisquer bases de dados que permitam ligações através de URIs do SQL Alchemy." - ], - "Any databases that allow connections via SQL Alchemy URIs can be added. Learn about how to connect a database driver": [ - "Podem ser adicionadas quaisquer bases de dados que permitam ligações através de URIs do SQL Alchemy. Aprenda como conectar um driver de banco de dados" - ], "Append": ["Anexar"], "Applied cross-filters (%d)": ["Filtros cruzados aplicados (%d)"], "Applied filters (%d)": ["Filtros aplicados (%d)"], @@ -791,9 +715,9 @@ "Apply conditional color formatting to numeric columns": [ "Aplicar formatação de cor condicional para colunas numéricas" ], + "Apply filters": ["Aplicar filtros"], "Apply to all panels": ["Aplicar para todos painéis"], "Apply to specific panels": ["Aplicar para painéis específicos"], - "Apply filters": ["Aplicar filtros"], "April": ["Abril"], "Arc": ["Arco"], "Are you sure you intend to overwrite the following values?": [ @@ -840,13 +764,13 @@ "Are you sure you want to save and apply changes?": [ "Tem certeza que deseja salvar e aplicar mudanças ?" ], - "Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other.": [ - "Os gráficos de área são semelhantes aos gráficos de linhas na medida em que representam variáveis com a mesma escala, mas os gráficos de área empilham as métricas umas sobre as outras." - ], "Area Chart": ["Gráfico de área"], "Area Chart (legacy)": ["Gráfico de área (legado)"], "Area chart": ["Gráfico de área"], "Area chart opacity": ["Opacidade do gráfico de área"], + "Area charts are similar to line charts in that they represent variables with the same scale, but area charts stack the metrics on top of each other.": [ + "Os gráficos de área são semelhantes aos gráficos de linhas na medida em que representam variáveis com a mesma escala, mas os gráficos de área empilham as métricas umas sobre as outras." + ], "Arrow": ["Seta"], "Assign a set of parameters as": [ "Atribuir um conjunto de parâmetros como" @@ -875,18 +799,18 @@ "BOOLEAN": ["BOLEANO"], "Back": ["Voltar"], "Back to all": ["Voltar para todos"], + "Backend": ["Backend"], "Backward values": ["Valores retroativos"], "Bad formula.": ["Fórmula ruim."], - "Backend": ["Backend"], "Bad spatial key": ["Bad spatial key"], "Bar": ["Barra"], "Bar Chart": ["Gráfico de barras"], "Bar Chart (legacy)": ["Gráfico de barras (legado)"], - "Bar Values": ["Valores de barra"], - "Bar orientation": ["Orientação da barra"], "Bar Charts are used to show metrics as a series of bars.": [ "Os gráficos de barras são usados para mostrar as métricas como uma série de barras." ], + "Bar Values": ["Valores de barra"], + "Bar orientation": ["Orientação da barra"], "Base layer map style": ["Estilo do mapa da camada de base"], "Based on a metric": ["Com base em uma métrica"], "Based on granularity, number of time periods to compare against": [ @@ -905,8 +829,8 @@ "Big Number Font Size": ["Tamanho da Fonte do Número Grande"], "Big Number with Trendline": ["Número grande com Trendline"], "Bottom": ["Parte inferior"], - "Bottom left": ["Parte inferior esquerda"], "Bottom Margin": ["Margem Inferior"], + "Bottom left": ["Parte inferior esquerda"], "Bottom margin, in pixels, allowing for more room for axis labels": [ "Margem Inferior, em pixels, permitindo mais espaço para o rótulo dos eixos" ], @@ -961,9 +885,6 @@ "CSS template not found.": ["Modelo CSS não encontrado."], "CSS templates": ["Modelos CSS"], "CSV Upload": ["Upload de CSV"], - "CSV file \"%(csv_filename)s\"uploaded to table \"%(table_name)s\"in database \"%(db_name)s\"": [ - "Arquivo CSV \"%(csv_filename)s \"carregado para tabela \"%(table_name)s\"no banco de dados \"%(db_name)s\"" - ], "CSV to Database configuration": ["Configuração CSV para Banco de dados"], "CSV upload": ["Carregar CSV"], "CTAS & CVAS SCHEMA": ["CTAS & CVAS SCHEMA"], @@ -1028,9 +949,9 @@ "Category": ["Categoria"], "Category Name": ["Nome da categoria"], "Category and Percentage": ["Categoria e Porcentagem"], - "Category of target nodes": ["Categoria dos nós de destino"], "Category and Value": ["Categoria e valor"], "Category name": ["Nome da categoria"], + "Category of target nodes": ["Categoria dos nós de destino"], "Category, Value and Percentage": ["Categoria, Valor e Porcentagem"], "Cell Padding": ["Preenchimento de célula"], "Cell Radius": ["Raio da Célula"], @@ -1039,9 +960,6 @@ "Cell content": ["Conteúdo da célula"], "Cell limit": ["Limite de célula"], "Center": ["Centro"], - "Centroid (Longitude and Latitude): ": [ - "Centroide (Longitude e Latitude):" - ], "Certification": ["Certificação"], "Certification details": ["Detalhes de certificação"], "Certified": ["Certificado"], @@ -1050,9 +968,6 @@ "Certified by %s": ["Certificado por %s"], "Change order of columns.": ["Mudar ordem das colunas."], "Change order of rows.": ["Mudar ordem das linhas."], - "Changed": ["Alterado"], - "CHANGED": ["ALTERADO"], - "changed": ["alterado"], "Changed By": ["Alterado por"], "Changed on": ["Alterado em"], "Changes saved.": ["Alterações salvas."], @@ -1091,7 +1006,6 @@ "Chart ID": ["ID do gráfico"], "Chart Options": ["Opções do gráfico"], "Chart Orientation": ["Orientação do gráfico"], - "Chart Owner: %s": ["Proprietário do gráfico: %s"], "Chart Source": ["Fonte do gráfico"], "Chart Title": ["Título do gráfico"], "Chart [%s] has been overwritten": ["O gráfico [%s] foi sobrescrito"], @@ -1113,19 +1027,19 @@ "Chart could not be deleted.": ["Não foi possível remover o gráfico."], "Chart could not be updated.": ["Não foi possível atualizar o gráfico."], "Chart does not exist": ["O gráfico não existe"], + "Chart has no query context saved. Please save the chart again.": [ + "O gráfico não tem contexto de consulta salvo. Por favor salvar o gráfico novamente." + ], "Chart height": ["Altura do gráfico"], "Chart imported": ["Gráfico importado"], "Chart last modified": ["Última modificação do gráfico"], "Chart last modified by": ["Gráfico modificado pela última vez por"], - "Chart has no query context saved. Please save the chart again.": [ - "O gráfico não tem contexto de consulta salvo. Por favor salvar o gráfico novamente." - ], "Chart name": ["Nome do gráfico"], + "Chart options": ["Opções do gráfico"], + "Chart owners": ["Proprietários do gráfico"], "Chart parameters are invalid.": [ "Os parâmetros do gráfico são inválidos." ], - "Chart options": ["Opções do gráfico"], - "Chart owners": ["Proprietários do gráfico"], "Chart properties updated": ["Propriedades do gráfico atualizadas"], "Chart title": ["Título do gráfico"], "Chart type": ["Tipo de gráfico"], @@ -1141,8 +1055,6 @@ "Verificar se o gráfico de rosáceas deve utilizar a área do segmento em vez do raio do segmento para o cálculo das proporções" ], "Check out this chart in dashboard:": ["Veja este gráfico no painel:"], - "Check out this chart: ": ["Dê uma olhada neste gráfico: "], - "Check out this dashboard:": ["Confira este painel:"], "Check to apply filters instantly as they change instead of displaying [Apply] button": [ "Marque para aplicar filtros instantaneamente à medida que são alterados, em vez de apresentar o botão [Aplicar]" ], @@ -1178,17 +1090,16 @@ "Choose a source": ["Escolha uma fonte"], "Choose a source and a target": ["Escolha uma fonte e um alvo"], "Choose a target": ["Escolha um alvo"], - "Choose a unique name": ["Escolha um nome único"], "Choose chart type": ["Escolha o tipo de gráfico"], + "Choose one of the available databases from the panel on the left.": [ + "Escolha um dos bancos de dados disponíveis no painel na esquerda." + ], "Choose one or more charts for left axis": [ "Escolha um ou mais gráficos para o eixo esquerdo" ], "Choose one or more charts for right axis": [ "Escolha um ou mais gráficos para o eixo direito" ], - "Choose one of the available databases from the panel on the left.": [ - "Escolha um dos bancos de dados disponíveis no painel na esquerda." - ], "Choose the annotation layer type": [ "Escolha o tipo da camada de anotação" ], @@ -1222,12 +1133,6 @@ "Clear all": ["Limpar todos"], "Clear all data": ["Limpar todos os dados"], "Clear form": ["Limpar formulário"], - "Click on \"+Add/Edit Filters\"button to create new dashboard filters": [ - "Clique no botão\"+Add/Edit Filters\"para criar novos filtros de painel" - ], - "Click on \"Create chart\"button in the control panel on the left to preview a visualization or": [ - "Clique no botão\"Create chart\" no painel de controle à esquerda para pré-visualizar uma visualização ou" - ], "Click the lock to make changes.": [ "Clique no cadeado para fazer alterações." ], @@ -1242,9 +1147,6 @@ ], "Click to cancel sorting": ["Clique para cancelar a ordenação"], "Click to edit": ["Clique para editar"], - "Click to edit %s in a new tab": [ - "Clique para editar %s em uma nova aba" - ], "Click to edit %s.": ["Clique para editar %s."], "Click to edit chart.": ["Clique para editar o gráfico."], "Click to edit label": ["Clique para editar o rótulo"], @@ -1276,9 +1178,6 @@ "Color metric": ["Métrica de cor"], "Color of the target location": ["Cor do local de destino"], "Color scheme": ["Esquema de cores"], - "Color will be shaded based the normalized (0% to 100%) value of a given cell against the other cells in the selected range:": [ - "A cor será sombreada com base no valor normalizado (0% a 100%) de uma determinada célula em relação às outras células no intervalo seleccionado:" - ], "Colors": ["Cores"], "Column": ["Coluna"], "Column \"%(column)s\" is not numeric or does not exists in the query results.": [ @@ -1286,9 +1185,6 @@ ], "Column Configuration": ["Configuração da coluna"], "Column Formatting": ["Formatação de colunas"], - "Column \"%(column)s\"is not numeric or does not exists in the query results.": [ - "A coluna \"%(coluna)s\"é não numérico ou não existe nos resultados da consulta." - ], "Column Label(s)": ["Rótulo(s) da coluna"], "Column containing ISO 3166-2 codes of region/province/department in your table.": [ "Coluna contendo códigos ISO 3166-2 da região/província/departamento em sua tabela." @@ -1301,21 +1197,24 @@ "Dica de ferramenta para o cabeçalho da coluna" ], "Column is required": ["A coluna é necessária"], + "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ + "Rótulo da coluna para a(s) coluna(s) de índice. Se None for fornecido e Dataframe Index for True, são utilizados os nomes de índice." + ], "Column label for index column(s). If None is given and Dataframe Index is checked, Index Names are used": [ "Rótulo da coluna para a(s) coluna(s) de índice. Se None (Nenhum) for fornecido e Dataframe Index (Índice de quadro de dados) for verificado, os nomes de índice serão usados" ], "Column name": ["Nome da coluna"], - "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ - "Rótulo da coluna para a(s) coluna(s) de índice. Se None for fornecido e Dataframe Index for True, são utilizados os nomes de índice." - ], "Column name [%s] is duplicated": ["Nome da coluna [%s] está duplicado"], "Column referenced by aggregate is undefined: %(column)s": [ - "coluna referenciado pelo agregado é indefinido: %(column)s" + "Coluna referenciado pelo agregado é indefinido: %(column)s" ], "Column select": ["Seleção de coluna"], "Column to use as the row labels of the dataframe. Leave empty if no index column": [ "Coluna a ser usada como rótulos de linha do dataframe. Deixe em branco se não houver coluna de índice" ], + "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ + "Coluna para utilizar como rótulos de linhas do dataframe. Deixar vazio se não houver coluna de índice." + ], "Columnar File": ["Arquivo colunar"], "Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ "Arquivo colunar \"%(columnar_filename)s\" carregado para a tabela \"%(table_name)s\" no banco de dados \"%(db_name)s\"" @@ -1323,9 +1222,6 @@ "Columnar to Database configuration": [ "Configuração de colunar para banco de dados" ], - "Column to use as the row labels of the dataframe. Leave empty if no index column.": [ - "Coluna para utilizar como rótulos de linhas do dataframe. Deixar vazio se não houver coluna de índice." - ], "Columns": ["Colunas"], "Columns To Be Parsed as Dates": [ "Colunas a serem analisadas como datas" @@ -1338,17 +1234,16 @@ "Colunas ausente na fonte de dados: %(invalid_columns)s" ], "Columns subtotal position": ["Posição do subtotal das colunas"], - "Columns to display": ["Colunas a serem exibidas"], - "Columns to group by": ["Colunas para agrupar por"], "Columns to calculate distribution across.": [ "Colunas para calcular a distribuição entre." ], + "Columns to display": ["Colunas a serem exibidas"], + "Columns to group by": ["Colunas para agrupar por"], "Columns to group by on the columns": [ "Colunas para agrupar nas colunas" ], "Columns to group by on the rows": ["Colunas para agrupar nas linhas"], "Columns to show": ["Colunas a serem exibidas"], - "Combine Metrics": ["Combinar métricas"], "Combine metrics": ["Combinar Métricas"], "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ "Escolhas de cores separadas por vírgulas para os intervalos, por exemplo, 1,2,4. Os números inteiros denotam cores do esquema de cores escolhido e são indexados a 1. O comprimento deve corresponder ao dos limites do intervalo." @@ -1388,9 +1283,6 @@ "Intervalo de confiança deve ser entre 0 e 1 (exclusivo)" ], "Configuration": ["Configuração"], - "Configure Advanced Time Range": [ - "Configurar intervalo de tempo avançado" - ], "Configure Time Range: Last...": [ "Configurar Intervalo de Tempo: Último..." ], @@ -1410,15 +1302,13 @@ "Configure your how you overlay is displayed here.": [ "Configure a forma como a sobreposição é apresentada aqui." ], - "Confirm save": ["Confirmar salvar"], "Confirm overwrite": ["Confirmar a substituição"], + "Confirm save": ["Confirmar salvar"], + "Connect": ["Conectar"], "Connect Google Sheet": ["Conectar Planilha Google"], "Connect Google Sheets as tables to this database": [ "Conectar Planilhas Google como tabelas para esse banco de dados" ], - "Connect": ["Conectar"], - "CONNECT": ["CONECTAR"], - "connect": ["conectar"], "Connect a database": ["Conectar um banco de dados"], "Connect database": ["Conectar o banco de dados"], "Connect this database using the dynamic form instead": [ @@ -1435,11 +1325,8 @@ "Continue": ["Continuar"], "Continuous": ["Contínuo"], "Contribution": ["Contribuição"], - "Control labeled": ["Controle rotulado"], "Contribution Mode": ["Modo de contribuição"], "Control": ["Controle"], - "Control labeled ": ["Controle rotulado "], - "Controls labeled ": ["Controles rotulados "], "Coordinates": ["Coordenadas"], "Copied to clipboard!": ["Copiado para a área de transferência!"], "Copy": ["Copiar"], @@ -1447,9 +1334,6 @@ "Copiar instrução SELECT para a área de transferência" ], "Copy and Paste JSON credentials": ["Copiar e cole as credenciais JSON"], - "Copy and paste the entire service account.json file here": [ - "Copie e cole todo o ficheiro service account.json aqui" - ], "Copy and paste the entire service account .json file here": [ "Copie e cole todo o ficheiro service account.json aqui" ], @@ -1495,6 +1379,7 @@ "Could not load database driver: {}": [ "Não foi possível carregar o driver de banco de dados: {}" ], + "Could not resolve hostname: \"%(host)s\".": [""], "Count": ["Contar"], "Count Unique Values": ["Contar valores únicos"], "Count as Fraction of Columns": ["Contar como fração de Colunas"], @@ -1519,27 +1404,25 @@ "Criar conjunto de dados e criar gráfico" ], "Create new chart": ["Criar novo gráfico"], - "Create or select schema...": ["Criar ou selecionar esquema..."], "Create new filter set": ["Criar novo conjunto de filtros"], + "Create or select schema...": ["Criar ou selecionar esquema..."], "Created": ["Criado"], - "CREATED": ["CRIADO"], - "created": ["criado"], "Created On": ["Criado em"], "Created by": ["Criado por"], "Created by me": ["Criado por mim"], "Created content": ["Conteúdo criado"], + "Created on": ["Criado em"], "Creating SSH Tunnel failed for an unknown reason": [ "A criação do túnel SSH falhou por um motivo desconhecido" ], - "Created on": ["Criado em"], "Creating a data source and creating a new tab": [ "Criando uma fonte de dados e criando uma nova guia" ], "Creator": ["Criador"], + "Crimson": ["Carmesim"], "Cross-filter will be applied to all of the charts that use this dataset.": [ "Filtro cruzado vai ser aplicado para todos os gráficos que utilizam esse conjunto de dados." ], - "Crimson": ["Carmesim"], "Cross-filtering is not enabled for this dashboard.": [ "A filtragem cruzada não está ativada para esse painel." ], @@ -1575,11 +1458,11 @@ "D3 time format syntax: https://github.com/d3/d3-time-format": [ "Formato de hora D3 sintaxe: https://github.com/d3/d3-time-format" ], + "DATETIME": ["DATA"], "DB column %(col_name)s has unknown type: %(value_type)s": [ "Coluna do banco de dados %(nome_da_coluna)s tem tipo desconhecido: %(value_type)s" ], "DEC": ["DEZ"], - "DATETIME": ["DATA"], "DELETE": ["APAGAR"], "DML": ["DML"], "Daily seasonality": ["Sazonalidade diária"], @@ -1599,18 +1482,18 @@ "Não foi possível atualizar o painel." ], "Dashboard does not exist": ["Painel não existe"], + "Dashboard imported": ["Painel importado"], "Dashboard parameters are invalid.": [ "Os parâmetros do painel são inválidos." ], - "Dashboard imported": ["Painel importado"], "Dashboard properties": ["Propriedades do painel"], "Dashboard properties updated": ["Propriedades do painel atualizadas"], "Dashboard scheme": ["Esquema do painel"], - "Dashboard title": ["Título do painel"], - "Dashboard usage": ["Uso do painel"], "Dashboard time range filters apply to temporal columns defined in\n the filter section of each chart. Add temporal columns to the chart\n filters to have this dashboard filter impact those charts.": [ "Os filtros de intervalo de tempo do painel aplicam-se a colunas temporais definidas na \n seção de filtros de cada gráfico. Adicione colunas temporais aos filtros \n do gráfico para que esse filtro do painel afete esses gráficos." ], + "Dashboard title": ["Título do painel"], + "Dashboard usage": ["Uso do painel"], "Dashboards": ["Painéis"], "Dashboards added to": ["Painéis adicionados a"], "Dashboards could not be deleted.": [ @@ -1622,12 +1505,12 @@ "Data Table": ["Tabela de dados"], "Data URI is not allowed.": ["URI de dados não são permitidos."], "Data Zoom": ["Zoom de dados"], - "Data could not be retrieved from the results backend. You need to re-run the original query.": [ - "Os dados não puderam ser recuperados do backend de resultados. Você precisa executar novamente a consulta original." - ], "Data could not be deserialized from the results backend. The storage format might have changed, rendering the old data stake. You need to re-run the original query.": [ "Os dados não puderam ser desserializados do backend de resultados. O formato de armazenamento pode ter mudado, tornando os dados antigos. É necessário executar novamente a consulta original." ], + "Data could not be retrieved from the results backend. You need to re-run the original query.": [ + "Os dados não puderam ser recuperados do backend de resultados. Você precisa executar novamente a consulta original." + ], "Data has no time steps": ["Os dados não têm intervalos de tempo"], "Data preview": ["Pré-visualização de dados"], "Data refreshed": ["Dados atualizados"], @@ -1639,12 +1522,6 @@ "DataFrame deve incluir uma coluna temporal" ], "Database": ["Banco de dados"], - "Database \"%(database_name)s\"schema \"%(schema_name)s\"is not allowed for csv uploads. Please contact your Superset Admin.": [ - "Banco de dados \"%(database_name)s \"esquema \"%(schema_name)s\"não é permitido para carregamentos de csv. Por favor, contate o administrador do Superset." - ], - "Database \"%(database_name)s\"schema \"%(schema_name)s\"is not allowed for excel uploads. Please contact your Superset Admin.": [ - "Banco de dados \"%(database_name)s \"esquema \"%(schema_name)s\"não é permitido para carregamentos de excel. Por favor, contate o administrador do Superset." - ], "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for columnar uploads. Please contact your Superset Admin.": [ "O banco de dados \"%(database_name)s\" schema \"%(schema_name)s\" não é permitido para uploads de colunas. Entre em contato com o administrador do Superset." ], @@ -1674,14 +1551,8 @@ "Database does not support subqueries": [ "O banco de dados não é compatível com subconsultas" ], - "Database driver for importing maybe not installed. Visit the Superset documentation page for installation instructions: ": [ - "O driver do banco de dados para importação talvez não esteja instalado. Visite a página de documentação do Superset para obter instruções de instalação:" - ], - "Database driver for importing maybe not installed. Visit the Superset documentation page for installation instructions:": [ - "O driver para importação do banco de dados pode não estar instalado. Visite a página de documentação do Superset para obter instruções de instalação:" - ], - "Database is offline.": ["O banco de dados está off-line."], "Database error": ["Erro no banco de dados"], + "Database is offline.": ["O banco de dados está off-line."], "Database is required for alerts": [ "O banco de dados é necessário para os alertas" ], @@ -1690,10 +1561,10 @@ "Banco de dados não pode ser alterado" ], "Database not found.": ["Banco de dados não encontrado."], - "Database parameters are invalid.": [ - "Os parâmetros do banco de dados são inválidos" - ], "Database not found: %(id)s": ["Banco de dados não encontrado: %(id)s"], + "Database parameters are invalid.": [ + "Os parâmetros do banco de dados são inválidos." + ], "Database passwords": ["Senhas de banco de dados"], "Database port": ["Porta do banco de dados"], "Database settings updated": [ @@ -1702,6 +1573,9 @@ "Databases": ["Banco de dados"], "Dataframe Index": ["Índice do dataframe"], "Dataset": ["Conjunto de dados"], + "Dataset %(name)s already exists": [ + "%(nome)s do conjunto de dados já existe" + ], "Dataset Name": ["Nome do conjunto de dados"], "Dataset column delete failed.": [ "Falha na exclusão da coluna do conjunto de dados." @@ -1709,18 +1583,15 @@ "Dataset column not found.": [ "Coluna do conjunto de dados não encontrada." ], - "Dataset could not be duplicated.": [ - "Não foi possível duplicar o conjunto de dados." - ], - "Dataset %(name)s already exists": [ - "%(nome)s do conjunto de dados já existe" - ], "Dataset could not be created.": [ "Não foi possível criar o conjunto de dados." ], "Dataset could not be deleted.": [ "Não foi possível remover o conjunto de dados." ], + "Dataset could not be duplicated.": [ + "Não foi possível duplicar o conjunto de dados." + ], "Dataset could not be updated.": [ "Não foi possível atualizar o conjunto de dados." ], @@ -1735,7 +1606,7 @@ ], "Dataset name": ["Nome do conjunto de dados"], "Dataset parameters are invalid.": [ - "Os parâmetros para o conjunto de dados são inválidos" + "Os parâmetros para o conjunto de dados são inválidos." ], "Dataset schema is invalid, caused by: %(error)s": [ "Esquema do conjunto de dados inválido, causado por: %(error)s" @@ -1744,35 +1615,29 @@ "Não foi possível eliminar o(s) conjunto(s) de dados em bloco." ], "Datasets": ["Conjuntos de dados"], - "Datasets can be created from database tables or SQL queries. Select a database table to the left or ": [ - "Os conjuntos de dados podem ser criados a partir de tabelas de banco de dados ou consultas SQL. Selecione uma tabela de banco de dados à esquerda ou " - ], "Datasets do not contain a temporal column": [ "Os conjuntos de dados não contêm uma coluna temporal" ], - "Datasets can be created from database tables or SQL queries. Select a database table to the left or": [ - "Os conjuntos de dados podem ser criados a partir de tabelas de banco de dados ou de consultas SQL. Selecione uma tabela do banco de dados à esquerda ou" - ], + "Datasource": ["Fonte de dados"], "Datasource & Chart Type": ["Fonte de dados e tipo de gráfico"], "Datasource does not exist": ["A fonte de dados não existe"], - "Datasource": ["Fonte de dados"], "Datasource type is invalid": ["O tipo de fonte de dados é inválido"], "Datasource type is required when datasource_id is given": [ "O tipo de fonte de dados é necessário quando datasource_id é fornecido" ], - "Date filter": ["Filtro de data"], - "Date/Time": ["Data/Hora"], "Date Time Format": ["Formato de data e hora"], - "Datetime Format": ["Formato de data e hora"], + "Date filter": ["Filtro de data"], "Date format": ["Formato da data"], "Date format string": ["String de formato de data"], + "Date/Time": ["Data/Hora"], + "Datetime Format": ["Formato de data e hora"], "Datetime column not provided as part table configuration and is required by this type of chart": [ "A coluna Datetime não é fornecida como parte da configuração da tabela e é exigida por este tipo de gráfico" ], "Datetime format": ["Formato de data e hora"], "Day": ["Dia"], - "Days %s": ["Dias %s"], "Day (freq=D)": ["Dia (freq=D)"], + "Days %s": ["Dias %s"], "Db engine did not return all queried columns": [ "O motor do banco de dados não retornou todas as colunas consultadas" ], @@ -1792,15 +1657,14 @@ "Deck.gl - Scatter plot": ["Deck.gl - Gráfico de dispersão"], "Deck.gl - Screen Grid": ["Deck.gl - Screen Grid"], "Default": ["Padrão"], - "Default Value": ["Valor padrão"], - "Default datetime": ["Data/hora padrão"], "Default Endpoint": ["Endpoint padrão"], "Default URL": ["URL padrão"], "Default URL to redirect to when accessing from the dataset list page": [ "URL padrão para o qual redirecionar quando acessar da página da lista de conjuntos de dados" ], + "Default Value": ["Valor padrão"], + "Default datetime": ["Data/hora padrão"], "Default latitude": ["Latitude padrão"], - "Don't refresh": ["Não atualizar"], "Default longitude": ["Longitude padrão"], "Default minimal column width in pixels, actual width may still be larger than this if other columns don't need much space": [ "Largura mínima predefinida da coluna em pixels; a largura real pode ser superior a esta se as outras colunas não necessitarem de muito espaço" @@ -1815,15 +1679,6 @@ "Default value set automatically when \"Select first filter value by default\" is checked": [ "O valor padrão é definido automaticamente quando a opção \"Select first filter value by default\" (Selecionar o primeiro valor do filtro por padrão) está marcada" ], - "Default value must be set when \"Filter has default value\"is checked": [ - "Valor padrão deve ser definido quando \"Filtro tem valor padrão \"é verificado" - ], - "Default value must be set when \"Filter value is required\"is checked": [ - "Valor padrão deve ser definido quando \"Valor do filtro é obrigatório \"é verificado" - ], - "Default value set automatically when \"Select first filter value by default\"is checked": [ - "Valor padrão definido automaticamente quando \"Selecione primeiro valor de filtro por padrão \"é verificado" - ], "Define a function that receives the input and outputs the content for a tooltip": [ "Definir uma função que receba a entrada e produza o conteúdo de uma dica de ferramenta" ], @@ -1868,18 +1723,6 @@ "Delete this container and save to remove this message.": [ "Excluir este contêiner e salvar para remover essa mensagem." ], - "Deleted %(num)d annotation": ["Anotação %(num)d excluída"], - "Deleted %(num)d annotation layer": [ - "Camada de anotação %(num)d excluída" - ], - "Deleted %(num)d chart": ["Gráfico %(num)d excluído"], - "Deleted %(num)d css template": ["Modelo CSS %(num)d excluído"], - "Deleted %(num)d dashboard": ["Painel %(num)d excluído"], - "Deleted %(num)d dataset": ["Conjunto de dados %(num)d excluído"], - "Deleted %(num)d report schedule": [ - "%(num)d cronograma de relatório excluído" - ], - "Deleted %(num)d saved query": ["Excluída %(num)d consulta salva"], "Deleted: %s": ["Excluído: %s"], "Deleting a tab will remove all content within it. You may still reverse this action with the": [ "Excluindo uma guia irá remover todo o conteúdo dela. Você ainda pode reverter isso com o" @@ -1914,9 +1757,9 @@ "Difference": ["Diferença"], "Dim Gray": ["Cinza escuro"], "Dimension": ["Dimensão"], - "Dimensions": ["Dimensões"], "Dimension to use on x-axis.": ["Dimensão para usar no eixo x."], "Dimension to use on y-axis.": ["Dimensão para usar no eixo y."], + "Dimensions": ["Dimensões"], "Directed Force Layout": ["Directed Force Layout"], "Directional": ["Direcional"], "Disable SQL Lab data preview queries": [ @@ -1937,7 +1780,6 @@ ], "Display row level total": ["Exibir total do nível de linha"], "Display settings": ["Configurações de exibição"], - "Display total row/column": ["Exibir linha/coluna total"], "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ "Apresenta ligações entre entidades numa estrutura gráfica. Útil para mapear relações e mostrar quais os nós que são importantes numa rede. Os gráficos podem ser configurados para serem dirigidos à força ou circularem. Se os seus dados tiverem um componente geoespacial, experimente o gráfico de arco deck.gl." ], @@ -1976,13 +1818,13 @@ "Desenhar linhas de divisão para os ticks menores do eixo y" ], "Drill by": ["Drill by"], - "Drill by: %s": ["Drill by: %s"], "Drill by is not available for this data point": [ "Drill by não está disponível para este ponto de dados" ], "Drill by is not yet supported for this chart type": [ "Drill by não é suportado para esse tipo de gráfico" ], + "Drill by: %s": ["Drill by: %s"], "Drill to detail": ["Drill to detail"], "Drill to detail by": ["Drill to detail por"], "Drill to detail by value is not yet supported for this chart type.": [ @@ -1995,18 +1837,9 @@ "Drop a temporal column here or click": [ "Colocar uma coluna temporal aqui ou clique" ], - "Drop column here": ["Solte a coluna aqui"], - "Drop column or metric here": ["Coloque a coluna ou a métrica aqui"], - "Drop a column here or click": ["Deixe sua coluna aqui ou clique em"], - "Drop a column/metric here or click": [ - "Insira uma coluna/métrica aqui ou clique em" - ], - "Drop columns here": ["Colocar colunas aqui"], - "Drop columns or metrics here": ["Coloque colunas ou métricas aqui"], "Drop columns/metrics here or click": [ "Colocar colunas/métricas aqui ou clique" ], - "Drop temporal column here": ["Colocar coluna temporal aqui"], "Dual Line Chart": ["Gráfico de linha dupla"], "Duplicate": ["Duplicado"], "Duplicate column name(s): %(columns)s": [ @@ -2021,24 +1854,21 @@ "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires, and -1 bypasses the cache. Note this defaults to the global timeout if undefined.": [ "Duração (em segundos) do tempo limite do cache para gráficos desse banco de dados. Um tempo limite de 0 indica que o cache nunca expira, e -1 ignora o cache. Observe que o padrão é o tempo limite global se não for definido." ], - "Duration (in seconds) of the caching timeout for this chart. Set to -1 to bypass the cache. Note this defaults to the dataset's timeout if undefined.": [ - "Duração (em segundos) do tempo limite do cache para esse gráfico. Defina como -1 para ignorar o cache. Observe que o padrão é o tempo limite do conjunto de dados, se não for definido." - ], - "Duration (in seconds) of the metadata caching timeout for schemas of this database. If left unset, the cache never expires.": [ - "Duração (em segundos) do tempo limite do cache de metadados para esquemas desse banco de dados. Se não for definido, o cache nunca expira." - ], - "Duration (in seconds) of the metadata caching timeout for tables of this database. If left unset, the cache never expires. ": [ - "Duração (em segundos) do tempo limite do cache de metadados para tabelas desse banco de dados. Se não for definido, o cache nunca expira. " - ], "Duration (in seconds) of the caching timeout for charts of this database. A timeout of 0 indicates that the cache never expires. Note this defaults to the global timeout if undefined.": [ "Duração (em segundos) do tempo limite de armazenamento em cache para os gráficos desse banco de dados. Um tempo limite de 0 indica que a cache nunca expira. Observe que o padrão é o tempo limite global se não for definido." ], "Duration (in seconds) of the caching timeout for this chart. Note this defaults to the datasource/table timeout if undefined.": [ "Duração (em segundos) do tempo limite de armazenamento em cache para este gráfico. Observe que o padrão é o tempo limite da fonte de dados/tabela se não for definido." ], + "Duration (in seconds) of the caching timeout for this chart. Set to -1 to bypass the cache. Note this defaults to the dataset's timeout if undefined.": [ + "Duração (em segundos) do tempo limite do cache para esse gráfico. Defina como -1 para ignorar o cache. Observe que o padrão é o tempo limite do conjunto de dados, se não for definido." + ], "Duration (in seconds) of the caching timeout for this table. A timeout of 0 indicates that the cache never expires. Note this defaults to the database timeout if undefined.": [ "Duração (em segundos) do tempo limite de armazenamento em cache para esta tabela. Um tempo limite de 0 indica que a cache nunca expira. Note que este tempo limite é predefinido para o tempo limite da base de dados se não for definido." ], + "Duration (in seconds) of the metadata caching timeout for schemas of this database. If left unset, the cache never expires.": [ + "Duração (em segundos) do tempo limite do cache de metadados para esquemas desse banco de dados. Se não for definido, o cache nunca expira." + ], "Duration in ms (1.40008 => 1ms 400µs 80ns)": [ "Duração em ms (1,40008 => 1ms 400µs 80ns)" ], @@ -2058,8 +1888,8 @@ "ERROR: %s": ["ERRO: %s"], "Edge length": ["Comprimento da borda"], "Edge length between nodes": ["Comprimento da borda entre nós"], - "Edge width": ["Largura da borda"], "Edge symbols": ["Símbolos de borda"], + "Edge width": ["Largura da borda"], "Edit": ["Editar"], "Edit Alert": ["Editar Alerta"], "Edit CSS": ["Editar CSS"], @@ -2070,15 +1900,10 @@ "Edit Column": ["Editar Coluna"], "Edit Dashboard": ["Editar Painel"], "Edit Database": ["Editar Banco de Dados"], - "Edit Dataset ": ["Editar Conjunto de dados"], - "Edit Dataset": ["Editar Conjunto de dados"], "Edit Log": ["Editar log"], "Edit Metric": ["Editar Métrica"], - "Edit Report": ["Editar relatório"], "Edit Plugin": ["Editar Plugin"], - "Edit Row level security filter": [ - "Editar filtro de segurança de nível de linha" - ], + "Edit Report": ["Editar relatório"], "Edit Saved Query": ["Editar Consulta Salva"], "Edit Table": ["Editar Tabela"], "Edit annotation": ["Editar anotação"], @@ -2101,31 +1926,25 @@ "Edit time range": ["Editar intervalo de tempo"], "Edited": ["Editado"], "Editing 1 filter:": ["Editando 1 filtro:"], + "Editing filter set:": ["Edição do conjunto de filtros:"], "Either the database is spelled incorrectly or does not exist.": [ "Ou o banco de dados está soletrado incorretamente ou não existe." ], - "Either the username \"%(username)s\"or the password is incorrect.": [ - "Ou o nome de usuário \"%(username)s\"ou a senha estão incorretos." - ], - "Either the username \"%(username)s\", password, or database name \"%(database)s\"is incorrect.": [ - "Ou o nome de usuário \"%(username)s\", senha ou nome do banco de dados \"%(database)s\"estão incorretos." - ], - "Either the username or the password is wrong.": [ - "Ou o nome de usuário ou a senha está incorreto." - ], - "Editing filter set:": ["Edição do conjunto de filtros:"], "Either the username \"%(username)s\" or the password is incorrect.": [ "Ou o nome de usuário \"%(username)s\" ou a senha está incorreta." ], "Either the username \"%(username)s\", password, or database name \"%(database)s\" is incorrect.": [ "O nome de usuário \"%(username)s\", a senha ou o nome do banco de dados \"%(database)s\" estão incorretos." ], + "Either the username or the password is wrong.": [ + "Ou o nome de usuário ou a senha está incorreto." + ], "Elevation": ["Elevação"], "Email reports active": ["Relatórios por e-mail ativo"], "Embed": ["Incorporar"], "Embed code": ["Incorporar código"], - "Embedding deactivated.": ["Incorporação desativada."], "Embed dashboard": ["Incorporar painel"], + "Embedding deactivated.": ["Incorporação desativada."], "Emit Filter Events": ["Emitir eventos de filtro"], "Emphasis": ["Ênfase"], "Employment and education": ["Emprego e educação"], @@ -2156,7 +1975,6 @@ "Encontrou entrada espacial NULL inválida, por favor considere a possibilidade de a filtrar" ], "End": ["Fim"], - "End (Longitude, Latitude): ": ["Fim (Longitude, Latitude): "], "End Longitude & Latitude": ["Longitude e latitude finais"], "End Time": ["Hora do fim"], "End angle": ["Ângulo final"], @@ -2167,12 +1985,6 @@ "End date must be after start date": [ "A data final deve ser após a data de início" ], - "Engine \"%(engine)s\"cannot be configured through parameters.": [ - "Motor \"%(engine)s\"não pôde ser configurado através parâmetros." - ], - "Engine spec \"InvalidEngine\"does not support being configured via individual parameters.": [ - "Especificação do motor \"InvalidEngine\" não suporta ser configurado através de parâmetros individuais." - ], "Engine \"%(engine)s\" cannot be configured through parameters.": [ "O motor \"%(engine)s\" não pode ser configurado por meio de parâmetros." ], @@ -2187,11 +1999,11 @@ ], "Enter a name for this sheet": ["Digite um nome para essa planilha"], "Enter a new title for the tab": ["Digite um novo título para a aba"], + "Enter duration in seconds": ["Insira a duração em segundos"], + "Enter fullscreen": ["Entrar em tela cheia"], "Enter the required %(dbModelName)s credentials": [ "Digite as credenciais %(dbModelName)s necessárias" ], - "Enter duration in seconds": ["Insira a duração em segundos"], - "Enter fullscreen": ["Entrar em tela cheia"], "Entity": ["Entidade"], "Entity ID": ["ID da entidade"], "Equal Date Sizes": ["Tamanhos de datas iguais"], @@ -2243,9 +2055,6 @@ "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in database \"%(db_name)s\"": [ "Arquivo do Excel \"%(excel_filename)s\" carregado na tabela \"%(table_name)s\" no banco de dados \"%(db_name)s\"" ], - "Excel file \"%(excel_filename)s\"uploaded to table \"%(table_name)s\"in database \"%(db_name)s\"": [ - "Arquivo Excel \"%(excel_ filename)s \"carregado para tabela \"%(table_name)s\"no banco de dados \"%(db_name)s\"" - ], "Excel to Database configuration": [ "Configuração Excel para Banco de Dados" ], @@ -2279,9 +2088,6 @@ "Export to Excel": ["Exportar para Excel"], "Export to YAML": ["Exportar para YAML"], "Export to YAML?": ["Exportar para YAML?"], - "Export to full.CSV": ["Exportar para .CSV completo"], - "Export to original.CSV": ["Exportar para .CSV original"], - "Export to pivoted.CSV": ["Exportar para .CSV articulado"], "Expose database in SQL Lab": ["Expor banco de dados no SQL Lab"], "Expose in SQL Lab": ["Expor no SQL Lab"], "Expose this DB in SQL Lab": ["Expor este banco de dados no SQL Lab"], @@ -2332,17 +2138,17 @@ "February": ["Fevereiro"], "Fetch Values Predicate": ["Predicado de obtenção de valores"], "Fetch data preview": ["Obter pré-visualização de dados"], + "Fetched %s": ["Obtido %s"], "Fetching": ["Buscando"], "Field cannot be decoded by JSON. %(json_error)s": [ "O campo não pode ser decodificado por JSON. %(json_error)s" ], - "Fetched %s": ["Obtido %s"], "Field cannot be decoded by JSON. %(msg)s": [ "Campo não pode ser decodificado por JSON. %(msg)s" ], "Field is required": ["Campo é obrigatório"], - "Fill Color": ["Cor de preenchimento"], "File": ["Arquivo"], + "Fill Color": ["Cor de preenchimento"], "Fill all required fields to enable \"Default Value\"": [ "Preencher todos os campos obrigatórios para ativar \"Default Value\"" ], @@ -2351,11 +2157,8 @@ "Filter": ["Filtro"], "Filter Configuration": ["Configuração de Filtro"], "Filter List": ["Lista de filtros"], - "FILTER LIST": ["LISTA DE FILTROS"], - "filter list": ["lista de filtros"], "Filter Settings": ["Configurações de filtro"], "Filter Type": ["Tipo de filtro"], - "Filter box": ["Caixa de filtro"], "Filter charts": ["Filtrar gráficos"], "Filter configuration": ["Configuração do filtro"], "Filter configuration for the filter box": [ @@ -2382,14 +2185,13 @@ "Filter value (case sensitive)": [ "Valor do filtro (diferencia maiúsculas de minúsculas)" ], + "Filter value is required": ["O valor do filtro é obrigatório"], "Filter value list cannot be empty": [ "A lista de valores do filtro não pode estar vazia" ], "Filter your charts": ["Filtrar os seus gráficos"], - "Filter value is required": ["O valor do filtro é obrigatório"], "Filterable": ["Filtrável"], "Filters": ["Filtros"], - "REFERRER": ["Referente"], "Filters (%d)": ["Filtros (%d)"], "Filters by columns": ["Filtros por colunas"], "Filters by metrics": ["Filtros por métricas"], @@ -2399,9 +2201,6 @@ "Os filtros com a mesma chave de grupo serão agrupados dentro do grupo, enquanto os grupos de filtros diferentes serão agrupados. As chaves de grupo indefinidas são tratadas como grupos únicos, ou seja, não são agrupadas. Por exemplo, se uma tabela tiver três filtros, dos quais dois são para os departamentos Finanças e Marketing (chave de grupo = 'departamento') e um se refere à região Europa (chave de grupo = 'região'), a cláusula de filtro aplicaria o filtro (departamento = 'Finanças' OU departamento = 'Marketing') AND (região = 'Europa')." ], "Finish": ["Finalizar"], - "JSON string containing additional connection configuration. This is used to provide connection information for systems like Hive, Presto and BigQuery which do not conform to the username:password syntax normally used by SQLAlchemy.": [ - "Cadeia de caracteres JSON contendo configuração de conexão adicional. Isso é usado para fornecer informações de conexão para sistemas como Hive, Presto e BigQuery, que não estão em conformidade com a sintaxe de nome de usuário:senha normalmente usada pelo SQLAlchemy." - ], "First": ["Primeiro"], "Fix the trend line to the full time range specified in case filtered results do not include the start or end dates": [ "Corrigir a linha de tendência para o intervalo de tempo completo especificado no caso dos resultados filtrados não incluírem as datas de início ou fim" @@ -2436,23 +2235,23 @@ "For regular filters, these are the roles this filter will be applied to. For base filters, these are the roles that the filter DOES NOT apply to, e.g. Admin if admin should see all data.": [ "Para os filtros regulares, estas são as funções às quais este filtro será aplicado. Para os filtros de base, estas são as funções às quais o filtro NÃO se aplica, por exemplo, Admin se o admin tiver de ver todos os dados." ], + "Force": ["Forçar"], "Force all tables and views to be created in this schema when clicking CTAS or CVAS in SQL Lab.": [ "Força a criação de todas as tabelas e visôes neste esquema ao clicar em CTAS ou CVAS no SQL Lab." ], - "Force": ["Forçar"], "Force date format": ["Forçar o formato da data"], "Force refresh": ["Forçar atualização"], "Force refresh schema list": ["Forçar atualização da lista de esquemas"], "Force refresh table list": ["Forçar atualização da lista de tabelas"], "Forecast periods": ["Períodos de previsão"], "Foreign key": ["Chave estrangeira"], + "Forest Green": ["Verde floresta"], "Form data not found in cache, reverting to chart metadata.": [ - "Os dados do formulário não foram encontrados na cache, revertendo para os metadados do gráfico" + "Os dados do formulário não foram encontrados na cache, revertendo para os metadados do gráfico." ], "Form data not found in cache, reverting to dataset metadata.": [ "Os dados do formulário não foram encontrados na cache, revertendo para os metadados do conjunto de dados." ], - "Forest Green": ["Verde floresta"], "Formattable": ["Formatável"], "Formatted CSV attached in email": ["CSV formatado anexado no e-mail"], "Formatted date": ["Data formatada"], @@ -2509,9 +2308,6 @@ "Grid Size": ["Tamanho da grade"], "Group By": ["Agrupar por"], "Group By filter plugin": ["Plugin do filtro Agrupar por"], - "Group By' and 'Columns' can't overlap": [ - "'Agrupar por' e 'Colunas' não podem ser sobrepostos" - ], "Group By, Metrics or Percentage Metrics must have a value": [ "Agrupar por , Métricas ou Métricas de porcentagem devem ter um valor" ], @@ -2519,10 +2315,10 @@ "Groupable": ["Agrupável"], "Handlebars": ["Handlebars"], "Handlebars Template": ["Modelo de handlebars"], - "Has created by": ["Foi criado por"], "Hard value bounds applied for color coding. Is only relevant and applied when the normalization is applied against the whole heatmap.": [ "Limites de valores rígidos aplicados para codificação de cores. Só é relevante e aplicado quando a normalização é aplicada a todo o mapa de calor." ], + "Has created by": ["Foi criado por"], "Header": ["Cabeçalho"], "Header Row": ["Linha do Cabeçalho"], "Heatmap": ["Mapa de calor"], @@ -2559,23 +2355,26 @@ "How many periods into the future do we want to predict": [ "Quantos períodos no futuro queremos prever" ], + "How to display time shifts: as individual lines; as the difference between the main time series and each time shift; as the percentage change; or as the ratio between series and time shifts.": [ + "" + ], "Huge": ["Enorme"], "ISO 3166-2 Codes": ["Códigos ISO 3166-2"], "ISO 8601": ["ISO 8601"], "Id": ["Id"], + "Id of root node of the tree.": ["Id do nó raiz da árvore."], "If Presto or Trino, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them. If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ "Se for o Presto ou o Trino, todas as consultas no SQL Lab serão executadas como o usuário conectado no momento, que deve ter permissão para executá-las. Se o Hive e o hive.server2.enable.doAs estiverem ativados, as consultas serão executadas como conta de serviço, mas representarão o usuário conectado no momento por meio da propriedade hive.server2.proxy.user." ], - "If Table Already Exists": ["Se a tabela já existir"], - "Id of root node of the tree.": ["Id do nó raiz da árvore."], "If Presto, all the queries in SQL Lab are going to be executed as the currently logged on user who must have permission to run them.
If Hive and hive.server2.enable.doAs is enabled, will run the queries as service account, but impersonate the currently logged on user via hive.server2.proxy.user property.": [ "Se Presto, todas as consultas no SQL Lab serão executadas como o usuário atualmente conectado, que deve ter permissão para executá-las.
Se Hive e hive.server2.enable.doAs estiverem ativados, as consultas serão executadas como conta de serviço, mas personificarão o usuário atualmente conectado por meio da propriedade hive.server2.proxy.user." ], + "If Table Already Exists": ["Se a tabela já existir"], "If a metric is specified, sorting will be done based on the metric value": [ "Se for especificada uma métrica, a ordenação será efetuada com base no valor da métrica" ], - "If duplicate columns are not overridden, they will be presented as \"X.1, X.2...X.x\"": [ - "Se as colunas duplicadas não forem substituídas, serão apresentadas como \"X.1, X.2... Xx \"" + "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ + "Se as colunas duplicadas não forem substituídas, elas serão apresentadas como \"X.1, X.2 ...X.x\"" ], "If selected, please set the schemas allowed for csv upload in Extra.": [ "Se selecionado, defina os esquemas permitidos para o carregamento de csv no Extra." @@ -2583,9 +2382,6 @@ "If table exists do one of the following: Fail (do nothing), Replace (drop and recreate table) or Append (insert data).": [ "Se a tabela existir, efetuar uma das seguintes acções: Fail (não fazer nada), Replace (eliminar e recriar a tabela) ou Append (inserir dados)." ], - "If duplicate columns are not overridden, they will be presented as \"X.1, X.2 ...X.x\"": [ - "Se as colunas duplicadas não forem substituídas, elas serão apresentadas como \"X.1, X.2 ...X.x\"" - ], "Ignore cache when generating screenshot": [ "Ignorar o cache ao gerar a captura de tela" ], @@ -2595,12 +2391,12 @@ "Image download failed, please refresh and try again.": [ "Falha no download da imagem, por favor atualizar e tentar novamente." ], - "Impersonate the logged on user": [ - "Representar o usuário com sessão iniciada" - ], "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)": [ "Fazer-se passar por usuário conectado (Presto, Trino, Drill, Hive e GSheets)" ], + "Impersonate the logged on user": [ + "Representar o usuário com sessão iniciada" + ], "Import": ["Importar"], "Import %s": ["Importar %s"], "Import Dashboard(s)": ["Importar Painel(eis)"], @@ -2611,24 +2407,24 @@ ], "Import charts": ["Importar gráficos"], "Import dashboard failed for an unknown reason": [ - "A importação do painel falhou por um motivo desconhecido " + "A importação do painel falhou por um motivo desconhecido" ], "Import dashboards": ["Importar painéis"], - "Import database from file": ["Importar banco de dados de um arquivo"], "Import database failed for an unknown reason": [ "A importação do banco de dados falhou por um motivo desconhecido" ], + "Import database from file": ["Importar banco de dados de um arquivo"], "Import dataset failed for an unknown reason": [ "A importação do conjunto de dados falhou por um motivo desconhecido" ], - "Important! Select this if the table is not already sorted by entity id, else there is no guarantee that all events for each entity are returned.": [ - "Importante! Seleccione esta opção se a tabela ainda não estiver ordenada por id de entidade, caso contrário não há garantia de que todos os eventos de cada entidade sejam retornados." - ], "Import datasets": ["Importar conjuntos de dados"], "Import queries": ["Importar consultas"], "Import saved query failed for an unknown reason.": [ "A consulta salva de importação falhou por um motivo desconhecido." ], + "Important! Select this if the table is not already sorted by entity id, else there is no guarantee that all events for each entity are returned.": [ + "Importante! Seleccione esta opção se a tabela ainda não estiver ordenada por id de entidade, caso contrário não há garantia de que todos os eventos de cada entidade sejam retornados." + ], "In": ["Em"], "Include Series": ["Incluir Séries"], "Include a description that will be sent with your report": [ @@ -2644,10 +2440,14 @@ "Inner Radius": ["Raio interior"], "Inner radius of donut hole": ["Raio interior do buraco de rosquinha"], "Input field supports custom rotation. e.g. 30 for 30°": [ - "O campo de entrada suporta uma rotação personalizada, por exemplo, 30 para 30°." + "O campo de entrada suporta uma rotação personalizada, por exemplo, 30 para 30°" ], "Instant filtering": ["Filtragem instantânea"], "Intensity": ["Intensidade"], + "Intensity Radius is the radius at which the weight is distributed": [""], + "Intensity is the value multiplied by the weight to obtain the final weight": [ + "" + ], "Interpret Datetime Format Automatically": [ "Interpretar automaticamente o formato de data e hora" ], @@ -2699,13 +2499,14 @@ "Função numpy inválida: %(operator)s" ], "Invalid options for %(rolling_type)s: %(options)s": [ - "opções inválidas para %(rolling_type)s: %(opções)s" + "Opções inválidas para %(rolling_type)s: %(opções)s" ], "Invalid permalink key": ["Chave de permalink inválida"], + "Invalid reference to column: \"%(column)s\"": [""], "Invalid result type: %(result_type)s": [ "Tipo de resultado inválido: %(result_type)s" ], - "Invalid rolling_type: %(type)s": ["inválido rolling_type: %(type)s"], + "Invalid rolling_type: %(type)s": ["Inválido rolling_type: %(type)s"], "Invalid spatial point encountered: %s": [ "Encontrado um ponto espacial inválido: %s" ], @@ -2714,33 +2515,36 @@ "Inverse selection": ["Seleção inversa"], "Invert current page": ["Inverter a página atual"], "Is certified": ["É certificado"], - "Is dimension": ["é dimensão"], - "Is false": ["é falso"], - "Is favorite": ["é favorito"], - "Is filterable": ["é filtrável"], - "Is tagged": ["é marcado"], - "Is temporal": ["É temporal"], - "Is true": ["é verdadeiro"], + "Is dimension": ["É dimensão"], + "Is false": ["É falso"], + "Is favorite": ["É favorito"], + "Is filterable": ["É filtrável"], "Is not null": ["Não é nulo"], "Is null": ["É nulo"], + "Is tagged": ["É marcado"], + "Is temporal": ["É temporal"], + "Is true": ["É verdadeiro"], + "Issue 1000 - The dataset is too large to query.": [ + "Problema 1000 - O conjunto de dados é muito grande para ser consultado." + ], "Issue 1001 - The database is under an unusual load.": [ "Problema 1001 - O Banco de dados está sob uma carga incomum." ], "It’s not recommended to truncate axis in Bar chart.": [ "Não é recomendado truncar o eixo no gráfico de barras." ], - "Issue 1000 - The dataset is too large to query.": [ - "Problema 1000 - O conjunto de dados é muito grande para ser consultado." - ], "JAN": ["JAN"], "JSON": ["JSON"], "JSON Metadata": ["Metadados JSON"], "JSON metadata": ["Metadados JSON"], "JSON metadata is invalid!": ["Os metadados JSON são inválidos!"], + "JSON string containing additional connection configuration. This is used to provide connection information for systems like Hive, Presto and BigQuery which do not conform to the username:password syntax normally used by SQLAlchemy.": [ + "Cadeia de caracteres JSON contendo configuração de conexão adicional. Isso é usado para fornecer informações de conexão para sistemas como Hive, Presto e BigQuery, que não estão em conformidade com a sintaxe de nome de usuário:senha normalmente usada pelo SQLAlchemy." + ], "JUL": ["JUL"], "JUN": ["JUN"], "January": ["Janeiro"], - "JavaScript data interceptor": ["interceptador de dados JavaScript"], + "JavaScript data interceptor": ["Interceptador de dados JavaScript"], "JavaScript onClick href": ["JavaScript onClick href"], "JavaScript tooltip generator": [ "Gerador de dicas de ferramentas JavaScript" @@ -2749,30 +2553,30 @@ "Json list of the column names that should be read": [ "Lista Json dos nomes das colunas que devem ser lidas" ], - "Json list of the values that should be treated as null. Examples: [\"\"] for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only a single value": [ - "Lista Json dos valores que devem ser tratados como nulos. Exemplos: [\"\"] para cadeias de caracteres vazias, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Aviso: O banco de dados Hive suporta apenas um único valor" - ], "Json list of the column names that should be read. If not None, only these columns will be read from the file.": [ "Lista Json dos nomes das colunas que devem ser lidas. Se não for None, apenas estas colunas serão lidas do ficheiro." ], + "Json list of the values that should be treated as null. Examples: [\"\"] for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only a single value": [ + "Lista Json dos valores que devem ser tratados como nulos. Exemplos: [\"\"] para cadeias de caracteres vazias, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Aviso: O banco de dados Hive suporta apenas um único valor" + ], "Json list of the values that should be treated as null. Examples: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports only single value. Use [\"\"] for empty string.": [ "Lista Json dos valores que devem ser tratados como nulos. Exemplos: [\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Aviso: A base de dados Hive suporta apenas um único valor. Utilize [\"\"] para uma cadeia de caracteres vazia." ], "July": ["Julho"], "June": ["Junho"], - "Key": ["Chave"], "KPI": ["KPI"], "Keep control settings?": ["Manter configurações de controle?"], "Keep editing": ["Continue editando"], + "Key": ["Chave"], "Keys for table": ["Chaves da tabela"], "Kilometers": ["Quilômetros"], "LIMIT": ["LIMITE"], "Label": ["Rótulo"], + "Label Line": ["Linha de rótulos"], "Label Type": ["Tipo de rótulo"], "Label already exists": ["O rótulo já existe"], - "Label Line": ["Linha de rótulos"], - "Label position": ["Posição do rótulo"], "Label for your query": ["Rótulo para sua consulta"], + "Label position": ["Posição do rótulo"], "Label threshold": ["Rótulo limite"], "Labelling": ["Rotulagem"], "Labels": ["Rótulos"], @@ -2831,6 +2635,7 @@ ], "Limit reached": ["Limite atingido"], "Limit selector values": ["Valores limite do seletor"], + "Limit type": ["Tipo de limite"], "Limiting rows may result in incomplete data and misleading charts. Consider filtering or grouping source/target names instead.": [ "Limitar as linhas pode resultar em dados incompletos e gráficos errôneos. Em vez disso, considere filtrar ou agrupar nomes de origem/destino." ], @@ -2840,7 +2645,6 @@ "Limits the number of rows that get displayed.": [ "Limita o número de linhas exibidas." ], - "Limit type": ["Tipo de limite"], "Limits the number of series that get displayed. A joined subquery (or an extra phase where subqueries are not supported) is applied to limit the number of series that get fetched and rendered. This feature is useful when grouping by high cardinality column(s) though does increase the query complexity and cost.": [ "Limita o número de séries que são exibidas. Uma subconsulta unida (ou uma fase extra em que não há suporte para subconsultas) é aplicada para limitar o número de séries que são obtidas e renderizadas. Esse recurso é útil ao agrupar por coluna(s) de alta cardinalidade, embora aumente a complexidade e o custo da consulta." ], @@ -2881,8 +2685,8 @@ "Load a CSS template": ["Carregar um modelo CSS"], "Loaded data cached": ["Dados carregados em cache"], "Loaded from cache": ["Carregado da cache"], - "Loading...": ["Carregando..."], "Loading": ["Carregando"], + "Loading...": ["Carregando..."], "Locate the chart": ["Localize o gráfico"], "Log Scale": ["Escala Log"], "Log retention": ["Retenção de log"], @@ -2894,16 +2698,16 @@ "Escala logarítmica no eixo y secundário" ], "Logarithmic y-axis": ["Eixo y logarítmico"], - "Login with": ["Fazer login com"], "Login": ["Entrar"], + "Login with": ["Fazer login com"], "Logout": ["Sair"], "Logs": ["Logs"], "Long dashed": ["Traço longo"], "Longitude": ["Longitude"], - "Longitude & Latitude columns": ["Colunas de latitude e longitude"], - "Longitude of default viewport": ["Longitude da viewport padrão"], "Longitude & Latitude": ["Longitude e Latitude"], + "Longitude & Latitude columns": ["Colunas de latitude e longitude"], "Longitude and Latitude": ["Longitude e Latitude"], + "Longitude of default viewport": ["Longitude da viewport padrão"], "MAR": ["MAR"], "MAY": ["MAIO"], "MON": ["SEG"], @@ -2927,9 +2731,6 @@ "MapBox": ["MapBox"], "Mapbox": ["MapBox"], "March": ["Março"], - "Mark a column as temporal in \"Edit datasource\"modal": [ - "Marcar uma coluna como temporal em \"Editar fonte de dados\"modal" - ], "Margin": ["Margem"], "Mark a column as temporal in \"Edit datasource\" modal": [ "Marcar uma coluna como temporal no modal \"Edit datasource\"" @@ -2975,18 +2776,18 @@ "Method": ["Método"], "Metric": ["Métrica"], "Metric '%(metric)s' does not exist": ["Métrica '%(métric)s' não existe"], - "Metric name": ["Nome da métrica"], "Metric ascending": ["Métrica crescente"], - "Metric descending": ["Métrica decrescente"], "Metric assigned to the [X] axis": ["Métrica atribuída para o eixo [X]"], "Metric assigned to the [Y] axis": ["Métrica atribuída para o eixo [Y]"], "Metric change in value from `since` to `until`": [ "Alteração do valor da métrica de `desde` a `até`" ], + "Metric descending": ["Métrica decrescente"], "Metric factor change from `since` to `until`": [ "Alteração do fator métrico de `since` para `until`" ], "Metric for node values": ["Métrica para valores de nó"], + "Metric name": ["Nome da métrica"], "Metric name [%s] is duplicated": ["Métrica nome [%s] está duplicada"], "Metric percent change in value from `since` to `until`": [ "Métrica de variação percentual do valor de `desde` até `até`" @@ -3024,8 +2825,8 @@ ], "Middle": ["Médio"], "Midnight": ["Meia-noite"], - "Min": ["Min"], "Miles": ["Milhas"], + "Min": ["Min"], "Min Periods": ["Períodos mínimos"], "Min Width": ["Largura mínima"], "Min periods": ["Períodos mínimos"], @@ -3043,10 +2844,10 @@ "Minimum threshold in percentage points for showing labels.": [ "Limiar mínimo em pontos percentuais para mostrar as etiquetas." ], + "Minimum value": ["Valor mínimo"], "Minimum value for label to be displayed on graph.": [ "Valor mínimo para o rótulo a apresentar no gráfico." ], - "Minimum value": ["Valor mínimo"], "Minimum value on the gauge axis": ["Valor mínimo no eixo do medidor"], "Minor Split Line": ["Linha de divisão menor"], "Minute": ["Minuto"], @@ -3074,10 +2875,10 @@ "Multi-Variables": ["Multi-Variáveis"], "Multiple": ["Múltiplos"], "Multiple Line Charts": ["Gráficos de linhas múltiplas"], - "Multiple filtering": ["Filtragem múltipla"], "Multiple file extensions are not allowed for columnar uploads. Please make sure all files are of the same extension.": [ "Não são permitidas várias extensões de ficheiros para upload em colunas. Certifique-se de que todos os ficheiros têm a mesma extensão." ], + "Multiple filtering": ["Filtragem múltipla"], "Multiple formats accepted, look the geopy.points Python library for more details": [ "São aceitos vários formatos, consulte a biblioteca Python geopy.points para mais detalhes" ], @@ -3105,8 +2906,8 @@ "My column": ["Minha coluna"], "My metric": ["Minha métrica"], "N/A": ["N/D"], - "NOV": ["NOV"], "NOT GROUPED BY": ["NÃO AGRUPADO POR"], + "NOV": ["NOV"], "NOW": ["AGORA"], "NUMERIC": ["NUMÉRICO"], "Name": ["Nome"], @@ -3115,12 +2916,12 @@ "Name of table to be created from columnar data.": [ "Nome da tabela a ser criada a partir de dados colunares." ], - "Name of table to be created with CSV file": [ - "Nome da tabela a ser criada com o arquivo CSV" - ], "Name of table to be created from excel data.": [ "Nome da tabela a ser criada a partir dos dados do Excel." ], + "Name of table to be created with CSV file": [ + "Nome da tabela a ser criada com o arquivo CSV" + ], "Name of the column containing the id of the parent node": [ "Nome da coluna que contém o id do nó pai" ], @@ -3135,8 +2936,8 @@ "Precisa de ajuda? Aprenda como conectar seu banco de dados" ], "Need help? Learn more about": ["Precisa de ajuda? Saiba mais sobre"], - "Network error.": ["Erro de rede."], "Network error": ["Erro de rede"], + "Network error.": ["Erro de rede."], "New chart": ["Novo gráfico"], "New columns added: %s": ["Novas colunas adicionadas: %s"], "New dataset": ["Novo conjunto de dados"], @@ -3185,9 +2986,6 @@ "Nenhum banco de dados corresponde a sua pesquisa" ], "No description available.": ["Nenhuma descrição disponível."], - "No dimensions available for drill by": [ - "Sem dimensões disponível para drill by" - ], "No favorite charts yet, go click on stars!": [ "Ainda não há gráficos favoritos, clique nas estrelas!" ], @@ -3195,11 +2993,11 @@ "Ainda não há painéis favoritos, clique nas estrelas!" ], "No filter": ["Sem filtro"], + "No filter is selected.": ["Nenhum filtro selecionado."], "No filters": ["Sem filtros"], "No filters are currently added to this dashboard.": [ "Nenhum filtro foi adicionado a esse painel no momento." ], - "No filter is selected.": ["Nenhum filtro selecionado"], "No form settings were maintained": [ "Nenhuma configuração de formulário foi mantida" ], @@ -3273,11 +3071,11 @@ "Null or Empty": ["Nulo ou Vazio"], "Null values": ["Valores nulos"], "Number Format": ["Formato do número"], - "Number format": ["Formato numérico"], - "Number format string": ["String de formato de número"], "Number bounds used for color encoding from red to blue.\n Reverse the numbers for blue to red. To get pure red or blue,\n you can enter either only min or max.": [ "Limites numéricos utilizados para a codificação de cores de vermelho para azul.\n Inverta os números de azul para vermelho. Para obter vermelho ou azul puro,\n pode introduzir apenas o mínimo ou o máximo." ], + "Number format": ["Formato numérico"], + "Number format string": ["String de formato de número"], "Number of buckets to group data": [ "Número de compartimentos para agrupar dados" ], @@ -3299,13 +3097,12 @@ "Number of rows of file to read": [ "Número de linhas do arquivo a ser lido" ], - "Number of rows to skip at start of file": [ - "Número de linhas a serem ignoradas no início do arquivo" - ], - "Numerical range": ["Faixa numérica"], "Number of rows of file to read.": [ "Número de linhas do arquivo a ser lido." ], + "Number of rows to skip at start of file": [ + "Número de linhas a serem ignoradas no início do arquivo" + ], "Number of rows to skip at start of file.": [ "Número de linhas para pular no início do arquivo." ], @@ -3318,6 +3115,7 @@ "Number of steps to take between ticks when displaying the Y scale": [ "Número de passos a dar entre os tiques ao apresentar a escala Y" ], + "Numerical range": ["Faixa numérica"], "OCT": ["OUT"], "OK": ["OK"], "OVERWRITE": ["SOBRESCREVER"], @@ -3348,12 +3146,6 @@ "Um ou mais métricas estão duplicadas" ], "One or more metrics do not exist": ["Um ou mais métricas não existem"], - "One or more required fields are missing in the request. Please try again, and if the problem persists contact your administrator.": [ - "Um ou mais campos obrigatórios estão em falta no pedido. Tente novamente e, se o problema persistir, contate o seu administrador." - ], - "One ore more annotation layers failed loading.": [ - "Falha no carregamento de uma ou mais camadas de anotação." - ], "One or more parameters needed to configure a database are missing.": [ "Um ou mais parâmetros necessários para configurar um banco de dados estão faltando." ], @@ -3363,6 +3155,12 @@ "One or more parameters specified in the query are missing.": [ "Um ou mais parâmetros especificados na consulta estão faltando." ], + "One or more required fields are missing in the request. Please try again, and if the problem persists contact your administrator.": [ + "Um ou mais campos obrigatórios estão em falta no pedido. Tente novamente e, se o problema persistir, contate o seu administrador." + ], + "One ore more annotation layers failed loading.": [ + "Falha no carregamento de uma ou mais camadas de anotação." + ], "Only SELECT statements are allowed against this database.": [ "Somente comandos SELECT são permitidos nesse banco de dados." ], @@ -3370,12 +3168,6 @@ "Only `SELECT` statements are allowed": [ "Apenas instruções `SELECT` são permitidas" ], - "Only applies when \"Label Type\"is not set to a percentage.": [ - "Só se aplica quando \"Label Type\" (Tipo de rótulo) não está definido para uma porcentagem." - ], - "Only applies when \"Label Type\"is set to show values.": [ - "Só se aplica quando \"Label Type\" (Tipo de rótulo) está definido para mostrar valores." - ], "Only selected panels will be affected by this filter": [ "Apenas os painéis selecionados serão afetados por este filtro" ], @@ -3401,10 +3193,10 @@ "Open Datasource tab": ["Abrir aba fonte de dados"], "Open in SQL Lab": ["Abrir no SQL Lab"], "Open query in SQL Lab": ["Abrir consulta no SQL Lab"], - "Operator": ["Operador"], "Operate the database in asynchronous mode, meaning that the queries are executed on remote workers as opposed to on the web server itself. This assumes that you have a Celery worker setup as well as a results backend. Refer to the installation docs for more information.": [ "Operar o banco de dados em modo assíncrono, o que significa que as consultas são executadas em workers remotos e não no próprio servidor Web. Isso pressupõe que você tenha uma configuração do Celery worker, bem como um backend de resultados. Consulte os documentos de instalação para obter mais informações." ], + "Operator": ["Operador"], "Operator undefined for aggregator: %(name)s": [ "Operador indefinido para o agregador: %(name)s" ], @@ -3417,13 +3209,12 @@ "Optional d3 number format string": [ "String opcional de formato de número d3" ], - "Optional name of the data column.": ["Nome opcional da coluna de dados"], + "Optional name of the data column.": [ + "Nome opcional da coluna de dados." + ], "Optional warning about use of this metric": [ "Aviso opcional sobre o uso dessa métrica" ], - "Optionally add a detailed description": [ - "Opcionalmente, adicionar uma descrição detalhada" - ], "Options": ["Opções"], "Or choose from a list of other databases we support:": [ "Ou escolha a partir de uma lista de outros bancos de dados que suportamos:" @@ -3446,16 +3237,16 @@ "Outer Radius": ["Raio Exterior"], "Outer edge of Pie chart": ["Borda externa do gráfico de pizza"], "Overlap": ["Sobreposição"], - "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ - "Sobrepor uma ou mais séries temporais de um período de tempo relativo. Espera deltas de tempo relativos em linguagem natural (exemplo: 24 horas, 7 dias, 52 semanas, 365 dias). Há suporte para texto livre." - ], - "Override time range": ["Intervalo de tempo de substituição"], "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ "Sobrepor um ou mais séries temporais de um período de tempo relativo. Espera deltas de tempo relativo em linguagem natural (exemplo: 24 horas, 7 dias , 52 semanas , 365 dias). Livre texto é suportado." ], + "Overlay one or more timeseries from a relative time period. Expects relative time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 days). Free text is supported.": [ + "Sobrepor uma ou mais séries temporais de um período de tempo relativo. Espera deltas de tempo relativos em linguagem natural (exemplo: 24 horas, 7 dias, 52 semanas, 365 dias). Há suporte para texto livre." + ], "Overlays a hexagonal grid on a map, and aggregates data within the boundary of each cell.": [ "Sobrepõe uma grade hexagonal em um mapa e agrega dados dentro do limite de cada célula." ], + "Override time range": ["Intervalo de tempo de substituição"], "Overwrite": ["Sobrescrever"], "Overwrite & Explore": ["Sobrescrever & Explorar"], "Overwrite Dashboard [%s]": ["Substituir o Painel [%s]"], @@ -3475,13 +3266,12 @@ "Os proprietários são uma lista de usuários que podem alterar o painel. Pesquisável por nome ou nome de usuário." ], "Page length": ["Comprimento da página"], - "Paired t-test Table": [" Tabela teste-t pareado"], + "Paired t-test Table": ["Tabela teste-t pareado"], "Pandas resample method": ["Métodos de reamostragem do Pandas"], "Pandas resample rule": ["Regra de reamostragem do Pandas"], "Parallel Coordinates": ["Coordenadas paralelas"], "Parameter error": ["Erro de parâmetro"], "Parameters": ["Parâmetros"], - "Parameters ": ["Parâmetros "], "Parameters related to the view and perspective on the map": [ "Parâmetros relacionados com a visão e a perspectiva no mapa" ], @@ -3495,8 +3285,8 @@ "Partitions whose height to parent height proportions are below this value are pruned": [ "As partições cujas proporções entre a altura e a altura dos pais sejam inferiores a este valor são eliminadas" ], - "Paste Private Key here": ["Cole a chave privada aqui"], "Password": ["Senha"], + "Paste Private Key here": ["Cole a chave privada aqui"], "Paste content of service credentials JSON file here": [ "Colar aqui o conteúdo do arquivo JSON das credenciais de serviço" ], @@ -3576,22 +3366,17 @@ "Pie Chart": ["Gráfico de pizza"], "Pie shape": ["Formato de torta"], "Pin": ["Pino"], - "Pivoted": ["Pivotado"], - "Pivot Options": ["Opções de pivô"], "Pivot Table": ["Tabela Pivô"], - "Pivot Table (legacy)": ["Tabela Pivô (legado)"], "Pivot operation must include at least one aggregate": [ "A operação de pivotagem deve incluir pelo menos um agregado" ], "Pivot operation requires at least one index": [ "A operação de pivotagem requer em ao menos um índice" ], + "Pivoted": ["Pivotado"], "Pixel height of each series": ["Altura do pixel de cada série"], "Pixels": ["Pixels"], "Plain": ["Simples"], - "Please DO NOT overwrite the \"filter_scopes\"key.": [ - "Por favor , NÃO sobrescreva a chave \"filter_scopes \"." - ], "Please apply filter changes": ["Aplicar alterações ao filtro"], "Please check your query and confirm that all template parameters are surround by double braces, for example, \"{{ ds }}\". Then, try running your query again.": [ "Verifique a sua consulta e confirme se todos os parâmetros do modelo estão entre parênteses duplos, por exemplo, \"{{ ds }}\". Em seguida , tente executar sua consulta novamente." @@ -3605,29 +3390,20 @@ "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ "Verifique se existem erros de sintaxe nos parâmetros do modelo e certifique-se de que correspondem à consulta SQL e aos parâmetros de definição. Em seguida, tente executar a consulta novamente." ], - "Please choose at least one metric": [ - "Por favor escolher ao menos uma métrica" + "Please choose at least one groupby": [ + "Escolha pelo menos um agrupar por" ], "Please choose different metrics on left and right axis": [ "Escolha métricas diferentes no eixo esquerdo e direito" ], - "Please choose at least one 'Group by' field": [ - "Escolha pelo menos um campo 'Agrupar por'" - ], - "Please choose at least one groupby": [ - "Escolha pelo menos um agrupar por" - ], "Please confirm": ["Por favor confirme"], "Please confirm the overwrite values.": [ "Por favor, confirme os valores de substituição." ], - "Please filter set name": ["Favor filtrar o nome do conjunto"], - "Please reach out to the Chart Owner for assistance.": [ - "Entre em contato com o proprietário do gráfico para obter ajuda." - ], "Please enter a SQLAlchemy URI to test": [ "Por favor insira um URI SQLAlchemy para teste" ], + "Please filter set name": ["Favor filtrar o nome do conjunto"], "Please re-enter the password.": ["Por favor digite a senha novamente."], "Please re-export your file and try importing again": [ "Por favor reexportar seu arquivo e tente importar novamente" @@ -3653,45 +3429,33 @@ "Plots the individual metrics for each row in the data vertically and links them together as a line. This chart is useful for comparing multiple metrics across all of the samples or rows in the data.": [ "Plota os índices individuais para cada linha nos dados verticalmente e os vincula como uma linha. Este gráfico é útil para comparar várias métricas em todas as amostras ou linhas nos dados." ], - "Point Color": ["Cor do ponto"], "Plugins": ["Plugins"], + "Point Color": ["Cor do ponto"], "Point Radius": ["Raio do ponto"], "Point Radius Scale": ["Escala do Raio do ponto"], "Point Radius Unit": ["Unidade de raio do ponto"], - "Point Unit": ["Unidade de ponto"], "Point Size": ["Tamanho do ponto"], + "Point Unit": ["Unidade de ponto"], + "Point to your spatial columns": ["Apontar para as colunas espaciais"], "Points": ["Pontos"], + "Points and clusters will update as the viewport is being changed": [ + "Pontos e clusters serão atualizados conforme a janela de exibição mude" + ], "Polygon Column": ["Coluna de polígono"], "Polygon Encoding": ["Codificação de polígonos"], "Polygon Settings": ["Configurações de polígono"], + "Polyline": ["Polilinha"], + "Pop Tab Link": ["Pop Tab Link"], + "Popular": ["Popular"], "Populate \"Default value\" to enable this control": [ "Preencha \"Default value\" para ativar esse controle" ], + "Population age data": ["Dados sobre a idade da população"], "Port": ["Porta"], "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ "A porta %(port)s no nome do host \"%(hostname)s\" recusou a conexão." ], - "Pre-filter is required": ["É necessário um pré-filtro"], - "Predictive": ["Preditivo"], - "Predictive Analytics": ["Análise preditiva"], - "Previous Line": ["Linha anterior"], - "Primary": ["Primário"], - "Primary Metric": ["Métrica primária"], - "Primary key": ["Chave primária"], - "Point to your spatial columns": ["Apontar para as colunas espaciais"], - "Points and clusters will update as the viewport is being changed": [ - "Pontos e clusters serão atualizados conforme a janela de exibição mude" - ], - "Polyline": ["Polilinha"], - "Pop Tab Link": ["Pop Tab Link"], - "Popular": ["Popular"], - "Populate \"Default value\"to enable this control": [ - "Preencher \"Default value\"(valor padrão) para habilitar esse controle" - ], - "Population age data": ["Dados sobre a idade da população"], - "Port %(port)s on hostname \"%(hostname)s\"refused the connection.": [ - "Porta %(port)s ligada ao hostname \"%(hostname)s\"recusou a conexão." - ], + "Port out of range 0-65535": [""], "Position JSON": ["Posição JSON"], "Position of child node label on tree": [ "Posição do rótulo do nó filho na árvore" @@ -3707,15 +3471,22 @@ ], "Powered by Apache Superset": ["Feito por Apache Superset"], "Pre-filter available values": ["Valores disponíveis para o pré-filtro"], + "Pre-filter is required": ["É necessário um pré-filtro"], "Predicate applied when fetching distinct value to populate the filter control component. Supports jinja template syntax. Applies only when `Enable Filter Select` is on.": [ "Predicado aplicado quando se vai buscar um valor distinto para preencher o componente de controle do filtro. Suporta a sintaxe do modelo jinja. Aplica-se apenas quando `Ativar seleção de filtro` está ativado." ], + "Predictive": ["Preditivo"], + "Predictive Analytics": ["Análise preditiva"], "Prefix metric name with slice name": [ "Prefixo do nome da métrica com o nome da fatia" ], "Preview": ["Pré-visualização"], "Preview: `%s`": ["Pré-visualização: `%s`"], "Previous": ["Anterior"], + "Previous Line": ["Linha anterior"], + "Primary": ["Primário"], + "Primary Metric": ["Métrica primária"], + "Primary key": ["Chave primária"], "Primary or secondary y-axis": ["Eixo y primário ou secundário"], "Primary y-axis format": ["Formato do eixo y primário"], "Private Key": ["Chave privada"], @@ -3749,67 +3520,64 @@ "Quarter": ["Trimestre"], "Quarters %s": ["Trimestres %s"], "Queries": ["Consultas"], - "Query A": ["Consulta A"], - "Query B": ["Consulta B"], "Query": ["Consulta"], "Query %s: %s": ["Consulta %s: %s"], - "Query was stopped": ["A consulta foi interrompida"], + "Query A": ["Consulta A"], + "Query B": ["Consulta B"], "Query History": ["Histórico de consultas"], - "Query history": ["Histórico de consultas"], "Query does not exist": ["A consulta não existe"], + "Query history": ["Histórico de consultas"], + "Query imported": ["Consulta importada"], "Query in a new tab": ["Consulta em uma nova guia"], "Query is too complex and takes too long to run.": [ "A consulta é muito complexa e demora muito para executar." ], "Query mode": ["Modo de consulta"], "Query name": ["Nome da consulta"], - "Query imported": ["Consulta importada"], "Query preview": ["Pré-visualização da consulta"], + "Query was stopped": ["A consulta foi interrompida"], "Query was stopped.": ["A consulta foi parada."], "RANGE TYPE": ["TIPO DA FAIXA"], + "RGB Color": ["Cor RGB"], "Radar": ["Radar"], + "Radar Chart": ["Gráfico de Radar"], "Radar render type, whether to display 'circle' shape.": [ "Tipo de renderização do radar, se deve ser apresentada a forma de 'círculo'." ], - "RGB Color": ["Cor RGB"], - "Radar Chart": ["Gráfico de Radar"], "Radial": ["Radial"], "Radius in kilometers": ["Raio em quilômetros"], - "Radius in miles": ["Raio em milhas"], "Radius in meters": ["Raio em metros"], - "Range filter plugin using AntD": [ - "Plugin de filtro de intervalo usando AntD" - ], + "Radius in miles": ["Raio em milhas"], "Ran %s": ["Corrida %s"], "Range": ["Faixa"], "Range filter": ["Filtro de faixa"], - "Ranges": ["Faixas"], - "Ranking": ["Classificação"], - "Ratio": ["Proporção"], - "Ready to review filters in this dashboard?": [ - "Pronto para revisar os filtros desse painel?" + "Range filter plugin using AntD": [ + "Plugin de filtro de intervalo usando AntD" ], "Range labels": ["Rótulos de intervalo"], + "Ranges": ["Faixas"], "Ranges to highlight with shading": [ "Intervalos a destacar com sombreamento" ], + "Ranking": ["Classificação"], + "Ratio": ["Proporção"], "Raw records": ["Registros Brutos"], + "Ready to review filters in this dashboard?": [ + "Pronto para revisar os filtros desse painel?" + ], "Rebuild": ["Reconstruir"], "Recent activity": ["Atividade recente"], - "Recently modified": ["Modificado recentemente"], "Recently created charts, dashboards, and saved queries will appear here": [ "Os gráficos, painéis e consultas recentemente criados aparecerão aqui" ], "Recently edited charts, dashboards, and saved queries will appear here": [ "Os gráficos, painéis e consultas recentemente editados aparecerão aqui" ], + "Recently modified": ["Modificado recentemente"], "Recently viewed charts, dashboards, and saved queries will appear here": [ "Os gráficos, painéis e consultas recentemente visualizados aparecerão aqui" ], "Recents": ["Recentes"], - "Recipients are separated by \",\"or \";\"": [ - "Os destinatários são separados por \",\"ou \";\"" - ], "Recommended tags": ["Etiquetas recomendadas"], "Record Count": ["Contagem de registos"], "Rectangle": ["Retângulo"], @@ -3818,17 +3586,15 @@ ], "Redo the action": ["Refazer o ação"], "Reduce X ticks": ["Reduzir X ticks"], - "Refer to the": ["Consulte o"], "Reduces the number of X-axis ticks to be rendered. If true, the x-axis will not overflow and labels may be missing. If false, a minimum width will be applied to columns and the width may overflow into an horizontal scroll.": [ "Reduz o número de ticks do eixo X a serem processados. Se verdadeiro, o eixo X não transbordará e os rótulos podem estar ausentes. Se falso, será aplicada uma largura mínima às colunas e a largura pode transbordar para um deslocamento horizontal." ], + "Refer to the": ["Consulte o"], "Referenced columns not available in DataFrame.": [ "As colunas referenciadas não estão disponíveis no DataFrame." ], "Refetch results": ["Recuperar resultados"], - "refresh": ["Atualizar"], "Refresh": ["Atualizar"], - "REFRESH": ["ATUALIZAR"], "Refresh dashboard": ["Atualizar Painel"], "Refresh frequency": ["Atualizar Frequência"], "Refresh interval": ["Atualizar intervalo"], @@ -3840,20 +3606,17 @@ "Refreshing columns": ["Atualização de colunas"], "Regex": ["Regex"], "Relational": ["Relacional"], - "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter. Base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ - "Os filtros regulares adicionam cláusulas WHERE às consultas se um utilizador pertencer a uma função referenciada no filtro. Os filtros de base aplicam filtros a todas as consultas, excepto às funções definidas no filtro, e podem ser utilizados para definir o que os utilizadores podem ver se nenhum filtro RLS dentro de um grupo de filtros se aplicar a eles." - ], "Relationships between community channels": [ "Relações entre canais comunitários" ], - "Relative quantity": ["Quantidade relativa"], "Relative Date/Time": ["Data/hora relativa"], "Relative period": ["Período relativo"], + "Relative quantity": ["Quantidade relativa"], "Reload": ["Recarregar"], "Remind me in 24 hours": ["Lembre-me em 24 horas"], "Remove": ["Remover"], - "Remove invalid filters": ["Remover filtros inválidos"], "Remove cross-filter": ["Remover filtro cruzado"], + "Remove invalid filters": ["Remover filtros inválidos"], "Remove item": ["Remover item"], "Remove query from log": ["Remover consulta do log"], "Remove table preview": ["Remover a pré-visualização da tabela"], @@ -3861,18 +3624,26 @@ "Rename tab": ["Renomear Aba"], "Rendering": ["Renderização"], "Replace": ["Substituir"], + "Report": ["Relatório"], + "Report Name": ["Nome do relatório"], "Report Schedule could not be created.": [ - "não foi possível criar um agendamento do relatório." + "Não foi possível criar um agendamento do relatório." ], "Report Schedule could not be deleted.": [ "O agendamento do relatório pode não ser deletado." ], "Report Schedule could not be updated.": [ - "o agendamento do relatório pode não ser atualizado." + "O agendamento do relatório pode não ser atualizado." ], "Report Schedule delete failed.": [ "Falha na exclusão do agendamento do relatório." ], + "Report Schedule execution failed when generating a csv.": [ + "A execução do Report Schedule falhou ao gerar um arquivo csv." + ], + "Report Schedule execution failed when generating a dataframe.": [ + "A execução do Report Schedule falhou ao gerar um dataframe." + ], "Report Schedule execution failed when generating a screenshot.": [ "A execução do agendamento do relatório falhou ao gerar uma captura de tela." ], @@ -3892,20 +3663,13 @@ "Os parâmetros do agendamento de relatório são inválidos." ], "Report Schedule reached a working timeout.": [ - "o agendamento do relatório atingiu o tempo limite de trabalho." + "O agendamento do relatório atingiu o tempo limite de trabalho." ], "Report Schedule state not found": [ "Estado do agendamento do relatório não encontrado" ], + "Report a bug": ["Relatar um bug"], "Report failed": ["Relatório falhou"], - "Report": ["Relatório"], - "Report Name": ["Nome do relatório"], - "Report Schedule execution failed when generating a csv.": [ - "A execução do Report Schedule falhou ao gerar um arquivo csv." - ], - "Report Schedule execution failed when generating a dataframe.": [ - "A execução do Report Schedule falhou ao gerar um dataframe." - ], "Report name": ["Nome do relatório"], "Report schedule": ["Agendamento do relatório"], "Report schedule client error": [ @@ -3922,7 +3686,6 @@ "Report updated": ["Relatório atualizado"], "Reports": ["Relatórios"], "Repulsion": ["Repulsão"], - "Report a bug": ["Relatar um bug"], "Repulsion strength between nodes": ["Força de repulsão entre nós"], "Request Permissions": ["Pedir permissões"], "Request is incorrect: %(error)s": ["O pedido está incorreto: %(error)s"], @@ -3934,21 +3697,18 @@ "Os valores de controle necessários foram eliminados" ], "Resample": ["Reamostragem"], - "Resample method should in ": ["O método de reamostragem deve estar em "], "Resample operation requires DatetimeIndex": [ "A operação de reamostragem requer DatetimeIndex" ], "Reset": ["Redefinir"], "Reset state": ["Redefinir estado"], - "Resource was not found.": ["O recurso não foi encontrado."], - "Restore Filter": ["Restaurar filtro"], "Resource already has an attached report.": [ "Recurso já tem um relatório anexado." ], - "Results %s": ["Resultados %s"], - "Reverse Lat & Long": ["Lat. e Long. invertidos"], - "Reverse lat/long ": ["Lat/long invertido "], + "Resource was not found.": ["O recurso não foi encontrado."], + "Restore Filter": ["Restaurar filtro"], "Results": ["Resultados"], + "Results %s": ["Resultados %s"], "Results backend is not configured.": [ "O backend de resultados não está configurado." ], @@ -3956,20 +3716,20 @@ "O backend de resultados necessário para as consultas assíncronas não está configurado." ], "Return to specific datetime.": ["Retornar para data e hora específica."], - "Reverse lat/long": ["Inverter lat/long"], + "Reverse Lat & Long": ["Lat. e Long. invertidos"], + "Rich Tooltip": ["Dica avançada"], + "Rich tooltip": ["Dica avançada"], "Right": ["Direito"], "Right Axis Format": ["Formato do eixo direito"], "Right Axis Metric": ["Métrica do eixo direito"], "Right Axis chart(s)": ["Gráfico(s) do eixo direito"], - "Rich Tooltip": ["Dica avançada"], - "Rich tooltip": ["Dica avançada"], "Right axis metric": ["Métrica do eixo direito"], "Right to Left": ["Direita para Esquerda"], "Right value": ["Valor correto"], - "Role": ["Função"], "Right-click on a dimension value to drill to detail by that value.": [ "Clique com o botão direito do mouse em valor de dimensão para pesquisar detalhes por esse valor." ], + "Role": ["Função"], "Role %(r)s was extended to provide the access to the datasource %(ds)s": [ "A função %(r)s foi estendida para fornecer o acesso a fonte de dados %(ds)s" ], @@ -3994,14 +3754,13 @@ ], "Round cap": ["Tampa circular"], "Row": ["Linha"], - "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ - "Linha que contém os cabeçalhos a utilizar como nomes de colunas (0 é a primeira linha de dados). Deixar em branco se não existir uma linha de cabeçalho." - ], "Row Level Security": ["Segurança em nível de linha"], - "Row level security filter": ["Filtro de segurança ao nível da linha"], "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row": [ "Linha que contém os cabeçalhos a serem usados como nomes de coluna (0 é a primeira linha de dados). Deixe em branco se não houver linha de cabeçalho" ], + "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ + "Linha que contém os cabeçalhos a utilizar como nomes de colunas (0 é a primeira linha de dados). Deixar em branco se não existir uma linha de cabeçalho." + ], "Row limit": ["Limite de linhas"], "Rows": ["Linhas"], "Rows per page, 0 means no pagination": [ @@ -4010,6 +3769,7 @@ "Rows subtotal position": ["Posição do subtotal das linhas"], "Rows to Read": ["Linhas para Leitura"], "Rule": ["Regra"], + "Rule added": [""], "Run": ["Executar"], "Run a query to display query history": [ "Executar uma consulta para exibir o histórico de consultas" @@ -4059,7 +3819,6 @@ "Os parâmetros do túnel SSH são inválidos." ], "SSH Tunneling is not enabled": ["Túnel SSH não está ativado"], - "SSL Mode \"require\"will be used.": ["Modo SSL \"require\"será usado."], "SSL Mode \"require\" will be used.": [ "O modo SSL \"require\" será usado." ], @@ -4115,20 +3874,20 @@ "Saved expressions": ["Expressões salvas"], "Saved metric": ["Salvo métrica"], "Saved queries": ["Consultas salvas"], - "Saved query parameters are invalid.": [ - "Os parâmetros de consulta salvos são inválidos." - ], "Saved queries could not be deleted.": [ "Não foi possível eliminar as consultas salvas." ], "Saved query not found.": ["Consulta salva não encontrada."], + "Saved query parameters are invalid.": [ + "Os parâmetros de consulta salvos são inválidos." + ], "Scale and Move": ["Dimensionar e deslocar"], "Scale only": ["Dimensionar apenas"], "Scatter": ["Dispersão"], + "Scatter Plot": ["Gráfico de dispersão"], "Scatter Plot has the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ "O gráfico de dispersão tem o eixo horizontal em unidades lineares e os pontos estão ligados por ordem. Mostra uma relação estatística entre duas variáveis." ], - "Scatter Plot": ["Gráfico de dispersão"], "Schedule": ["Cronograma"], "Schedule a new email report": ["Agendar um novo relatório de e-mail"], "Schedule email report": ["Agendar relatório por e-mail"], @@ -4146,40 +3905,34 @@ "Schema, as used only in some databases like Postgres, Redshift and DB2": [ "Esquema, como usado apenas em alguns bancos de dados como Postgres, Redshift e DB2" ], - "Scope": ["Escopo"], "Schemas allowed for File upload": [ "Esquemas permitidos para upload de arquivos" ], + "Scope": ["Escopo"], "Scoping": ["Escopo"], - "Scroll down to the bottom to enable overwriting changes. ": [ - "Role para baixo até a parte inferior para permitir a substituição de alterações. " - ], "Scroll": ["Rolagem"], - "Scroll down to the bottom to enable overwriting changes.": [ - "Rolar até o fundo para habilitar substituição de alterações." - ], "Search": ["Pesquisar"], + "Search / Filter": ["Pesquisa / Filtro"], + "Search Metrics & Columns": ["Pesquisar Métricas e Colunas"], "Search all charts": ["Pesquisar todos os gráficos"], + "Search all filter options": ["Pesquisar todas as opções de filtro"], "Search box": ["Caixa de pesquisa"], + "Search by query text": ["Pesquisar consulta"], "Search columns": ["Colunas de pesquisa"], "Search in filters": ["Pesquisar em filtros"], "Search tables": ["Pesquisar tabelas"], + "Search...": ["Pesquisar..."], "Second": ["Segundo"], "Secondary": ["Secundário"], "Secondary Metric": ["Métrica secundária"], - "Seconds %s": ["Segundos %s"], - "See all %(tableName)s": ["Ver todos %(tableName)s"], - "Search / Filter": ["Pesquisa / Filtro"], - "Search Metrics & Columns": ["Pesquisar Métricas e Colunas"], - "Search all filter options": ["Pesquisar todas as opções de filtro"], - "Search by query text": ["Pesquisar consulta"], - "Search...": ["Pesquisar..."], "Secondary y-axis format": ["Formato do eixo y secundário"], "Secondary y-axis title": ["Título secundário do eixo y"], + "Seconds %s": ["Segundos %s"], "Secure Extra": ["Segurança Extra"], "Secure extra": ["Segurança Extra"], "Security": ["Segurança"], "Security & Access": ["Segurança e Acesso"], + "See all %(tableName)s": ["Ver todos %(tableName)s"], "See less": ["Veja menos"], "See more": ["Ver mais"], "See query details": ["Ver detalhes da consulta"], @@ -4191,6 +3944,9 @@ "Select a Columnar file to be uploaded to a database.": [ "Selecione um arquivo colunar a ser carregado em um banco de dados." ], + "Select a Excel file to be uploaded to a database.": [ + "Selecione um arquivo do Excel para ser carregado para um banco de dados." + ], "Select a column": ["Selecione uma coluna"], "Select a dashboard": ["Selecione um painel"], "Select a database table and create dataset": [ @@ -4200,10 +3956,6 @@ "Select a database to connect": [ "Selecione um banco de dados para se conectar" ], - "Select...": ["Selecione..."], - "Select a Excel file to be uploaded to a database.": [ - "Selecione um arquivo do Excel para ser carregado para um banco de dados." - ], "Select a database to upload the file to": [ "Selecione um banco de dados para enviar o arquivo" ], @@ -4230,15 +3982,9 @@ "Selecione o banco de dados ou o tipo para pesquisar bancos de dados" ], "Select database table": ["Selecione a tabela do banco de dados"], - "Select databases require additional fields to be completed in the Advanced tab to successfully connect the database. Learn what requirements your databases has ": [ - "Alguns bancos de dados exigem o preenchimento de campos adicionais na guia Avançado para que a conexão com o banco de dados seja bem-sucedida. Saiba quais são os requisitos de seus bancos de dados " - ], "Select dataset source": ["Selecione a fonte do conjunto de dados"], "Select file": ["Selecionar arquivo"], "Select filter": ["Selecionar filtro"], - "Select databases require additional fields to be completed in the Advanced tab to successfully connect the database. Learn what requirements your databases has": [ - "Alguns bancos de dados exigem o preenchimento de campos adicionais na aba Avançados para que a conexão com o banco de dados seja bem sucedida. Saiba quais são os requisitos dos seus bancos de dados" - ], "Select filter plugin using AntD": [ "Selecione plug-in de filtro usando AntD" ], @@ -4257,14 +4003,20 @@ ], "Select scheme": ["Selecionar esquema"], "Select start and end date": ["Selecionar data de início e fim"], + "Select subject": ["Selecionar assunto"], "Select table or type to search tables": [ "Selecione a tabela ou digite para pesquisar tabelas" ], "Select the Annotation Layer you would like to use.": [ "Selecione a camada de anotação que você gostaria de usar." ], + "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" + ], + "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" + ], "Select the geojson column": ["Selecione a coluna geojson"], - "Select subject": ["Selecionar assunto"], "Select the number of bins for the histogram": [ "Selecionar o número de caixas para o histograma" ], @@ -4282,12 +4034,12 @@ ], "September": ["Setembro"], "Sequential": ["Sequencial"], + "Series": ["Série"], "Series Height": ["Altura da série"], "Series Limit Sort By": ["Limite da série Ordenar por"], "Series Limit Sort Descending": ["Limite da série Ordenação decrescente"], "Series Order": ["Ordem da série"], "Series Style": ["Estilo da série"], - "Series": ["Série"], "Series chart type (line, bar etc)": [ "Tipo de Gráfico de série (linha , barra etc)" ], @@ -4300,15 +4052,15 @@ "Definir intervalo da atualização automática" ], "Set filter mapping": ["Definir o mapeamento de filtros"], + "Set up an email report": ["Configurar um relatório de e-mail"], "Sets the hierarchy levels of the chart. Each level is\n represented by one ring with the innermost circle as the top of the hierarchy.": [ "Define os níveis hierárquicos do gráfico. Cada nível é\n representado por um anel, sendo o círculo mais interno o topo da hierarquia." ], - "Set up an email report": ["Configurar um relatório de e-mail"], "Settings": ["Configurações"], "Settings for time series": ["Configurações para séries temporais"], + "Share": ["Compartilhar"], "Share chart by email": ["Compartilhar gráfico por e-mail"], "Share permalink by email": ["Compartilhar permalink por e-mail"], - "Share": ["Compartilhar"], "Shared query": ["Consulta compartilhada"], "Sheet Name": ["Nome da planilha"], "Shift + Click to sort by multiple columns": [ @@ -4333,17 +4085,14 @@ "Show Chart": ["Mostrar Gráfico"], "Show Column": ["Mostrar Coluna"], "Show Dashboard": ["Mostrar Painel"], - "Show Labels": ["Mostrar rótulos"], "Show Database": ["Mostrar Banco de dados"], + "Show Labels": ["Mostrar rótulos"], "Show Less...": ["Mostrar Menos..."], "Show Log": ["Mostrar log"], "Show Markers": ["Mostrar Marcadores"], "Show Metric": ["Mostrar Métricas"], "Show Metric Names": ["Mostrar nomes de métricas"], "Show Range Filter": ["Mostrar filtro de intervalo"], - "Show Row level security filter": [ - "Mostrar filtro de segurança a nível de linha" - ], "Show Saved Query": ["Mostrar Consulta Salva"], "Show Table": ["Mostrar Tabela"], "Show Timestamp": ["Mostrar Carimbo de data/hora"], @@ -4353,10 +4102,10 @@ "Show Value": ["Mostrar valor"], "Show Values": ["Mostrar valores"], "Show Y-axis": ["Mostrar eixo Y"], - "Show all columns": ["Mostrar todas as colunas"], "Show Y-axis on the sparkline. Will display the manually set min/max if set or min/max values in the data otherwise.": [ "Mostra o eixo Y na Sparkline. Exibirá os valores mínimo/máximo definidos manualmente, se definidos, ou os valores mínimo/máximo nos dados, caso contrário." ], + "Show all columns": ["Mostrar todas as colunas"], "Show all...": ["Mostrar tudo..."], "Show axis line ticks": ["Mostrar os tiques das linhas de eixo"], "Show cell bars": ["Mostrar barras de células"], @@ -4365,23 +4114,23 @@ "Show data points as circle markers on the lines": [ "Mostrar pontos de dados como marcadores de círculos nas linhas" ], + "Show empty columns": ["Mostrar colunas vazias"], "Show hierarchical relationships of data, with the value represented by area, showing proportion and contribution to the whole.": [ "Mostrar relações hierárquicas de dados, com o valor representado pela área, mostrando a proporção e a contribuição para o todo." ], - "Show empty columns": ["Mostrar colunas vazias"], "Show info tooltip": ["Mostrar dica de ferramentas de informação"], + "Show label": ["Exibir rótulo"], "Show labels when the node has children.": [ "Mostrar rótulos quando o nó tiver filhos." ], - "Show label": ["Exibir rótulo"], "Show legend": ["Mostrar legenda"], "Show less columns": ["Mostrar menos colunas"], "Show less...": ["Mostrar menos..."], "Show only my charts": ["Mostrar apenas meu gráficos"], - "Show password.": ["Mostrar senha"], + "Show password.": ["Mostrar senha."], "Show percentage": ["Mostrar porcentagem"], - "Show progress": ["Mostrar progresso"], "Show pointer": ["Mostrar ponteiro"], + "Show progress": ["Mostrar progresso"], "Show rows total": ["Mostrar total de linhas"], "Show series values on the chart": [ "Mostrar valores de série sobre o gráfico" @@ -4390,11 +4139,11 @@ "Show the value on top of the bar": [ "Mostrar o valor na parte superior da barra" ], + "Show time column": ["Mostrar coluna de tempo"], + "Show time grain dropdown": ["Exibir menu suspenso de grãos de tempo"], "Show total aggregations of selected metrics. Note that row limit does not apply to the result.": [ "Mostrar agregações totais de métricas selecionadas. Note que o limite de linhas não se aplica ao resultado." ], - "Show time column": ["Mostrar coluna de tempo"], - "Show time grain dropdown": ["Exibir menu suspenso de grãos de tempo"], "Show totals": ["Mostrar os totais"], "Showcases a single metric front-and-center. Big number is best used to call attention to a KPI or the one thing you want your audience to focus on.": [ "Apresenta uma única métrica em primeiro plano. Um número grande é melhor utilizado para chamar a atenção para um KPI ou para aquilo em que pretende que o seu público se concentre." @@ -4438,11 +4187,11 @@ "Sizes of vehicles": ["Tamanhos de veículos"], "Skip Blank Lines": ["Pular Linhas em branco"], "Skip Initial Space": ["Pular espaço inicial"], + "Skip Rows": ["Pular Linhas"], "Skip blank lines rather than interpreting them as Not A Number values": [ "Ignorar linhas em branco em vez de interpretá-las como valores não numéricos" ], "Skip spaces after delimiter": ["Ignorar espaços após o delimitador"], - "Skip Rows": ["Pular Linhas"], "Slug": ["Slug"], "Small": ["Pequeno"], "Small number format": ["Formato de número pequenoo"], @@ -4456,12 +4205,6 @@ "Sorry there was an error fetching database information: %s": [ "Lamentamos, mas ocorreu um erro ao obter as informações do banco de dados: %s" ], - "Sorry there was an error fetching saved charts:": [ - "Desculpe, houve um erro ao procurar gráficos salvos:" - ], - "Sorry there was an error fetching saved charts: ": [ - "Desculpe, houve um erro ao buscar os gráficos salvos: " - ], "Sorry, An error occurred": ["Desculpe, ocorreu um erro"], "Sorry, an error occurred": ["Desculpe, ocorreu um erro"], "Sorry, an unknown error occurred": [ @@ -4485,18 +4228,18 @@ "Sorry, there was an error saving this dashboard: %s": [ "Desculpe, houve um erro ao salvar este painel: %s" ], - "Sort": ["Classificar"], - "Sort Bars": ["Barras de classificação"], - "Sort Descending": ["Ordenação decrescente"], - "Sort Metric": ["Classificar métrica"], - "Sort Series Ascending": ["Ordenar séries em ordem crescente"], - "Sort Series By": ["Ordenar séries por"], "Sorry, your browser does not support copying.": [ "Desculpe, seu navegador não suporta cópias." ], "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!": [ "Desculpe, seu navegador não suporta cópias. Use Ctrl / Cmd + C!" ], + "Sort": ["Classificar"], + "Sort Bars": ["Barras de classificação"], + "Sort Descending": ["Ordenação decrescente"], + "Sort Metric": ["Classificar métrica"], + "Sort Series Ascending": ["Ordenar séries em ordem crescente"], + "Sort Series By": ["Ordenar séries por"], "Sort X Axis": ["Ordenar Eixo X"], "Sort Y Axis": ["Ordenar Eixo Y"], "Sort ascending": ["Ordenação crescente"], @@ -4504,12 +4247,12 @@ "Sort by": ["Ordenar por"], "Sort by %s": ["Ordenar por %s"], "Sort by metric": ["Classificar por métrica"], - "Sort columns by": ["Classificar colunas por"], "Sort columns alphabetically": ["Ordenar colunas alfabeticamente"], + "Sort columns by": ["Classificar colunas por"], "Sort descending": ["Ordenação decrescente"], "Sort filter values": ["Valores do filtro de classificação"], - "Sort rows by": ["Ordenar as linhas por"], "Sort metric": ["Ordenar métrica"], + "Sort rows by": ["Ordenar as linhas por"], "Sort series in ascending order": [ "Ordenar as séries por ordem crescente" ], @@ -4552,7 +4295,6 @@ "Stacked style": ["Estilos empilhados"], "Standard time series": ["Série temporal padrão"], "Start": ["Iniciar"], - "Start (Longitude, Latitude): ": ["Início (Longitude, Latitude): "], "Start Longitude & Latitude": ["Longitude e latitude iniciais"], "Start Review": ["Iniciar revisão"], "Start angle": ["Ângulo inicial"], @@ -4592,10 +4334,10 @@ "Strength to pull the graph toward center": [ "Força para puxar o gráfico para o centro" ], + "Stretched style": ["Estilo alongado"], "Strings used for sheet names (default is the first sheet).": [ "Cadeias de caracteres usadas para nomes de planilhas (o padrão é a primeira planilha)." ], - "Stretched style": ["Estilo alongado"], "Stroke Color": ["Cor do traço"], "Stroke Width": ["Largura do traço"], "Stroked": ["Tracejado"], @@ -4623,8 +4365,8 @@ "Sum of values over specified period": [ "Soma dos valores durante o período especificado" ], - "Sunburst": ["Sunburst"], "Sum values": ["Valores da soma"], + "Sunburst": ["Sunburst"], "Sunburst Chart": ["Gráfico Sunburst"], "Sunburst Chart v2": ["Gráfico Sunburst v2"], "Sunday": ["Domingo"], @@ -4641,7 +4383,6 @@ ], "Supported databases": ["Bancos de dados compatíveis"], "Survey Responses": ["Respostas da pesquisa"], - "Swap Groups and Columns": ["Trocar Grupos e Colunas"], "Swap dataset": ["Trocar conjunto de dados"], "Swap rows and columns": ["Trocar linhas e colunas"], "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ @@ -4656,6 +4397,9 @@ "Symbol size": ["Tamanho do símbolo"], "Sync columns from source": ["Sincronizar colunas da fonte"], "Syntax": ["Sintaxe"], + "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ + "" + ], "TABLES": ["TABELAS"], "TEMPORAL X-AXIS": ["EIXO X TEMPORAL"], "TEMPORAL_RANGE": ["INTERVALO TEMPORAL"], @@ -4704,14 +4448,11 @@ ], "Target": ["Alvo"], "Target Color": ["Cor do alvo"], - "Target category": ["Categoria de destino"], - "Target value": ["Valor alvo"], - "Take your data points, and group them into \"bins\"to see where the densest areas of information lie": [ - "Pegue nos seus pontos de dados e agrupe-os em \"bins\" para ver onde se encontram as áreas mais densas de informação" - ], "Target aspect ratio for treemap tiles.": [ "Alvo de aspecto pretendido para mosaicos de mapas de árvore." ], + "Target category": ["Categoria de destino"], + "Target value": ["Valor alvo"], "Template Name": ["Nome do Modelo"], "Template parameters": ["Parâmetros do Modelo"], "Templated link, it's possible to include {{ metric }} or other values coming from the controls.": [ @@ -4751,13 +4492,13 @@ ], "The annotation has been saved": ["A anotação foi salva"], "The annotation has been updated": ["A anotação foi atualizada"], + "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ + "A categoria dos nós de origem utilizada para atribuir cores. Se um nó estiver associado a mais do que uma categoria, apenas a primeira será utilizada." + ], "The chart datasource does not exist": [ "A fonte de dados do gráfico não existe" ], "The chart does not exist": ["O gráfico não existe"], - "The category of source nodes used to assign colors. If a node is associated with more than one category, only the first will be used.": [ - "A categoria dos nós de origem utilizada para atribuir cores. Se um nó estiver associado a mais do que uma categoria, apenas a primeira será utilizada." - ], "The classic. Great for showing how much of a company each investor gets, what demographics follow your blog, or what portion of the budget goes to the military industrial complex.\n\n Pie charts can be difficult to interpret precisely. If clarity of relative proportion is important, consider using a bar or other chart type instead.": [ "O clássico. Ótimo para mostrar quanto de uma empresa cada investidor recebe, que dados demográficos seguem o seu blog ou que parte do orçamento vai para o complexo industrial militar.\n\n Os gráficos de pizza podem ser difíceis de interpretar com precisão. Se a clareza da proporção relativa for importante, considere utilizar um gráfico de barras ou outro tipo de gráfico." ], @@ -4767,13 +4508,13 @@ "The color scheme for rendering chart": [ "O esquema de cores para a renderização do gráfico" ], + "The color scheme is determined by the related dashboard.\n Edit the color scheme in the dashboard properties.": [ + "O esquema de cores é determinado pelo painel relacionado.\n Edite o esquema de cores nas propriedades do painel." + ], "The column header label": ["O rótulo do cabeçalho da coluna"], "The column was deleted or renamed in the database.": [ "A coluna foi excluída ou renomeada no banco de dados." ], - "The color scheme is determined by the related dashboard.\n Edit the color scheme in the dashboard properties.": [ - "O esquema de cores é determinado pelo painel relacionado.\n Edite o esquema de cores nas propriedades do painel." - ], "The country code standard that Superset should expect to find in the [country] column": [ "O código de país padrão que o Superset deve esperar encontrar na coluna [country]" ], @@ -4787,26 +4528,26 @@ "The database columns that contains lines information": [ "As colunas do banco de dados que contêm informações sobre as linhas" ], - "The database is currently running too many queries.": [ - "O banco de dados está atualmente executando muitas consultas." - ], - "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ - "O banco de dados referenciado nesta consulta não foi encontrado. Contate um administrador para obter mais assistência ou tente novamente." - ], - "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ - "O conjunto de dados %s é ligado aos %s gráficos que aparecerem em %s painéis. Tem certeza que você deseja continuar? A eliminação do conjunto de dados irá quebrar esses objetos." - ], "The database could not be found": [ "Não foi possível encontrar o banco de dados" ], + "The database is currently running too many queries.": [ + "O banco de dados está atualmente executando muitas consultas." + ], "The database is under an unusual load.": [ "O banco de dados está sob uma carga incomum." ], + "The database referenced in this query was not found. Please contact an administrator for further assistance or try again.": [ + "O banco de dados referenciado nesta consulta não foi encontrado. Contate um administrador para obter mais assistência ou tente novamente." + ], "The database returned an unexpected error.": [ "O banco de dados retornou um erro inesperado." ], "The database was deleted.": ["O banco de dados foi excluído."], "The database was not found.": ["O banco de dados não foi encontrado."], + "The dataset %s is linked to %s charts that appear on %s dashboards. Are you sure you want to continue? Deleting the dataset will break those objects.": [ + "O conjunto de dados %s é ligado aos %s gráficos que aparecerem em %s painéis. Tem certeza que você deseja continuar? A eliminação do conjunto de dados irá quebrar esses objetos." + ], "The dataset associated with this chart no longer exists": [ "O conjunto de dados associado a este gráfico já não existe" ], @@ -4820,18 +4561,15 @@ "The datasource couldn't be loaded": [ "A fonte de dados não pode ser carregada" ], - "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ - "A descrição pode ser apresentada como cabeçalhos de widgets na visão do painel. Suporta markdown." - ], "The datasource is too large to query.": [ "A fonte de dados é muito grande para ser consultada." ], + "The description can be displayed as widget headers in the dashboard view. Supports markdown.": [ + "A descrição pode ser apresentada como cabeçalhos de widgets na visão do painel. Suporta markdown." + ], "The distance between cells, in pixels": [ "A distância entre células, em pixels" ], - "The following entries in `series_columns` are missing in `columns`: %(columns)s.": [ - "As seguintes entradas em `series_columns` estão faltando em `columns`: %(columns)s." - ], "The duration of time in seconds before the cache is invalidated. Set to -1 to bypass the cache.": [ "O período de tempo, em segundos, antes de o cache ser invalidado. Defina como -1 para ignorar o cache." ], @@ -4839,24 +4577,12 @@ "The engine_params object gets unpacked into the sqlalchemy.create_engine call.": [ "O objeto engine_params é descompactado na chamada sqlalchemy.create_engine." ], - "The following entries in `series_columns` are missing in `columns`: %(columns)s. ": [ - "As seguintes entradas em `series_columns` estão faltando em `columns`: %(columns)s. " - ], "The function to use when aggregating points into groups": [ "A função para usar quando agregar pontos em grupos" ], - "The host \"%(hostname)s\"might be down and can't be reached.": [ - "O host \"%(hostname)s\"pode ter caído e não pode ser alcançado." - ], - "The host \"%(hostname)s\"might be down, and can't be reached on port %(port)s.": [ - "O host \"%(hostname)s\"pode ter caído, e não pode ser alcançado na porta %(port)s." - ], "The host might be down, and can't be reached on the provided port.": [ "O host pode ter caído, e não pode ser alcançado na porta fornecida." ], - "The hostname \"%(hostname)s\"cannot be resolved.": [ - "O nome de host \"%(hostname)s\"não pode ser resolvido." - ], "The hostname provided can't be resolved.": [ "O nome do host oferecido não pode ser resolvido." ], @@ -4873,9 +4599,6 @@ "The maximum value of metrics. It is an optional configuration": [ "O valor máximo de métricas. Trata-se de uma configuração opcional" ], - "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ - "O número mínimo de períodos de rolagem necessários para mostrar um valor. Por exemplo, se você fizer uma soma cumulativa em 7 dias, talvez queira que seu \"Min Period\" seja 7, de modo que todos os pontos de dados mostrados sejam o total de 7 períodos. Isso ocultará o \"ramp up\" que ocorre nos primeiros 7 períodos" - ], "The metadata_params in Extra field is not configured correctly. The key %(key)s is invalid.": [ "O metadata_params no campo Extra não está configurado corretamente. A chave %(key)s é inválida." ], @@ -4885,8 +4608,8 @@ "The metadata_params object gets unpacked into the sqlalchemy.MetaData call.": [ "O objeto metadata_params é desempacotado na chamada sqlalchemy.MetaData." ], - "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\"to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\"taking place over the first 7 periods": [ - "O número mínimo de períodos de rolamento necessário para mostrar um valor. Por exemplo, se fizer uma soma cumulativa em 7 dias, pode querer que o seu \"Min Period\" seja 7, para que todos os pontos de dados apresentados sejam o total de 7 períodos. Isto ocultará a \"ramp up\" que ocorre nos primeiros 7 períodos" + "The minimum number of rolling periods required to show a value. For instance if you do a cumulative sum on 7 days you may want your \"Min Period\" to be 7, so that all data points shown are the total of 7 periods. This will hide the \"ramp up\" taking place over the first 7 periods": [ + "O número mínimo de períodos de rolagem necessários para mostrar um valor. Por exemplo, se você fizer uma soma cumulativa em 7 dias, talvez queira que seu \"Min Period\" seja 7, de modo que todos os pontos de dados mostrados sejam o total de 7 períodos. Isso ocultará o \"ramp up\" que ocorre nos primeiros 7 períodos" ], "The number color \"steps\"": ["A cor do número \"steps\""], "The number of hours, negative or positive, to shift the time column. This can be used to move UTC time to local time.": [ @@ -4913,36 +4636,15 @@ "The number of seconds before expiring the cache": [ "O número de segundos antes da expiração da cache" ], - "The parameter %(parameters)s in your query is undefined.": [ - "O parâmetro %(parâmeters)s em sua consulta é indefinido." - ], - "The password provided for username \"%(username)s\"is incorrect.": [ - "A senha fornecida para o nome de usuário \"%(username)s\"está incorreta." - ], - "The password provided when connecting to a database is not valid.": [ - "A senha fornecida ao se conectar a um banco de dados não é válida." - ], - "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\"and \"Certificate\"sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "As senhas dos bancos de dados abaixo são necessárias para importá-los junto com os gráficos. Observe que as seções \"Secure Extra\"e \"Certificate\"da configuração do banco de dados não estão presentes nos arquivos de exportação e devem ser adicionadas manualmente após a importação, caso sejam necessárias." - ], - "The passwords for the databases below are needed in order to import them together with the dashboards. Please note that the \"Secure Extra\"and \"Certificate\"sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "As senhas dos bancos de dados abaixo são necessárias para importá-los junto com os painéis. Observe que as seções \"Secure Extra\"e \"Certificate\"da configuração do banco de dados não estão presentes nos arquivos de exportação e devem ser adicionadas manualmente após a importação, caso sejam necessárias." - ], - "The passwords for the databases below are needed in order to import them together with the datasets. Please note that the \"Secure Extra\"and \"Certificate\"sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ - "As senhas dos bancos de dados abaixo são necessárias para importá-las junto com os conjuntos de dados. Observe que as seções \"Secure Extra\"e \"Certificate\"da configuração do banco de dados não estão presentes nos arquivos de exportação e devem ser adicionadas manualmente após a importação, caso sejam necessárias." - ], - "The pattern of timestamp format. For strings use": [ - "O padrão do formato do registro de data e hora. Para string, use" - ], - "The periodicity over which to pivot time. Users can provide\n \"Pandas\"offset alias.\n Click on the info bubble for more details on accepted \"freq\"expressions.": [ - "A periodicidade sobre a qual o tempo será dinamizado. Os usuários podem fornecer um alias de deslocamento \"Pandas\".\n Clique no balão de informações para obter mais detalhes sobre as expressões \"freq\" aceitas." - ], "The object does not exist in the given database.": [ "O objeto não existe no banco de dados fornecido." ], "The password provided for username \"%(username)s\" is incorrect.": [ "A senha fornecida para o nome de usuário \"%(username)s\" está incorreta." ], + "The password provided when connecting to a database is not valid.": [ + "A senha fornecida ao se conectar a um banco de dados não é válida." + ], "The passwords for the databases below are needed in order to import them together with the charts. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in export files, and should be added manually after the import if they are needed.": [ "As senhas dos bancos de dados abaixo são necessárias para importá-los junto com os gráficos. Observe que as seções \"Secure Extra\" e \"Certificate\" da configuração do banco de dados não estão presentes nos arquivos de exportação e devem ser adicionadas manualmente após a importação, caso sejam necessárias." ], @@ -4958,21 +4660,18 @@ "The passwords for the databases below are needed in order to import them. Please note that the \"Secure Extra\" and \"Certificate\" sections of the database configuration are not present in explore files and should be added manually after the import if they are needed.": [ "As senhas dos bancos de dados abaixo são necessárias para importá-los. Observe que as seções \"Secure Extra\" e \"Certificate\" da configuração do banco de dados não estão presentes nos arquivos de exploração e devem ser adicionadas manualmente após a importação, caso sejam necessárias." ], - "The pattern of timestamp format. For strings use ": [ - "O padrão do formato de registro de data e hora. Para strings, use " - ], "The periodicity over which to pivot time. Users can provide\n \"Pandas\" offset alias.\n Click on the info bubble for more details on accepted \"freq\" expressions.": [ "A periodicidade sobre a qual o tempo será dinamizado. Os usuários podem fornecer um alias de deslocamento \"Pandas\".\n Clique no balão de informações para obter mais detalhes sobre as expressões \"freq\" aceitas." ], "The pixel radius": ["O raio do pixel"], + "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ + "O ponteiro para uma tabela física (ou visualização). Lembre-se de que o gráfico está associado a essa tabela lógica Superset, e essa tabela lógica aponta para a tabela física referenciada aqui." + ], "The port is closed.": ["A porta está fechada."], "The port number is invalid.": ["O número da porta é inválido."], "The primary metric is used to define the arc segment sizes": [ "A métrica primária é usada para definir os tamanhos dos segmentos de arco" ], - "The pointer to a physical table (or view). Keep in mind that the chart is associated to this Superset logical table, and this logical table points the physical table referenced here.": [ - "O ponteiro para uma tabela física (ou visualização). Lembre-se de que o gráfico está associado a essa tabela lógica Superset, e essa tabela lógica aponta para a tabela física referenciada aqui." - ], "The provided `rows` argument is not a valid integer.": [ "O argumento `rows` fornecido não é um número inteiro válido." ], @@ -4991,7 +4690,6 @@ ], "The query has a syntax error.": ["A consulta tem um erro de sintaxe."], "The query returned no data": ["A consulta não retornou dados"], - "The report has been created": ["O relatório foi criado"], "The query was killed after %(sqllab_timeout)s seconds. It might be too complex, or the database might be under heavy load.": [ "A consulta foi encerrada após %(sqllab_timeout)s segundos. Ela pode ser muito complexa ou o banco de dados pode estar sob carga pesada." ], @@ -5001,9 +4699,16 @@ "The radius of individual points (ones that are not in a cluster). Either a numerical column or `Auto`, which scales the point based on the largest cluster": [ "O raio de pontos individuais (aqueles que não estão em um cluster). Uma coluna numérica ou `Auto`, que dimensiona o ponto com base no maior cluster" ], + "The report has been created": ["O relatório foi criado"], "The results backend no longer has the data from the query.": [ "O backend de resultados não tem mais os dados da consulta." ], + "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ + "Os resultados armazenados no backend foram armazenados em um formato diferente e não podem mais ser desserializados." + ], + "The rich tooltip shows a list of all series for that point in time": [ + "A dica de ferramenta avançada mostra uma lista de todas as séries para esse ponto no tempo" + ], "The schema \"%(schema)s\" does not exist. A valid schema must be used to run this query.": [ "O esquema \"%(schema)s\" não existe. Um esquema válido deve ser usado para executar essa consulta." ], @@ -5013,12 +4718,6 @@ "The schema was deleted or renamed in the database.": [ "O esquema foi excluído ou renomeado no banco de dados." ], - "The results stored in the backend were stored in a different format, and no longer can be deserialized.": [ - "Os resultados armazenados no backend foram armazenados em um formato diferente e não podem mais ser desserializados." - ], - "The rich tooltip shows a list of all series for that point in time": [ - "A dica de ferramenta avançada mostra uma lista de todas as séries para esse ponto no tempo" - ], "The size of the square cell, in pixels": [ "O tamanho da célula quadrada, em pixels" ], @@ -5028,33 +4727,30 @@ "The submitted payload has the incorrect format.": [ "O payload enviado tem o formato incorreto." ], + "The submitted payload has the incorrect schema.": [ + "O payload enviado tem o esquema incorreto." + ], "The table \"%(table)s\" does not exist. A valid table must be used to run this query.": [ "A tabela \"%(tabela)s\" não existe. Uma tabela válida deve ser usada para executar essa consulta." ], "The table \"%(table_name)s\" does not exist. A valid table must be used to run this query.": [ "A tabela \"%(table_name)s\" não existe. Uma tabela válida deve ser usada para executar essa consulta." ], - "The table was deleted or renamed in the database.": [ - "A tabela foi excluída ou renomeada no banco de dados." - ], - "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`,`1 day` or `56 weeks`": [ - "A granularidade de tempo para a visualização. Observe que você pode digitar e usar linguagem natural simples, como `10 segundos`, `1 dia` ou `56 semanas`" - ], - "The submitted payload has the incorrect schema.": [ - "O payload enviado tem o esquema incorreto." - ], - "The table \"%(table_name)s\"does not exist. A valid table must be used to run this query.": [ - "A tabela \"%(table_name)s\"não existe. Uma tabela válida deve ser usada para executar essa consulta." - ], "The table was created. As part of this two-phase configuration process, you should now click the edit button by the new table to configure it.": [ "A tabela foi criada. Como parte desse processo de configuração em duas fases, agora você deve clicar no botão de edição da nova tabela para configurá-la." ], + "The table was deleted or renamed in the database.": [ + "A tabela foi excluída ou renomeada no banco de dados." + ], "The time column for the visualization. Note that you can define arbitrary expression that return a DATETIME column in the table. Also note that the filter below is applied against this column or expression": [ "A coluna de tempo para a visualização. Observe que você pode definir uma expressão arbitrária que retorne uma coluna DATETIME na tabela. Observe também que o filtro abaixo é aplicado a essa coluna ou expressão" ], "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`, `1 day` or `56 weeks`": [ "A granularidade de tempo para a visualização. Observe que você pode digitar e usar linguagem natural simples, como `10 segundos`, `1 dia` ou `56 semanas`" ], + "The time granularity for the visualization. Note that you can type and use simple natural language as in `10 seconds`,`1 day` or `56 weeks`": [ + "A granularidade de tempo para a visualização. Observe que você pode digitar e usar linguagem natural simples, como `10 segundos`, `1 dia` ou `56 semanas`" + ], "The time granularity for the visualization. This applies a date transformation to alter your time column and defines a new time granularity. The options here are defined on a per database engine basis in the Superset source code.": [ "A granularidade de tempo para a visualização. Isso aplica uma transformação de data para alterar sua coluna de tempo e define uma nova granularidade de tempo. As opções aqui são definidas com base em cada mecanismo de banco de dados no código-fonte do Superset." ], @@ -5076,6 +4772,9 @@ "The user seems to have been deleted": [ "O usuário parece ter sido excluído" ], + "The user/password combination is not valid (Incorrect password for user).": [ + "" + ], "The username \"%(username)s\" does not exist.": [ "O nome de usuário \"%(username)s\" não existe." ], @@ -5101,16 +4800,19 @@ "There are no databases available": [ "Não há bancos de dados disponíveis" ], + "There are no filters in this dashboard.": [ + "Não há filtros neste painel." + ], "There are unsaved changes.": ["Há mudanças que não foram salvas."], "There is a syntax error in the SQL query. Perhaps there was a misspelling or a typo.": [ "Há um erro de sintaxe na consulta SQL. Talvez tenha havido um erro de ortografia ou de digitação." ], - "There are no filters in this dashboard.": [ - "Não há filtros neste painel." - ], "There is no chart definition associated with this component, could it have been deleted?": [ "Não há nenhuma definição de gráfico associada a esse componente; ele poderia ter sido excluído?" ], + "There is not enough space for this component. Try decreasing its width, or increasing the destination width.": [ + "Não há espaço suficiente para esse componente. Tente diminuir sua largura ou aumentar a largura do destino." + ], "There was an error fetching dataset": [ "Houve um erro ao buscar o conjunto de dados" ], @@ -5123,9 +4825,6 @@ "There was an error fetching the favorite status: %s": [ "Houve um erro ao buscar o status de favorito: %s" ], - "There is not enough space for this component. Try decreasing its width, or increasing the destination width.": [ - "Não há espaço suficiente para esse componente. Tente diminuir sua largura ou aumentar a largura do destino." - ], "There was an error fetching your recent activity:": [ "Ocorreu um erro ao buscar sua atividade recente:" ], @@ -5156,12 +4855,6 @@ "There was an issue deleting the selected charts: %s": [ "Houve um problema ao excluir os gráficos selecionados: %s" ], - "There was an issue deleting the selected dashboards: ": [ - "Houve um problema ao excluir os painéis selecionados: " - ], - "There was an issue deleting the selected dashboards:": [ - "Houve um problema ao excluir os painéis selecionados:" - ], "There was an issue deleting the selected datasets: %s": [ "Houve um problema ao excluir os conjuntos de dados selecionados: %s" ], @@ -5181,9 +4874,15 @@ "There was an issue duplicating the selected datasets: %s": [ "Houve um problema ao duplicar os conjuntos de dados selecionados: %s" ], + "There was an issue favoriting this dashboard.": [ + "Houve um problema ao favoritar esse painel." + ], "There was an issue fetching reports attached to this dashboard.": [ "Houve um problema na obtenção de relatórios anexados a esse painel." ], + "There was an issue fetching the favorite status of this dashboard.": [ + "Houve um problema ao buscar o status de favorito desse painel." + ], "There was an issue fetching your chart: %s": [ "Houve um problema ao buscar seu gráfico: %s" ], @@ -5196,12 +4895,6 @@ "There was an issue fetching your saved queries: %s": [ "Houve um problema ao buscar suas consultas salvas: %s" ], - "There was an issue favoriting this dashboard.": [ - "Houve um problema ao favoritar esse painel." - ], - "There was an issue fetching the favorite status of this dashboard.": [ - "Houve um problema ao buscar o status de favorito desse painel." - ], "There was an issue previewing the selected query %s": [ "Houve um problema ao visualizar a consulta selecionada %s" ], @@ -5238,9 +4931,6 @@ "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ "Pode ser um endereço IP (por exemplo, 127.0.0.1) ou um nome de domínio (por exemplo, mydatabase.com)." ], - "This chart emits/applies cross-filters to other charts that use the same dataset": [ - "Esse gráfico emite/aplica filtros cruzados a outros gráficos que usam o mesmo conjunto de dados" - ], "This chart has been moved to a different filter scope.": [ "Esse gráfico foi movido para um escopo de filtro diferente." ], @@ -5250,35 +4940,24 @@ "This chart might be incompatible with the filter (datasets don't match)": [ "Esse gráfico pode ser incompatível com o filtro (os conjuntos de dados não correspondem)" ], - "This chart type is not supported when using an unsaved query as a chart source.": [ - "Não há suporte para esse tipo de gráfico quando se usa uma consulta não salva como fonte de gráfico." - ], "This color scheme is being overridden by custom label colors.\n Check the JSON metadata in the Advanced settings": [ "Esse esquema de cores está sendo substituído por cores de rótulos personalizados.\n Verifique os metadados JSON nas configurações avançadas" ], - "This chart type is not supported when using an unsaved query as a chart source. ": [ - "Não há suporte para esse tipo de gráfico quando se usa uma consulta não salva como fonte de gráfico. " - ], "This column might be incompatible with current dataset": [ "Essa coluna pode ser incompatível com o conjunto de dados atual" ], - "This controls whether the \"time_range\" field from the current\n view should be passed down to the chart containing the annotation data.": [ - "Isso controla se o campo \"time_range\" da visualização atual deve ser passado para o gráfico que contém os dados da anotação." - ], - "This dashboard is currently auto refreshing; the next auto refresh will be in %s.": [ - "Este painel está sendo atualizado automaticamente no momento; a próxima atualização automática será em %s." - ], "This column must contain date/time information.": [ "Isso a coluna deve conter informações de data/hora." ], - "This dashboard is now hidden": ["Esse painel agora está oculto"], - "This dashboard is now published": ["Esse painel foi publicado"], - "This controls whether the \"time_range\"field from the current\n view should be passed down to the chart containing the annotation data.": [ - "Isso controla se o campo \"time_range\" da visualização atual\n deve ser passado para o gráfico que contém os dados da anotação." + "This controls whether the \"time_range\" field from the current\n view should be passed down to the chart containing the annotation data.": [ + "Isso controla se o campo \"time_range\" da visualização atual deve ser passado para o gráfico que contém os dados da anotação." ], "This controls whether the time grain field from the current\n view should be passed down to the chart containing the annotation data.": [ "Isso controla se o campo de grão de tempo da exibição atual\n deve ser passado para o gráfico que contém os dados de anotação." ], + "This dashboard is currently auto refreshing; the next auto refresh will be in %s.": [ + "Este painel está sendo atualizado automaticamente no momento; a próxima atualização automática será em %s." + ], "This dashboard is managed externally, and can't be edited in Superset": [ "Esse painel é gerenciado externamente e não pode ser editado no Superset" ], @@ -5288,6 +4967,8 @@ "This dashboard is not published, it will not show up in the list of dashboards. Click here to publish this dashboard.": [ "Esse painel não foi publicado, portanto não será exibido na lista de painéis. Clique aqui para publicar esse painel." ], + "This dashboard is now hidden": ["Esse painel agora está oculto"], + "This dashboard is now published": ["Esse painel foi publicado"], "This dashboard is published. Click to make it a draft.": [ "Este painel foi publicado. Clique para torná-lo um rascunho." ], @@ -5300,9 +4981,6 @@ "This dashboard was saved successfully.": [ "Este painel foi salvo com sucesso." ], - "This defines the level of the hierarchy": [ - "Isso define o nível da hierarquia" - ], "This database is managed externally, and can't be edited in Superset": [ "Esse banco de dados é gerenciado externamente e não pode ser editado no Superset" ], @@ -5318,6 +4996,9 @@ "This defines the element to be plotted on the chart": [ "Isso define o elemento a ser plotado no gráfico" ], + "This defines the level of the hierarchy": [ + "Isso define o nível da hierarquia" + ], "This fields acts a Superset view, meaning that Superset will run a query against this string as a subquery.": [ "Esses campos funcionam como uma visualização do Superset, o que significa que o Superset executará uma consulta com base nessa string como uma subconsulta." ], @@ -5352,7 +5033,6 @@ "This section allows you to configure how to use the slice\n to generate annotations.": [ "Esta seção permite configurar como usar o slice\n para gerar anotações." ], - "slice": ["fatia"], "This section contains options that allow for advanced analytical post processing of query results": [ "Esta seção contém opções que permitem o pós-processamento analítico avançado dos resultados da consulta" ], @@ -5365,9 +5045,6 @@ "This table already has a dataset": [ "Essa tabela já tem um conjunto de dados" ], - "This table already has a dataset associated with it. You can only associate one dataset with a table.\n": [ - "Essa tabela já tem um conjunto de dados associado a ela. Você só pode associar um conjunto de dados a uma tabela.\n" - ], "This value should be greater than the left target value": [ "Esse valor deve ser maior do que o valor-alvo esquerdo" ], @@ -5377,7 +5054,6 @@ "This visualization type does not support cross-filtering.": [ "Esse tipo de visualização não oferece suporte à filtragem cruzada." ], - "This was triggered by:": ["Isso foi desencadeado por:"], "This visualization type is not supported.": [ "Não há suporte para esse tipo de visualização." ], @@ -5396,7 +5072,7 @@ "Time Column": ["Coluna do tempo"], "Time Comparison": ["Comparação de tempo"], "Time Format": ["Formato de hora"], - "Time Grain": ["Granularidade"], + "Time Grain": ["Grão de tempo"], "Time Granularity": ["Granularidade de tempo"], "Time Lag": ["Atraso de tempo"], "Time Range": ["Intervalo de tempo"], @@ -5426,9 +5102,6 @@ "Time column \"%(col)s\" does not exist in dataset": [ "A coluna de tempo \"%(col)s\" não existe no conjunto de dados" ], - "Time column \"%(col)s\"does not exist in dataset": [ - "A Coluna de tempo \"%(col)s\"não existe no conjunto de dados" - ], "Time column filter plugin": ["Plug-in de filtro de coluna de tempo"], "Time column to apply dependent temporal filter to": [ "Coluna de tempo à qual aplicar o filtro temporal dependente" @@ -5450,64 +5123,42 @@ "Time grain missing": ["Grão do tempo ausente"], "Time granularity": ["Granularidade de tempo"], "Time in seconds": ["Tempo em segundos"], - "Time range": ["Intervalo de tempo"], "Time lag": ["Defasagem de tempo"], + "Time range": ["Intervalo de tempo"], + "Time ratio": ["Relação de tempo"], "Time related form attributes": [ "Atributos de formulário relacionados ao tempo" ], - "Time series columns": ["Colunas de séries temporais"], - "Time ratio": ["Relação de tempo"], "Time series": ["Séries temporais"], + "Time series columns": ["Colunas de séries temporais"], + "Time shift": ["Mudança de horário"], + "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ + "A cadeia de tempo é ambígua. Especifique [%(human_readable)s ago] ou [%(human_readable)s later]." + ], "Time-series Area Chart": ["Gráfico de área de séries temporais"], + "Time-series Area chart are similar to line chart in that they represent variables with the same scale, but area charts stack the metrics on top of each other. An area chart in Superset can be stream, stack, or expand.": [ + "O gráfico de área de série temporal é semelhante ao gráfico de linhas, pois representa variáveis com a mesma escala, mas os gráficos de área empilham as métricas umas sobre as outras. Um gráfico de área no Superset pode ser de fluxo, empilhamento ou expansão." + ], "Time-series Bar Chart": ["Gráfico de barras de séries temporais"], "Time-series Bar Chart (legacy)": [ "Gráfico de barras de séries temporais (legado)" ], + "Time-series Bar Charts are used to show the changes in a metric over time as a series of bars.": [ + "Os gráficos de barras de séries temporais são usados para mostrar as alterações em uma métrica ao longo do tempo como uma série de barras." + ], "Time-series Chart": ["Gráfico de séries temporais"], "Time-series Line Chart": ["Gráfico de linhas de séries temporais"], "Time-series Percent Change": ["Variação percentual da série temporal"], "Time-series Period Pivot": ["Pivô de período de série temporal"], "Time-series Scatter Plot": ["Gráfico de dispersão de séries temporais"], - "Time-series Smooth Line": ["Linha suave de séries temporais"], - "Time-series Stepped Line": ["Linha escalonada de série temporal"], - "Timestamp format": ["Formato de carimbo de data/hora"], - "Timezone selector": ["Seletor de fuso horário"], - "Tiny": ["Minúsculo"], - "Title Column": ["Coluna de título"], - "Title is required": ["O título é obrigatório"], - "Too many columns to filter": ["Muitas colunas para filtrar"], - "Tools": ["Ferramentas"], - "Tooltip sort by metric": [ - "Classificação da dica de ferramenta por métrica" - ], - "Tooltip time format": ["Formato de hora da dica de ferramenta"], - "Top": ["Topo"], - "Top left": ["Superior esquerdo"], - "Top right": ["Superior direito"], - "Total value": ["Valor total"], - "Tree Chart": ["Gráfico de árvore"], - "Tree orientation": ["Orientação da árvore"], - "Trend": ["Tendência"], - "Truncate Metric": ["Truncar métrica"], - "Truncate long cells to the \"min width\" set above": [ - "Truncar células longas para a \"min width\" definida acima" - ], - "Time shift": ["Mudança de horário"], - "Time string is ambiguous. Please specify [%(human_readable)s ago] or [%(human_readable)s later].": [ - "A cadeia de tempo é ambígua. Especifique [%(human_readable)s ago] ou [%(human_readable)s later]." - ], - "Time-series Area chart are similar to line chart in that they represent variables with the same scale, but area charts stack the metrics on top of each other. An area chart in Superset can be stream, stack, or expand.": [ - "O gráfico de área de série temporal é semelhante ao gráfico de linhas, pois representa variáveis com a mesma escala, mas os gráficos de área empilham as métricas umas sobre as outras. Um gráfico de área no Superset pode ser de fluxo, empilhamento ou expansão." - ], - "Time-series Bar Charts are used to show the changes in a metric over time as a series of bars.": [ - "Os gráficos de barras de séries temporais são usados para mostrar as alterações em uma métrica ao longo do tempo como uma série de barras." - ], "Time-series Scatter Plot has time on the horizontal axis in linear units, and the points are connected in order. It shows a statistical relationship between two variables.": [ "O gráfico de dispersão de séries temporais tem o tempo no eixo horizontal em unidades lineares, e os pontos são conectados em ordem. Ele mostra uma relação estatística entre duas variáveis." ], + "Time-series Smooth Line": ["Linha suave de séries temporais"], "Time-series Smooth-line is a variation of the line chart. Without angles and hard edges, Smooth-line sometimes looks smarter and more professional.": [ "A série temporal Smooth-line é uma variação do gráfico de linhas. Sem ângulos e bordas rígidas, o Smooth-line às vezes parece mais inteligente e profissional." ], + "Time-series Stepped Line": ["Linha escalonada de série temporal"], "Time-series Stepped-line graph (also called step chart) is a variation of line chart but with the line forming a series of steps between data points. A step chart can be useful when you want to show the changes that occur at irregular intervals.": [ "O Gráfico de linhas escalonadas de séries temporais (também chamado de gráfico de etapas) é uma variação do gráfico de linhas, mas com a linha formando uma série de etapas entre os pontos de dados. Um gráfico de etapas pode ser útil quando você deseja mostrar as alterações que ocorrem em intervalos irregulares." ], @@ -5516,11 +5167,16 @@ "O gráfico de linhas de séries temporais é usado para visualizar medições repetidas feitas em intervalos de tempo regulares. O gráfico de linhas é um tipo de gráfico que exibe informações como uma série de pontos de dados conectados por segmentos de linha reta. É um tipo básico de gráfico comum em muitos campos." ], "Timeout error": ["Erro de tempo limite"], + "Timestamp format": ["Formato de carimbo de data/hora"], "Timezone": ["Fuso horário"], "Timezone offset (in hours) for this datasource": [ "Deslocamento de fuso horário (em horas) para essa fonte de dados" ], + "Timezone selector": ["Seletor de fuso horário"], + "Tiny": ["Minúsculo"], "Title": ["Título"], + "Title Column": ["Coluna de título"], + "Title is required": ["O título é obrigatório"], "Title or Slug": ["Título ou Slug"], "To filter on a metric, use Custom SQL tab.": [ "Para filtrar em uma métrica, use a aba SQL personalizado." @@ -5528,30 +5184,42 @@ "To get a readable URL for your dashboard": [ "Para obter um URL legível para seu painel" ], + "Tools": ["Ferramentas"], "Tooltip": ["Dica"], + "Tooltip sort by metric": [ + "Classificação da dica de ferramenta por métrica" + ], + "Tooltip time format": ["Formato de hora da dica de ferramenta"], + "Top": ["Topo"], + "Top left": ["Superior esquerdo"], + "Top right": ["Superior direito"], "Top to Bottom": ["De cima para baixo"], "Total (%(aggfunc)s)": ["Total (%(aggfunc)s)"], "Total (%(aggregatorName)s)": ["Total (%(aggregatorName)s)"], + "Total value": ["Valor total"], "Total: %s": ["Total: %s"], "Totals": ["Totais"], "Track job": ["Rastrear o trabalho"], "Transformable": ["Transformável"], "Transparent": ["Transparente"], - "Transpose Pivot": ["Transpor Pivô"], "Transpose pivot": ["Transpor pivô"], + "Tree Chart": ["Gráfico de árvore"], "Tree layout": ["Layout da árvore"], + "Tree orientation": ["Orientação da árvore"], "Treemap": ["Mapa da árvore"], "Treemap (legacy)": ["Mapa da árvore (legado)"], + "Trend": ["Tendência"], "Triangle": ["Triângulo"], "Trigger Alert If...": ["Alerta de acionamento se..."], "Truncate Axis": ["Truncar eixo"], "Truncate Cells": ["Truncar Células"], + "Truncate Metric": ["Truncar métrica"], "Truncate Y Axis": ["Truncar Eixo Y"], "Truncate Y Axis. Can be overridden by specifying a min or max bound.": [ "Truncar Eixo Y. Pode ser substituído pela especificação de um limite mínimo ou máximo." ], - "Truncate long cells to the \"min width\"set above": [ - "Truncar células longas para a \"min width\"definida acima" + "Truncate long cells to the \"min width\" set above": [ + "Truncar células longas para a \"min width\" definida acima" ], "Truncates the specified date to the accuracy specified by the date unit.": [ "Trunca a data especificada com a precisão especificada pela unidade de data." @@ -5570,9 +5238,6 @@ "Type": ["Tipo"], "Type \"%s\" to confirm": ["Digite \"%s\" para confirmar"], "Type a value": ["Digite um valor"], - "UI Configuration": ["Configuração da interface do usuário"], - "URL Parameters": ["Parâmetros de URL"], - "Type \"%s\"to confirm": ["Digite \"%s\"para confirmar"], "Type a value here": ["Digite um valor aqui"], "Type is required": ["O tipo é obrigatório"], "Type of Google Sheets allowed": ["Tipo de Planilhas Google permitido"], @@ -5580,15 +5245,11 @@ "Tipo de comparação, diferença de valor ou porcentagem" ], "Type or Select [%s]": ["Digite ou Selecione [%s]"], + "UI Configuration": ["Configuração da interface do usuário"], "URL": ["URL"], + "URL Parameters": ["Parâmetros de URL"], "URL parameters": ["Parâmetros de URL"], "URL slug": ["Slug de URL"], - "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ - "Não é possível se conectar. Verifique se as seguintes funções estão definidas na conta de serviço: \"Visualizador de dados do BigQuery\", \"Visualizador de metadados do BigQuery\", \"Usuário do trabalho do BigQuery\" e as seguintes permissões estão definidas \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" - ], - "Unable to find such a holiday: [%(holiday)s]": [ - "Não foi possível encontrar esse feriado: [%(holiday)s]" - ], "Unable to add a new tab to the backend. Please contact your administrator.": [ "Não é possível adicionar uma nova guia ao backend. Entre em contato com o administrador." ], @@ -5598,12 +5259,17 @@ "Unable to connect to database \"%(database)s\".": [ "Não é possível se conectar ao banco de dados \"%(banco de dados)s\"." ], - "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\"and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ - "Não é possível se conectar. Verifique se as seguintes funções estão definidas na conta de serviço: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" e as seguintes permissões estão definidas \"bigquery.readsessions.create \", \"bigquery.readsessions.getData \"" + "Unable to connect. Verify that the following roles are set on the service account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery Job User\" and the following permissions are set \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"": [ + "Não é possível se conectar. Verifique se as seguintes funções estão definidas na conta de serviço: \"Visualizador de dados do BigQuery\", \"Visualizador de metadados do BigQuery\", \"Usuário do trabalho do BigQuery\" e as seguintes permissões estão definidas \"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" ], "Unable to create chart without a query id.": [ "Não é possível criar um gráfico sem um ID de consulta." ], + "Unable to decode value": [""], + "Unable to encode value": [""], + "Unable to find such a holiday: [%(holiday)s]": [ + "Não foi possível encontrar esse feriado: [%(holiday)s]" + ], "Unable to load columns for the selected table. Please select a different table.": [ "Não foi possível carregar colunas para a tabela selecionada. Selecione uma tabela diferente." ], @@ -5619,12 +5285,6 @@ "Unable to retrieve dashboard colors": [ "Não foi possível recuperar as cores do painel" ], - "Unable to upload CSV file \"%(filename)s\"to table \"%(table_name)s\"in database \"%(db_name)s\". Error message: %(error_msg)s": [ - "Não foi possível fazer upload do arquivo CSV \"%(filename)s\"para a tabela \"%(table_name)s\"no banco de dados \"%(db_name)s\". Mensagem de erro: %(error_msg)s" - ], - "Unable to upload Excel file \"%(filename)s\"to table \"%(table_name)s\"in database \"%(db_name)s\". Error message: %(error_msg)s": [ - "Não foi possível fazer upload do arquivo Excel \"%(filename)s\"para a tabela \"%(table_name)s\"no banco de dados \"%(db_name)s\". Mensagem de erro: %(error_msg)s" - ], "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in database \"%(db_name)s\". Error message: %(error_msg)s": [ "Não foi possível fazer upload do arquivo CSV \"%(filename)s\" para a tabela \"%(table_name)s\" no banco de dados \"%(db_name)s\". Mensagem de erro: %(error_msg)s" ], @@ -5644,7 +5304,6 @@ "Unexpected error occurred, please check your logs for details": [ "Ocorreu um erro inesperado, verifique os registros(logs) para obter detalhes" ], - "Unexpected error: ": ["Erro inesperado: "], "Unexpected time range: %s": ["Intervalo de tempo inesperado: %s"], "Unknown": ["Desconhecido"], "Unknown MySQL server host \"%(hostname)s\".": [ @@ -5683,6 +5342,7 @@ "Untitled Query": ["Consulta sem título"], "Untitled query": ["Consulta sem título"], "Update": ["Atualização"], + "Update chart": ["Atualizar Gráfico"], "Updating chart was stopped": [ "A atualização do gráfico foi interrompida" ], @@ -5708,9 +5368,6 @@ "Use %s to open in a new tab.": ["Use %s para abrir em uma nova guia."], "Use Area Proportions": ["Proporções de área de uso"], "Use Columns": ["Usar colunas"], - "Use \"%(menuName)s\"menu instead.": [ - "Em vez disso, use o menu \"%(menuName)s\"" - ], "Use a log scale": ["Use uma escala logarítmica"], "Use a log scale for the X-axis": [ "Use uma escala logarítmica para eixo X" @@ -5755,9 +5412,6 @@ "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ "Usado internamente para identificar o plug-in. Deve ser definido com o nome do pacote do package.json do plugin" ], - "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location.\n\n This chart is being deprecated and we recommend checking out Pivot Table V2 instead!": [ - "Usado para resumir um conjunto de dados, agrupando várias estatísticas ao longo de dois eixos. Exemplos: Números de vendas por região e mês, tarefas por status e responsável, usuários ativos por idade e local.\n\n Este gráfico está sendo descontinuado e recomendamos que você consulte a Tabela dinâmica V2!" - ], "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ "Usado para resumir um conjunto de dados, agrupando várias estatísticas ao longo de dois eixos. Exemplos: Números de vendas por região e mês, tarefas por status e responsável, usuários ativos por idade e local. Não é a visualização mais impressionante visualmente, mas é altamente informativa e versátil." ], @@ -5774,6 +5428,9 @@ ], "User query": ["Consulta do usuário"], "Username": ["Nome de usuário"], + "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ + "" + ], "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ "Usa um medidor para mostrar o progresso de uma métrica em direção a uma meta. A posição do mostrador representa o progresso e o valor do terminal no medidor representa o valor-alvo." ], @@ -5781,16 +5438,16 @@ "Usa círculos para visualizar o fluxo de dados em diferentes estágios de um sistema. Passe o mouse sobre caminhos individuais na visualização para entender os estágios de um valor. Útil para funis e pipelines de visualização de vários estágios e vários grupos." ], "Value": ["Valor"], + "Value Domain": ["Domínio de Valor"], "Value Format": ["Formato do valor"], + "Value bounds": ["Limites de valor"], "Value format": ["Formato do valor"], "Value is required": ["O valor é necessário"], "Value must be greater than 0": ["O valor deve ser maior que 0"], - "Values dependent on": ["Valores dependentes de"], - "Value Domain": ["Domínio de Valor"], - "Value bounds": ["Limites de valor"], "Values are dependent on other filters": [ "Os valores dependem de outros filtros" ], + "Values dependent on": ["Valores dependentes de"], "Values selected in other filters will affect the filter options to only show relevant values": [ "Os valores selecionados em outros filtros afetarão as opções de filtro para mostrar apenas os valores relevantes" ], @@ -5887,6 +5544,9 @@ "Warning": ["Advertência"], "Warning Message": ["Mensagem de aviso"], "Warning!": ["Atenção!"], + "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ + "Atenção! Alterar o conjunto de dados pode quebrar o gráfico se os metadados não existirem." + ], "Was unable to check your query": [ "Não foi possível verificar sua consulta" ], @@ -5902,15 +5562,6 @@ "We can't seem to resolve the column \"%(column_name)s\" at line %(location)s.": [ "Parece que não conseguimos resolver a coluna \"%(column_name)s\" na linha %(location)s." ], - "Warning! Changing the dataset may break the chart if the metadata does not exist.": [ - "Atenção! Alterar o conjunto de dados pode quebrar o gráfico se os metadados não existirem." - ], - "We are unable to connect to your database. Click \"See more\"for database-provided information that may help troubleshoot the issue.": [ - "Não conseguimos nos conectar ao seu banco de dados. Clique em \"See more \" para obter informações fornecidas pelo banco de dados que podem ajudar a solucionar o problema" - ], - "We can't seem to resolve the column \"%(column_name)s\"at line %(location)s.": [ - "Parece que não conseguimos resolver a coluna \"%(column_name)s\"na linha %(location)s." - ], "We have the following keys: %s": ["Temos as seguintes chaves: %s"], "We were unable to active or deactivate this report.": [ "Não foi possível ativar ou desativar esse relatório." @@ -5924,25 +5575,19 @@ "Web": ["Rede"], "Wednesday": ["Quarta-feira"], "Week": ["Semana"], - "Weekly Report": ["Relatório semanal"], - "Weeks %s": ["Semanas %s"], - "Weight": ["Peso"], - "We’re having trouble loading these results. Queries are set to timeout after %s second.": [ - "Estamos tendo problemas para carregar esses resultados. As consultas estão definidas para atingir o tempo limite após %s segundos." - ], - "We’re having trouble loading this visualization. Queries are set to timeout after %s second.": [ - "Estamos tendo problemas para carregar essa visualização. As consultas estão definidas para atingir o tempo limite após %s segundos." - ], "Week ending Saturday": ["Semana terminando no Sábado"], - "What should happen if the table already exists": [ - "O que deve acontecer se a tabela já existir" - ], "Week starting Monday": ["Semana começando na segunda-feira"], "Week starting Sunday": ["Semana começando no domingo"], "Week_ending Sunday": ["Domingo de fim de semana"], + "Weekly Report": ["Relatório semanal"], "Weekly Report for %s": ["Relatório semanal para %s"], "Weekly seasonality": ["Sazonalidade semanal"], + "Weeks %s": ["Semanas %s"], + "Weight": ["Peso"], "What should be shown on the label?": ["O que deve constar no rótulo?"], + "What should happen if the table already exists": [ + "O que deve acontecer se a tabela já existir" + ], "When `Calculation type` is set to \"Percentage change\", the Y Axis Format is forced to `.1%`": [ "Quando `Calculation type` é definido como \"Percentage change\", o formato do eixo Y é forçado a `.1%`" ], @@ -6003,30 +5648,6 @@ "Whether to apply filter when items are clicked": [ "Se o filtro deve ser aplicado quando os itens são clicados" ], - "Word Rotation": ["Rotação de palavras"], - "Width of the confidence interval. Should be between 0 and 1": [ - "Largura do intervalo de confiança. Deve estar entre 0 e 1" - ], - "White": ["Branco"], - "Whether to sort descending or ascending if a series limit is present": [ - "Se a classificação será decrescente ou crescente se houver um limite de série" - ], - "Whether to truncate metrics": ["Se as métricas devem ser truncadas"], - "Whether to sort ascending or descending on the base Axis.": [ - "Se a classificação deve ser ascendente ou descendente no eixo base." - ], - "Whether to make the grid 3D": ["Se a grade deve ser 3D"], - "Whether to include the percentage in the tooltip": [ - "Se a porcentagem deve ser incluída na dica de ferramenta" - ], - "Whether to include a client-side search box": [ - "Se deve incluir uma caixa de pesquisa no lado do cliente" - ], - "Whether to fill the objects": ["Se os objetos devem ser preenchidos"], - "Whether to display the stroke": ["Se o traço deve ser exibido"], - "Whether to display the time range interactive selector": [ - "Se deve ser exibido o seletor interativo de intervalo de tempo" - ], "Whether to colorize numeric values by if they are positive or negative": [ "Se os valores numéricos devem ser coloridos de acordo com o fato de serem positivos ou negativos" ], @@ -6064,6 +5685,10 @@ "Whether to display the numerical values within the cells": [ "Se deseja exibir os valores numéricos dentro das células" ], + "Whether to display the stroke": ["Se o traço deve ser exibido"], + "Whether to display the time range interactive selector": [ + "Se deve ser exibido o seletor interativo de intervalo de tempo" + ], "Whether to display the timestamp": [ "Se deve ser exibido o registro de data e hora" ], @@ -6076,15 +5701,23 @@ "Whether to enable node dragging in force layout mode.": [ "Se deve permitir o arrastamento de nós no modo de layout forçado." ], + "Whether to fill the objects": ["Se os objetos devem ser preenchidos"], "Whether to ignore locations that are null": [ "Se devem ser ignorados os locais que são nulos" ], + "Whether to include a client-side search box": [ + "Se deve incluir uma caixa de pesquisa no lado do cliente" + ], "Whether to include a time filter": [ "Se deve incluir um filtro de tempo" ], + "Whether to include the percentage in the tooltip": [ + "Se a porcentagem deve ser incluída na dica de ferramenta" + ], "Whether to include the time granularity as defined in the time section": [ "Se deve incluir a granularidade de tempo conforme definido na seção de tempo" ], + "Whether to make the grid 3D": ["Se a grade deve ser 3D"], "Whether to make the histogram cumulative": [ "Se o histograma deve ser cumulativo" ], @@ -6111,25 +5744,37 @@ "Whether to show the split lines on the axis": [ "Se devem ser mostradas as linhas divididas no eixo" ], + "Whether to sort ascending or descending on the base Axis.": [ + "Se a classificação deve ser ascendente ou descendente no eixo base." + ], "Whether to sort descending or ascending": [ "Se a classificação deve ser descendente ou ascendente" ], + "Whether to sort descending or ascending if a series limit is present": [ + "Se a classificação será decrescente ou crescente se houver um limite de série" + ], "Whether to sort results by the selected metric in descending order.": [ "Se os resultados devem ser classificados pela métrica selecionada em ordem decrescente." ], "Whether to sort tooltip by the selected metric in descending order.": [ "Se a dica de ferramenta deve ser classificada pela métrica selecionada em ordem decrescente." ], + "Whether to truncate metrics": ["Se as métricas devem ser truncadas"], "Which country to plot the map for?": ["Para qual país traçar o mapa?"], "Which relatives to highlight on hover": [ "Qual parentes para destaque sobre passe o mouse" ], "Whisker/outlier options": ["Opções de Whisker/outlier"], + "White": ["Branco"], "Width": ["Largura"], + "Width of the confidence interval. Should be between 0 and 1": [ + "Largura do intervalo de confiança. Deve estar entre 0 e 1" + ], "Width of the sparkline": ["Largura do brilho"], "Window must be > 0": ["A janela deve ser > 0"], "With a subheader": ["Com um subtítulo"], "Word Cloud": ["Nuvem de palavras"], + "Word Rotation": ["Rotação de palavras"], "Working": ["Trabalhando"], "Working timeout": ["Tempo limite de trabalho"], "World Map": ["Mapa do Mundo"], @@ -6139,10 +5784,10 @@ "Write a handlebars template to render the data": [ "Escreva um modelo de guidão para renderizar os dados" ], - "Write dataframe index as a column.": [ - "Escreve o índice do dataframe como uma coluna." - ], "Write dataframe index as a column": [ + "Escreve o índice do dataframe como uma coluna" + ], + "Write dataframe index as a column.": [ "Escreve o índice do dataframe como uma coluna." ], "X AXIS TITLE BOTTOM MARGIN": ["MARGEM INFERIOR DO TÍTULO DO EIXO X"], @@ -6174,17 +5819,16 @@ "Y bounds": ["Limites Y"], "Y-Axis Sort Ascending": ["Classificação do eixo Y em ordem crescente"], "Y-Axis Sort By": ["Classificação do Eixo Y Por"], + "Y-axis": ["Eixo Y"], "Y-axis bounds": ["Eixo Y limites"], "YScale Interval": ["Intervalo da escala Y"], "Year": ["Ano"], - "Y-axis": ["Eixo Y"], "Year (freq=AS)": ["Ano (freq=AS)"], - "Years %s": ["Anos %s"], "Yearly seasonality": ["Sazonalidade anual"], + "Years %s": ["Anos %s"], "Yes": ["Sim"], "Yes, cancel": ["Sim, cancelar"], "Yes, overwrite changes": ["Sim, sobrescrever mudanças"], - "You can": ["É possível"], "You are importing one or more charts that already exist. Overwriting might cause you to lose some of your work. Are you sure you want to overwrite?": [ "Você está importando um ou mais gráficos que já existem. A substituição pode fazer com que você perca parte do seu trabalho. Tem certeza de que deseja substituir?" ], @@ -6200,6 +5844,7 @@ "You are not authorized to see this query. If you think this is an error, please reach out to your administrator.": [ "Você não está autorizado a ver esta consulta. Se achar que isso é um erro, entre em contato com seu administrador." ], + "You can": ["É possível"], "You can add the components in the": [ "Você pode adicionar o componentes no" ], @@ -6227,23 +5872,11 @@ "You cannot use 45° tick layout along with the time range filter": [ "Não é possível usar o layout de ticks de 45° junto com o filtro de intervalo de tempo" ], - "You do not have permission to edit this %s": [ - "Você não tem permissão para editar este %s" - ], "You cannot use [Columns] in combination with [Group By]/[Metrics]/[Percentage Metrics]. Please choose one or the other.": [ "Você não pode usar [Columns] em combinação com [Group By]/[Metrics]/[Percentage Metrics]. Escolha um ou outro." ], - "You don't have access to this chart.": [ - "Você não tem acesso a esse gráfico." - ], - "You don't have access to this dashboard.": [ - "Você não tem acesso a esse painel." - ], - "You don't have access to this dataset.": [ - "Você não tem acesso a esse conjunto de dados." - ], - "You don't have access to this embedded dashboard config.": [ - "Você não tem acesso a essa configuração de painel incorporado." + "You do not have permission to edit this %s": [ + "Você não tem permissão para editar este %s" ], "You do not have permission to edit this chart": [ "Você não tem permissão para editar este gráfico" @@ -6257,12 +5890,21 @@ "You do not have permissions to edit this dashboard.": [ "Você não tem permissão para editar esse painel." ], + "You don't have access to this chart.": [ + "Você não tem acesso a esse gráfico." + ], + "You don't have access to this dashboard.": [ + "Você não tem acesso a esse painel." + ], + "You don't have access to this dataset.": [ + "Você não tem acesso a esse conjunto de dados." + ], + "You don't have access to this embedded dashboard config.": [ + "Você não tem acesso a essa configuração de painel incorporado." + ], "You don't have any favorites yet!": [ "Você ainda não tem nenhum favorito!" ], - "You don't have the rights to alter this title.": [ - "Você não tem o direito de alterar esse título." - ], "You don't have permission to modify the value.": [ "Você não tem permissão para modificar o valor." ], @@ -6275,6 +5917,9 @@ "You don't have the rights to alter this dashboard": [ "Você não tem o direito de alterar esse painel de controle" ], + "You don't have the rights to alter this title.": [ + "Você não tem o direito de alterar esse título." + ], "You don't have the rights to create a chart": [ "Você não tem o direito de criar um gráfico" ], @@ -6288,9 +5933,6 @@ "Você não tem permissão para aprovar esta solicitação" ], "You have removed this filter.": ["Você removeu esse filtro."], - "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ - "Você atualizou os valores no painel de controle, mas o gráfico não foi atualizado automaticamente. Execute a consulta clicando no botão \"Atualizar gráfico\" ou" - ], "You have unsaved changes.": ["Você tem alterações não salvas."], "You have used all %(historyLength)s undo slots and will not be able to fully undo subsequent actions. You may save your current state to reset the history.": [ "Você usou todos os espaços de desfazer de %(historyLength) e não poderá desfazer totalmente as ações subsequentes. Você pode salvar seu estado atual para redefinir o histórico." @@ -6307,8 +5949,8 @@ "You need to configure HTML sanitization to use CSS": [ "Você precisa configurar a sanitização de HTML para usar CSS" ], - "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\"button or": [ - "Você atualizou os valores no painel de controle, mas o gráfico não foi atualizado automaticamente. Execute a consulta clicando no botão \"Update chart\" ou" + "You updated the values in the control panel, but the chart was not updated automatically. Run the query by clicking on the \"Update chart\" button or": [ + "Você atualizou os valores no painel de controle, mas o gráfico não foi atualizado automaticamente. Execute a consulta clicando no botão \"Atualizar gráfico\" ou" ], "You've changed datasets. Any controls with data (columns, metrics) that match this new dataset have been retained.": [ "Você alterou os conjuntos de dados. Todos os controles com dados (colunas, métricas) que correspondem a esse novo conjunto de dados foram mantidos." @@ -6328,10 +5970,10 @@ "Your query has been scheduled. To see details of your query, navigate to Saved queries": [ "Sua consulta foi agendada. Para ver detalhes de sua consulta, navegue até Consultas salvas" ], - "Your query was saved": ["Sua consulta foi salva"], "Your query was not properly saved": [ "Sua consulta não foi salva corretamente" ], + "Your query was saved": ["Sua consulta foi salva"], "Your query was updated": ["Sua consulta foi atualizada"], "Your report could not be deleted": [ "Não foi possível excluir seu relatório" @@ -6355,10 +5997,10 @@ "[copy]": ["[cópia]"], "[dashboard name]": ["[nome do painel]"], "[desc]": ["[desc]"], - "[untitled]": ["[sem título]"], "[optional] this secondary metric is used to define the color as a ratio against the primary metric. When omitted, the color is categorical and based on labels": [ "[opcional] essa métrica secundária é usada para definir a cor como uma proporção em relação à métrica primária. Quando omitida, a cor é categórica e baseada em rótulos" ], + "[untitled]": ["[sem título]"], "`compare_columns` must have the same length as `source_columns`.": [ "` compare_columns ` deve ter o mesmo comprimento de ` source_columns `." ], @@ -6374,16 +6016,16 @@ "`operation` property of post processing object undefined": [ "Propriedade `operation` do objeto de pós-processamento indefinida" ], + "`prophet` package not installed": ["Pacote `prophet` não instalado"], "`rename_columns` must have the same length as `columns`.": [ "`rename_columns` deve ter o mesmo comprimento que `columns`." ], - "`row_offset` must be greater than or equal to 0": [ - "`row_offset` deve ser maior ou igual a 0" - ], - "`prophet` package not installed": ["Pacote `prophet` não instalado"], "`row_limit` must be greater than or equal to 0": [ "O `row_limit` deve ser maior ou igual a 0" ], + "`row_offset` must be greater than or equal to 0": [ + "`row_offset` deve ser maior ou igual a 0" + ], "`width` must be greater or equal to 0": [ "`largura` deve ser maior ou igual a 0" ], @@ -6394,18 +6036,16 @@ "also copy (duplicate) charts": ["também copiar (duplicar) gráficos"], "ancestor": ["ancestral"], "and": ["e"], - "auto": ["automático"], "annotation": ["anotação"], "annotation_layer": ["camada de anotação"], "asfreq": ["asfreq"], "at": ["em"], + "auto": ["automático"], "auto (Smooth)": ["auto (Suave)"], - "basis": ["base"], "background": ["fundo"], + "basis": ["base"], "below (example:": ["abaixo (exemplo:"], - "between {down} and {up} {name}": [ - "entre {para baixo} e {para cima} {nome}" - ], + "between {down} and {up} {name}": ["entre {down} e {up} {name}"], "bfill": ["bfill"], "bolt": ["parafuso"], "boolean type icon": ["ícone do tipo booleano"], @@ -6415,103 +6055,12 @@ ], "by using": ["usando"], "cannot be empty": ["não pode ser vazio"], - "chart": ["gráfico"], - "CHART": ["GRÁFICO"], - "CHARTS": ["GRÁFICOS"], - "DASHBOARD": ["PAINEL"], - "DASHBOARDS": ["PAINÉIS"], "cardinal": ["cardeal"], "change": ["mudança"], + "chart": ["gráfico"], "charts": ["gráficos"], - "clear all filters": ["Limpar todos os filtros"], - "count": ["contagem"], - "create": ["criar"], - "create a new chart": ["criar um novo gráfico"], - "cumulative": ["cumulativo"], - "dashboards": ["painéis"], - "dataset name": ["nome do conjunto de dados"], - "deck.gl 3D Hexagon": ["deck.gl Hexágono 3D"], - "deck.gl Arc": ["deck.gl Arc"], - "deck.gl Geojson": ["deck.gl Geojson"], - "deck.gl Grid": ["deck.gl Grid"], - "deck.gl Multiple Layers": ["deck.gl Múltiplas camadas"], - "deck.gl Path": ["deck.gl Path"], - "deck.gl Polygon": ["deck.gl Polígono"], - "deck.gl Scatterplot": ["deck.gl Gráfico de dispersão"], - "deck.gl Screen Grid": ["Deck.gl Grade de tela"], - "deck.gl charts": ["Gráficos do deck.gl"], - "default": ["padrão"], - "deviation": ["desvio"], - "draft": ["rascunho"], - "e.g., a \"user id\" column": ["Por exemplo, uma coluna \"user id\"."], - "edit mode": ["modo de edição"], - "entries": ["entradas"], - "error_message": ["mensagem de erro"], - "expand": ["expandir"], - "explore": ["explorar"], - "failed": ["falhou"], - "fetching": ["busca"], - "flat": ["plano"], - "for more information on how to structure your URI.": [ - "para obter mais informações sobre como estruturar seu URI." - ], - "heatmap": ["mapa de calor"], - "here": ["aqui"], - "id": ["id"], - "label": ["rótulo"], - "last day": ["último dia"], - "last month": ["mês passado"], - "last week": ["semana passada"], - "last year": ["ano passado"], - "left": ["esquerda"], - "linear": ["linear"], - "max": ["máximo"], - "metric": ["métrica"], - "min": ["min"], - "minute(s)": ["minuto(s)"], - "monotone": ["monótono"], - "no SQL validator is configured": [ - "nenhum validador SQL está configurado" - ], - "no SQL validator is configured for {}": [ - "Nenhum validador SQL está configurado para {}" - ], - "or": ["ou"], - "pending": ["pendente"], - "orderby column must be populated": [ - "A coluna orderby deve ser preenchida" - ], - "permalink state not found": ["Estado do permalink não encontrado"], - "published": ["publicado"], - "quarter": ["trimestre"], - "queries": ["consultas"], - "recent": ["recente"], - "recents": ["recentes"], - "red": ["vermelho"], - "random": ["aleatório"], - "right": ["direito"], - "running": ["em execução"], - "saved queries": ["consultas salvas"], - "seconds": ["segundos"], - "series": ["série"], - "square": ["quadrado"], - "stack": ["pilha"], - "staggered": ["escalonado"], - "step-after": ["etapa seguinte"], - "stopped": ["interrompido"], - "stream": ["fluxo"], - "success": ["sucesso"], - "to": ["para"], - "top": ["superior"], - "undo": ["desfazer"], - "unknown type icon": ["ícone de tipo desconhecido"], - "use latest_partition template": ["usar o modelo latest_partition"], - "value ascending": ["valor crescente"], - "value descending": ["valor decrescente"], - "variance": ["variação"], - "view instructions": ["Exibir instruções"], - "viz type": ["tipo de visualização"], "choose WHERE or HAVING...": ["escolha WHERE ou HAVING..."], + "clear all filters": ["limpar todos os filtros"], "click here": ["clique aqui"], "code ISO 3166-1 alpha-2 (cca2)": ["código ISO 3166-1 alpha-2 (cca2)"], "code ISO 3166-1 alpha-3 (cca3)": ["código ISO 3166-1 alpha-3 (cca3)"], @@ -6520,25 +6069,44 @@ ], "column": ["coluna"], "connecting to %(dbModelName)s.": ["conectando ao %(dbModelName)s."], + "count": ["contagem"], + "create": ["criar"], + "create a new chart": ["criar um novo gráfico"], "create dataset from SQL query": [ "criar um conjunto de dados a partir de uma consulta SQL" ], "css": ["css"], "css_template": ["css_template"], "cumsum": ["cumsum"], + "cumulative": ["cumulativo"], "dashboard": ["painel"], + "dashboards": ["painéis"], "database": ["banco de dados"], "dataset": ["dataset"], + "dataset name": ["nome do conjunto de dados"], "date": ["data"], "day": ["dia"], "day of the month": ["dia do mês"], "day of the week": ["dia da semana"], + "deck.gl 3D Hexagon": ["deck.gl Hexágono 3D"], + "deck.gl Arc": ["deck.gl Arc"], + "deck.gl Geojson": ["deck.gl Geojson"], + "deck.gl Grid": ["deck.gl Grid"], + "deck.gl Multiple Layers": ["deck.gl Múltiplas camadas"], + "deck.gl Path": ["deck.gl Path"], + "deck.gl Polygon": ["deck.gl Polígono"], + "deck.gl Scatterplot": ["deck.gl Gráfico de dispersão"], + "deck.gl Screen Grid": ["deck.gl Grade de tela"], + "deck.gl charts": ["gráficos do deck.gl"], "deckGL": ["deckGL"], + "default": ["padrão"], "delete": ["excluir"], "description": ["descrição"], + "deviation": ["desvio"], "dialect+driver://username:password@host:port/database": [ "dialect+driver://username:password@host:port/database" ], + "draft": ["rascunho"], "dttm": ["dttm"], "e.g. ********": ["por exemplo ********"], "e.g. 127.0.0.1": ["por exemplo, 127.0.0.1"], @@ -6551,22 +6119,37 @@ "e.g. sql/protocolv1/o/12345": ["por exemplo , sql/protocolv1/o/12345"], "e.g. world_population": ["por exemplo, world_population"], "e.g. xy12345.us-east-2.aws": ["por exemplo, xy12345.us-east-2.aws"], + "e.g., a \"user id\" column": ["por exemplo, uma coluna \"user id\""], + "edit mode": ["modo de edição"], + "entries": ["entradas"], + "error dark": [""], + "error_message": ["mensagem de erro"], "every": ["todos"], "every day of the month": ["todos os dias do mês"], "every day of the week": ["todos os dias da semana"], "every hour": ["a cada hora"], "every month": ["a cada mês"], + "expand": ["expandir"], + "explore": ["explorar"], + "failed": ["falhou"], + "fetching": ["busca"], "ffill": ["ffill"], "filter_box will be deprecated in a future version of Superset. Please replace filter_box by dashboard filter components.": [ "filter_box será descontinuado em uma versão futura do Superset. Substitua filter_box por componentes de filtro do painel." ], + "flat": ["plano"], + "for more information on how to structure your URI.": [ + "para obter mais informações sobre como estruturar seu URI." + ], "function type icon": ["ícone de tipo de função"], "geohash (square)": ["geohash (quadrado)"], - "green": ["verde"], + "heatmap": ["mapa de calor"], "heatmap: values are normalized across the entire heatmap": [ "heatmap: os valores são normalizados em todo o heatmap" ], + "here": ["aqui"], "hour": ["hora"], + "id": ["id"], "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ "atributo CSS de renderização de imagem do objeto canvas que define como o navegador dimensiona a imagem" ], @@ -6578,29 +6161,51 @@ "json isn't valid": ["json não é válido"], "key a-z": ["chave a-z"], "key z-a": ["chave z-a"], + "label": ["rótulo"], + "last day": ["último dia"], + "last month": ["mês passado"], "last quarter": ["último trimestre"], + "last week": ["semana passada"], + "last year": ["ano passado"], "latest partition:": ["partição mais recente:"], + "left": ["esquerda"], "less than {min} {name}": ["menos que {min} {name}"], + "linear": ["linear"], "log": ["log"], "lower percentile must be greater than 0 and less than 100. Must be lower than upper percentile.": [ - "O percentil inferior deve ser maior que 0 e menor que 100. Deve ser menor que o percentil superior." + "o percentil inferior deve ser maior que 0 e menor que 100. Deve ser menor que o percentil superior." ], + "max": ["máximo"], "mean": ["média"], "median": ["mediana"], + "metric": ["métrica"], + "min": ["min"], "minute": ["minuto"], + "minute(s)": ["minuto(s)"], + "monotone": ["monótono"], "month": ["mês"], "more than {max} {name}": ["mais de {max} {name}"], "must have a value": ["deve ter um valor"], + "no SQL validator is configured": [ + "nenhum validador SQL está configurado" + ], + "no SQL validator is configured for {}": [ + "nenhum validador SQL está configurado para {}" + ], "numeric type icon": ["ícone de tipo numérico"], "nvd3": ["nvd3"], "of parent": ["do pai"], "of total": ["do total"], "on": ["em"], + "or": ["ou"], "or use existing ones from the panel on the right": [ "ou use os existentes no painel à direita" ], + "orderby column must be populated": [ + "a coluna orderby deve ser preenchida" + ], "overall": ["geral"], - "p-value precision": ["Precisão do valor-p"], + "p-value precision": ["precisão do valor-p"], "p1": ["p1"], "p5": ["p5"], "p95": ["p95"], @@ -6608,41 +6213,70 @@ "page_size.all": ["page_size.all"], "page_size.entries": ["page_ size.entries"], "page_size.show": ["page_ size.show"], + "pending": ["pendente"], "percentile (exclusive)": ["percentil (exclusivo)"], "percentiles must be a list or tuple with two numeric values, of which the first is lower than the second value": [ - "Os percentis devem ser uma lista ou tupla com dois valores numéricos, dos quais o primeiro é menor que o segundo valor" + "os percentis devem ser uma lista ou tupla com dois valores numéricos, dos quais o primeiro é menor que o segundo valor" ], + "permalink state not found": ["estado do permalink não encontrado"], "pixelated (Sharp)": ["pixelado (nítido)"], "previous calendar month": ["mês anterior do calendário"], "previous calendar week": ["semana anterior do calendário"], "previous calendar year": ["ano-calendário anterior"], + "published": ["publicado"], + "quarter": ["trimestre"], + "queries": ["consultas"], "query": ["consulta"], + "random": ["aleatório"], "reboot": ["reiniciar"], + "recent": ["recente"], + "recents": ["recentes"], "report": ["relatório"], "reports": ["relatórios"], "restore zoom": ["restaurar zoom"], + "right": ["direito"], + "running": ["em execução"], + "saved queries": ["consultas salvas"], "search by tags": ["pesquisa por tags"], + "seconds": ["segundos"], + "series": ["série"], "series: Treat each series independently; overall: All series use the same scale; change: Show changes compared to the first data point in each series": [ "séries: Tratar cada série de forma independente; geral: Todas as séries usam a mesma escala; alteração: Mostrar alterações em comparação com o primeiro ponto de dados em cada série" ], + "square": ["quadrado"], + "stack": ["pilha"], + "staggered": ["escalonado"], "std": ["std"], + "step-after": ["etapa seguinte"], "step-before": ["passo-anteerior"], + "stopped": ["interrompido"], + "stream": ["fluxo"], "string type icon": ["ícone do tipo string"], + "success": ["sucesso"], "sum": ["soma"], "syntax.": ["sintaxe."], "tag": ["marca"], "temporal type icon": ["ícone de tipo temporal"], "textarea": ["área de texto"], + "to": ["para"], + "top": ["superior"], + "undo": ["desfazer"], + "unknown type icon": ["ícone de tipo desconhecido"], "upper percentile must be greater than 0 and less than 100. Must be higher than lower percentile.": [ - "O percentil superior deve ser maior que 0 e menor que 100. Deve ser maior que o percentil inferior." + "o percentil superior deve ser maior que 0 e menor que 100. Deve ser maior que o percentil inferior." ], + "use latest_partition template": ["usar o modelo latest_partition"], + "value ascending": ["valor crescente"], + "value descending": ["valor decrescente"], "var": ["var"], + "variance": ["variação"], + "view instructions": ["exibir instruções"], "virtual": ["virtual"], + "viz type": ["tipo de visualização"], "was created": ["foi criado"], "week": ["semana"], "week ending Saturday": ["semana que termina no sábado"], "week starting Sunday": ["semana que começa no domingo"], - "Update chart": ["Atualizar Gráfico"], "x": ["x"], "x: values are normalized within each column": [ "x: os valores são normalizados dentro de cada coluna" @@ -6652,7 +6286,6 @@ "y: os valores são normalizados dentro de cada linha" ], "year": ["ano"], - "yellow": ["amarelo"], "zoom area": ["área de zoom"] } } diff --git a/superset/translations/pt_BR/LC_MESSAGES/messages.po b/superset/translations/pt_BR/LC_MESSAGES/messages.po index b458f59bd2..b2f6898762 100644 --- a/superset/translations/pt_BR/LC_MESSAGES/messages.po +++ b/superset/translations/pt_BR/LC_MESSAGES/messages.po @@ -17,51 +17,76 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-04-07 19:09+0200\n" +"POT-Creation-Date: 2023-05-23 16:30-0300\n" "PO-Revision-Date: 2023-05-22 08:04-0400\n" "Last-Translator: \n" -"Language-Team: \n" "Language: pt_BR\n" +"Language-Team: \n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" "Generated-By: Babel 2.9.1\n" -"X-Generator: Poedit 3.3.1\n" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/Option.tsx:71 +#: superset-frontend/src/explore/components/controls/OptionControls/index.tsx:326 +#, fuzzy msgid "" -"This filter was inherited from the dashboard's context.\n" -" It won't be saved when saving the chart." +"\n" +" This filter was inherited from the dashboard's context.\n" +" It won't be saved when saving the chart.\n" +" " msgstr "" "Este filtro foi herdado do contexto do painel.\n" " Não será salvo ao salvar o gráfico." -msgid "Error: %(text)s" +#: superset/reports/notifications/email.py:89 +#, fuzzy, python-format +msgid "" +"\n" +" Error: %(text)s\n" +" " msgstr "Erro: %(text)s" -msgid "(excluded)" +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:130 +#, fuzzy +msgid " (excluded)" msgstr "(excluído)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:222 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:235 +#, fuzzy msgid "" -"Set the opacity to 0 if you do not want to override the color specified in " -"the GeoJSON" +" Set the opacity to 0 if you do not want to override the color specified " +"in the GeoJSON" msgstr "" -"Defina opacidade a 0 se você não quer sobrepor a cor especificada no GeoJSON" +"Defina opacidade a 0 se você não quer sobrepor a cor especificada no " +"GeoJSON" -msgid "a dashboard OR" +#: superset-frontend/src/explore/components/SaveModal.tsx:399 +#, fuzzy +msgid " a dashboard OR " msgstr "um painel OU" -msgid "a new one" +#: superset-frontend/src/explore/components/SaveModal.tsx:401 +#, fuzzy +msgid " a new one" msgstr "um novo" -msgid "expression which needs to adhere to the" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:308 +#, fuzzy +msgid " expression which needs to adhere to the " msgstr "expressão necessária para aderir ao" -msgid "source code of Superset's sandboxed parser" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:48 +#, fuzzy +msgid " source code of Superset's sandboxed parser" msgstr "código-fonte do analisador em área restrita do Superset" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:312 +#, fuzzy msgid "" -"standard to ensure that the lexicographical ordering\n" +" standard to ensure that the lexicographical ordering\n" " coincides with the chronological ordering. If the\n" " timestamp format does not adhere to the ISO 8601 " "standard\n" @@ -70,54 +95,69 @@ msgid "" "Note\n" " currently time zones are not supported. If time is " "stored\n" -" in epoch format, put `epoch_s` or `epoch_ms`. If no " -"pattern\n" +" in epoch format, put `epoch_s` or `epoch_ms`. If no" +" pattern\n" " is specified we fall back to using the optional " "defaults on a per\n" " database/column name level via the extra parameter." msgstr "" -"para garantir que a ordem lexicográfica coincida com a ordem cronológica. Se " -"o\n" +"para garantir que a ordem lexicográfica coincida com a ordem cronológica." +" Se o\n" " formato do timestamp não for aderente ao padrão ISO 8601\n" " você precisará definir uma expressão e tipo para\n" " transformar o texto em data ou timestamp. Nota:\n" -" naturalmente fusos horários não são suportados. Se o tempo é armazenado no " -"formato epoch coloque ` epoch_s ` ou ` epoch_ms `. Se nenhum padrão for " -"especificado\n" -"emos utilizar os padrões de acordo com cada nível do banco de dados/nome de " -"coluna via parâmetro extra." +" naturalmente fusos horários não são suportados. Se o tempo é armazenado " +"no formato epoch coloque ` epoch_s ` ou ` epoch_ms `. Se nenhum padrão " +"for especificado\n" +"emos utilizar os padrões de acordo com cada nível do banco de dados/nome " +"de coluna via parâmetro extra." -msgid "to add calculated columns" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:340 +#, fuzzy +msgid " to add calculated columns" msgstr "para adicionar colunas calculadas" -msgid "to add metrics" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:421 +#, fuzzy +msgid " to add metrics" msgstr "para adicionar métricas" -msgid "to edit or add columns and metrics." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 +#, fuzzy +msgid " to edit or add columns and metrics." msgstr "para editar ou adicionar colunas e métricas." -msgid "to mark a column as a time column" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:364 +#, fuzzy +msgid " to mark a column as a time column" msgstr "para marcar uma coluna como uma coluna de tempo" -msgid "to open SQL Lab. From there you can save the query as a dataset." +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:46 +#, fuzzy +msgid " to open SQL Lab. From there you can save the query as a dataset." msgstr "" -"para abrir o SQL Lab. De lá você pode salvar a consulta como um conjunto de " -"dados." +"para abrir o SQL Lab. De lá você pode salvar a consulta como um conjunto " +"de dados." -msgid "to visualize your data." +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 +#, fuzzy +msgid " to visualize your data." msgstr "para visualizar seus dados." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:116 msgid "!= (Is not equal)" msgstr "!= (diferente)" -msgid "%(name)s.csv" -msgstr "%(name)s.csv" - +#: superset/security/analytics_db_safety.py:48 +#, python-format msgid "%(dialect)s cannot be used as a data source for security reasons." msgstr "" "%(dialect)s não pode ser usado como uma fonte de dados por motivos de " "segurança." +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:83 +#, python-format msgid "" "%(message)s\n" "This may be triggered by: \n" @@ -127,27 +167,50 @@ msgstr "" "Isso pode ser acionado por: \n" "%(issues)s" +#: superset/reports/notifications/email.py:171 +#, python-format +msgid "%(name)s.csv" +msgstr "%(name)s.csv" + +#: superset/db_engine_specs/snowflake.py:112 +#, python-format msgid "%(object)s does not exist in this database." msgstr "%(object)s não existe neste banco de dados." +#: superset-frontend/src/features/home/EmptyState.tsx:43 +#, python-format msgid "%(other)s charts will appear here" msgstr "%(other)s gráficos irão aparecer aqui" +#: superset-frontend/src/features/home/EmptyState.tsx:45 +#, python-format msgid "%(other)s dashboards will appear here" msgstr "%(other)s painéis irão aparecer aqui" +#: superset-frontend/src/features/home/EmptyState.tsx:47 +#, python-format msgid "%(other)s recents will appear here" msgstr "%(other)s recentes irão aparecer aqui" -msgid "%(prefix)s %(title)s" -msgstr "%(prefix)s %(title)s" - +#: superset-frontend/src/features/home/EmptyState.tsx:49 +#, python-format msgid "%(other)s saved queries will appear here" msgstr "%(other)s As consultas salvas aparecerão aqui" +#: superset/reports/notifications/email.py:180 +#, python-format +msgid "%(prefix)s %(title)s" +msgstr "%(prefix)s %(title)s" + +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:338 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:356 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:370 +#, python-format msgid "%(rows)d rows returned" msgstr "%(rows)d linhas retornadas" +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:93 +#, python-format msgid "" "%(subtitle)s\n" "This may be triggered by:\n" @@ -157,9 +220,17 @@ msgstr "" "Isso pode ser acionado por:\n" " %(issue)s" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:88 +#, fuzzy, python-format msgid "%(suggestion)s instead of \"%(undefinedParameter)s?\"" -msgstr "%(suggestion)s em vez de \"%(undefinedParameter)s?\"" +msgid_plural "" +"%(firstSuggestions)s or %(lastSuggestion)s instead of " +"\"%(undefinedParameter)s\"?" +msgstr[0] "%(suggestion)s em vez de \"%(undefinedParameter)s?\"" +msgstr[1] "" +#: superset/views/core.py:385 +#, python-format msgid "" "%(user)s was granted the role %(role)s that gives access to the " "%(datasource)s" @@ -167,9 +238,13 @@ msgstr "" "%(user)s foi garantido a função %(role)s que dá acesso para a %(fonte de " "dados)s" +#: superset/views/core.py:2709 +#, python-format msgid "%(user)s's profile" msgstr "%(user) s's profile" +#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2369 +#, python-format msgid "" "%(validator)s was unable to check your query.\n" "Please recheck your query.\n" @@ -179,82 +254,144 @@ msgstr "" "Por favor revise sua consulta.\n" "Exceção: %(ex)s" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:89 +#, python-format msgid "%s Error" msgstr "%s Erro" +#: superset-frontend/src/components/ImportModal/index.tsx:298 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1355 +#, python-format msgid "%s PASSWORD" msgstr "%s SENHA" +#: superset-frontend/src/components/ImportModal/index.tsx:318 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1373 +#, python-format msgid "%s SSH TUNNEL PASSWORD" msgstr "%s SENHA DO TÚNEL SSH" +#: superset-frontend/src/components/ImportModal/index.tsx:341 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1391 +#, python-format msgid "%s SSH TUNNEL PRIVATE KEY" msgstr "%s CHAVE PRIVADA DO TÚNEL SSH" +#: superset-frontend/src/components/ImportModal/index.tsx:363 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1411 +#, python-format msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" msgstr "%s SENHA DA CHAVE PRIVADA DO TÚNEL SSH" +#: superset-frontend/src/components/ListView/ListView.tsx:245 +#, python-format msgid "%s Selected" msgstr "%s Selecionado" +#: superset-frontend/src/pages/DatasetList/index.tsx:830 +#, python-format msgid "%s Selected (%s Physical, %s Virtual)" msgstr "%s selecionado (%s Físico , %s Virtual)" +#: superset-frontend/src/pages/DatasetList/index.tsx:823 +#, python-format msgid "%s Selected (Physical)" msgstr "%s Selecionado (Físico)" +#: superset-frontend/src/pages/DatasetList/index.tsx:816 +#, python-format msgid "%s Selected (Virtual)" msgstr "%s Selecionado (Virtual)" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:332 +#, python-format msgid "%s aggregates(s)" msgstr "%s agregado(s)" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:280 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:377 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:346 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 +#, python-format msgid "%s column(s)" msgstr "%s coluna(s)" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:356 +#, python-format msgid "%s operator(s)" msgstr "%s operador(es)" +#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:87 +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:226 +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:86 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:96 +#, fuzzy, python-format msgid "%s option" -msgstr "%s opção" +msgid_plural "%s options" +msgstr[0] "%s opção" +msgstr[1] "" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:321 +#, python-format msgid "%s option(s)" msgstr "%s opção(ões)" +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:43 +#, fuzzy, python-format msgid "%s row" -msgstr "%s linha" +msgid_plural "%s rows" +msgstr[0] "%s linha" +msgstr[1] "" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:341 +#, python-format msgid "%s saved metric(s)" msgstr "%s salvos métrica(s)" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:639 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:655 +#, python-format msgid "%s updated" msgstr "%s atualizado" +#: superset-frontend/src/SqlLab/utils/newQueryTabName.ts:43 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:127 +#, python-format msgid "%s%s" msgstr "%s%s" +#: superset-frontend/src/components/ListView/ListView.tsx:441 +#: superset-frontend/src/components/TableView/TableView.tsx:250 +#, python-format msgid "%s-%s of %s" msgstr "%s-%s de %s" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:116 msgid "(Removed)" msgstr "(Removido)" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:101 msgid "(deleted or invalid type)" msgstr "(excluído ou inválido digite)" +#: superset-frontend/src/utils/getClientErrorObject.ts:76 msgid "(no description, click to see stack trace)" msgstr "(sem descrição , clique para ver rastreamento de pilha)" +#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:168 msgid "" -"(optional) default value for the filter, when using the multiple option, you " -"can use a semicolon-delimited list of options." +"(optional) default value for the filter, when using the multiple option, " +"you can use a semicolon-delimited list of options." msgstr "" -"(opcional) valor padrão para o filtro, quando usar multiplas opções, você " -"pode usar um ponto e vírgula delimitando a lista de opções." +"(opcional) valor padrão para o filtro, quando usar multiplas opções, você" +" pode usar um ponto e vírgula delimitando a lista de opções." +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:71 msgid "), and they become available in your SQL (example:" msgstr "), e eles tornaram-se disponíveis no seu SQL (exemplo:" +#: superset/reports/notifications/slack.py:65 +#, fuzzy, python-format msgid "" "*%(name)s*\n" "\n" @@ -262,7 +399,7 @@ msgid "" "\n" "<%(url)s|Explore in Superset>\n" "\n" -"%(table)s" +"%(table)s\n" msgstr "" "*%(name)s*\n" "\n" @@ -272,12 +409,14 @@ msgstr "" "\n" "%(table)s" +#: superset/reports/notifications/slack.py:82 +#, fuzzy, python-format msgid "" "*%(name)s*\n" "\n" "%(description)s\n" "\n" -"Error: %(text)s" +"Error: %(text)s\n" msgstr "" "*%(name)s*\n" "\n" @@ -285,318 +424,520 @@ msgstr "" "\n" "Erro: %(text)s" +#: superset-frontend/src/components/ListView/CrossLinksTooltip.tsx:64 +#: superset-frontend/src/components/TruncatedList/index.tsx:147 +#, python-format msgid "+ %s more" msgstr "+ %s mais" +#: superset/views/database/forms.py:163 msgid "," msgstr "," +#: superset-frontend/src/SqlLab/actions/sqlLab.js:652 +#, fuzzy msgid "" "-- Note: Unless you save your query, these tabs will NOT persist if you " -"clear your cookies or change browsers." +"clear your cookies or change browsers.\n" +"\n" msgstr "" -"-- Nota: A menos que você salve sua consulta, estes guias NÃO irão persistir " -"se você limpar seus cookies ou mudar de navegador." +"-- Nota: A menos que você salve sua consulta, estes guias NÃO irão " +"persistir se você limpar seus cookies ou mudar de navegador." +#: superset/views/database/forms.py:164 msgid "." msgstr "." +#: superset-frontend/src/pages/DatasetList/index.tsx:813 msgid "0 Selected" msgstr "0 selecionado" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:238 msgid "1 calendar day frequency" msgstr "1 dia de calendário de frequência" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:168 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:306 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:188 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:456 +#: superset-frontend/src/explore/controlPanels/sections.tsx:184 +#: superset-frontend/src/explore/controls.jsx:262 msgid "1 day" msgstr "1 dia" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:112 msgid "1 day ago" msgstr "1 dia atrás" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:166 +#: superset-frontend/src/explore/controls.jsx:260 msgid "1 hour" msgstr "1 hora" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:164 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:237 msgid "1 hourly frequency" msgstr "frequência de 1 hora" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:163 +#: superset-frontend/src/explore/controls.jsx:257 msgid "1 minute" msgstr "1 minuto" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:163 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:236 msgid "1 minutely frequency" msgstr "frequência de 1 minuto" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:241 msgid "1 month end frequency" msgstr "1 mês de frequência final" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:240 msgid "1 month start frequency" msgstr "Frequência de início de 1 mês" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:307 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:189 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:457 +#: superset-frontend/src/explore/controlPanels/sections.tsx:185 msgid "1 week" msgstr "1 semana" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:113 msgid "1 week ago" msgstr "1 semana atrás" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:62 msgid "1 week starting Monday (freq=W-MON)" msgstr "1 semana com início na Segunda-feira (freq=S-SEG)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:61 msgid "1 week starting Sunday (freq=W-SUN)" msgstr "1 semana com início na Domingo (freq=S-DOM)" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:311 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:193 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:461 +#: superset-frontend/src/explore/controlPanels/sections.tsx:189 msgid "1 year" msgstr "1 ano" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:117 msgid "1 year ago" msgstr "1 ano atrás" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:243 msgid "1 year end frequency" msgstr "Frequência de final de 1 ano" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:242 msgid "1 year start frequency" msgstr "Frequência de início de 1 ano" +#: superset/db_engine_specs/base.py:102 msgid "10 minute" msgstr "10 minutos" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:312 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:194 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:462 +#: superset-frontend/src/explore/controlPanels/sections.tsx:190 msgid "104 weeks" msgstr "104 semanas" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:118 msgid "104 weeks ago" msgstr "104 semanas atrás" +#: superset/db_engine_specs/base.py:103 msgid "15 minute" msgstr "15 minutos" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:314 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:196 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:464 +#: superset-frontend/src/explore/controlPanels/sections.tsx:192 msgid "156 weeks" msgstr "156 semanas" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:120 msgid "156 weeks ago" msgstr "156 semanas atrás" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:360 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:242 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:512 +#: superset-frontend/src/explore/controlPanels/sections.tsx:238 msgid "1AS" msgstr "1AS" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:357 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:239 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:509 +#: superset-frontend/src/explore/controlPanels/sections.tsx:235 msgid "1D" msgstr "1D" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:356 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:238 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:508 +#: superset-frontend/src/explore/controlPanels/sections.tsx:234 msgid "1H" msgstr "1H" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:359 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:241 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:511 +#: superset-frontend/src/explore/controlPanels/sections.tsx:237 msgid "1M" msgstr "1M" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:355 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:237 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:507 +#: superset-frontend/src/explore/controlPanels/sections.tsx:233 msgid "1T" msgstr "1T" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:313 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:195 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:463 +#: superset-frontend/src/explore/controlPanels/sections.tsx:191 msgid "2 years" msgstr "2 anos" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:119 msgid "2 years ago" msgstr "2 anos atrás" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:97 +#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:49 msgid "2/98 percentiles" msgstr "2/98 percentis" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:90 +msgid "22" +msgstr "" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:308 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:190 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:458 +#: superset-frontend/src/explore/controlPanels/sections.tsx:186 +#, fuzzy +msgid "28 days" +msgstr "28 dias atrás" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:114 msgid "28 days ago" msgstr "28 dias atrás" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:37 msgid "2D" msgstr "2D" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:136 +#, fuzzy +msgid "3 letter code of the country" +msgstr "todos os dias do mês" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:315 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:197 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:465 +#: superset-frontend/src/explore/controlPanels/sections.tsx:193 +#, fuzzy +msgid "3 years" +msgstr "2 anos" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:121 msgid "3 years ago" msgstr "3 anos atrás" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:309 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:191 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:459 +#: superset-frontend/src/explore/controlPanels/sections.tsx:187 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:131 msgid "30 days" msgstr "30 dias" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:115 +#, fuzzy +msgid "30 days ago" +msgstr "28 dias atrás" + +#: superset/db_engine_specs/base.py:104 +#, fuzzy +msgid "30 minute" +msgstr "30 minutos" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:165 +#: superset-frontend/src/explore/controls.jsx:259 msgid "30 minutes" msgstr "30 minutos" +#: superset/db_engine_specs/base.py:99 +#, fuzzy +msgid "30 second" +msgstr "30 segundos" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:162 +#: superset-frontend/src/explore/controls.jsx:256 msgid "30 seconds" msgstr "30 segundos" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:35 msgid "3D" msgstr "3D" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:64 msgid "4 weeks (freq=4W-MON)" msgstr "4 semanas (freq=4S-SEG)" +#: superset/db_engine_specs/base.py:101 msgid "5 minute" msgstr "5 minutos" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:164 +#: superset-frontend/src/explore/controls.jsx:258 msgid "5 minutes" msgstr "5 minutos" +#: superset/db_engine_specs/base.py:98 msgid "5 second" msgstr "5 segundos" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:161 +#: superset-frontend/src/explore/controls.jsx:255 msgid "5 seconds" msgstr "5 segundos" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:310 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:192 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:460 +#: superset-frontend/src/explore/controlPanels/sections.tsx:188 msgid "52 weeks" msgstr "52 semanas" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:116 msgid "52 weeks ago" msgstr "52 semanas atrás" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:60 msgid "52 weeks starting Monday (freq=52W-MON)" msgstr "52 semanas iniciando Segunda-feira (freq=52S-SEG)" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 +#: superset-frontend/src/explore/controls.jsx:261 +#: superset/db_engine_specs/base.py:106 msgid "6 hour" msgstr "6 horas" -msgid "6 hours" -msgstr "6 horas" - -msgid "12 hours" -msgstr "12 horas" - -msgid "24 hours" -msgstr "24 horas" - -msgid "10 seconds" -msgstr "10 segundos" - +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:135 msgid "60 days" msgstr "60 dias" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:239 msgid "7 calendar day frequency" msgstr "Frequência de 7 dias de calendário" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:169 +#: superset-frontend/src/explore/controls.jsx:263 msgid "7 days" msgstr "7 dias" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:358 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:240 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:510 +#: superset-frontend/src/explore/controlPanels/sections.tsx:236 msgid "7D" msgstr "7D" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:98 +#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:50 msgid "9/91 percentiles" msgstr "9/91 percentis" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:139 msgid "90 days" msgstr "90 dias" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:49 msgid ":" msgstr ":" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:96 msgid "< (Smaller than)" msgstr "< (menor que)" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:104 msgid "<= (Smaller or equal)" msgstr "<= (menor ou equal)" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1430 msgid "" msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:500 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1427 msgid "" msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1265 msgid "" msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:985 msgid "" msgstr "" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:986 msgid "" msgstr "" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:112 msgid "== (Is equal)" msgstr "== (É igual)" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:100 msgid "> (Larger than)" msgstr "> (Maior que)" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:108 msgid ">= (Larger or equal)" msgstr ">= (Maior ou equal)" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:34 msgid "A Big Number" msgstr "Um grande número" +#: superset/views/database/forms.py:194 msgid "A comma separated list of columns that should be parsed as dates" msgstr "" "Uma lista separada por vírgulas de colunas que devem ser analisadas como " "datas" -msgid "A comma-separated list of schemas that files are allowed to upload to." -msgstr "" -"Uma lista separada por vírgulas de esquemas para os quais os arquivos têm " -"permissão para fazer upload." - -msgid "A database with the same name already exists." -msgstr "Já existe um banco de dados com o mesmo nome." - +#: superset/views/database/forms.py:377 msgid "A comma separated list of columns that should be parsed as dates." msgstr "" "Uma lista separada por vírgulas de colunas que devem ser analisadas como " "datas." -msgid "" -"A full URL pointing to the location of the built plugin (could be hosted on " -"a CDN for example)" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 +msgid "A comma-separated list of schemas that files are allowed to upload to." msgstr "" -"Um URL completo apontando para o localização do plug-in construído (poderia " -"ser hospedado em um CDN, por exemplo)" +"Uma lista separada por vírgulas de esquemas para os quais os arquivos têm" +" permissão para fazer upload." +#: superset/databases/commands/exceptions.py:42 +msgid "A database with the same name already exists." +msgstr "Já existe um banco de dados com o mesmo nome." + +#: superset/views/database/forms.py:145 +msgid "" +"A dictionary with column names and their data types if you need to change" +" the defaults. Example: {\"user_id\":\"integer\"}" +msgstr "" + +#: superset/views/dynamic_plugins.py:52 +msgid "" +"A full URL pointing to the location of the built plugin (could be hosted " +"on a CDN for example)" +msgstr "" +"Um URL completo apontando para o localização do plug-in construído " +"(poderia ser hospedado em um CDN, por exemplo)" + +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:61 msgid "A handlebars template that is applied to the data" msgstr "Um modelo de handlebars aplicado aos dados" +#: superset/views/dynamic_plugins.py:47 msgid "A human-friendly name" msgstr "Um nome amigável ao ser humano" -msgid "A list of tags that have been applied to this chart." -msgstr "Uma lista de tags que foram aplicadas a esse gráfico." - +#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:195 msgid "" "A list of domain names that can embed this dashboard. Leaving this field " "empty will allow embedding from any domain." msgstr "" -"Uma lista de nomes de domínio que podem incorporar este dashboard. Se deixar " -"este campo vazio, permitirá a incorporação a partir de qualquer domínio." +"Uma lista de nomes de domínio que podem incorporar este dashboard. Se " +"deixar este campo vazio, permitirá a incorporação a partir de qualquer " +"domínio." -msgid "" -"A list of users who can alter the chart. Searchable by name or username." +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:755 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:445 +msgid "A list of tags that have been applied to this chart." +msgstr "Uma lista de tags que foram aplicadas a esse gráfico." + +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:424 +msgid "A list of users who can alter the chart. Searchable by name or username." msgstr "" -"Uma lista de Usuários que podem alterar o gráfico. Pesquisável por nome ou " -"nome de usuário." +"Uma lista de Usuários que podem alterar o gráfico. Pesquisável por nome " +"ou nome de usuário." +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:29 msgid "A map of the world, that can indicate values in different countries." msgstr "Um mapa do mundo, que pode indicar valores em diferentes países." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:27 msgid "" -"A map that takes rendering circles with a variable radius at latitude/" -"longitude coordinates" +"A map that takes rendering circles with a variable radius at " +"latitude/longitude coordinates" msgstr "" "Um mapa que mostra círculos de renderização com um raio variável em " "coordenadas de latitude/longitude" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:230 +#: superset-frontend/src/explore/controls.jsx:237 msgid "A metric to use for color" msgstr "Uma métrica para cor" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:28 msgid "" "A polar coordinate chart where the circle is broken into wedges of equal " -"angle, and the value represented by any wedge is illustrated by its area, " -"rather than its radius or sweep angle." +"angle, and the value represented by any wedge is illustrated by its area," +" rather than its radius or sweep angle." msgstr "" -"Um gráfico de coordenadas polares em que o círculo é dividido em cunhas de " -"igual ângulo e o valor representado por qualquer cunha é ilustrado pela sua " -"área, em vez do seu raio ou ângulo de varrimento." +"Um gráfico de coordenadas polares em que o círculo é dividido em cunhas " +"de igual ângulo e o valor representado por qualquer cunha é ilustrado " +"pela sua área, em vez do seu raio ou ângulo de varrimento." +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:700 msgid "A readable URL for your dashboard" msgstr "Uma URL legível para seu painel" -msgid "" -"A reference to the [Time] configuration, taking granularity into account" -msgstr "" -"Uma referência para a configuração [Time] , tomando granularidade em conta" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:45 +#: superset-frontend/src/explore/controls.jsx:113 +msgid "A reference to the [Time] configuration, taking granularity into account" +msgstr "Uma referência para a configuração [Time] , tomando granularidade em conta" +#: superset/reports/commands/exceptions.py:186 +#, python-format msgid "A report named \"%(name)s\" already exists" msgstr "Já existe um relatório denominado \"%(name)s\"" +#: superset-frontend/src/explore/components/SaveModal.tsx:368 msgid "A reusable dataset will be saved with your chart." msgstr "Um conjunto de dados reutilizável vai ser salvo com seu gráfico." +#: superset-frontend/src/components/ReportModal/index.tsx:308 msgid "A screenshot of the dashboard will be sent to your email at" msgstr "Uma captura de tela do painel vai ser enviado para seu e-mail em" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 +#: superset/connectors/sqla/views.py:365 msgid "" "A set of parameters that become available in the query using Jinja " "templating syntax" @@ -604,198 +945,290 @@ msgstr "" "Um conjunto de parâmetros que tornar-se disponível na consulta usando a " "sintaxe de modelagem Jinja" +#: superset/common/query_context_processor.py:417 +msgid "A time column must be specified when using a Time Comparison." +msgstr "Uma coluna de tempo deve ser especificada ao usar uma comparação de tempo." + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:32 msgid "" "A time series chart that visualizes how a related metric from multiple " "groups vary over time. Each group is visualized using a different color." msgstr "" -"Um gráfico de séries temporais que visualiza como uma métrica relacionada de " -"vários grupos varia ao longo do tempo. Cada grupo é visualizado usando uma " -"cor diferente." - -msgid "A time column must be specified when using a Time Comparison." -msgstr "" -"Uma coluna de tempo deve ser especificada ao usar uma comparação de tempo." +"Um gráfico de séries temporais que visualiza como uma métrica relacionada" +" de vários grupos varia ao longo do tempo. Cada grupo é visualizado " +"usando uma cor diferente." +#: superset/reports/commands/exceptions.py:228 msgid "A timeout occurred while executing the query." msgstr "Ocorreu um tempo limite durante a execução da consulta." +#: superset/reports/commands/exceptions.py:238 msgid "A timeout occurred while generating a csv." msgstr "Ocorreu um tempo limite ao gerar um arquivo csv." +#: superset/reports/commands/exceptions.py:243 msgid "A timeout occurred while generating a dataframe." msgstr "Ocorreu um timeout durante a geração de um dataframe." +#: superset/reports/commands/exceptions.py:233 msgid "A timeout occurred while taking a screenshot." msgstr "Ocorreu um tempo limite ao fazer uma captura de tela." +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:299 msgid "A valid color scheme is required" msgstr "Um esquema de cores válido é necessário" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:338 msgid "APPLY" msgstr "APLICAR" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:94 msgid "APR" msgstr "ABR" +#: superset-frontend/src/pages/DatabaseList/index.tsx:323 +#: superset-frontend/src/pages/DatabaseList/index.tsx:489 msgid "AQE" msgstr "AQE" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:98 msgid "AUG" msgstr "AGO" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:114 msgid "AXIS TITLE MARGIN" msgstr "MARGEM DO TÍTULO DO EIXO" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:131 msgid "AXIS TITLE POSITION" msgstr "POSIÇÃO DO TÍTULO DO EIXO" +#: superset-frontend/src/features/home/RightMenu.tsx:492 msgid "About" msgstr "Sobre" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:479 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:522 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:411 msgid "Access" msgstr "Acessar" +#: superset/initialization/__init__.py:425 msgid "Access requests" msgstr "Pedidos de acesso" +#: superset-frontend/src/components/TableLoader/index.tsx:91 msgid "Access to user activity data is restricted" msgstr "O acesso aos dados de atividade dos usuários é restrito" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:175 msgid "Access token" msgstr "Token de acesso" +#: superset/views/core.py:318 msgid "Access was requested" msgstr "O acesso foi solicitado" +#: superset/views/log/__init__.py:31 msgid "Action" msgstr "Ação" +#: superset/initialization/__init__.py:387 msgid "Action Log" msgstr "Log de ação" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:87 +#: superset-frontend/src/pages/AlertReportList/index.tsx:404 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:246 +#: superset-frontend/src/pages/AnnotationList/index.tsx:203 +#: superset-frontend/src/pages/ChartList/index.tsx:569 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:229 +#: superset-frontend/src/pages/DashboardList/index.tsx:477 +#: superset-frontend/src/pages/DatabaseList/index.tsx:459 +#: superset-frontend/src/pages/DatasetList/index.tsx:499 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:327 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:216 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:437 +#: superset-frontend/src/pages/Tags/index.tsx:171 msgid "Actions" msgstr "Ações" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:386 +#: superset-frontend/src/pages/AlertReportList/index.tsx:355 msgid "Active" msgstr "Ativo" -msgid "Actual time range" -msgstr "Intervalo de tempo real" - +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:332 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:214 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:484 msgid "Actual Values" msgstr "Valores reais" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:310 +msgid "Actual time range" +msgstr "Intervalo de tempo real" + +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:64 msgid "Actual value" msgstr "Valor real" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:140 +#: superset-frontend/src/explore/controlPanels/sections.tsx:210 msgid "Actual values" msgstr "Valores reais" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 +#: superset-frontend/src/explore/controls.jsx:78 +#: superset-frontend/src/explore/controls.jsx:101 msgid "Adaptive formatting" msgstr "Formatação adaptável" +#: superset-frontend/src/components/ReportModal/index.tsx:228 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 msgid "Add" msgstr "Adicionar" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:381 msgid "Add Alert" msgstr "Adicionar alerta" +#: superset/views/css_templates.py:40 msgid "Add CSS Template" msgstr "Adicionar modelo CSS" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:230 msgid "Add CSS template" msgstr "Adicionar modelo CSS" +#: superset/views/chart/mixin.py:27 msgid "Add Chart" msgstr "Adicionar gráfico" +#: superset/connectors/sqla/views.py:73 msgid "Add Column" msgstr "Adicionar coluna" +#: superset/views/dashboard/mixin.py:26 msgid "Add Dashboard" msgstr "Adicionar painel" +#: superset/views/database/mixins.py:35 msgid "Add Database" msgstr "Adicionar Banco de dados" +#: superset/views/log/__init__.py:23 msgid "Add Log" msgstr "Adicionar Log" +#: superset/connectors/sqla/views.py:208 msgid "Add Metric" msgstr "Adicionar Métrica" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:380 msgid "Add Report" msgstr "Adicionar relatório" -msgid "Add Row level security filter" -msgstr "Adicionar filtro de segurança de nível de linha" - -msgid "Add row level security filter" -msgstr "Adicionar filtro de segurança de nível de linha" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +#, fuzzy +msgid "Add Rule" +msgstr "Fórmula ruim." +#: superset/views/sql_lab/views.py:54 msgid "Add Saved Query" msgstr "Adicionar Consulta Salva" +#: superset/views/dynamic_plugins.py:60 msgid "Add a Plugin" msgstr "Adicionar um Plugin" +#: superset-frontend/src/pages/ChartCreation/index.tsx:351 msgid "Add a dataset" msgstr "Adicionar um conjunto de dados" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:272 msgid "Add a new tab" msgstr "Adicionar uma nova aba" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:296 msgid "Add a new tab to create SQL Query" msgstr "Adicionar uma nova guia para criar Consulta SQL" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:220 msgid "Add additional custom parameters" msgstr "Adicionar parâmetros personalizados adicionais" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:119 msgid "Add an annotation layer" msgstr "Adicionar uma camada de anotação" +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:63 msgid "Add an item" msgstr "Adicionar um item" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:583 msgid "Add and edit filters" msgstr "Adicionar e editar filtros" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:282 msgid "Add annotation" msgstr "Adicionar anotação" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:214 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:226 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:242 msgid "Add annotation layer" msgstr "Adicionar camada de anotação" -msgid "Add calculated columns to dataset in \"Edit datasource\"modal" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:306 +#, fuzzy +msgid "Add calculated columns to dataset in \"Edit datasource\" modal" msgstr "" "Adicionar colunas calculadas para conjunto de dados em \"Edit " "datasource\"modal" -msgid "Add calculated temporal columns to dataset in \"Edit datasource\"modal" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:303 +#, fuzzy +msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" msgstr "" "Adicionar colunas temporais calculadas para conjunto de dados em \"Edit " "datasource\"modal" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:197 msgid "Add cross-filter" msgstr "Adicionar filtro cruzado" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 +msgid "Add custom scoping" +msgstr "" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 msgid "Add delivery method" msgstr "Adicionar método de entrega" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 msgid "Add extra connection information." msgstr "Adicione informações adicionais sobre a conexão." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:176 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:372 msgid "Add filter" msgstr "Adicionar filtro" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:960 msgid "" "Add filter clauses to control the filter's source query,\n" " though only in the context of the autocomplete i.e., " "these conditions\n" " do not impact how the filter is applied to the " "dashboard. This is useful\n" -" when you want to improve the query's performance by only " -"scanning a subset\n" +" when you want to improve the query's performance by " +"only scanning a subset\n" " of the underlying data or limit the available values " "displayed in the filter." msgstr "" @@ -804,284 +1237,477 @@ msgstr "" " embora apenas no contexto do preenchimento automático, ou seja, esses " "condições \n" " não impactam como o filtro é aplicado para o painel. Isso é util \n" -" quando você quiser melhorar o desempenho da consulta apenas analisando um " -"subconjunto \n" +" quando você quiser melhorar o desempenho da consulta apenas analisando " +"um subconjunto \n" " de dados subjacentes ou limitar os valores disponíveis apresentados no " "filtro." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:109 msgid "Add filters and dividers" msgstr "Adicionar filtros e divisores" +#: superset-frontend/src/components/Datasource/CollectionTable.tsx:458 msgid "Add item" msgstr "Adicionar item" +#: superset-frontend/src/explore/components/controls/MetricControl/MetricsControl.jsx:333 msgid "Add metric" msgstr "Adicionar métrica" -msgid "Add metrics to dataset in \"Edit datasource\"modal" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:401 +#, fuzzy +msgid "Add metrics to dataset in \"Edit datasource\" modal" msgstr "Adicionar Métricas para conjunto de dados em \"Edit datasource\"modal" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:176 msgid "Add new color formatter" msgstr "Adicionar novo formatador de cores" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:169 msgid "Add new formatter" msgstr "Adicionar novo formatador" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:374 msgid "Add notification method" msgstr "Adicionar método de notificação" +#: superset-frontend/src/components/Chart/Chart.jsx:267 msgid "Add required control values to preview chart" msgstr "Adicionar controle de valores obrigatórios para visualizar o gráfico" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:254 msgid "Add required control values to save chart" msgstr "Adicionar controle de valores obrigatórios para salvar gráfico" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:107 msgid "Add sheet" msgstr "Adicionar planilha" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:219 msgid "Add the name of the chart" msgstr "Adicione o nome do gráfico" +#: superset-frontend/src/dashboard/components/Header/index.jsx:512 msgid "Add the name of the dashboard" msgstr "Adicione o nome do painel" +#: superset-frontend/src/explore/components/SaveModal.tsx:386 msgid "Add to dashboard" msgstr "Adicionar ao painel" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:126 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:146 msgid "Add/Edit Filters" msgstr "Adicionar/Editar filtros" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:122 +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:149 msgid "Added" msgstr "Adicionado" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:174 +#, fuzzy, python-format msgid "Added to 1 dashboard" -msgstr "Adicionado a 1 painel" +msgid_plural "Added to %s dashboards" +msgstr[0] "Adicionado a 1 painel" +msgstr[1] "" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:218 msgid "Additional Parameters" msgstr "Parâmetros adicionais" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1843 msgid "Additional fields may be required" msgstr "Adicional campos que podem ser necessários" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:324 msgid "Additional information" msgstr "Informação adicional" -msgid "Additional text to add before or after the value, e.g. unit" -msgstr "" -"Texto adicional para adicionar antes ou depois o valor, por exemplo, unidade" - -msgid "Adjust how this database will interact with SQL Lab." -msgstr "Ajustar como esse banco de dados vai interagir com SQL Lab." - -msgid "Adjust performance settings of this database." -msgstr "Ajuste as configurações de desempenho desse banco de dados." - +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:95 msgid "Additional metadata" msgstr "Metadados adicionais" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:54 msgid "Additional padding for legend." msgstr "Preenchimento adicional da legenda." +#: superset/db_engine_specs/base.py:1885 +#: superset/db_engine_specs/clickhouse.py:221 msgid "Additional parameters" msgstr "Parâmetros adicionais" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 msgid "Additional settings." msgstr "Configurações adicionais." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:162 +msgid "Additional text to add before or after the value, e.g. unit" +msgstr "" +"Texto adicional para adicionar antes ou depois o valor, por exemplo, " +"unidade" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:39 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:47 msgid "Additive" msgstr "Aditivo" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 +msgid "Adjust how this database will interact with SQL Lab." +msgstr "Ajustar como esse banco de dados vai interagir com SQL Lab." + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:231 +msgid "Adjust performance settings of this database." +msgstr "Ajuste as configurações de desempenho desse banco de dados." + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:132 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:127 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:93 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:153 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:66 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:939 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:771 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 msgid "Advanced" msgstr "Avançado" -msgid "Advanced analytics" -msgstr "Analytics avançado" - +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:115 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:235 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:117 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:385 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:169 msgid "Advanced Analytics" msgstr "Análise avançada" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:291 msgid "Advanced Data type" msgstr "Tipo de dados avançado" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:25 +#: superset-frontend/src/explore/controlPanels/sections.tsx:117 +msgid "Advanced analytics" +msgstr "Analytics avançado" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:289 msgid "Advanced analytics Query A" msgstr "Análise avançada Consulta A" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:291 msgid "Advanced analytics Query B" msgstr "Análise avançada Consulta B" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:287 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:359 msgid "Advanced data type" msgstr "Tipo de dados avançado" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:45 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:37 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:70 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:130 msgid "Advanced-Analytics" msgstr "Análise avançada" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:62 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:41 msgid "Aesthetic" msgstr "Estética" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:82 msgid "After" msgstr "Depois de" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:57 msgid "Aggregate" msgstr "Agregado" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:84 msgid "Aggregate Mean" msgstr "Média agregada" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:89 msgid "Aggregate Sum" msgstr "Soma agregada" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:194 msgid "" -"Aggregate function applied to the list of points in each cluster to produce " -"the cluster label." +"Aggregate function applied to the list of points in each cluster to " +"produce the cluster label." msgstr "" -"Função agregada aplicada à lista de pontos em cada cluster para produzir o " -"rótulo do cluster." - -msgid "Aggregation function" -msgstr "Função de agregação" +"Função agregada aplicada à lista de pontos em cada cluster para produzir " +"o rótulo do cluster." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:202 msgid "" -"Aggregate function to apply when pivoting and computing the total rows and " -"columns" +"Aggregate function to apply when pivoting and computing the total rows " +"and columns" msgstr "" -"Função agregada a aplicar ao dinamizar e calcular o total de linhas e colunas" +"Função agregada a aplicar ao dinamizar e calcular o total de linhas e " +"colunas" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:27 msgid "" -"Aggregates data within the boundary of grid cells and maps the aggregated " -"values to a dynamic color scale" +"Aggregates data within the boundary of grid cells and maps the aggregated" +" values to a dynamic color scale" msgstr "" "Agrega dados dentro dos limites das células do grid e mapeia os valores " "agregados para uma escala de cores dinâmica" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +#, fuzzy +msgid "Aggregation" +msgstr "agregar" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 +msgid "Aggregation function" +msgstr "Função de agregação" + +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:162 msgid "Alert" msgstr "Alerta" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:92 msgid "Alert Triggered, In Grace Period" msgstr "Alerta Acionado, em período de carência" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:387 msgid "Alert condition" msgstr "Condição de alerta" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:395 msgid "Alert condition schedule" msgstr "Programação do estado de alerta" +#: superset/reports/commands/exceptions.py:253 msgid "Alert ended grace period." msgstr "O alerta terminou o período de carência." +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:82 msgid "Alert failed" msgstr "Falha no alerta" +#: superset/reports/commands/exceptions.py:248 msgid "Alert fired during grace period." msgstr "Alerta disparado durante o período de carência." +#: superset/reports/commands/exceptions.py:223 msgid "Alert found an error while executing a query." msgstr "O alerta encontrou um erro durante a execução de uma consulta." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:383 msgid "Alert name" msgstr "Nome do alerta" +#: superset/reports/commands/exceptions.py:258 msgid "Alert on grace period" msgstr "Alerta em período de carência" +#: superset/reports/commands/exceptions.py:214 msgid "Alert query returned a non-number value." msgstr "A consulta do alerta retornou um valor não numérico." +#: superset/reports/commands/exceptions.py:209 msgid "Alert query returned more than one column." msgstr "A consulta do alerta retornou mais de uma coluna." +#: superset/reports/commands/alert.py:109 +#, python-format msgid "Alert query returned more than one column. %s columns returned" -msgstr "" -"A consulta do alerta retornou mais de uma coluna. %s colunas retornadas" +msgstr "A consulta do alerta retornou mais de uma coluna. %s colunas retornadas" +#: superset/reports/commands/exceptions.py:199 msgid "Alert query returned more than one row." msgstr "A consulta do alerta retornou mais do que uma linha." +#: superset/reports/commands/alert.py:100 +#, python-format msgid "Alert query returned more than one row. %s rows returned" msgstr "A consulta do alerta retornou mais de uma linha. %s linhas retornadas" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:75 msgid "Alert running" msgstr "Alerta em execução" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:68 msgid "Alert triggered, notification sent" msgstr "Alerta acionado , notificação enviada" +#: superset/reports/commands/exceptions.py:204 msgid "Alert validator config error." msgstr "Erro na configuração do validador do alerta." +#: superset-frontend/src/pages/AlertReportList/index.tsx:534 msgid "Alerts" msgstr "Alertas" +#: superset/initialization/__init__.py:404 msgid "Alerts & Reports" msgstr "Alertas e Relatórios" +#: superset-frontend/src/pages/AlertReportList/index.tsx:519 +#: superset-frontend/src/pages/AlertReportList/index.tsx:523 msgid "Alerts & reports" msgstr "Alertas e relatórios" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:116 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:442 msgid "Align +/-" msgstr "Alinhar +/-" +#: superset-frontend/src/pages/AlertReportList/index.tsx:457 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:288 +#: superset-frontend/src/pages/ChartList/index.tsx:613 +#: superset-frontend/src/pages/ChartList/index.tsx:635 +#: superset-frontend/src/pages/ChartList/index.tsx:657 +#: superset-frontend/src/pages/ChartList/index.tsx:683 +#: superset-frontend/src/pages/ChartList/index.tsx:693 +#: superset-frontend/src/pages/ChartList/index.tsx:719 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:278 +#: superset-frontend/src/pages/DashboardList/index.tsx:528 +#: superset-frontend/src/pages/DashboardList/index.tsx:550 +#: superset-frontend/src/pages/DashboardList/index.tsx:600 +#: superset-frontend/src/pages/DatabaseList/index.tsx:476 +#: superset-frontend/src/pages/DatabaseList/index.tsx:496 +#: superset-frontend/src/pages/Home/index.tsx:205 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:354 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:453 +#: superset-frontend/src/pages/Tags/index.tsx:187 msgid "All" msgstr "Todos" -msgid "All Text" -msgstr "Todos os Textos" - -msgid "All charts" -msgstr "Todos os gráficos" - +#: superset-frontend/src/pages/AllEntities/index.tsx:76 +#: superset/initialization/__init__.py:370 msgid "All Entities" msgstr "Todas as entidades" +#: superset/annotation_layers/annotations/filters.py:28 +#: superset/annotation_layers/filters.py:30 superset/charts/filters.py:36 +#: superset/css_templates/filters.py:28 +#: superset/queries/saved_queries/filters.py:31 superset/reports/filters.py:44 +msgid "All Text" +msgstr "Todos os Textos" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 +#: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:85 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:128 +msgid "All charts" +msgstr "Todos os gráficos" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 +msgid "All charts/global scoping" +msgstr "" + +#: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 msgid "All filters" msgstr "Todos os filtros" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:235 +#, python-format msgid "All filters (%(filterCount)d)" msgstr "Todos os filtros (%(filterCount)d)" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 msgid "All panels" msgstr "Todos os painéis" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:138 msgid "All panels with this column will be affected by this filter" msgstr "Todos painéis com essa coluna vão ser afetados por esse filtro" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 +#: superset/views/database/mixins.py:184 msgid "Allow CREATE TABLE AS" msgstr "Permitir CREATE TABLE AS" +#: superset/views/database/mixins.py:112 msgid "Allow CREATE TABLE AS option in SQL Lab" msgstr "Permitir a opção CREATE TABLE AS no SQL Lab" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 +#: superset/views/database/mixins.py:185 msgid "Allow CREATE VIEW AS" msgstr "Permitir CREATE VIEW AS" +#: superset/views/database/mixins.py:113 msgid "Allow CREATE VIEW AS option in SQL Lab" msgstr "Permitir a opção CREATE VIEW AS no SQL Lab" +#: superset/views/database/mixins.py:198 msgid "Allow Csv Upload" msgstr "Permitir Csv Upload" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 +#: superset/views/database/mixins.py:186 msgid "Allow DML" msgstr "Permitir DML" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:468 msgid "Allow columns to be rearranged" msgstr "Permitir que as colunas sejam reorganizadas" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 msgid "Allow creation of new tables based on queries" msgstr "Permitir criação de novas tabelas baseadas em consultas" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 msgid "Allow creation of new views based on queries" msgstr "Permitir criação de novas visualizações baseadas em consultas" +#: superset-frontend/src/pages/DatabaseList/index.tsx:340 msgid "Allow data manipulation language" msgstr "Permitir linguagem de manipulação de dados" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:471 msgid "" -"Allow end user to drag-and-drop column headers to rearrange them. Note their " -"changes won't persist for the next time they open the chart." +"Allow end user to drag-and-drop column headers to rearrange them. Note " +"their changes won't persist for the next time they open the chart." msgstr "" -"Permitir que o usuário final arraste e solte os cabeçalhos das colunas para " -"os reorganizar. Note que as alterações não persistirão na próxima vez que o " -"utilizador abrir o gráfico." +"Permitir que o usuário final arraste e solte os cabeçalhos das colunas " +"para os reorganizar. Note que as alterações não persistirão na próxima " +"vez que o utilizador abrir o gráfico." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:421 +msgid "Allow file uploads to database" +msgstr "Permitir uploads de arquivos para o banco de dados" + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 msgid "" "Allow manipulation of the database using non-SELECT statements such as " "UPDATE, DELETE, CREATE, etc." @@ -1089,188 +1715,287 @@ msgstr "" "Permitir manipulação do banco de dados usando instruções não SELECT como " "UPDATE, DELETE, CREATE, etc." -msgid "Allow file uploads to database" -msgstr "Permitir uploads de arquivos para o banco de dados" - +#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:216 msgid "Allow multiple selections" msgstr "Permitir seleções múltiplas" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:190 msgid "Allow node selections" msgstr "Permitir seleções de nós" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:176 msgid "Allow sending multiple polygons as a filter event" msgstr "Permitir o envio de vários polígonos como um evento de filtro" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 msgid "Allow this database to be explored" msgstr "Permitir que esse banco de dados seja explorado" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 msgid "Allow this database to be queried in SQL Lab" msgstr "Permitir que o banco de dados seja consultado no SQL Lab" +#: superset/views/database/mixins.py:114 +#, fuzzy msgid "" -"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE,...) in SQL " -"Lab" +"Allow users to run non-SELECT statements (UPDATE, DELETE, CREATE, ...) in" +" SQL Lab" msgstr "" "Permitir que usuários executem instruções não SELECT (UPDATE, DELETE, " "CREATE,...) no SQL Lab" +#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:193 msgid "Allowed Domains (comma separated)" msgstr "Domínios permitidos (separados por vírgula)" +#: superset-frontend/src/pages/ChartList/index.tsx:737 +#: superset-frontend/src/pages/DashboardList/index.tsx:611 +#: superset-frontend/src/pages/Tags/index.tsx:217 msgid "Alphabetical" msgstr "Em ordem alfabética" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:54 msgid "" "Also known as a box and whisker plot, this visualization compares the " "distributions of a related metric across multiple groups. The box in the " "middle emphasizes the mean, median, and inner 2 quartiles. The whiskers " "around each box visualize the min, max, range, and outer 2 quartiles." msgstr "" -"Também conhecida como gráfico de caixa e bigode, esta visualização compara " -"as distribuições de uma métrica relacionada em vários grupos. A caixa no " -"meio enfatiza a média, a mediana e os dois quartis internos. Os bigodes em " -"torno de cada caixa visualizam o mínimo, o máximo, o intervalo e os dois " -"quartis externos." +"Também conhecida como gráfico de caixa e bigode, esta visualização " +"compara as distribuições de uma métrica relacionada em vários grupos. A " +"caixa no meio enfatiza a média, a mediana e os dois quartis internos. Os " +"bigodes em torno de cada caixa visualizam o mínimo, o máximo, o intervalo" +" e os dois quartis externos." +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:202 msgid "Altered" msgstr "Alterado" -msgid "a day ago" -msgstr "um dia atrás" - +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:71 msgid "An Error Occurred" msgstr "Ocorreu um erro" -msgid "" -"An enclosed time range (both start and end) must be specified when using a " -"Time Comparison." -msgstr "" -"Deve ser especificado um intervalo de tempo fechado (início e fim) quando se " -"utiliza uma comparação de tempo." +#: superset/reports/commands/exceptions.py:188 +#, python-format +msgid "An alert named \"%(name)s\" already exists" +msgstr "Já existe um alerta chamado \"%(name)s\"" +#: superset/common/query_context_processor.py:326 superset/viz.py:1352 msgid "" -"An engine must be specified when passing individual parameters to a database." +"An enclosed time range (both start and end) must be specified when using " +"a Time Comparison." +msgstr "" +"Deve ser especificado um intervalo de tempo fechado (início e fim) quando" +" se utiliza uma comparação de tempo." + +#: superset/databases/schemas.py:289 +msgid "" +"An engine must be specified when passing individual parameters to a " +"database." msgstr "" "Deve ser especificado um motor ao passar parâmetros individuais para uma " "base de dados." -msgid "An alert named \"%(name)s\" already exists" -msgstr "Já existe um alerta chamado \"%(name)s\"" - +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:791 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:183 +#: superset-frontend/src/components/Tags/utils.tsx:67 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:127 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:109 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:38 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:92 msgid "An error has occurred" msgstr "Ocorreu um erro" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:76 +#: superset-frontend/src/components/TableLoader/index.tsx:55 +#: superset-frontend/src/utils/getClientErrorObject.ts:197 msgid "An error occurred" msgstr "Ocorreu um erro" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:323 msgid "An error occurred saving dataset" msgstr "Ocorreu um erro ao salvar conjunto de dados" +#: superset/dashboards/permalink/exceptions.py:31 +#: superset/explore/permalink/exceptions.py:31 +#: superset/key_value/exceptions.py:38 +#: superset/temporary_cache/commands/exceptions.py:33 +msgid "An error occurred while accessing the value." +msgstr "Ocorreu um erro ao acessar o valor." + +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1360 msgid "" "An error occurred while collapsing the table schema. Please contact your " "administrator." msgstr "" -"Ocorreu um erro ao recolher o esquema da tabela. Por favor entre em contato " -"com o seu administrador." - -msgid "An error occurred while accessing the value." -msgstr "Ocorreu um erro ao acessar o valor." +"Ocorreu um erro ao recolher o esquema da tabela. Por favor entre em " +"contato com o seu administrador." +#: superset-frontend/src/views/CRUD/hooks.ts:308 +#, python-format msgid "An error occurred while creating %ss: %s" msgstr "Ocorreu um erro ao criar %ss: %s" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1530 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1552 msgid "An error occurred while creating the data source" msgstr "Ocorreu um erro ao criar a fonte de dados" +#: superset/dashboards/permalink/exceptions.py:27 +#: superset/explore/permalink/exceptions.py:27 +#: superset/key_value/exceptions.py:34 +#: superset/temporary_cache/commands/exceptions.py:29 msgid "An error occurred while creating the value." msgstr "Ocorreu um erro ao criar o valor." +#: superset/key_value/exceptions.py:42 +#: superset/temporary_cache/commands/exceptions.py:37 msgid "An error occurred while deleting the value." msgstr "Ocorreu um erro ao excluir o valor." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1336 msgid "" "An error occurred while expanding the table schema. Please contact your " "administrator." msgstr "" -"Ocorreu um erro ao expandir o esquema da tabela. Por favor entre em contato " -"com o seu administrador." +"Ocorreu um erro ao expandir o esquema da tabela. Por favor entre em " +"contato com o seu administrador." +#: superset-frontend/src/views/CRUD/hooks.ts:106 +#, python-format msgid "An error occurred while fetching %s info: %s" msgstr "Ocorreu um erro ao buscar as informações de %s: %s" +#: superset-frontend/src/views/CRUD/hooks.ts:174 +#: superset-frontend/src/views/CRUD/hooks.ts:265 +#: superset-frontend/src/views/CRUD/hooks.ts:353 +#, python-format msgid "An error occurred while fetching %ss: %s" msgstr "Ocorreu um erro durante a busca de %ss: %s" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:130 msgid "An error occurred while fetching available CSS templates" msgstr "Ocorreu um erro ao buscar os modelos CSS disponíveis" +#: superset-frontend/src/pages/ChartList/index.tsx:641 +#, python-format msgid "An error occurred while fetching chart created by values: %s" msgstr "Ocorreu um erro ao buscar o gráfico criado por valores: %s" +#: superset-frontend/src/pages/ChartList/index.tsx:619 +#, python-format msgid "An error occurred while fetching chart owners values: %s" msgstr "Ocorreu um erro ao obter os valores dos proprietários do gráfico: %s" +#: superset-frontend/src/pages/AlertReportList/index.tsx:479 +#, python-format msgid "An error occurred while fetching created by values: %s" msgstr "Ocorreu um erro durante a pesquisa de valores criados por: %s" +#: superset-frontend/src/pages/DashboardList/index.tsx:556 +#, python-format msgid "An error occurred while fetching dashboard created by values: %s" msgstr "Ocorreu um erro ao buscar o painel criado por valores: %s" +#: superset-frontend/src/pages/DashboardList/index.tsx:534 +#, python-format msgid "An error occurred while fetching dashboard owner values: %s" msgstr "Ocorreu um erro ao obter os valores do proprietário do painel: %s" +#: superset-frontend/src/pages/ChartList/index.tsx:299 msgid "An error occurred while fetching dashboards" msgstr "Ocorreu um erro durante a pesquisa de painéis" +#: superset-frontend/src/features/home/DashboardTable.tsx:148 +#: superset-frontend/src/pages/DashboardList/index.tsx:232 +#, python-format msgid "An error occurred while fetching dashboards: %s" msgstr "Ocorreu um erro durante a pesquisa de painéis: %s" +#: superset-frontend/src/pages/DatabaseList/index.tsx:156 +#, python-format msgid "An error occurred while fetching database related data: %s" msgstr "Ocorreu um erro ao obter dados relacionados com a base de dados: %s" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:360 +#, python-format msgid "An error occurred while fetching database values: %s" msgstr "Ocorreu um erro durante a extração dos valores da base de dados: %s" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:293 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:283 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:459 +#, python-format msgid "An error occurred while fetching dataset datasource values: %s" msgstr "" -"Ocorreu um erro ao obter os valores da fonte de dados do conjunto de dados: " -"%s" +"Ocorreu um erro ao obter os valores da fonte de dados do conjunto de " +"dados: %s" +#: superset-frontend/src/pages/DatasetList/index.tsx:521 +#, python-format msgid "An error occurred while fetching dataset owner values: %s" msgstr "" -"Ocorreu um erro ao obter os valores do proprietário do conjunto de dados: %s" +"Ocorreu um erro ao obter os valores do proprietário do conjunto de dados:" +" %s" +#: superset-frontend/src/pages/DatasetList/index.tsx:233 msgid "An error occurred while fetching dataset related data" msgstr "Ocorreu um erro ao obter dados relacionados com o conjunto de dados" +#: superset-frontend/src/pages/DatasetList/index.tsx:253 +#, python-format msgid "An error occurred while fetching dataset related data: %s" -msgstr "" -"Ocorreu um erro ao obter dados relacionados com o conjunto de dados: %s" +msgstr "Ocorreu um erro ao obter dados relacionados com o conjunto de dados: %s" +#: superset-frontend/src/pages/DatasetList/index.tsx:541 +#, python-format msgid "An error occurred while fetching datasets: %s" msgstr "Ocorreu um erro durante a pesquisa de conjuntos de dados: %s" +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx:120 msgid "An error occurred while fetching function names." msgstr "Ocorreu um erro durante a busca de nomes de funções." +#: superset-frontend/src/pages/AlertReportList/index.tsx:462 +#, python-format msgid "An error occurred while fetching owners values: %s" msgstr "Ocorreu um erro ao buscar os valores dos proprietários: %s" +#: superset-frontend/src/pages/DatasetList/index.tsx:557 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:378 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:480 +#, python-format msgid "An error occurred while fetching schema values: %s" msgstr "Ocorreu um erro durante a extração dos valores do esquema: %s" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:795 msgid "An error occurred while fetching tab state" msgstr "Ocorreu um erro ao obter o estado da aba" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1191 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1216 msgid "An error occurred while fetching table metadata" msgstr "Ocorreu um erro ao obter os metadados da tabela" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1288 +msgid "" +"An error occurred while fetching table metadata. Please contact your " +"administrator." +msgstr "" +"Ocorreu um erro ao obter os metadados da tabela. Por favor entre em " +"contato com seu administrador." + +#: superset-frontend/src/pages/Tags/index.tsx:193 +#, python-format msgid "An error occurred while fetching tag created by values: %s" msgstr "Ocorreu um erro ao buscar a tag criada por valores: %s" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:396 +#, python-format msgid "An error occurred while fetching user values: %s" msgstr "Ocorreu um erro ao buscar os valores do usuário: %s" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:831 msgid "" "An error occurred while hiding the left bar. Please contact your " "administrator." @@ -1278,83 +2003,68 @@ msgstr "" "Ocorreu um erro ao ocultar a barra esquerda. Entre em contato com o " "administrador." +#: superset-frontend/src/views/CRUD/hooks.ts:506 +#: superset-frontend/src/views/CRUD/hooks.ts:522 +#, python-format msgid "An error occurred while importing %s: %s" msgstr "Ocorreu um erro durante a importação de %s: %s" -msgid "" -"An error occurred while fetching table metadata. Please contact your " -"administrator." -msgstr "" -"Ocorreu um erro ao obter os metadados da tabela. Por favor entre em contato " -"com seu administrador." +#: superset-frontend/src/explore/components/SaveModal.tsx:135 +#, fuzzy +msgid "An error occurred while loading dashboard information." +msgstr "Ocorreu um erro durante a pesquisa de painéis" +#: superset-frontend/src/components/Chart/chartAction.js:579 msgid "An error occurred while loading the SQL" msgstr "Ocorreu um erro ao carregar o SQL" +#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:325 msgid "An error occurred while opening Explore" msgstr "Ocorreu um erro ao abrir o Explorador" +#: superset/key_value/exceptions.py:30 msgid "An error occurred while parsing the key." msgstr "Ocorreu um erro ao analisar a chave." -msgid "An error occurred while pruning logs" +#: superset/reports/commands/exceptions.py:286 +#, fuzzy +msgid "An error occurred while pruning logs " msgstr "Ocorreu um erro ao podar os registos" -msgid "" -"An error occurred while removing query. Please contact your administrator." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:888 +msgid "An error occurred while removing query. Please contact your administrator." msgstr "" -"Ocorreu um erro ao remover a consulta. Por favor entre em contato com seu " -"administrador." +"Ocorreu um erro ao remover a consulta. Por favor entre em contato com seu" +" administrador." -msgid "" -"An error occurred while removing tab. Please contact your administrator." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:853 +msgid "An error occurred while removing tab. Please contact your administrator." msgstr "" "Ocorreu um erro ao remover a aba. Por favor entre em contato com seu " "administrador." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1388 msgid "" "An error occurred while removing the table schema. Please contact your " "administrator." msgstr "" -"Ocorreu um erro ao remover o esquema da tabela. Por favor entre em contato " -"com seu administrador." +"Ocorreu um erro ao remover o esquema da tabela. Por favor entre em " +"contato com seu administrador." +#: superset-frontend/src/components/Chart/chartReducer.ts:96 +#, python-format msgid "An error occurred while rendering the visualization: %s" msgstr "Ocorreu um erro ao renderizar a visualização: %s" -msgid "" -"An error occurred while setting the tab name. Please contact your " -"administrator." -msgstr "" -"Ocorreu um erro ao definir o nome da guia. Entre em contato com o " -"administrador." - -msgid "An error occurred while starring this chart" -msgstr "Ocorreu um erro ao inserir esse gráfico" - -msgid "" -"An error occurred while storing your query in the backend. To avoid losing " -"your changes, please save your query using the \"Save Query\" button." -msgstr "" -"Ocorreu um erro ao armazenar sua consulta no backend. Para evitar a perda de " -"suas alterações, salve a consulta usando o botão \"Save Query\"." - -msgid "An error occurred while updating the value." -msgstr "Ocorreu um erro ao atualizar o valor." - -msgid "An error occurred while upserting the value." -msgstr "Ocorreu um erro ao inserir o valor." - -msgid "An unexpected error occurred" -msgstr "Ocorreu um erro inesperado" - +#: superset-frontend/src/SqlLab/actions/sqlLab.js:706 msgid "" "An error occurred while setting the active tab. Please contact your " "administrator." msgstr "" -"Ocorreu um erro ao definir a aba ativa. Por favor entre em contato com seu " -"administrador." +"Ocorreu um erro ao definir a aba ativa. Por favor entre em contato com " +"seu administrador." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:967 msgid "" "An error occurred while setting the tab autorun. Please contact your " "administrator." @@ -1362,694 +2072,1114 @@ msgstr "" "Ocorreu um erro ao definir a aba. Por favor entre em contato com seu " "administrador." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:911 msgid "" "An error occurred while setting the tab database ID. Please contact your " "administrator." msgstr "" -"Ocorreu um erro ao definir o ID da base de dados da aba. Por favor entre em " -"contato com seu administrador." +"Ocorreu um erro ao definir o ID da base de dados da aba. Por favor entre " +"em contato com seu administrador." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:996 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1120 +msgid "" +"An error occurred while setting the tab name. Please contact your " +"administrator." +msgstr "" +"Ocorreu um erro ao definir o nome da guia. Entre em contato com o " +"administrador." + +#: superset-frontend/src/SqlLab/actions/sqlLab.js:942 msgid "" "An error occurred while setting the tab schema. Please contact your " "administrator." msgstr "" -"Ocorreu um erro ao definir o esquema da aba. Por favor entre em contato com " -"seu administrador." +"Ocorreu um erro ao definir o esquema da aba. Por favor entre em contato " +"com seu administrador." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1146 msgid "" -"An error occurred while setting the tab template parameters. Please contact " -"your administrator." +"An error occurred while setting the tab template parameters. Please " +"contact your administrator." msgstr "" -"Ocorreu um erro ao definir os parâmetros do modelo da aba. Por favor entre " -"em contato com seu administrador." +"Ocorreu um erro ao definir os parâmetros do modelo da aba. Por favor " +"entre em contato com seu administrador." +#: superset-frontend/src/explore/actions/exploreActions.ts:89 +msgid "An error occurred while starring this chart" +msgstr "Ocorreu um erro ao inserir esse gráfico" + +#: superset-frontend/src/SqlLab/actions/sqlLab.js:255 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:301 msgid "" -"An error occurred while storing the latest query id in the backend. Please " -"contact your administrator if this problem persists." +"An error occurred while storing the latest query id in the backend. " +"Please contact your administrator if this problem persists." msgstr "" -"Ocorreu um erro ao armazenar o ID da consulta mais recente no backend. Por " -"favor entre em contato com seu administrador se esse problema persist." +"Ocorreu um erro ao armazenar o ID da consulta mais recente no backend. " +"Por favor entre em contato com seu administrador se esse problema " +"persist." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1087 msgid "" -"An error occurred while storing your query in the backend. To avoid losing " -"your changes, please save your query using the \"Save Query\"button." +"An error occurred while storing your query in the backend. To avoid " +"losing your changes, please save your query using the \"Save Query\" " +"button." msgstr "" -"Ocorreu um erro ao armazenar a sua consulta no backend. Para evitar perder " -"as suas alterações, guarde a sua consulta utilizando o botão \"Save Query\"." +"Ocorreu um erro ao armazenar sua consulta no backend. Para evitar a perda" +" de suas alterações, salve a consulta usando o botão \"Save Query\"." +#: superset/key_value/exceptions.py:46 +#: superset/temporary_cache/commands/exceptions.py:41 +msgid "An error occurred while updating the value." +msgstr "Ocorreu um erro ao atualizar o valor." + +#: superset/key_value/exceptions.py:50 +msgid "An error occurred while upserting the value." +msgstr "Ocorreu um erro ao inserir o valor." + +#: superset/databases/commands/exceptions.py:162 +msgid "An unexpected error occurred" +msgstr "Ocorreu um erro inesperado" + +#: superset/views/core.py:745 msgid "An unknown error occurred. Please contact your Superset administrator" msgstr "" "Ocorreu um erro desconhecido. Por favor entre em contato com seu " "administrador do Superset" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:235 msgid "Anchor to" msgstr "Âncora para" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:117 msgid "Angle at which to end progress axis" msgstr "Ângulo em que termina o eixo de progressão" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:107 msgid "Angle at which to start progress axis" msgstr "Ângulo em que inicia o eixo de progressão" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:187 msgid "Animation" msgstr "Animação" +#: superset-frontend/src/pages/AnnotationList/index.tsx:216 +#: superset-frontend/src/pages/AnnotationList/index.tsx:249 msgid "Annotation" msgstr "Anotação" +#: superset-frontend/src/pages/AnnotationList/index.tsx:259 +#, python-format msgid "Annotation Layer %s" msgstr "Camada de anotação %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:127 +#: superset/initialization/__init__.py:414 msgid "Annotation Layers" msgstr "Camadas de anotação" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:530 msgid "Annotation Slice Configuration" msgstr "Configuração de fatia de anotação" +#: superset/annotation_layers/annotations/commands/exceptions.py:64 msgid "Annotation could not be created." msgstr "Não foi possível criar uma anotação." +#: superset/annotation_layers/annotations/commands/exceptions.py:68 msgid "Annotation could not be updated." msgstr "Não foi possível atualizar uma anotação." +#: superset/annotation_layers/annotations/commands/exceptions.py:72 msgid "Annotation delete failed." msgstr "A eliminação da anotação falhou." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:446 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:262 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:319 msgid "Annotation layer" msgstr "Camada de anotação" -msgid "Annotation layer description columns" -msgstr "Colunas de descrição da camada de anotação" - -msgid "Annotation layer interval end" -msgstr "Fim do intervalo da camada de anotação" - +#: superset/annotation_layers/commands/exceptions.py:37 msgid "Annotation layer could not be created." msgstr "Não foi possível criar uma camada de anotação." +#: superset/annotation_layers/commands/exceptions.py:33 msgid "Annotation layer could not be deleted." msgstr "Não foi possível remover uma camada de anotação." +#: superset/annotation_layers/commands/exceptions.py:41 msgid "Annotation layer could not be updated." msgstr "Não foi possível atualizar uma camada de anotação." +#: superset/annotation_layers/commands/exceptions.py:49 msgid "Annotation layer delete failed." msgstr "Exclusão da camada de anotação falhou." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:582 +msgid "Annotation layer description columns" +msgstr "Colunas de descrição da camada de anotação" + +#: superset/annotation_layers/commands/exceptions.py:53 +#: superset/annotation_layers/commands/exceptions.py:57 msgid "Annotation layer has associated annotations." msgstr "A camada de anotação tem anotações associadas." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:557 +msgid "Annotation layer interval end" +msgstr "Fim do intervalo da camada de anotação" + +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:251 msgid "Annotation layer name" msgstr "Nome da camada de anotação" -msgid "Annotation layer opacity" -msgstr "Opacidade da camada de anotação" - -msgid "Annotation layer stroke" -msgstr "Traço da camada de anotação" - -msgid "Annotation layer time column" -msgstr "Coluna de tempo da camada de anotação" - -msgid "Annotation layer title column" -msgstr "Coluna de título da camada de anotação" - +#: superset/annotation_layers/commands/exceptions.py:45 msgid "Annotation layer not found." msgstr "Camada de anotação não encontrada." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:699 +msgid "Annotation layer opacity" +msgstr "Opacidade da camada de anotação" + +#: superset/annotation_layers/commands/exceptions.py:29 msgid "Annotation layer parameters are invalid." msgstr "Os parâmetros da camada de anotação são inválidos." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:684 +msgid "Annotation layer stroke" +msgstr "Traço da camada de anotação" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:537 +msgid "Annotation layer time column" +msgstr "Coluna de tempo da camada de anotação" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:571 +msgid "Annotation layer title column" +msgstr "Coluna de título da camada de anotação" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:810 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:813 msgid "Annotation layer type" msgstr "Tipo da camada de anotação" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:467 msgid "Annotation layer value" msgstr "Valor da camada de anotação" +#: superset-frontend/src/explore/controlPanels/sections.tsx:83 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:71 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:335 msgid "Annotation layers" msgstr "Camadas de anotação" +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:55 msgid "Annotation layers are still loading." msgstr "As camadas de anotação ainda estão carregando." -msgid "Annotation source" -msgstr "Fonte de anotação" - -msgid "Annotation source type" -msgstr "Tipo de fonte de anotação" - -msgid "Annotation template created" -msgstr "Modelo de anotação criado" - -msgid "Annotation template updated" -msgstr "Modelo de anotação atualizado" - -msgid "Annotations and Layers" -msgstr "Anotações e camadas" - +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:291 msgid "Annotation name" msgstr "Nome da anotação" +#: superset/annotation_layers/annotations/commands/exceptions.py:56 msgid "Annotation not found." msgstr "Anotação não encontrada." +#: superset/annotation_layers/annotations/commands/exceptions.py:60 msgid "Annotation parameters are invalid." msgstr "Parâmetros de anotação são inválidos." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:825 +msgid "Annotation source" +msgstr "Fonte de anotação" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:822 +msgid "Annotation source type" +msgstr "Tipo de fonte de anotação" + +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:154 +msgid "Annotation template created" +msgstr "Modelo de anotação criado" + +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:139 +msgid "Annotation template updated" +msgstr "Modelo de anotação atualizado" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:25 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:116 +msgid "Annotations and Layers" +msgstr "Anotações e camadas" + +#: superset-frontend/src/explore/controlPanels/sections.tsx:72 msgid "Annotations and layers" msgstr "Anotações e camadas" +#: superset/annotation_layers/annotations/commands/exceptions.py:52 msgid "Annotations could not be deleted." msgstr "Anotações não foram excluídas." +#: superset-frontend/src/pages/ChartList/index.tsx:596 +#: superset-frontend/src/pages/ChartList/index.tsx:705 +#: superset-frontend/src/pages/DashboardList/index.tsx:504 +#: superset-frontend/src/pages/DashboardList/index.tsx:572 +#: superset-frontend/src/pages/DashboardList/index.tsx:586 +#: superset-frontend/src/pages/DatasetList/index.tsx:581 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:260 +#, fuzzy +msgid "Any" +msgstr "dia" + +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:729 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:393 msgid "Any additional detail to show in the certification tooltip." msgstr "" -"Qualquer detalhe adicional a mostrar na dica de ferramenta de certificação." +"Qualquer detalhe adicional a mostrar na dica de ferramenta de " +"certificação." +#: superset-frontend/src/dashboard/components/ColorSchemeControlWrapper.jsx:56 msgid "" "Any color palette selected here will override the colors applied to this " "dashboard's individual charts" msgstr "" -"Qualquer paleta de cores selecionada aqui substituirá as cores aplicadas aos " -"gráficos individuais deste painel" +"Qualquer paleta de cores selecionada aqui substituirá as cores aplicadas " +"aos gráficos individuais deste painel" -msgid "Any databases that allow connections via SQL Alchemy URIs can be added." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1008 +#, fuzzy +msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " msgstr "" -"Podem ser adicionadas quaisquer bases de dados que permitam ligações através " -"de URIs do SQL Alchemy." +"Podem ser adicionadas quaisquer bases de dados que permitam ligações " +"através de URIs do SQL Alchemy." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1022 +#, fuzzy msgid "" "Any databases that allow connections via SQL Alchemy URIs can be added. " -"Learn about how to connect a database driver" +"Learn about how to connect a database driver " msgstr "" -"Podem ser adicionadas quaisquer bases de dados que permitam ligações através " -"de URIs do SQL Alchemy. Aprenda como conectar um driver de banco de dados" +"Podem ser adicionadas quaisquer bases de dados que permitam ligações " +"através de URIs do SQL Alchemy. Aprenda como conectar um driver de banco " +"de dados" +#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 +#: superset/views/database/forms.py:467 msgid "Append" msgstr "Anexar" +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:127 +#, python-format msgid "Applied cross-filters (%d)" msgstr "Filtros cruzados aplicados (%d)" +#: superset-frontend/src/dashboard/components/FiltersBadge/DetailsPanel/index.tsx:149 +#, python-format msgid "Applied filters (%d)" msgstr "Filtros aplicados (%d)" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:260 +#, python-format msgid "Applied filters: %s" msgstr "Filtros aplicados: %s" +#: superset/viz.py:250 msgid "" -"Applied rolling window did not return any data. Please make sure the source " -"query satisfies the minimum periods defined in the rolling window." +"Applied rolling window did not return any data. Please make sure the " +"source query satisfies the minimum periods defined in the rolling window." msgstr "" -"A janela móvel aplicada não devolveu quaisquer dados. Certifique-se de que a " -"consulta de origem satisfaz os períodos mínimos definidos na janela móvel." +"A janela móvel aplicada não devolveu quaisquer dados. Certifique-se de " +"que a consulta de origem satisfaz os períodos mínimos definidos na janela" +" móvel." +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:856 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:479 msgid "Apply" msgstr "Aplicar" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:100 +#, fuzzy +msgid "Apply conditional color formatting to metric" +msgstr "Aplicar formatação de cor condicional a métricas" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:386 msgid "Apply conditional color formatting to metrics" msgstr "Aplicar formatação de cor condicional a métricas" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:505 msgid "Apply conditional color formatting to numeric columns" msgstr "Aplicar formatação de cor condicional para colunas numéricas" -msgid "Apply to all panels" -msgstr "Aplicar para todos painéis" - -msgid "Apply to specific panels" -msgstr "Aplicar para painéis específicos" - +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 msgid "Apply filters" msgstr "Aplicar filtros" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:116 +#, fuzzy +msgid "Apply metrics on" +msgstr "Minha métrica" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:129 +msgid "Apply to all panels" +msgstr "Aplicar para todos painéis" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:131 +msgid "Apply to specific panels" +msgstr "Aplicar para painéis específicos" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:69 msgid "April" msgstr "Abril" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:85 msgid "Arc" msgstr "Arco" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:163 msgid "Are you sure you intend to overwrite the following values?" msgstr "Tem certeza de que pretende substituir os valores a seguir?" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:49 msgid "Are you sure you want to cancel?" msgstr "Tem certeza que deseja cancelar ?" +#: superset-frontend/src/features/charts/ChartCard.tsx:83 +#: superset-frontend/src/features/home/DashboardTable.tsx:229 +#: superset-frontend/src/features/tags/TagCard.tsx:72 +#: superset-frontend/src/pages/ChartList/index.tsx:509 +#: superset-frontend/src/pages/DashboardList/index.tsx:418 +#: superset-frontend/src/pages/DashboardList/index.tsx:739 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:173 +#: superset-frontend/src/pages/Tags/index.tsx:144 msgid "Are you sure you want to delete" msgstr "Tem certeza que deseja remover" +#: superset-frontend/src/pages/AnnotationList/index.tsx:282 +#, python-format msgid "Are you sure you want to delete %s?" msgstr "Tem certeza de que deseja excluir %s?" +#: superset-frontend/src/pages/AlertReportList/index.tsx:584 +#, python-format msgid "Are you sure you want to delete the selected %s?" msgstr "Tem certeza que deseja remover o %s selecionado ?" +#: superset-frontend/src/pages/AnnotationList/index.tsx:298 msgid "Are you sure you want to delete the selected annotations?" msgstr "Tem certeza que deseja remover as anotações selecionadas?" +#: superset-frontend/src/pages/ChartList/index.tsx:838 msgid "Are you sure you want to delete the selected charts?" msgstr "Tem certeza que deseja remover os gráficos selecionados?" +#: superset-frontend/src/pages/DashboardList/index.tsx:702 msgid "Are you sure you want to delete the selected dashboards?" msgstr "Tem certeza que deseja remover os painéis selecionados ?" +#: superset-frontend/src/pages/DatasetList/index.tsx:763 msgid "Are you sure you want to delete the selected datasets?" msgstr "Tem certeza que deseja remover os conjuntos de dados selecionados?" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:358 msgid "Are you sure you want to delete the selected layers?" msgstr "Tem certeza que deseja remover as camadas selecionadas?" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:534 msgid "Are you sure you want to delete the selected queries?" msgstr "Tem certeza que deseja remover as consultas selecionadas ?" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:305 +#, fuzzy +msgid "Are you sure you want to delete the selected rules?" +msgstr "Tem certeza que deseja remover as camadas selecionadas?" + +#: superset-frontend/src/pages/Tags/index.tsx:282 msgid "Are you sure you want to delete the selected tags?" msgstr "Tem certeza de que deseja excluir as tags selecionadas?" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:328 msgid "Are you sure you want to delete the selected templates?" msgstr "Tem certeza que deseja remover os modelos selecionados ?" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:434 msgid "Are you sure you want to overwrite this dataset?" msgstr "Tem certeza de que deseja substituir esse conjunto de dados?" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:133 msgid "Are you sure you want to proceed?" msgstr "Tem certeza que deseja continuar ?" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:216 msgid "Are you sure you want to save and apply changes?" msgstr "Tem certeza que deseja salvar e aplicar mudanças ?" -msgid "" -"Area charts are similar to line charts in that they represent variables with " -"the same scale, but area charts stack the metrics on top of each other." -msgstr "" -"Os gráficos de área são semelhantes aos gráficos de linhas na medida em que " -"representam variáveis com a mesma escala, mas os gráficos de área empilham " -"as métricas umas sobre as outras." - +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:97 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:91 msgid "Area Chart" msgstr "Gráfico de área" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:41 msgid "Area Chart (legacy)" msgstr "Gráfico de área (legado)" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:170 msgid "Area chart" msgstr "Gráfico de área" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:93 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:111 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:105 msgid "Area chart opacity" msgstr "Opacidade do gráfico de área" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:61 +msgid "" +"Area charts are similar to line charts in that they represent variables " +"with the same scale, but area charts stack the metrics on top of each " +"other." +msgstr "" +"Os gráficos de área são semelhantes aos gráficos de linhas na medida em " +"que representam variáveis com a mesma escala, mas os gráficos de área " +"empilham as métricas umas sobre as outras." + +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:239 msgid "Arrow" msgstr "Seta" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:67 msgid "Assign a set of parameters as" msgstr "Atribuir um conjunto de parâmetros como" +#: superset/connectors/sqla/views.py:383 msgid "Associated Charts" msgstr "Gráficos Associados" +#: superset/views/database/mixins.py:196 msgid "Async Execution" msgstr "Execução Assíncrona" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:305 +#: superset-frontend/src/pages/DatabaseList/index.tsx:320 +#: superset-frontend/src/pages/DatabaseList/index.tsx:486 msgid "Asynchronous query execution" msgstr "Execução de consulta assíncrona" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:73 msgid "August" msgstr "Agosto" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:127 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:146 msgid "Auto" msgstr "Auto" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:97 msgid "Auto Zoom" msgstr "Zoom automático" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 msgid "Autocomplete" msgstr "Autocompletar" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:880 msgid "Autocomplete filters" msgstr "Filtros de preenchimento automático" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:887 msgid "Autocomplete query predicate" msgstr "Predicado de consulta de preenchimento automático" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:726 msgid "Automatic Color" msgstr "Cor Automática" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:307 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:335 msgid "Available sorting modes:" msgstr "Modos de ordenação disponíveis:" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:183 msgid "Average" msgstr "Média" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 msgid "Average value" msgstr "Valor médio" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:196 msgid "Axis" msgstr "Eixo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:243 msgid "Axis Bounds" msgstr "Limites do eixo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:190 msgid "Axis Format" msgstr "Formato do eixo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:98 msgid "Axis Title" msgstr "Título do eixo" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:37 msgid "Axis ascending" msgstr "Eixo ascendente" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:38 msgid "Axis descending" msgstr "Eixo descendente" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:146 msgid "BOOLEAN" msgstr "BOLEANO" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:373 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1123 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1143 msgid "Back" msgstr "Voltar" +#: superset-frontend/src/pages/AnnotationList/index.tsx:262 +#: superset-frontend/src/pages/AnnotationList/index.tsx:264 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:181 msgid "Back to all" msgstr "Voltar para todos" -msgid "Backward values" -msgstr "Valores retroativos" - -msgid "Bad formula." -msgstr "Fórmula ruim." - +#: superset-frontend/src/pages/DatabaseList/index.tsx:311 +#: superset/views/database/mixins.py:200 msgid "Backend" msgstr "Backend" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:262 +msgid "Backward values" +msgstr "Valores retroativos" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:497 +msgid "Bad formula." +msgstr "Fórmula ruim." + +#: superset/viz.py:2452 superset/viz.py:2492 msgid "Bad spatial key" msgstr "Bad spatial key" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:82 msgid "Bar" msgstr "Barra" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 msgid "Bar Chart" msgstr "Gráfico de barras" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:43 msgid "Bar Chart (legacy)" msgstr "Gráfico de barras (legado)" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:67 +msgid "Bar Charts are used to show metrics as a series of bars." +msgstr "" +"Os gráficos de barras são usados para mostrar as métricas como uma série " +"de barras." + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:314 msgid "Bar Values" msgstr "Valores de barra" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:278 msgid "Bar orientation" msgstr "Orientação da barra" -msgid "Bar Charts are used to show metrics as a series of bars." -msgstr "" -"Os gráficos de barras são usados para mostrar as métricas como uma série de " -"barras." +#: superset-frontend/src/features/rls/constants.ts:28 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:263 +#, fuzzy +msgid "Base" +msgstr "banco de dados" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:239 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 msgid "Base layer map style" msgstr "Estilo do mapa da camada de base" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:165 msgid "Based on a metric" msgstr "Com base em uma métrica" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:56 msgid "Based on granularity, number of time periods to compare against" msgstr "Com base na granularidade, número de períodos de tempo para comparação" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:228 msgid "Based on what should series be ordered on the chart and legend" msgstr "Com base no que as séries devem ser ordenadas no gráfico e na legenda" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:854 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1779 msgid "Basic" msgstr "Básico" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:682 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:353 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:247 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:287 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:235 msgid "Basic information" msgstr "Informações básicas" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:749 +#, python-format msgid "Batch editing %d filters:" msgstr "Batch editando %d filtros:" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:36 msgid "Battery level over time" msgstr "Nível da bateria ao longo do tempo" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1341 msgid "Be careful." msgstr "Cuidado." +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:178 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:75 msgid "Before" msgstr "Antes de" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:37 +#: superset/viz.py:1186 msgid "Big Number" msgstr "Número grande" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:28 msgid "Big Number Font Size" msgstr "Tamanho da Fonte do Número Grande" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:36 +#: superset/viz.py:1150 msgid "Big Number with Trendline" msgstr "Número grande com Trendline" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 msgid "Bottom" msgstr "Parte inferior" -msgid "Bottom left" -msgstr "Parte inferior esquerda" - +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:226 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:194 msgid "Bottom Margin" msgstr "Margem Inferior" -msgid "Bottom margin, in pixels, allowing for more room for axis labels" -msgstr "" -"Margem Inferior, em pixels, permitindo mais espaço para o rótulo dos eixos" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:185 +msgid "Bottom left" +msgstr "Parte inferior esquerda" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:238 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:206 +msgid "Bottom margin, in pixels, allowing for more room for axis labels" +msgstr "Margem Inferior, em pixels, permitindo mais espaço para o rótulo dos eixos" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:186 msgid "Bottom right" msgstr "Parte inferior direita" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:141 msgid "Bottom to Top" msgstr "De baixo para cima" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:261 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:277 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:263 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:251 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:195 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:195 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:245 msgid "" -"Bounds for the Y-axis. When left empty, the bounds are dynamically defined " -"based on the min/max of the data. Note that this feature will only expand " -"the axis range. It won't narrow the data's extent." +"Bounds for the Y-axis. When left empty, the bounds are dynamically " +"defined based on the min/max of the data. Note that this feature will " +"only expand the axis range. It won't narrow the data's extent." msgstr "" -"Limites para o eixo Y. Quando deixados em branco, os limites são definidos " -"dinamicamente com base no mínimo/máximo dos dados. Observe que esse recurso " -"vai apenas expandir o intervalo do eixo. Não vai reduzir a extensão dos " -"dados." +"Limites para o eixo Y. Quando deixados em branco, os limites são " +"definidos dinamicamente com base no mínimo/máximo dos dados. Observe que " +"esse recurso vai apenas expandir o intervalo do eixo. Não vai reduzir a " +"extensão dos dados." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:246 msgid "" "Bounds for the axis. When left empty, the bounds are dynamically defined " -"based on the min/max of the data. Note that this feature will only expand " -"the axis range. It won't narrow the data's extent." +"based on the min/max of the data. Note that this feature will only expand" +" the axis range. It won't narrow the data's extent." msgstr "" "Limites para o eixo. Quando deixados em branco, os limites são definidos " -"dinamicamente com base no mínimo/máximo dos dados. Observe que esse recurso " -"vai apenas expandir o intervalo do eixo. Não vai reduzir a extensão dos " -"dados." +"dinamicamente com base no mínimo/máximo dos dados. Observe que esse " +"recurso vai apenas expandir o intervalo do eixo. Não vai reduzir a " +"extensão dos dados." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 +#, fuzzy +msgid "" +"Bounds for the primary Y-axis. When left empty, the bounds are " +"dynamically defined based on the min/max of the data. Note that this " +"feature will only expand the axis range. It won't narrow the data's " +"extent." +msgstr "" +"Limites para o eixo Y. Quando deixados em branco, os limites são " +"definidos dinamicamente com base no mínimo/máximo dos dados. Observe que " +"esse recurso vai apenas expandir o intervalo do eixo. Não vai reduzir a " +"extensão dos dados." + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:411 +#, fuzzy +msgid "" +"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" +" bounds are enabled. When left empty, the bounds are " +"dynamically defined\n" +" based on the min/max of the data. Note that this feature " +"will only expand\n" +" the axis range. It won't narrow the data's extent." +msgstr "" +"Limites para o eixo Y. Quando deixados em branco, os limites são " +"definidos dinamicamente com base no mínimo/máximo dos dados. Observe que " +"esse recurso vai apenas expandir o intervalo do eixo. Não vai reduzir a " +"extensão dos dados." + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:58 +#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/createMetadata.ts:27 msgid "Box Plot" msgstr "Gráfico de caixa" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:123 msgid "Breakdowns" msgstr "Desmembramentos" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:32 +#: superset/viz.py:1065 msgid "Bubble Chart" msgstr "Gráfico de bolhas" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:143 msgid "Bubble Color" msgstr "Cor da bolha" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:206 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:139 msgid "Bubble Size" msgstr "Tamanho da bolha" +#: superset-frontend/src/explore/controls.jsx:415 msgid "Bubble size" msgstr "Tamanho da bolha" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:149 msgid "Bucket break points" msgstr "Pontos de quebra de balde" +#: superset-frontend/src/features/home/RightMenu.tsx:511 msgid "Build" msgstr "Construir" +#: superset-frontend/src/pages/AlertReportList/index.tsx:431 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:274 +#: superset-frontend/src/pages/AnnotationList/index.tsx:226 +#: superset-frontend/src/pages/ChartList/index.tsx:789 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:262 +#: superset-frontend/src/pages/DashboardList/index.tsx:662 +#: superset-frontend/src/pages/DatasetList/index.tsx:607 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:177 +#: superset-frontend/src/pages/Tags/index.tsx:267 msgid "Bulk select" msgstr "Seleção em bloco" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 +#: superset/viz.py:1118 msgid "Bullet Chart" msgstr "Gráfico de marcadores" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:62 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:48 msgid "Business" msgstr "Negócios" +#: superset/connectors/sqla/views.py:164 msgid "Business Data Type" msgstr "Tipo de dados comerciais" +#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:233 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:138 msgid "" -"By default, each filter loads at most 1000 choices at the initial page load. " -"Check this box if you have more than 1000 filter values and want to enable " -"dynamically searching that loads filter values as users type (may add stress " -"to your database)." +"By default, each filter loads at most 1000 choices at the initial page " +"load. Check this box if you have more than 1000 filter values and want to" +" enable dynamically searching that loads filter values as users type (may" +" add stress to your database)." msgstr "" "Por padrão, cada filtro carrega, no máximo, 1000 opções no carregamento " -"inicial da página. Marque esta caixa se tiver mais de 1000 valores de filtro " -"e pretenda ativar a pesquisa dinâmica que carrega os valores de filtro à " -"medida que os usuários escrevem (pode aumentar o stress da sua base de " -"dados)." +"inicial da página. Marque esta caixa se tiver mais de 1000 valores de " +"filtro e pretenda ativar a pesquisa dinâmica que carrega os valores de " +"filtro à medida que os usuários escrevem (pode aumentar o stress da sua " +"base de dados)." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:337 msgid "By key: use column names as sorting key" msgstr "Por chave: utilizar os nomes das colunas como chave de ordenação" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:309 msgid "By key: use row names as sorting key" msgstr "Por chave: utilizar nomes de linhas como chave de ordenação" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:310 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:338 msgid "By value: use metric values as sorting key" msgstr "Por valor: utilizar valores métricos como chave de ordenação" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:232 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:328 msgid "CANCEL" msgstr "CANCELAR" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1575 msgid "CREATE DATASET" msgstr "CREATE DATASET" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:579 msgid "CREATE TABLE AS" msgstr "CREATE TABLE AS" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:590 msgid "CREATE VIEW AS" msgstr "CREATE VIEW AS" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:235 msgid "CREATE VIEW statement" msgstr "Declaração CREATE VIEW" +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:83 msgid "CRON Schedule" msgstr "Cronograma do CRON" +#: superset-frontend/src/features/alerts/components/AlertReportCronScheduler.tsx:94 msgid "CRON expression" msgstr "Expressão CRON" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:105 +#: superset/views/dashboard/mixin.py:87 msgid "CSS" msgstr "CSS" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:75 msgid "CSS Styles" msgstr "Estilos CSS" +#: superset/initialization/__init__.py:288 superset/views/css_templates.py:38 msgid "CSS Templates" msgstr "Modelos CSS" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:76 msgid "CSS applied to the chart" msgstr "CSS aplicado ao gráfico" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:249 msgid "CSS template" msgstr "Modelo CSS" +#: superset/css_templates/commands/exceptions.py:23 msgid "CSS template could not be deleted." msgstr "Modelo CSS não pôde ser deletado." +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:239 msgid "CSS template name" msgstr "Nome do modelo CSS" +#: superset/css_templates/commands/exceptions.py:27 msgid "CSS template not found." msgstr "Modelo CSS não encontrado." +#: superset-frontend/src/pages/CssTemplateList/index.tsx:71 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:240 msgid "CSS templates" msgstr "Modelos CSS" +#: superset/views/database/forms.py:109 msgid "CSV Upload" msgstr "Upload de CSV" +#: superset/views/database/views.py:290 +#, fuzzy, python-format msgid "" -"CSV file \"%(csv_filename)s\"uploaded to table \"%(table_name)s\"in database " -"\"%(db_name)s\"" +"CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " +"database \"%(db_name)s\"" msgstr "" -"Arquivo CSV \"%(csv_filename)s \"carregado para tabela \"%(table_name)s\"no " -"banco de dados \"%(db_name)s\"" +"Arquivo CSV \"%(csv_filename)s \"carregado para tabela " +"\"%(table_name)s\"no banco de dados \"%(db_name)s\"" +#: superset/views/database/views.py:161 msgid "CSV to Database configuration" msgstr "Configuração CSV para Banco de dados" +#: superset-frontend/src/pages/DatabaseList/index.tsx:355 msgid "CSV upload" msgstr "Carregar CSV" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 msgid "CTAS & CVAS SCHEMA" msgstr "CTAS & CVAS SCHEMA" +#: superset/sql_lab.py:432 msgid "" -"CTAS (create table as select) can only be run with a query where the last " -"statement is a SELECT. Please make sure your query has a SELECT as its last " -"statement. Then, try running your query again." +"CTAS (create table as select) can only be run with a query where the last" +" statement is a SELECT. Please make sure your query has a SELECT as its " +"last statement. Then, try running your query again." msgstr "" -"O CTAS (criar tabela como select) só pode ser executado com uma consulta em " -"que a última instrução seja um SELECT. Certifique-se de que a sua consulta " -"tem um SELECT como última instrução. Depois, tente executar a consulta " -"novamente." +"O CTAS (criar tabela como select) só pode ser executado com uma consulta " +"em que a última instrução seja um SELECT. Certifique-se de que a sua " +"consulta tem um SELECT como última instrução. Depois, tente executar a " +"consulta novamente." +#: superset/views/database/mixins.py:187 msgid "CTAS Schema" msgstr "Esquema CTAS" +#: superset/sql_lab.py:449 msgid "" "CVAS (create view as select) can only be run with a query with a single " -"SELECT statement. Please make sure your query has only a SELECT statement. " -"Then, try running your query again." +"SELECT statement. Please make sure your query has only a SELECT " +"statement. Then, try running your query again." msgstr "" -"O CVAS (create view as select) só pode ser executado com uma consulta com " -"uma única instrução SELECT. Certifique-se de que a sua consulta tem apenas " -"uma instrução SELECT. Em seguida, tente executar a consulta novamente." +"O CVAS (create view as select) só pode ser executado com uma consulta com" +" uma única instrução SELECT. Certifique-se de que a sua consulta tem " +"apenas uma instrução SELECT. Em seguida, tente executar a consulta " +"novamente." +#: superset/errors.py:129 msgid "CVAS (create view as select) query has more than one statement." -msgstr "" -"A consulta CVAS (create view as select) tem mais do que uma declaração." +msgstr "A consulta CVAS (create view as select) tem mais do que uma declaração." +#: superset/errors.py:130 msgid "CVAS (create view as select) query is not a SELECT statement." msgstr "A consulta CVAS (create view as select) não é uma instrução SELECT." +#: superset/connectors/sqla/views.py:393 superset/views/chart/mixin.py:76 msgid "Cache Timeout" msgstr "Tempo limite da cache" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:79 +#: superset-frontend/src/explore/controlPanels/sections.tsx:41 msgid "Cache Timeout (seconds)" msgstr "Tempo limite da cache (seconds)" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:945 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:402 msgid "Cache timeout" msgstr "Tempo limite da cache" +#: superset-frontend/src/components/CachedLabel/index.tsx:51 msgid "Cached" msgstr "Em cache" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:351 +#, python-format msgid "Cached %s" msgstr "Cached %s" +#: superset/viz.py:578 msgid "Cached value not found" msgstr "Valor em cache não encontrado" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:53 msgid "Calculate contribution per series or row" msgstr "Calcular a contribuição por série ou linha" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:835 +#, python-format msgid "Calculated column [%s] requires an expression" msgstr "A coluna calculada [%s] requer uma expressão" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1409 msgid "Calculated columns" msgstr "Colunas calculadas" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:137 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:329 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:211 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:481 +#: superset-frontend/src/explore/controlPanels/sections.tsx:207 msgid "Calculation type" msgstr "Tipo de cálculo" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 +#: superset/viz.py:972 msgid "Calendar Heatmap" msgstr "Mapa de calor do calendário" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:213 msgid "Can not move top level tab into nested tabs" msgstr "Não é possível mover a aba de nível superior para abas aninhadas" +#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:59 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:77 msgid "Can select multiple values" msgstr "Pode selecionar vários valores" +#: superset/viz.py:1727 msgid "Can't have overlap between Series and Breakdowns" msgstr "Não pode haver sobreposição entre séries e avarias" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:205 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:753 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:227 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:268 +#: superset-frontend/src/components/Modal/Modal.tsx:269 +#: superset-frontend/src/components/ReportModal/index.tsx:219 +#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:72 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:649 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:136 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:76 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 +#: superset-frontend/src/explore/components/SaveModal.tsx:413 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:843 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 +#: superset/templates/superset/request_access.html:34 msgid "Cancel" msgstr "Cancelar" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 msgid "Cancel query on window unload event" msgstr "Cancelar consulta no evento de descarregamento da janela" +#: superset/sqllab/commands/export.py:78 msgid "Cannot access the query" msgstr "Não foi possível acessar a consulta" +#: superset/databases/commands/exceptions.py:111 msgid "Cannot delete a database that has datasets attached" msgstr "" "Não é possível excluir um banco de dados que tenha conjuntos de dados " "anexados" +#: superset/databases/ssh_tunnel/commands/exceptions.py:67 msgid "Cannot have multiple credentials for the SSH Tunnel" msgstr "Não é possível ter múltiplas credenciais para o Túnel SSH" +#: superset/views/core.py:734 +#, python-format msgid "" "Cannot import dashboard: %(db_error)s.\n" "Make sure to create the database before importing the dashboard." @@ -2057,205 +3187,375 @@ msgstr "" "Não foi possível importar o painel: %(db_ error)s. \n" "Não esqueça de criar o banco de dados antes de importar o painel." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1228 msgid "Cannot load filter" msgstr "Não é possível carregar o filtro" +#: superset/charts/commands/exceptions.py:51 +#, python-format msgid "Cannot parse time string [%(human_readable)s]" msgstr "Não é possível analisar a string de tempo [%(human_readable)s ]" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-treemap/src/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:63 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:42 msgid "Categorical" msgstr "Categórico" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:105 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:142 msgid "Categorical Color" msgstr "Cor categórica" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:165 msgid "Categories to group by on the x-axis." msgstr "Categorias para grupo por sobre o eixo x." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.jsx:46 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:678 msgid "Category" msgstr "Categoria" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:90 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:116 msgid "Category Name" msgstr "Nome da categoria" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:107 msgid "Category and Percentage" msgstr "Categoria e Porcentagem" -msgid "Category of target nodes" -msgstr "Categoria dos nós de destino" - +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:56 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:93 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:111 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:101 msgid "Category and Value" msgstr "Categoria e valor" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:67 msgid "Category name" msgstr "Nome da categoria" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:88 +msgid "Category of target nodes" +msgstr "Categoria dos nós de destino" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:108 msgid "Category, Value and Percentage" msgstr "Categoria, Valor e Porcentagem" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 msgid "Cell Padding" msgstr "Preenchimento de célula" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 msgid "Cell Radius" msgstr "Raio da Célula" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 msgid "Cell Size" msgstr "Tamanho da célula" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:428 msgid "Cell bars" msgstr "Barras celulares" +#: superset-frontend/src/components/FilterableTable/index.tsx:303 msgid "Cell content" msgstr "Conteúdo da célula" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:135 msgid "Cell limit" msgstr "Limite de célula" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:101 msgid "Center" msgstr "Centro" -msgid "Centroid (Longitude and Latitude):" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:33 +#, fuzzy +msgid "Centroid (Longitude and Latitude): " msgstr "Centroide (Longitude e Latitude):" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:709 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:376 msgid "Certification" msgstr "Certificação" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:343 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:348 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1235 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1241 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:723 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:387 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:390 msgid "Certification details" msgstr "Detalhes de certificação" +#: superset-frontend/src/pages/ChartList/index.tsx:699 +#: superset-frontend/src/pages/DashboardList/index.tsx:580 +#: superset-frontend/src/pages/DatasetList/index.tsx:575 msgid "Certified" msgstr "Certificado" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:332 msgid "Certified By" msgstr "Certificado Por" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:337 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1222 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1230 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:714 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:378 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:379 msgid "Certified by" msgstr "Certificado por" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/CertifiedIconWithTooltip.tsx:46 +#: superset-frontend/src/components/CertifiedBadge/index.tsx:44 +#, python-format msgid "Certified by %s" msgstr "Certificado por %s" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:334 msgid "Change order of columns." msgstr "Mudar ordem das colunas." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:306 msgid "Change order of rows." msgstr "Mudar ordem das linhas." -msgid "Changed" -msgstr "Alterado" - -msgid "CHANGED" -msgstr "ALTERADO" - -msgid "changed" -msgstr "alterado" - +#: superset/connectors/sqla/views.py:385 msgid "Changed By" msgstr "Alterado por" +#: superset/views/sql_lab/views.py:88 msgid "Changed on" msgstr "Alterado em" +#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:80 msgid "Changes saved." msgstr "Alterações salvas." +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:51 msgid "" -"Changing the dataset may break the chart if the chart relies on columns or " -"metadata that does not exist in the target dataset" +"Changing the dataset may break the chart if the chart relies on columns " +"or metadata that does not exist in the target dataset" msgstr "" -"Alterar o conjunto de dados pode quebrar o gráfico se o gráfico depender de " -"colunas ou metadados que não existem no conjunto de dados de destino" +"Alterar o conjunto de dados pode quebrar o gráfico se o gráfico depender " +"de colunas ou metadados que não existem no conjunto de dados de destino" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1342 msgid "" -"Changing these settings will affect all charts using this dataset, including " -"charts owned by other people." +"Changing these settings will affect all charts using this dataset, " +"including charts owned by other people." msgstr "" -"A alteração destas definições afectará todos os gráficos que utilizem este " -"conjunto de dados, incluindo os gráficos pertencentes a outras pessoas." +"A alteração destas definições afectará todos os gráficos que utilizem " +"este conjunto de dados, incluindo os gráficos pertencentes a outras " +"pessoas." +#: superset/dashboards/commands/exceptions.py:78 msgid "Changing this Dashboard is forbidden" msgstr "É proibido alterar este painel" +#: superset/charts/commands/exceptions.py:135 msgid "Changing this chart is forbidden" msgstr "É proibido alterar este gráfico" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:75 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:45 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:60 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:73 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:101 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:135 +#: superset-frontend/src/explore/components/ControlHeader.tsx:123 msgid "Changing this control takes effect instantly" msgstr "A alteração deste controle tem efeito imediato" +#: superset/datasets/commands/exceptions.py:198 msgid "Changing this dataset is forbidden" msgstr "É proibido alterar este conjunto de dados" +#: superset/datasets/columns/commands/exceptions.py:31 +#: superset/datasets/metrics/commands/exceptions.py:31 +#, fuzzy +msgid "Changing this dataset is forbidden." +msgstr "É proibido alterar este conjunto de dados" + +#: superset/explore/exceptions.py:49 msgid "Changing this datasource is forbidden" msgstr "É proibido alterar essa fonte de dados" +#: superset/reports/commands/exceptions.py:282 msgid "Changing this report is forbidden" msgstr "É proibido alterar este relatório" +#: superset/views/database/forms.py:206 msgid "Character to interpret as decimal point" msgstr "Caractere a ser interpretado como ponto decimal" +#: superset/views/database/forms.py:385 msgid "Character to interpret as decimal point." msgstr "Caractere para interpretar como ponto decimal." +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:51 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:449 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:405 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:69 +#: superset-frontend/src/features/home/ChartTable.tsx:191 +#: superset-frontend/src/features/home/RightMenu.tsx:219 +#: superset-frontend/src/pages/ChartList/index.tsx:369 +#: superset-frontend/src/pages/ChartList/index.tsx:799 +#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 msgid "Chart" msgstr "Gráfico" +#: superset/views/core.py:1762 +#, python-format msgid "Chart %(id)s not found" msgstr "Gráfico %(id)s não encontrado" +#: superset/views/database/mixins.py:192 msgid "Chart Cache Timeout" msgstr "Tempo limite da cache do gráfico" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:442 +#, python-format msgid "Chart Data: %s" msgstr "Dados do gráfico: %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:70 +#: superset-frontend/src/explore/controlPanels/sections.tsx:32 msgid "Chart ID" msgstr "ID do gráfico" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:55 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:133 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:57 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:36 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:69 +#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:54 +#: superset-frontend/plugins/legacy-plugin-chart-treemap/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:78 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:70 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/controlPanel.ts:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:54 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:59 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:131 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:295 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:302 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:61 +#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:31 +#: superset-frontend/src/explore/fixtures.tsx:34 +#: superset-frontend/src/explore/fixtures.tsx:77 +#: superset-frontend/src/explore/fixtures.tsx:86 msgid "Chart Options" msgstr "Opções do gráfico" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:269 msgid "Chart Orientation" msgstr "Orientação do gráfico" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:70 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:83 +#, fuzzy, python-format msgid "Chart Owner: %s" -msgstr "Proprietário do gráfico: %s" +msgid_plural "Chart Owners: %s" +msgstr[0] "Proprietário do gráfico: %s" +msgstr[1] "" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:617 msgid "Chart Source" msgstr "Fonte do gráfico" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:291 msgid "Chart Title" msgstr "Título do gráfico" +#: superset-frontend/src/explore/actions/saveModalActions.js:121 +#, python-format msgid "Chart [%s] has been overwritten" msgstr "O gráfico [%s] foi sobrescrito" +#: superset-frontend/src/explore/actions/saveModalActions.js:118 +#, python-format msgid "Chart [%s] has been saved" msgstr "O gráfico [%s] foi salvo" +#: superset-frontend/src/explore/actions/saveModalActions.js:139 +#, python-format msgid "Chart [%s] was added to dashboard [%s]" msgstr "O gráfico [%s] foi adicionado ao painel [%s]" +#: superset/views/core.py:1099 msgid "Chart [{}] has been overwritten" msgstr "O gráfico [{}] foi substituído" +#: superset/views/core.py:1095 msgid "Chart [{}] has been saved" msgstr "O gráfico [{}] foi salvo" +#: superset/views/core.py:1124 msgid "Chart [{}] was added to dashboard [{}]" msgstr "Gráfico [{}] foi adicionado ao painel [{}]" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:238 msgid "Chart cache timeout" msgstr "Tempo limite da cache do gráfico" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:218 msgid "Chart changes" msgstr "Alterações no gráfico" +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:30 msgid "" -"Chart component that lets you add a custom filter UI in your dashboard. When " -"added to dashboard, a filter box lets users specify specific values or " -"ranges to filter charts by. The charts that each filter box is applied to " -"can be fine tuned as well in the dashboard view.\n" +"Chart component that lets you add a custom filter UI in your dashboard. " +"When added to dashboard, a filter box lets users specify specific values " +"or ranges to filter charts by. The charts that each filter box is applied" +" to can be fine tuned as well in the dashboard view.\n" "\n" " Note that this plugin is being replaced with the new Filters feature " "that lives in the dashboard view itself. It's easier to use and has more " @@ -2264,803 +3564,1185 @@ msgstr "" "Componente de gráfico que lhe permite adicionar uma UI de filtro " "personalizada ao seu painel. Quando adicionada ao painel, uma caixa de " "filtro permite que os utilizadores especifiquem valores ou intervalos " -"específicos para filtrar os gráficos. Os gráficos aos quais cada caixa de " -"filtro é aplicada também podem ser ajustados na exibição do painel.\n" +"específicos para filtrar os gráficos. Os gráficos aos quais cada caixa de" +" filtro é aplicada também podem ser ajustados na exibição do painel.\n" "\n" -" Observe que este plug-in está sendo substituído pelo novo recurso Filtros " -"que fica na própria exibição do painel. É mais fácil de usar e tem mais " -"recursos!" +" Observe que este plug-in está sendo substituído pelo novo recurso " +"Filtros que fica na própria exibição do painel. É mais fácil de usar e " +"tem mais recursos!" +#: superset/charts/commands/exceptions.py:115 msgid "Chart could not be created." msgstr "Não foi possível criar o gráfico." +#: superset/charts/commands/exceptions.py:123 msgid "Chart could not be deleted." msgstr "Não foi possível remover o gráfico." +#: superset/charts/commands/exceptions.py:119 msgid "Chart could not be updated." msgstr "Não foi possível atualizar o gráfico." +#: superset/reports/commands/exceptions.py:57 msgid "Chart does not exist" msgstr "O gráfico não existe" -msgid "Chart height" -msgstr "Altura do gráfico" - -msgid "Chart imported" -msgstr "Gráfico importado" - -msgid "Chart last modified" -msgstr "Última modificação do gráfico" - -msgid "Chart last modified by" -msgstr "Gráfico modificado pela última vez por" - +#: superset/charts/data/api.py:130 msgid "Chart has no query context saved. Please save the chart again." msgstr "" "O gráfico não tem contexto de consulta salvo. Por favor salvar o gráfico " "novamente." +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:130 +msgid "Chart height" +msgstr "Altura do gráfico" + +#: superset-frontend/src/pages/ChartList/index.tsx:228 +msgid "Chart imported" +msgstr "Gráfico importado" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:90 +msgid "Chart last modified" +msgstr "Última modificação do gráfico" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 +msgid "Chart last modified by" +msgstr "Gráfico modificado pela última vez por" + +#: superset-frontend/src/explore/components/SaveModal.tsx:355 msgid "Chart name" msgstr "Nome do gráfico" -msgid "Chart parameters are invalid." -msgstr "Os parâmetros do gráfico são inválidos." - +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:97 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:108 msgid "Chart options" msgstr "Opções do gráfico" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 msgid "Chart owners" msgstr "Proprietários do gráfico" +#: superset/charts/commands/exceptions.py:111 +msgid "Chart parameters are invalid." +msgstr "Os parâmetros do gráfico são inválidos." + +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:245 msgid "Chart properties updated" msgstr "Propriedades do gráfico atualizadas" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:220 msgid "Chart title" msgstr "Título do gráfico" +#: superset-frontend/src/pages/ChartList/index.tsx:652 msgid "Chart type" msgstr "Tipo de gráfico" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 msgid "Chart type requires a dataset" msgstr "O tipo de gráfico requer um conjunto de dados" +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:139 msgid "Chart width" msgstr "Largura do gráfico" +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:74 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:64 +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:116 +#: superset-frontend/src/pages/ChartList/index.tsx:827 +#: superset-frontend/src/pages/Home/index.tsx:399 +#: superset-frontend/src/profile/components/CreatedContent.tsx:104 +#: superset-frontend/src/profile/components/Favorites.tsx:102 +#: superset/initialization/__init__.py:259 superset/views/chart/mixin.py:25 +#: superset/views/dashboard/mixin.py:80 msgid "Charts" msgstr "Gráficos" +#: superset/charts/commands/exceptions.py:139 msgid "Charts could not be deleted." msgstr "Não foi possível remover o gráfico." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterValue.tsx:188 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:511 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:528 msgid "Check configuration" msgstr "Verificar a configuração" +#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:206 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:68 msgid "Check for sorting ascending" msgstr "Verificar se a ordenação é crescente" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:105 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:114 +#: superset-frontend/src/explore/fixtures.tsx:44 msgid "" -"Check if the Rose Chart should use segment area instead of segment radius " -"for proportioning" +"Check if the Rose Chart should use segment area instead of segment radius" +" for proportioning" msgstr "" -"Verificar se o gráfico de rosáceas deve utilizar a área do segmento em vez " -"do raio do segmento para o cálculo das proporções" +"Verificar se o gráfico de rosáceas deve utilizar a área do segmento em " +"vez do raio do segmento para o cálculo das proporções" +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:73 msgid "Check out this chart in dashboard:" msgstr "Veja este gráfico no painel:" -msgid "Check out this chart:" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:474 +#, fuzzy +msgid "Check out this chart: " msgstr "Dê uma olhada neste gráfico:" -msgid "Check out this dashboard:" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:235 +#, fuzzy +msgid "Check out this dashboard: " msgstr "Confira este painel:" +#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:63 msgid "" "Check to apply filters instantly as they change instead of displaying " "[Apply] button" msgstr "" -"Marque para aplicar filtros instantaneamente à medida que são alterados, em " -"vez de apresentar o botão [Aplicar]" +"Marque para aplicar filtros instantaneamente à medida que são alterados, " +"em vez de apresentar o botão [Aplicar]" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:212 msgid "Check to force date partitions to have the same height" msgstr "Marcar para forçar as partições de data a terem a mesma altura" +#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:87 msgid "Check to include time column dropdown" msgstr "Marcar para incluir o menu suspenso da coluna de tempo" +#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:76 msgid "Check to include time grain dropdown" msgstr "Marque para incluir o menu suspenso de grãos de tempo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:174 msgid "Child label position" msgstr "Posição do rótulo filho" +#: superset/viz.py:2307 msgid "Choice of [Label] must be present in [Group By]" msgstr "Escolha do [Rótulo] deve estar em [Agrupar por]" +#: superset/viz.py:2315 msgid "Choice of [Point Radius] must be present in [Group By]" msgstr "A escolha de [Raio do ponto] deve estar presente em [Agrupar por]" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:151 +#: superset/templates/superset/import_dashboards.html:47 msgid "Choose File" msgstr "Escolher Arquivo" +#: superset/reports/commands/exceptions.py:84 msgid "Choose a chart or dashboard not both" msgstr "Escolha um gráfico ou painel, não ambos" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:979 msgid "Choose a database..." msgstr "Escolha um banco de dados..." +#: superset-frontend/src/pages/ChartCreation/index.tsx:384 +#: superset-frontend/src/pages/ChartCreation/index.tsx:395 msgid "Choose a dataset" msgstr "Escolha um conjunto de dados" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/controlPanel.ts:69 msgid "Choose a metric for left axis" msgstr "Escolha uma métrica para o eixo esquerdo" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:183 +#: superset-frontend/src/explore/controls.jsx:216 msgid "Choose a metric for right axis" msgstr "Escolha uma métrica para o eixo direito" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:61 msgid "Choose a number format" msgstr "Escolha um formato de número" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:67 msgid "Choose a source" msgstr "Escolha uma fonte" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:38 msgid "Choose a source and a target" msgstr "Escolha uma fonte e um alvo" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:73 msgid "Choose a target" msgstr "Escolha um alvo" -msgid "Choose a unique name" -msgstr "Escolha um nome único" - +#: superset-frontend/src/pages/ChartCreation/index.tsx:404 msgid "Choose chart type" msgstr "Escolha o tipo de gráfico" -msgid "Choose one or more charts for left axis" -msgstr "Escolha um ou mais gráficos para o eixo esquerdo" - -msgid "Choose one or more charts for right axis" -msgstr "Escolha um ou mais gráficos para o eixo direito" - +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:739 msgid "Choose one of the available databases from the panel on the left." msgstr "Escolha um dos bancos de dados disponíveis no painel na esquerda." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:100 +msgid "Choose one or more charts for left axis" +msgstr "Escolha um ou mais gráficos para o eixo esquerdo" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:135 +msgid "Choose one or more charts for right axis" +msgstr "Escolha um ou mais gráficos para o eixo direito" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:812 msgid "Choose the annotation layer type" msgstr "Escolha o tipo da camada de anotação" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:163 msgid "Choose the format for legend values" msgstr "Escolha o formato dos valores de legenda" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:177 msgid "Choose the position of the legend" msgstr "Choose the position of the legend" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:824 msgid "Choose the source of your annotations" msgstr "Choose the source of your annotations" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:122 msgid "" -"Choose whether a country should be shaded by the metric, or assigned a color " -"based on a categorical color palette" +"Choose whether a country should be shaded by the metric, or assigned a " +"color based on a categorical color palette" msgstr "" "Escolha se um país deve ser sombreado pela métrica ou se lhe deve ser " "atribuída uma cor com base numa paleta de cores categóricas" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:34 msgid "Chord Diagram" msgstr "Diagrama de acordes" +#: superset-frontend/src/filters/components/Range/RangeFilterPlugin.tsx:306 msgid "Chosen non-numeric column" msgstr "Coluna não-numérica escolhida" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:219 msgid "Circle" msgstr "Círculo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:131 msgid "Circle -> Arrow" msgstr "Círculo -> Seta" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:132 msgid "Circle -> Circle" msgstr "Círculo -> Círculo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:199 msgid "Circle radar shape" msgstr "Forma de radar circular" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:36 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:113 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:71 msgid "Circular" msgstr "Circular" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:32 msgid "Classic chart that visualizes how metrics change over time." -msgstr "" -"Gráfico clássico que visualiza como as métricas mudam ao longo do tempo." +msgstr "Gráfico clássico que visualiza como as métricas mudam ao longo do tempo." +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:41 msgid "" "Classic row-by-column spreadsheet like view of a dataset. Use tables to " "showcase a view into the underlying data or to show aggregated metrics." msgstr "" "Visão clássica de um conjunto de dados numa planilha de cálculo, linha a " -"coluna. Utilize tabelas para apresentar uma visão dos dados subjacentes ou " -"para mostrar métricas agregadas." +"coluna. Utilize tabelas para apresentar uma visão dos dados subjacentes " +"ou para mostrar métricas agregadas." +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:454 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:144 msgid "Clause" msgstr "Cláusula" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:53 msgid "Clear" msgstr "Limpar" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:152 msgid "Clear all" msgstr "Limpar todos" +#: superset-frontend/src/components/Table/index.tsx:210 msgid "Clear all data" msgstr "Limpar todos os dados" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:675 msgid "Clear form" msgstr "Limpar formulário" -msgid "Click on \"+Add/Edit Filters\"button to create new dashboard filters" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:209 +#, fuzzy +msgid "Click on \"+Add/Edit Filters\" button to create new dashboard filters" msgstr "Clique no botão\"+Add/Edit Filters\"para criar novos filtros de painel" +#: superset-frontend/src/components/Chart/Chart.jsx:286 +#, fuzzy msgid "" -"Click on \"Create chart\"button in the control panel on the left to preview " -"a visualization or" +"Click on \"Create chart\" button in the control panel on the left to " +"preview a visualization or" msgstr "" -"Clique no botão\"Create chart\" no painel de controle à esquerda para pré-" -"visualizar uma visualização ou" +"Clique no botão\"Create chart\" no painel de controle à esquerda para " +"pré-visualizar uma visualização ou" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1018 msgid "Click the lock to make changes." msgstr "Clique no cadeado para fazer alterações." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1021 msgid "Click the lock to prevent further changes." msgstr "Clique no cadeado para evitar avançar mudanças." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2012 msgid "" -"Click this link to switch to an alternate form that allows you to input the " -"SQLAlchemy URL for this database manually." +"Click this link to switch to an alternate form that allows you to input " +"the SQLAlchemy URL for this database manually." msgstr "" -"Clique neste link para mudar para um formulário alternativa que permite você " -"inserir manualmente o URL do SQLAlchemy para esse banco de dados." +"Clique neste link para mudar para um formulário alternativa que permite " +"você inserir manualmente o URL do SQLAlchemy para esse banco de dados." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1827 msgid "" "Click this link to switch to an alternate form that exposes only the " "required fields needed to connect this database." msgstr "" -"Clique neste link para mudar para um formulário alternativo que expõe apenas " -"os campos obrigatórios necessários para conectar esse banco de dados." +"Clique neste link para mudar para um formulário alternativo que expõe " +"apenas os campos obrigatórios necessários para conectar esse banco de " +"dados." +#: superset-frontend/src/components/Table/index.tsx:217 msgid "Click to cancel sorting" msgstr "Clique para cancelar a ordenação" +#: superset-frontend/src/components/EditableTitle/index.tsx:211 msgid "Click to edit" msgstr "Clique para editar" -msgid "Click to edit %s in a new tab" -msgstr "Clique para editar %s em uma nova aba" - +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 +#, python-format msgid "Click to edit %s." msgstr "Clique para editar %s." +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 msgid "Click to edit chart." msgstr "Clique para editar o gráfico." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:81 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:105 msgid "Click to edit label" msgstr "Clique para editar o rótulo" +#: superset-frontend/src/components/FaveStar/index.tsx:76 msgid "Click to favorite/unfavorite" msgstr "Clique para favoritar/não favoritar" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:39 msgid "Click to force-refresh" msgstr "Clique para forçar a atualização" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:201 msgid "Click to see difference" msgstr "Clique para ver diferença" +#: superset-frontend/src/components/Table/index.tsx:216 msgid "Click to sort ascending" msgstr "Clique para classificar em ordem crescente" +#: superset-frontend/src/components/Table/index.tsx:215 msgid "Click to sort descending" msgstr "Clique para classificar em ordem decrescente" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:132 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:52 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:209 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:224 +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:786 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:414 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:339 +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:36 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1164 msgid "Close" msgstr "Fechar" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:133 msgid "Close all other tabs" msgstr "Fechar todas as outras abas" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:103 msgid "Close tab" msgstr "Fechar aba" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:183 msgid "Cluster label aggregator" msgstr "Agregador de rótulo de cluster" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:84 msgid "Clustering Radius" msgstr "Raio de agrupamento" +#: superset-frontend/src/explore/controlPanels/Separator.js:25 +#: superset-frontend/src/explore/controlPanels/Separator.js:46 msgid "Code" msgstr "Código" +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:39 msgid "Collapse all" msgstr "Recolher tudo" +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:162 msgid "Collapse data panel" msgstr "Recolher painel de dados" +#: superset-frontend/src/components/Table/index.tsx:214 msgid "Collapse row" msgstr "Recolher linha" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:599 msgid "Collapse tab content" msgstr "Recolher o conteúdo da aba" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 msgid "Collapse table preview" msgstr "Recolher a visualização da tabela" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:713 msgid "Color" msgstr "Cor" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:126 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:454 msgid "Color +/-" msgstr "Cor +/-" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:227 msgid "Color Metric" msgstr "Métrica de cores" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:111 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:337 msgid "Color Scheme" msgstr "Esquema de cores" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 msgid "Color Steps" msgstr "Etapas de cores" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:306 msgid "Color bounds" msgstr "Limites de cor" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:116 msgid "Color by" msgstr "Cor por" +#: superset-frontend/src/explore/controls.jsx:234 msgid "Color metric" msgstr "Métrica de cor" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:93 msgid "Color of the target location" msgstr "Cor do local de destino" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 +#: superset-frontend/src/explore/controlPanels/sections.tsx:60 +#: superset-frontend/src/explore/controls.jsx:460 msgid "Color scheme" msgstr "Esquema de cores" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:176 +#, fuzzy msgid "" -"Color will be shaded based the normalized (0% to 100%) value of a given cell " -"against the other cells in the selected range:" +"Color will be shaded based the normalized (0% to 100%) value of a given " +"cell against the other cells in the selected range: " msgstr "" "A cor será sombreada com base no valor normalizado (0% a 100%) de uma " -"determinada célula em relação às outras células no intervalo seleccionado:" +"determinada célula em relação às outras células no intervalo " +"seleccionado:" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:500 msgid "Colors" msgstr "Cores" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:358 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:256 +#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:137 +#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:140 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:209 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:39 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:49 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:37 +#: superset/connectors/sqla/views.py:154 msgid "Column" msgstr "Coluna" +#: superset/utils/pandas_postprocessing/contribution.py:59 +#, python-format msgid "" -"Column \"%(column)s\" is not numeric or does not exists in the query results." +"Column \"%(column)s\" is not numeric or does not exists in the query " +"results." msgstr "" "A coluna \"%(column)s\" não é numérica ou não existe nos resultados da " "consulta." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:361 msgid "Column Configuration" msgstr "Configuração da coluna" +#: superset/views/database/forms.py:144 +#, fuzzy +msgid "Column Data Types" +msgstr "Tipo de dados avançado" + +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:194 msgid "Column Formatting" msgstr "Formatação de colunas" -msgid "" -"Column \"%(column)s\"is not numeric or does not exists in the query results." -msgstr "" -"A coluna \"%(coluna)s\"é não numérico ou não existe nos resultados da " -"consulta." - +#: superset/views/database/forms.py:232 superset/views/database/forms.py:393 +#: superset/views/database/forms.py:484 msgid "Column Label(s)" msgstr "Rótulo(s) da coluna" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:80 msgid "" "Column containing ISO 3166-2 codes of region/province/department in your " "table." msgstr "" -"Coluna contendo códigos ISO 3166-2 da região/província/departamento em sua " -"tabela." +"Coluna contendo códigos ISO 3166-2 da região/província/departamento em " +"sua tabela." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:74 msgid "Column containing latitude data" msgstr "Coluna contendo dados de latitude" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:64 msgid "Column containing longitude data" msgstr "Coluna contendo dados de longitude" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:69 +#, fuzzy +msgid "Column datatype" +msgstr "Nome da coluna" + +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 msgid "Column header tooltip" msgstr "Dica de ferramenta para o cabeçalho da coluna" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:118 msgid "Column is required" msgstr "A coluna é necessária" +#: superset/views/database/forms.py:394 superset/views/database/forms.py:485 msgid "" -"Column label for index column(s). If None is given and Dataframe Index is " -"checked, Index Names are used" -msgstr "" -"Rótulo da coluna para a(s) coluna(s) de índice. Se None (Nenhum) for " -"fornecido e Dataframe Index (Índice de quadro de dados) for verificado, os " -"nomes de índice serão usados" - -msgid "Column name" -msgstr "Nome da coluna" - -msgid "" -"Column label for index column(s). If None is given and Dataframe Index is " -"True, Index Names are used." +"Column label for index column(s). If None is given and Dataframe Index is" +" True, Index Names are used." msgstr "" "Rótulo da coluna para a(s) coluna(s) de índice. Se None for fornecido e " "Dataframe Index for True, são utilizados os nomes de índice." +#: superset/views/database/forms.py:233 +msgid "" +"Column label for index column(s). If None is given and Dataframe Index is" +" checked, Index Names are used" +msgstr "" +"Rótulo da coluna para a(s) coluna(s) de índice. Se None (Nenhum) for " +"fornecido e Dataframe Index (Índice de quadro de dados) for verificado, " +"os nomes de índice serão usados" + +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:90 +msgid "Column name" +msgstr "Nome da coluna" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:820 +#, python-format msgid "Column name [%s] is duplicated" msgstr "Nome da coluna [%s] está duplicado" +#: superset/utils/pandas_postprocessing/utils.py:151 +#, python-format msgid "Column referenced by aggregate is undefined: %(column)s" msgstr "Coluna referenciado pelo agregado é indefinido: %(column)s" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:123 msgid "Column select" msgstr "Seleção de coluna" +#: superset/views/database/forms.py:221 msgid "" -"Column to use as the row labels of the dataframe. Leave empty if no index " -"column" +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column" msgstr "" -"Coluna a ser usada como rótulos de linha do dataframe. Deixe em branco se " -"não houver coluna de índice" +"Coluna a ser usada como rótulos de linha do dataframe. Deixe em branco se" +" não houver coluna de índice" +#: superset/views/database/forms.py:352 +msgid "" +"Column to use as the row labels of the dataframe. Leave empty if no index" +" column." +msgstr "" +"Coluna para utilizar como rótulos de linhas do dataframe. Deixar vazio se" +" não houver coluna de índice." + +#: superset/views/database/forms.py:424 msgid "Columnar File" msgstr "Arquivo colunar" +#: superset/views/database/views.py:568 +#, python-format msgid "" -"Columnar file \"%(columnar_filename)s\" uploaded to table \"%(table_name)s\" " -"in database \"%(db_name)s\"" +"Columnar file \"%(columnar_filename)s\" uploaded to table " +"\"%(table_name)s\" in database \"%(db_name)s\"" msgstr "" "Arquivo colunar \"%(columnar_filename)s\" carregado para a tabela " "\"%(table_name)s\" no banco de dados \"%(db_name)s\"" +#: superset/views/database/views.py:443 msgid "Columnar to Database configuration" msgstr "Configuração de colunar para banco de dados" -msgid "" -"Column to use as the row labels of the dataframe. Leave empty if no index " -"column." -msgstr "" -"Coluna para utilizar como rótulos de linhas do dataframe. Deixar vazio se " -"não houver coluna de índice." - +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:110 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:33 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:38 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:62 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:52 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:119 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:102 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1373 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:432 +#: superset-frontend/src/explore/controls.jsx:244 +#: superset-frontend/src/explore/fixtures.tsx:97 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 +#: superset/connectors/sqla/views.py:71 msgid "Columns" msgstr "Colunas" +#: superset/views/database/forms.py:193 msgid "Columns To Be Parsed as Dates" msgstr "Colunas a serem analisadas como datas" +#: superset/views/database/forms.py:241 msgid "Columns To Read" msgstr "Colunas a serem lidas" +#: superset/common/query_context_processor.py:132 +#, python-format msgid "Columns missing in dataset: %(invalid_columns)s" msgstr "Faltam colunas no conjunto de dados: %(invalid_columns)s" +#: superset/viz.py:593 +#, python-format msgid "Columns missing in datasource: %(invalid_columns)s" msgstr "Colunas ausente na fonte de dados: %(invalid_columns)s" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:367 msgid "Columns subtotal position" msgstr "Posição do subtotal das colunas" -msgid "Columns to display" -msgstr "Colunas a serem exibidas" - -msgid "Columns to group by" -msgstr "Colunas para agrupar por" - +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:170 msgid "Columns to calculate distribution across." msgstr "Colunas para calcular a distribuição entre." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:45 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:46 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:55 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:39 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:63 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:103 +#: superset-frontend/src/explore/fixtures.tsx:99 +msgid "Columns to display" +msgstr "Colunas a serem exibidas" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:42 +msgid "Columns to group by" +msgstr "Colunas para agrupar por" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:53 msgid "Columns to group by on the columns" msgstr "Colunas para agrupar nas colunas" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:63 msgid "Columns to group by on the rows" msgstr "Colunas para agrupar nas linhas" +#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:42 msgid "Columns to show" msgstr "Colunas a serem exibidas" -msgid "Combine Metrics" -msgstr "Combinar métricas" - +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:250 msgid "Combine metrics" msgstr "Combinar Métricas" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:297 msgid "" -"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote " -"colors from the chosen color scheme and are 1-indexed. Length must be " -"matching that of interval bounds." +"Comma-separated color picks for the intervals, e.g. 1,2,4. Integers " +"denote colors from the chosen color scheme and are 1-indexed. Length must" +" be matching that of interval bounds." msgstr "" -"Escolhas de cores separadas por vírgulas para os intervalos, por exemplo, " -"1,2,4. Os números inteiros denotam cores do esquema de cores escolhido e são " -"indexados a 1. O comprimento deve corresponder ao dos limites do intervalo." +"Escolhas de cores separadas por vírgulas para os intervalos, por exemplo," +" 1,2,4. Os números inteiros denotam cores do esquema de cores escolhido e" +" são indexados a 1. O comprimento deve corresponder ao dos limites do " +"intervalo." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:283 msgid "" -"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and 4-5. " -"Last number should match the value provided for MAX." +"Comma-separated interval bounds, e.g. 2,4,5 for intervals 0-2, 2-4 and " +"4-5. Last number should match the value provided for MAX." msgstr "" "Limites de intervalos separados por vírgulas, por exemplo, 2,4,5 para " "intervalos 0-2, 2-4 e 4-5. O último número deve corresponder ao valor " "fornecido para MAX." +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:371 msgid "Comparator option" msgstr "Opção de comparador" +#: superset-frontend/src/visualizations/TimeTable/index.ts:28 msgid "" "Compare multiple time series charts (as sparklines) and related metrics " "quickly." msgstr "" -"Compare rapidamente vários gráficos de séries temporais (como sparklines) e " -"métricas relacionadas." +"Compare rapidamente vários gráficos de séries temporais (como sparklines)" +" e métricas relacionadas." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:27 msgid "Compare the same summarized metric across multiple groups." msgstr "Comparar a mesma métrica resumida em vários grupos." +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:28 msgid "" -"Compares how a metric changes over time between different groups. Each group " -"is mapped to a row and change over time is visualized bar lengths and color." +"Compares how a metric changes over time between different groups. Each " +"group is mapped to a row and change over time is visualized bar lengths " +"and color." msgstr "" "Compara a forma como uma métrica muda ao longo do tempo entre diferentes " -"grupos. Cada grupo é mapeado para uma linha e a alteração ao longo do tempo " -"é visualizada em comprimentos de barra e cores." +"grupos. Cada grupo é mapeado para uma linha e a alteração ao longo do " +"tempo é visualizada em comprimentos de barra e cores." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:35 msgid "" -"Compares metrics from different categories using bars. Bar lengths are used " -"to indicate the magnitude of each value and color is used to differentiate " -"groups." +"Compares metrics from different categories using bars. Bar lengths are " +"used to indicate the magnitude of each value and color is used to " +"differentiate groups." msgstr "" -"Compara métricas de diferentes categorias usando barras. Os comprimentos das " -"barras são utilizados para indicar a magnitude de cada valor e a cor é " -"utilizada para diferenciar os grupos." +"Compara métricas de diferentes categorias usando barras. Os comprimentos " +"das barras são utilizados para indicar a magnitude de cada valor e a cor " +"é utilizada para diferenciar os grupos." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:27 msgid "" -"Compares the lengths of time different activities take in a shared timeline " -"view." +"Compares the lengths of time different activities take in a shared " +"timeline view." msgstr "" -"Compara os períodos de tempo de diferentes atividades numa visão de linha de " -"tempo compartilhada." +"Compara os períodos de tempo de diferentes atividades numa visão de linha" +" de tempo compartilhada." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:35 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:45 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:37 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:64 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:43 +#: superset-frontend/src/visualizations/TimeTable/index.ts:34 msgid "Comparison" msgstr "Comparação" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:54 msgid "Comparison Period Lag" msgstr "Lag do Período de comparação" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:67 msgid "Comparison suffix" msgstr "Sufixo de comparação" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:27 msgid "Compose multiple layers together to form complex visuals." msgstr "Compor várias camadas para formar imagens complexas." +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:45 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:52 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:377 +#: superset-frontend/src/explore/controlPanels/sections.tsx:109 msgid "Compute the contribution to the total" msgstr "Calcular a contribuição para o total" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:391 msgid "Condition" msgstr "Condição" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 +#, fuzzy +msgid "Conditional Formatting" +msgstr "Formatação condicional" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:385 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:504 msgid "Conditional formatting" msgstr "Formatação condicional" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:70 msgid "Confidence interval" msgstr "Intervalo de confiança" +#: superset/utils/pandas_postprocessing/prophet.py:129 msgid "Confidence interval must be between 0 and 1 (exclusive)" msgstr "Intervalo de confiança deve ser entre 0 e 1 (exclusivo)" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:400 msgid "Configuration" msgstr "Configuração" -msgid "Configure Advanced Time Range" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:58 +#, fuzzy +msgid "Configure Advanced Time Range " msgstr "Configurar intervalo de tempo avançado" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CommonFrame.tsx:46 msgid "Configure Time Range: Last..." msgstr "Configurar Intervalo de Tempo: Último..." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CalendarFrame.tsx:46 msgid "Configure Time Range: Previous..." msgstr "Configurar Intervalo de Tempo: Anterior..." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:125 msgid "Configure custom time range" msgstr "Configurar intervalo de tempo personalizado" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:763 msgid "Configure filter scopes" msgstr "Configurar os âmbitos de filtragem" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:785 msgid "Configure the basics of your Annotation Layer." msgstr "Configurar o fundamentos da sua camada de anotação." +#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:177 msgid "Configure this dashboard to embed it into an external web application." msgstr "Configurar este painel para incorporá-lo em um aplicativo web externo." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:681 msgid "Configure your how you overlay is displayed here." msgstr "Configure a forma como a sobreposição é apresentada aqui." -msgid "Confirm save" -msgstr "Confirmar salvar" - +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:132 msgid "Confirm overwrite" msgstr "Confirmar a substituição" -msgid "Connect Google Sheet" -msgstr "Conectar Planilha Google" - -msgid "Connect Google Sheets as tables to this database" -msgstr "Conectar Planilhas Google como tabelas para esse banco de dados" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:222 +msgid "Confirm save" +msgstr "Confirmar salvar" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1152 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1712 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 msgid "Connect" msgstr "Conectar" -msgid "CONNECT" -msgstr "CONECTAR" +#: superset-frontend/src/features/home/RightMenu.tsx:184 +msgid "Connect Google Sheet" +msgstr "Conectar Planilha Google" -msgid "connect" -msgstr "conectar" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:40 +msgid "Connect Google Sheets as tables to this database" +msgstr "Conectar Planilhas Google como tabelas para esse banco de dados" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1716 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1918 msgid "Connect a database" msgstr "Conectar um banco de dados" +#: superset-frontend/src/features/home/RightMenu.tsx:173 msgid "Connect database" msgstr "Conectar o banco de dados" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 msgid "Connect this database using the dynamic form instead" -msgstr "" -"Em vez disso, conecte esse banco de dados utilizando o formulário dinâmico" +msgstr "Em vez disso, conecte esse banco de dados utilizando o formulário dinâmico" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2007 msgid "Connect this database with a SQLAlchemy URI string instead" -msgstr "" -"Em vez disso, conecte esse banco de dados com uma cadeia de URI SQLAlchemy" +msgstr "Em vez disso, conecte esse banco de dados com uma cadeia de URI SQLAlchemy" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 msgid "Connection" msgstr "Conexão" +#: superset/databases/commands/exceptions.py:107 +#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1471 msgid "Connection failed, please check your connection settings" msgstr "Falha na conexão, por favor verificar suas configurações de conexão" +#: superset-frontend/src/views/CRUD/hooks.ts:701 msgid "Connection looks good!" msgstr "A conexão parece boa !" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:674 +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:685 msgid "Continue" msgstr "Continuar" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:46 msgid "Continuous" msgstr "Contínuo" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:46 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:50 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:47 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:375 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:72 +#: superset-frontend/src/explore/controlPanels/sections.tsx:107 msgid "Contribution" msgstr "Contribuição" -msgid "Control labeled" -msgstr "Controle rotulado" - +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 msgid "Contribution Mode" msgstr "Modo de contribuição" +#: superset-frontend/src/components/AlteredSliceTag/index.jsx:174 msgid "Control" msgstr "Controle" -msgid "Controls labeled" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +#, fuzzy +msgid "Control labeled " +msgstr "Controle rotulado" + +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:519 +#, fuzzy +msgid "Controls labeled " msgstr "Controles rotulados" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:64 msgid "Coordinates" msgstr "Coordenadas" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:77 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:68 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:185 msgid "Copied to clipboard!" msgstr "Copiado para a área de transferência!" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:40 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:84 msgid "Copy" msgstr "Copiar" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:222 msgid "Copy SELECT statement to the clipboard" msgstr "Copiar instrução SELECT para a área de transferência" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:105 msgid "Copy and Paste JSON credentials" msgstr "Copiar e cole as credenciais JSON" -msgid "Copy and paste the entire service account.json file here" -msgstr "Copie e cole todo o ficheiro service account.json aqui" - +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:125 msgid "Copy and paste the entire service account .json file here" msgstr "Copie e cole todo o ficheiro service account.json aqui" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:108 msgid "Copy link" msgstr "Copiar link" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:201 msgid "Copy message" msgstr "Copiar mensagem" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:679 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1461 +#: superset-frontend/src/SqlLab/reducers/sqlLab.js:107 +#, python-format msgid "Copy of %s" msgstr "Copiar de %s" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:136 msgid "Copy partition query to clipboard" msgstr "Copiar consulta de partição para a área de transferência" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:329 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:340 msgid "Copy permalink to clipboard" msgstr "Copiar permalink para a área de transferência" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:414 msgid "Copy query URL" msgstr "Copiar URL da consulta" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:98 msgid "Copy query link to your clipboard" msgstr "Copiar link de consulta para sua área de transferência" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:26 msgid "Copy the account name of that database you are trying to connect to." -msgstr "" -"Copie o nome da conta do banco de dados à qual se está tentando conectar." +msgstr "Copie o nome da conta do banco de dados à qual se está tentando conectar." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:93 msgid "Copy the name of the HTTP Path of your cluster." msgstr "Copiar o nome do caminho HTTP de seu cluster." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:115 msgid "Copy the name of the database you are trying to connect to." msgstr "Copiar o nome do banco de dados que você está tentando se conectar." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:271 msgid "Copy to Clipboard" msgstr "Copiar para Área de transferência" +#: superset-frontend/src/components/CopyToClipboard/index.jsx:44 +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:89 msgid "Copy to clipboard" msgstr "Copiar para área de transferência" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:26 msgid "Correlation" msgstr "Correlação" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:104 msgid "Cost estimate" msgstr "Estimativa de custo" +#: superset/db_engine_specs/ocient.py:259 +#, fuzzy, python-format +msgid "Could not connect to database: \"%(database)s\"" +msgstr "Não é possível se conectar ao banco de dados \"%(banco de dados)s\"." + +#: superset/views/utils.py:496 msgid "Could not determine datasource type" msgstr "Não foi possível determinar o tipo de fonte de dados" +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:167 +#: superset-frontend/src/dashboard/reducers/sliceEntities.js:73 msgid "Could not fetch all saved charts" msgstr "Não foi possível obter todos os gráficos salvos" +#: superset/views/utils.py:512 msgid "Could not find viz object" msgstr "Não foi possível encontrar o objeto viz" +#: superset/databases/commands/exceptions.py:132 msgid "Could not load database driver" msgstr "Não foi possível carregar o driver do banco de dados" +#: superset/views/core.py:1454 +#, python-format msgid "Could not load database driver: %(driver_name)s" msgstr "Não foi possível carregar o driver do banco de dados: %(driver_name)s" +#: superset/databases/commands/test_connection.py:180 msgid "Could not load database driver: {}" msgstr "Não foi possível carregar o driver de banco de dados: {}" +#: superset/db_engine_specs/ocient.py:264 +#, python-format +msgid "Could not resolve hostname: \"%(host)s\"." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 msgid "Count" msgstr "Contar" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:180 msgid "Count Unique Values" msgstr "Contar valores únicos" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:198 msgid "Count as Fraction of Columns" msgstr "Contar como fração de Colunas" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:195 msgid "Count as Fraction of Rows" msgstr "Contar como fração de Linhas" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:194 msgid "Count as Fraction of Total" msgstr "Contar como fração do Total" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:120 msgid "Country" msgstr "País" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:146 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:151 msgid "Country Color Scheme" msgstr "Esquema de cores do país" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:135 msgid "Country Column" msgstr "Coluna do país" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:41 msgid "Country Field Type" msgstr "Tipo de campo País" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 +#: superset/viz.py:1969 msgid "Country Map" msgstr "Mapa do País" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:761 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:770 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:96 msgid "Create" msgstr "Criar" +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:49 msgid "Create Chart" msgstr "Criar gráfico" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:327 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:338 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:362 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 msgid "Create a dataset" msgstr "Criar um conjunto de dados" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:124 msgid "" "Create a dataset to begin visualizing your data as a chart or go to\n" " SQL Lab to query your data." @@ -3069,595 +4751,876 @@ msgstr "" "gráfico ou vá para\n" " SQL Lab para consultar seus dados." +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:201 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:224 +#: superset-frontend/src/pages/ChartCreation/index.tsx:381 msgid "Create a new chart" msgstr "Criar um novo gráfico" +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:22 msgid "Create chart" msgstr "Criar gráfico" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:144 msgid "Create chart with dataset" msgstr "Criar gráfico com conjunto de dados" +#: superset-frontend/src/features/home/RightMenu.tsx:178 msgid "Create dataset" msgstr "Criar conjunto de dados" +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:109 msgid "Create dataset and create chart" msgstr "Criar conjunto de dados e criar gráfico" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:343 +#: superset-frontend/src/pages/ChartCreation/index.tsx:430 msgid "Create new chart" msgstr "Criar novo gráfico" -msgid "Create or select schema..." -msgstr "Criar ou selecionar esquema..." - +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:111 msgid "Create new filter set" msgstr "Criar novo conjunto de filtros" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 +msgid "Create or select schema..." +msgstr "Criar ou selecionar esquema..." + +#: superset-frontend/src/features/home/ActivityTable.tsx:159 msgid "Created" msgstr "Criado" -msgid "CREATED" -msgstr "CRIADO" - -msgid "created" -msgstr "criado" - +#: superset/views/access_requests.py:49 msgid "Created On" msgstr "Criado em" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:92 +#: superset-frontend/src/pages/AlertReportList/index.tsx:313 +#: superset-frontend/src/pages/AlertReportList/index.tsx:469 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:209 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:283 +#: superset-frontend/src/pages/ChartList/index.tsx:461 +#: superset-frontend/src/pages/ChartList/index.tsx:630 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:192 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:273 +#: superset-frontend/src/pages/DashboardList/index.tsx:358 +#: superset-frontend/src/pages/DashboardList/index.tsx:545 +#: superset-frontend/src/pages/DatabaseList/index.tsx:376 +#: superset-frontend/src/pages/Tags/index.tsx:128 +#: superset-frontend/src/pages/Tags/index.tsx:183 msgid "Created by" msgstr "Criado por" +#: superset/charts/filters.py:119 superset/dashboards/filters.py:55 msgid "Created by me" msgstr "Criado por mim" +#: superset-frontend/src/profile/components/App.tsx:62 msgid "Created content" msgstr "Conteúdo criado" -msgid "Creating SSH Tunnel failed for an unknown reason" -msgstr "A criação do túnel SSH falhou por um motivo desconhecido" - +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:94 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:202 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:184 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:359 msgid "Created on" msgstr "Criado em" +#: superset/databases/ssh_tunnel/commands/exceptions.py:46 +msgid "Creating SSH Tunnel failed for an unknown reason" +msgstr "A criação do túnel SSH falhou por um motivo desconhecido" + +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:70 msgid "Creating a data source and creating a new tab" msgstr "Criando uma fonte de dados e criando uma nova guia" +#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 +#: superset/views/dashboard/views.py:185 superset/views/database/mixins.py:189 msgid "Creator" msgstr "Criador" -msgid "" -"Cross-filter will be applied to all of the charts that use this dataset." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:47 +msgid "Crimson" +msgstr "Carmesim" + +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:152 +msgid "Cross-filter will be applied to all of the charts that use this dataset." msgstr "" "Filtro cruzado vai ser aplicado para todos os gráficos que utilizam esse " "conjunto de dados." -msgid "Crimson" -msgstr "Carmesim" - +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:164 msgid "Cross-filtering is not enabled for this dashboard." msgstr "A filtragem cruzada não está ativada para esse painel." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 +#, fuzzy +msgid "Cross-filtering is not enabled in this dashboard" +msgstr "A filtragem cruzada não está ativada para esse painel." + +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:414 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 +#, fuzzy +msgid "Cross-filtering scoping" +msgstr "Habilitar filtragem cruzada" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 msgid "Cross-filters" msgstr "Filtros cruzados" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:139 msgid "Cumulative" msgstr "Acumulado" +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:131 +#, python-format msgid "Currently rendered: %s" msgstr "Atualmente renderizado: %s" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:33 msgid "Custom" msgstr "Personalizado" +#: superset/views/dynamic_plugins.py:59 msgid "Custom Plugin" msgstr "Plugin personalizado" +#: superset/views/dynamic_plugins.py:58 msgid "Custom Plugins" msgstr "Plugins personalizados" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:391 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 msgid "Custom SQL" msgstr "SQL personalizado" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:471 msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" msgstr "" "As métricas ad-hoc de SQL personalizado não estão ativadas para este " "conjunto de dados" +#: superset/errors.py:145 superset/models/helpers.py:138 msgid "Custom SQL fields cannot contain sub-queries." msgstr "Os campos SQL personalizados não podem conter subconsultas." +#: superset-frontend/src/filters/components/Time/index.ts:28 msgid "Custom time filter plugin" msgstr "Plugin de filtro de tempo personalizado" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:765 msgid "Customize" msgstr "Personalizar" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:165 msgid "Customize Metrics" msgstr "Personalizar métricas" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:482 msgid "Customize columns" msgstr "Personalizar colunas" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:447 msgid "Cyclic dependency detected" msgstr "Detectada dependência cíclica" +#: superset/connectors/sqla/views.py:255 msgid "D3 Format" msgstr "Formato D3" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:58 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1216 msgid "D3 format" msgstr "Formato D3" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:146 msgid "D3 format syntax: https://github.com/d3/d3-format" msgstr "formato D3 sintaxe: https://github.com/d3/d3-format" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:150 msgid "" -"D3 number format for numbers between -1.0 and 1.0, useful when you want to " -"have different significant digits for small and large numbers" +"D3 number format for numbers between -1.0 and 1.0, useful when you want " +"to have different significant digits for small and large numbers" msgstr "" -"Formato de número D3 para números entre -1,0 e 1,0, útil quando se pretende " -"ter dígitos significativos diferentes para números pequenos e grandes" +"Formato de número D3 para números entre -1,0 e 1,0, útil quando se " +"pretende ter dígitos significativos diferentes para números pequenos e " +"grandes" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:285 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:392 msgid "D3 time format for datetime columns" msgstr "Formato de hora D3 para colunas datetime" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 msgid "D3 time format syntax: https://github.com/d3/d3-time-format" msgstr "Formato de hora D3 sintaxe: https://github.com/d3/d3-time-format" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:145 +msgid "DATETIME" +msgstr "DATA" + +#: superset/utils/encrypt.py:117 +#, python-format msgid "DB column %(col_name)s has unknown type: %(value_type)s" msgstr "" "Coluna do banco de dados %(nome_da_coluna)s tem tipo desconhecido: " "%(value_type)s" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:102 msgid "DEC" msgstr "DEZ" -msgid "DATETIME" -msgstr "DATA" - +#: superset-frontend/src/components/DeleteModal/index.tsx:69 +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:231 msgid "DELETE" msgstr "APAGAR" +#: superset-frontend/src/pages/DatabaseList/index.tsx:343 msgid "DML" msgstr "DML" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:123 msgid "Daily seasonality" msgstr "Sazonalidade diária" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:229 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:375 msgid "Dark" msgstr "Escuro" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:43 msgid "Dark Cyan" msgstr "Escuro Ciano" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:31 msgid "Dark mode" msgstr "Modo escuro" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:404 +#: superset-frontend/src/features/home/DashboardTable.tsx:194 +#: superset-frontend/src/features/home/RightMenu.tsx:228 +#: superset-frontend/src/pages/DashboardList/index.tsx:672 +#: superset/views/dashboard/mixin.py:77 superset/views/dashboard/views.py:183 msgid "Dashboard" msgstr "Painel" +#: superset-frontend/src/explore/actions/saveModalActions.js:129 +#, python-format msgid "Dashboard [%s] just got created and chart [%s] was added to it" -msgstr "" -"O painel [%s] acabou de ser criado e o gráfico [%s] foi adicionado a ele" +msgstr "O painel [%s] acabou de ser criado e o gráfico [%s] foi adicionado a ele" +#: superset/views/core.py:1144 msgid "Dashboard [{}] just got created and chart [{}] was added to it" msgstr "Painel [{}] acabou de ser criado e o gráfico [{}] foi adicionado a ele" +#: superset/dashboards/commands/exceptions.py:54 msgid "Dashboard could not be created." msgstr "Não foi possível criar o painel." +#: superset/dashboards/commands/exceptions.py:70 msgid "Dashboard could not be deleted." msgstr "Não foi possível remover o painel." +#: superset/dashboards/commands/exceptions.py:66 msgid "Dashboard could not be updated." msgstr "Não foi possível atualizar o painel." +#: superset/reports/commands/exceptions.py:48 msgid "Dashboard does not exist" msgstr "Painel não existe" -msgid "Dashboard parameters are invalid." -msgstr "Os parâmetros do painel são inválidos." - +#: superset-frontend/src/pages/DashboardList/index.tsx:170 msgid "Dashboard imported" msgstr "Painel importado" +#: superset/dashboards/commands/exceptions.py:43 +msgid "Dashboard parameters are invalid." +msgstr "Os parâmetros do painel são inválidos." + +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:639 msgid "Dashboard properties" msgstr "Propriedades do painel" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:447 msgid "Dashboard properties updated" msgstr "Propriedades do painel atualizadas" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:117 msgid "Dashboard scheme" msgstr "Esquema do painel" -msgid "Dashboard title" -msgstr "Título do painel" - -msgid "Dashboard usage" -msgstr "Uso do painel" - +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:868 msgid "" "Dashboard time range filters apply to temporal columns defined in\n" " the filter section of each chart. Add temporal columns to the " "chart\n" " filters to have this dashboard filter impact those charts." msgstr "" -"Os filtros de intervalo de tempo do painel aplicam-se a colunas temporais " -"definidas na \n" -" seção de filtros de cada gráfico. Adicione colunas temporais aos filtros \n" +"Os filtros de intervalo de tempo do painel aplicam-se a colunas temporais" +" definidas na \n" +" seção de filtros de cada gráfico. Adicione colunas temporais aos filtros" +" \n" " do gráfico para que esse filtro do painel afete esses gráficos." +#: superset-frontend/src/dashboard/components/Header/index.jsx:513 +msgid "Dashboard title" +msgstr "Título do painel" + +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:109 +msgid "Dashboard usage" +msgstr "Uso do painel" + +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:113 +#: superset-frontend/src/pages/ChartList/index.tsx:688 +#: superset-frontend/src/pages/DashboardList/index.tsx:699 +#: superset-frontend/src/pages/Home/index.tsx:385 +#: superset-frontend/src/profile/components/CreatedContent.tsx:101 +#: superset-frontend/src/profile/components/Favorites.tsx:99 +#: superset/initialization/__init__.py:251 superset/views/chart/mixin.py:78 +#: superset/views/dashboard/mixin.py:24 msgid "Dashboards" msgstr "Painéis" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:282 +#: superset-frontend/src/pages/ChartList/index.tsx:411 msgid "Dashboards added to" msgstr "Painéis adicionados a" +#: superset/dashboards/commands/exceptions.py:58 msgid "Dashboards could not be deleted." msgstr "Não foi possível apagar os painéis." +#: superset/charts/commands/exceptions.py:91 msgid "Dashboards do not exist" msgstr "Os painéis não existem" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:690 msgid "Dashed" msgstr "Traço" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:708 +#: superset-frontend/src/features/home/RightMenu.tsx:169 +#: superset/initialization/__init__.py:246 msgid "Data" msgstr "Dados" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:47 msgid "Data Table" msgstr "Tabela de dados" +#: superset/datasets/commands/exceptions.py:214 msgid "Data URI is not allowed." msgstr "URI de dados não são permitidos." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:306 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:313 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:162 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:104 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:104 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:156 msgid "Data Zoom" msgstr "Zoom de dados" +#: superset/sqllab/commands/results.py:116 superset/views/core.py:2231 msgid "" -"Data could not be retrieved from the results backend. You need to re-run the " -"original query." +"Data could not be deserialized from the results backend. The storage " +"format might have changed, rendering the old data stake. You need to re-" +"run the original query." msgstr "" -"Os dados não puderam ser recuperados do backend de resultados. Você precisa " -"executar novamente a consulta original." +"Os dados não puderam ser desserializados do backend de resultados. O " +"formato de armazenamento pode ter mudado, tornando os dados antigos. É " +"necessário executar novamente a consulta original." +#: superset/sqllab/commands/results.py:75 superset/views/core.py:2184 msgid "" -"Data could not be deserialized from the results backend. The storage format " -"might have changed, rendering the old data stake. You need to re-run the " -"original query." +"Data could not be retrieved from the results backend. You need to re-run " +"the original query." msgstr "" -"Os dados não puderam ser desserializados do backend de resultados. O formato " -"de armazenamento pode ter mudado, tornando os dados antigos. É necessário " -"executar novamente a consulta original." +"Os dados não puderam ser recuperados do backend de resultados. Você " +"precisa executar novamente a consulta original." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/components/PlaySlider.jsx:182 msgid "Data has no time steps" msgstr "Os dados não têm intervalos de tempo" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:246 msgid "Data preview" msgstr "Pré-visualização de dados" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:278 msgid "Data refreshed" msgstr "Dados atualizados" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:272 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:275 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:360 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:368 msgid "Data type" msgstr "Tipo de dado" +#: superset/utils/pandas_postprocessing/prophet.py:134 msgid "DataFrame include at least one series" msgstr "DataFrame inclui pelo menos uma série" +#: superset/utils/pandas_postprocessing/prophet.py:132 msgid "DataFrame must include temporal column" msgstr "DataFrame deve incluir uma coluna temporal" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:274 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 +#: superset-frontend/src/pages/DatabaseList/index.tsx:278 +#: superset-frontend/src/pages/DatabaseList/index.tsx:307 +#: superset-frontend/src/pages/DatasetList/index.tsx:360 +#: superset-frontend/src/pages/DatasetList/index.tsx:531 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:241 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:349 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:287 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:448 +#: superset/connectors/sqla/views.py:386 superset/connectors/sqla/views.py:387 +#: superset/templates/superset/import_dashboards.html:53 +#: superset/views/database/forms.py:137 superset/views/database/forms.py:315 +#: superset/views/database/forms.py:446 superset/views/database/mixins.py:188 +#: superset/views/sql_lab/views.py:83 msgid "Database" msgstr "Banco de dados" +#: superset/views/database/views.py:481 +#, python-format msgid "" -"Database \"%(database_name)s\"schema \"%(schema_name)s\"is not allowed for " -"csv uploads. Please contact your Superset Admin." -msgstr "" -"Banco de dados \"%(database_name)s \"esquema \"%(schema_name)s\"não é " -"permitido para carregamentos de csv. Por favor, contate o administrador do " -"Superset." - -msgid "" -"Database \"%(database_name)s\"schema \"%(schema_name)s\"is not allowed for " -"excel uploads. Please contact your Superset Admin." -msgstr "" -"Banco de dados \"%(database_name)s \"esquema \"%(schema_name)s\"não é " -"permitido para carregamentos de excel. Por favor, contate o administrador do " -"Superset." - -msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for " -"columnar uploads. Please contact your Superset Admin." +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for columnar uploads. Please contact your Superset Admin." msgstr "" "O banco de dados \"%(database_name)s\" schema \"%(schema_name)s\" não é " -"permitido para uploads de colunas. Entre em contato com o administrador do " -"Superset." +"permitido para uploads de colunas. Entre em contato com o administrador " +"do Superset." +#: superset/views/database/views.py:180 +#, python-format msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for " -"csv uploads. Please contact your Superset Admin." +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for csv uploads. Please contact your Superset Admin." msgstr "" "O banco de dados \"%(database_name)s\" esquema \"%(schema_name)s\" não é " "permitido para uploads de csv. Entre em contato com o administrador do " "Superset." +#: superset/views/database/views.py:321 +#, python-format msgid "" -"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed for " -"excel uploads. Please contact your Superset Admin." +"Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " +"for excel uploads. Please contact your Superset Admin." msgstr "" "Banco de dados \"%(database_name)s\" esquema \"%(schema_name)s\" não é " "permitido para uploads do Excel. Entre em contato com o administrador do " "Superset." +#: superset/initialization/__init__.py:243 msgid "Database Connections" msgstr "Conexões de banco de dados" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1522 msgid "Database Creation Error" msgstr "Erro na criação do banco de dados" +#: superset/views/access_requests.py:46 msgid "Database URL" msgstr "URL do banco de dados" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:882 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:904 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1205 msgid "Database connected" msgstr "Banco de dados conectado" +#: superset/databases/commands/exceptions.py:96 msgid "Database could not be created." msgstr "Não foi possível criar o banco de dados." +#: superset/databases/commands/exceptions.py:115 msgid "Database could not be deleted." msgstr "Não foi possível remover o banco de dados." +#: superset/databases/commands/exceptions.py:100 msgid "Database could not be updated." msgstr "Não foi possível atualizar o banco de dados." +#: superset/errors.py:123 msgid "Database does not allow data manipulation." msgstr "Banco de dados não permite a manipulação de dados." +#: superset/charts/commands/exceptions.py:82 +#: superset/datasets/commands/exceptions.py:41 +#: superset/reports/commands/exceptions.py:39 msgid "Database does not exist" msgstr "Banco de dados não existe" +#: superset/models/helpers.py:2063 msgid "Database does not support subqueries" msgstr "O banco de dados não é compatível com subconsultas" +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:51 +#, fuzzy msgid "" "Database driver for importing maybe not installed. Visit the Superset " -"documentation page for installation instructions:" +"documentation page for installation instructions: " msgstr "" "O driver do banco de dados para importação talvez não esteja instalado. " "Visite a página de documentação do Superset para obter instruções de " "instalação:" -msgid "Database is offline." -msgstr "O banco de dados está off-line." - +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 msgid "Database error" msgstr "Erro no banco de dados" +#: superset/databases/commands/validate.py:124 +msgid "Database is offline." +msgstr "O banco de dados está off-line." + +#: superset/reports/commands/exceptions.py:66 msgid "Database is required for alerts" msgstr "O banco de dados é necessário para os alertas" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:113 +#: superset/db_engine_specs/base.py:1880 +#: superset/db_engine_specs/clickhouse.py:212 msgid "Database name" msgstr "Nome do banco de dados" +#: superset/datasets/commands/exceptions.py:50 msgid "Database not allowed to change" msgstr "Banco de dados não pode ser alterado" +#: superset/databases/commands/exceptions.py:92 msgid "Database not found." msgstr "Banco de dados não encontrado." -msgid "Database parameters are invalid." -msgstr "Os parâmetros do banco de dados são inválidos." - +#: superset/views/core.py:1201 +#, python-format msgid "Database not found: %(id)s" msgstr "Banco de dados não encontrado: %(id)s" +#: superset/databases/commands/exceptions.py:32 +msgid "Database parameters are invalid." +msgstr "Os parâmetros do banco de dados são inválidos." + +#: superset-frontend/src/components/ImportModal/index.tsx:291 msgid "Database passwords" msgstr "Senhas de banco de dados" +#: superset/db_engine_specs/base.py:1876 +#: superset/db_engine_specs/clickhouse.py:208 +#: superset/db_engine_specs/databricks.py:52 msgid "Database port" msgstr "Porta do banco de dados" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:853 msgid "Database settings updated" msgstr "Configurações do banco de dados atualizadas" +#: superset-frontend/src/pages/DatabaseList/index.tsx:269 +#: superset-frontend/src/profile/components/Security.tsx:47 +#: superset/views/database/mixins.py:33 msgid "Databases" msgstr "Banco de dados" +#: superset/views/database/forms.py:229 superset/views/database/forms.py:390 +#: superset/views/database/forms.py:481 msgid "Dataframe Index" msgstr "Índice do dataframe" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:267 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:81 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:878 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:907 +#: superset-frontend/src/explore/controls.jsx:189 +#: superset-frontend/src/pages/ChartCreation/index.tsx:390 +#: superset-frontend/src/pages/ChartList/index.tsx:391 +#: superset-frontend/src/pages/ChartList/index.tsx:678 +#: superset-frontend/src/pages/DatasetList/index.tsx:617 msgid "Dataset" msgstr "Conjunto de dados" -msgid "Dataset Name" -msgstr "Nome do conjunto de dados" - -msgid "Dataset column delete failed." -msgstr "Falha na exclusão da coluna do conjunto de dados." - -msgid "Dataset column not found." -msgstr "Coluna do conjunto de dados não encontrada." - -msgid "Dataset could not be duplicated." -msgstr "Não foi possível duplicar o conjunto de dados." - +#: superset/datasets/commands/exceptions.py:32 +#, python-format msgid "Dataset %(name)s already exists" msgstr "%(nome)s do conjunto de dados já existe" +#: superset-frontend/src/explore/components/SaveModal.tsx:366 +msgid "Dataset Name" +msgstr "Nome do conjunto de dados" + +#: superset/datasets/columns/commands/exceptions.py:27 +msgid "Dataset column delete failed." +msgstr "Falha na exclusão da coluna do conjunto de dados." + +#: superset/datasets/columns/commands/exceptions.py:23 +msgid "Dataset column not found." +msgstr "Coluna do conjunto de dados não encontrada." + +#: superset/datasets/commands/exceptions.py:174 msgid "Dataset could not be created." msgstr "Não foi possível criar o conjunto de dados." +#: superset/datasets/commands/exceptions.py:182 msgid "Dataset could not be deleted." msgstr "Não foi possível remover o conjunto de dados." +#: superset/datasets/commands/exceptions.py:210 +msgid "Dataset could not be duplicated." +msgstr "Não foi possível duplicar o conjunto de dados." + +#: superset/datasets/commands/exceptions.py:178 +#: superset/datasets/commands/exceptions.py:190 msgid "Dataset could not be updated." msgstr "Não foi possível atualizar o conjunto de dados." +#: superset/datasets/commands/exceptions.py:166 msgid "Dataset does not exist" msgstr "Conjunto de dados não existe" +#: superset-frontend/src/pages/DatasetList/index.tsx:196 msgid "Dataset imported" msgstr "Conjunto de dados importado" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:888 msgid "Dataset is required" msgstr "O conjunto de dados é necessário" +#: superset/datasets/metrics/commands/exceptions.py:27 msgid "Dataset metric delete failed." msgstr "Falha na exclusão da métrica do conjunto de dados." +#: superset/datasets/metrics/commands/exceptions.py:23 msgid "Dataset metric not found." msgstr "A métrica do conjunto de dados não foi encontrada." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1072 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1079 msgid "Dataset name" msgstr "Nome do conjunto de dados" +#: superset/datasets/commands/exceptions.py:170 msgid "Dataset parameters are invalid." msgstr "Os parâmetros para o conjunto de dados são inválidos." +#: superset/dashboards/api.py:415 +#, python-format msgid "Dataset schema is invalid, caused by: %(error)s" msgstr "Esquema do conjunto de dados inválido, causado por: %(error)s" +#: superset/datasets/commands/exceptions.py:186 msgid "Dataset(s) could not be bulk deleted." msgstr "Não foi possível eliminar o(s) conjunto(s) de dados em bloco." +#: superset-frontend/src/pages/DatasetList/index.tsx:600 +#: superset-frontend/src/profile/components/Security.tsx:61 +#: superset/initialization/__init__.py:267 msgid "Datasets" msgstr "Conjuntos de dados" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:42 +#, fuzzy msgid "" "Datasets can be created from database tables or SQL queries. Select a " -"database table to the left or" +"database table to the left or " msgstr "" "Os conjuntos de dados podem ser criados a partir de tabelas de banco de " -"dados ou consultas SQL. Selecione uma tabela de banco de dados à esquerda ou" +"dados ou consultas SQL. Selecione uma tabela de banco de dados à esquerda" +" ou" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:847 msgid "Datasets do not contain a temporal column" msgstr "Os conjuntos de dados não contêm uma coluna temporal" -msgid "Datasource & Chart Type" -msgstr "Fonte de dados e tipo de gráfico" - -msgid "Datasource does not exist" -msgstr "A fonte de dados não existe" - +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:110 +#: superset/views/access_requests.py:47 superset/views/chart/mixin.py:79 msgid "Datasource" msgstr "Fonte de dados" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:60 +msgid "Datasource & Chart Type" +msgstr "Fonte de dados e tipo de gráfico" + +#: superset/commands/exceptions.py:135 +msgid "Datasource does not exist" +msgstr "A fonte de dados não existe" + +#: superset/commands/exceptions.py:127 msgid "Datasource type is invalid" msgstr "O tipo de fonte de dados é inválido" +#: superset/charts/commands/exceptions.py:101 msgid "Datasource type is required when datasource_id is given" msgstr "O tipo de fonte de dados é necessário quando datasource_id é fornecido" -msgid "Date filter" -msgstr "Filtro de data" - -msgid "Date/Time" -msgstr "Data/Hora" - +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:156 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:79 msgid "Date Time Format" msgstr "Formato de data e hora" -msgid "Datetime Format" -msgstr "Formato de data e hora" +#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:49 +msgid "Date filter" +msgstr "Filtro de data" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:135 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:127 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:281 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:328 msgid "Date format" msgstr "Formato da data" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:334 msgid "Date format string" msgstr "String de formato de data" -msgid "" -"Datetime column not provided as part table configuration and is required by " -"this type of chart" -msgstr "" -"A coluna Datetime não é fornecida como parte da configuração da tabela e é " -"exigida por este tipo de gráfico" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:247 +msgid "Date/Time" +msgstr "Data/Hora" +#: superset/connectors/sqla/views.py:162 +msgid "Datetime Format" +msgstr "Formato de data e hora" + +#: superset/models/helpers.py:1502 +msgid "" +"Datetime column not provided as part table configuration and is required " +"by this type of chart" +msgstr "" +"A coluna Datetime não é fornecida como parte da configuração da tabela e " +"é exigida por este tipo de gráfico" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:300 msgid "Datetime format" msgstr "Formato de data e hora" +#: superset/db_engine_specs/base.py:107 msgid "Day" msgstr "Dia" -msgid "Days %s" -msgstr "Dias %s" - +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:63 msgid "Day (freq=D)" msgstr "Dia (freq=D)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:65 +#, python-format +msgid "Days %s" +msgstr "Dias %s" + +#: superset/connectors/sqla/models.py:1222 superset/models/helpers.py:1024 msgid "Db engine did not return all queried columns" msgstr "O motor do banco de dados não retornou todas as colunas consultadas" +#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:215 msgid "Deactivate" msgstr "Desativar" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:77 msgid "December" msgstr "Dezembro" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:89 msgid "Decides which column to sort the base axis by." msgstr "Decide por qual coluna ordenar o eixo base." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:160 +#, fuzzy +msgid "Decides which measure to sort the base axis by." +msgstr "Decide por qual coluna ordenar o eixo base." + +#: superset/views/database/forms.py:204 superset/views/database/forms.py:383 msgid "Decimal Character" msgstr "Caractere decimal" +#: superset/viz.py:2700 msgid "Deck.gl - 3D Grid" msgstr "Deck.gl - Grade 3D" +#: superset/viz.py:2825 msgid "Deck.gl - 3D HEX" msgstr "Deck.gl - 3D HEX" +#: superset/viz.py:2890 msgid "Deck.gl - Arc" msgstr "Deck.gl - Arc" +#: superset/viz.py:2869 msgid "Deck.gl - GeoJSON" msgstr "Deck.gl - GeoJSON" +#: superset/viz.py:2848 +#, fuzzy +msgid "Deck.gl - Heatmap" +msgstr "gráficos do deck.gl" + +#: superset/viz.py:2406 msgid "Deck.gl - Multiple Layers" msgstr "Deck.gl - Camadas Múltiplas" +#: superset/viz.py:2735 msgid "Deck.gl - Paths" msgstr "Deck.gl - Caminhos" +#: superset/viz.py:2789 msgid "Deck.gl - Polygon" msgstr "Deck.gl - Polígono" +#: superset/viz.py:2612 msgid "Deck.gl - Scatter plot" msgstr "Deck.gl - Gráfico de dispersão" +#: superset/viz.py:2668 msgid "Deck.gl - Screen Grid" msgstr "Deck.gl - Screen Grid" +#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:167 msgid "Default" msgstr "Padrão" -msgid "Default Value" -msgstr "Valor padrão" - -msgid "Default datetime" -msgstr "Data/hora padrão" - +#: superset/connectors/sqla/views.py:391 msgid "Default Endpoint" msgstr "Endpoint padrão" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:871 msgid "Default URL" msgstr "URL padrão" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:872 msgid "Default URL to redirect to when accessing from the dataset list page" msgstr "" "URL padrão para o qual redirecionar quando acessar da página da lista de " "conjuntos de dados" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1189 +msgid "Default Value" +msgstr "Valor padrão" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:363 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:371 +msgid "Default datetime" +msgstr "Data/hora padrão" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:295 msgid "Default latitude" msgstr "Latitude padrão" -msgid "Don't refresh" -msgstr "Não atualizar" - +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:281 msgid "Default longitude" msgstr "Longitude padrão" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:80 msgid "" "Default minimal column width in pixels, actual width may still be larger " "than this if other columns don't need much space" @@ -3665,703 +5628,1064 @@ msgstr "" "Largura mínima predefinida da coluna em pixels; a largura real pode ser " "superior a esta se as outras colunas não necessitarem de muito espaço" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1218 msgid "Default value is required" msgstr "O valor padrão é obrigatório" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:96 msgid "Default value must be set when \"Filter has default value\" is checked" msgstr "" -"O valor padrão deve ser definido quando a opção \"Filter has default value\" " -"estiver marcada" +"O valor padrão deve ser definido quando a opção \"Filter has default " +"value\" estiver marcada" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:92 msgid "Default value must be set when \"Filter value is required\" is checked" msgstr "" -"O valor padrão deve ser definido quando a opção \"Filter value is required\" " -"estiver marcada" +"O valor padrão deve ser definido quando a opção \"Filter value is " +"required\" estiver marcada" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/state.ts:88 msgid "" "Default value set automatically when \"Select first filter value by " "default\" is checked" msgstr "" "O valor padrão é definido automaticamente quando a opção \"Select first " -"filter value by default\" (Selecionar o primeiro valor do filtro por padrão) " -"está marcada" - -msgid "Default value must be set when \"Filter has default value\"is checked" -msgstr "" -"Valor padrão deve ser definido quando \"Filtro tem valor padrão \"é " -"verificado" - -msgid "Default value must be set when \"Filter value is required\"is checked" -msgstr "" -"Valor padrão deve ser definido quando \"Valor do filtro é obrigatório \"é " -"verificado" - -msgid "" -"Default value set automatically when \"Select first filter value by " -"default\"is checked" -msgstr "" -"Valor padrão definido automaticamente quando \"Selecione primeiro valor de " -"filtro por padrão \"é verificado" +"filter value by default\" (Selecionar o primeiro valor do filtro por " +"padrão) está marcada" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:145 msgid "" "Define a function that receives the input and outputs the content for a " "tooltip" msgstr "" -"Definir uma função que receba a entrada e produza o conteúdo de uma dica de " -"ferramenta" +"Definir uma função que receba a entrada e produza o conteúdo de uma dica " +"de ferramenta" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:155 msgid "Define a function that returns a URL to navigate to when user clicks" msgstr "" "Definir uma função que devolve um URL para onde navegar quando o usuário " "clicar" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:133 msgid "" "Define a javascript function that receives the data array used in the " -"visualization and is expected to return a modified version of that array. " -"This can be used to alter properties of the data, filter, or enrich the " +"visualization and is expected to return a modified version of that array." +" This can be used to alter properties of the data, filter, or enrich the " "array." msgstr "" "Defina uma função javascript que receba a matriz de dados utilizada na " -"visualização e que deva devolver uma versão modificada dessa matriz. Esta " -"pode ser utilizada para alterar as propriedades dos dados, filtrar ou " +"visualização e que deva devolver uma versão modificada dessa matriz. Esta" +" pode ser utilizada para alterar as propriedades dos dados, filtrar ou " "enriquecer a matriz." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:44 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:141 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:408 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:188 +#: superset-frontend/src/explore/controlPanels/sections.tsx:140 msgid "" -"Defines a rolling window function to apply, works along with the [Periods] " -"text box" +"Defines a rolling window function to apply, works along with the " +"[Periods] text box" msgstr "" "Define uma função de janela móvel a aplicar, funciona em conjunto com a " "caixa de texto [Períodos]" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:124 msgid "Defines how each series is broken down" msgstr "Define como cada série é decomposta" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:285 msgid "Defines the grid size in pixels" msgstr "Define o tamanho do grid em pixels" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:119 +#: superset-frontend/src/explore/controls.jsx:383 msgid "" -"Defines the grouping of entities. Each series is shown as a specific color " -"on the chart and has a legend toggle" +"Defines the grouping of entities. Each series is shown as a specific " +"color on the chart and has a legend toggle" msgstr "" "Define o agrupamento de entidades. Cada série é mostrado como uma cor " "específica no gráfico e tem uma legenda alternar" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:58 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:273 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:155 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:422 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:202 +#: superset-frontend/src/explore/controlPanels/sections.tsx:152 msgid "" "Defines the size of the rolling window function, relative to the time " "granularity selected" msgstr "" -"Define o tamanho da função de janela móvel, relativamente à granularidade " -"temporal selecionada" +"Define o tamanho da função de janela móvel, relativamente à granularidade" +" temporal selecionada" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:79 msgid "" "Defines whether the step should appear at the beginning, middle or end " "between two data points" msgstr "" -"Define se o etapa deve aparecer no o começo , meio ou fim entre dois pontos " -"de dados" +"Define se o etapa deve aparecer no o começo , meio ou fim entre dois " +"pontos de dados" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:90 +#: superset-frontend/src/features/charts/ChartCard.tsx:106 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:103 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:59 +#: superset-frontend/src/features/home/SavedQueries.tsx:220 +#: superset-frontend/src/features/tags/TagCard.tsx:85 +#: superset-frontend/src/pages/AlertReportList/index.tsx:394 +#: superset-frontend/src/pages/AlertReportList/index.tsx:595 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:366 +#: superset-frontend/src/pages/AnnotationList/index.tsx:307 +#: superset-frontend/src/pages/ChartList/index.tsx:518 +#: superset-frontend/src/pages/ChartList/index.tsx:846 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:338 +#: superset-frontend/src/pages/DashboardList/index.tsx:427 +#: superset-frontend/src/pages/DashboardList/index.tsx:712 +#: superset-frontend/src/pages/DatasetList/index.tsx:429 +#: superset-frontend/src/pages/DatasetList/index.tsx:773 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:182 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:313 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:542 +#: superset-frontend/src/pages/Tags/index.tsx:153 +#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:664 msgid "Delete" msgstr "Excluir" +#: superset-frontend/src/pages/AlertReportList/index.tsx:579 +#, python-format msgid "Delete %s?" msgstr "Excluir %s?" +#: superset-frontend/src/pages/AnnotationList/index.tsx:293 msgid "Delete Annotation?" msgstr "Excluir anotação?" +#: superset-frontend/src/pages/DatabaseList/index.tsx:551 msgid "Delete Database?" msgstr "Excluir Banco de Dados?" +#: superset-frontend/src/pages/DatasetList/index.tsx:745 msgid "Delete Dataset?" msgstr "Excluir Conjunto de Dados?" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:353 msgid "Delete Layer?" msgstr "Excluir camada?" +#: superset-frontend/src/features/home/SavedQueries.tsx:243 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:519 msgid "Delete Query?" msgstr "Excluir consulta?" +#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:335 msgid "Delete Report?" msgstr "Excluir relatório?" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:323 msgid "Delete Template?" msgstr "Excluir modelo?" +#: superset/views/base.py:664 msgid "Delete all Really?" msgstr "Realmente excluir tudo?" +#: superset-frontend/src/pages/AnnotationList/index.tsx:195 msgid "Delete annotation" msgstr "Excluir anotação" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:214 msgid "Delete dashboard tab?" msgstr "Excluir aba do painel?" +#: superset-frontend/src/pages/DatabaseList/index.tsx:416 msgid "Delete database" msgstr "Excluir banco de dados" +#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:246 +#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:270 msgid "Delete email report" msgstr "Excluir relatório de e-mail" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:428 msgid "Delete query" msgstr "Excluir consulta" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:236 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:219 msgid "Delete template" msgstr "Excluir modelo" +#: superset-frontend/src/dashboard/components/MissingChart.jsx:36 msgid "Delete this container and save to remove this message." msgstr "Excluir este contêiner e salvar para remover essa mensagem." +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:108 +#, fuzzy +msgid "Deleted" +msgstr "excluir" + +#: superset/annotation_layers/annotations/api.py:504 +#, fuzzy, python-format msgid "Deleted %(num)d annotation" -msgstr "Anotação %(num)d excluída" +msgid_plural "Deleted %(num)d annotations" +msgstr[0] "Anotação %(num)d excluída" +msgstr[1] "" +#: superset/annotation_layers/api.py:355 +#, fuzzy, python-format msgid "Deleted %(num)d annotation layer" -msgstr "Camada de anotação %(num)d excluída" +msgid_plural "Deleted %(num)d annotation layers" +msgstr[0] "Camada de anotação %(num)d excluída" +msgstr[1] "" +#: superset/charts/api.py:521 +#, fuzzy, python-format msgid "Deleted %(num)d chart" -msgstr "Gráfico %(num)d excluído" +msgid_plural "Deleted %(num)d charts" +msgstr[0] "Gráfico %(num)d excluído" +msgstr[1] "" +#: superset/css_templates/api.py:139 +#, fuzzy, python-format msgid "Deleted %(num)d css template" -msgstr "Modelo CSS %(num)d excluído" +msgid_plural "Deleted %(num)d css templates" +msgstr[0] "Modelo CSS %(num)d excluído" +msgstr[1] "" +#: superset/dashboards/api.py:745 +#, fuzzy, python-format msgid "Deleted %(num)d dashboard" -msgstr "Painel %(num)d excluído" +msgid_plural "Deleted %(num)d dashboards" +msgstr[0] "Painel %(num)d excluído" +msgstr[1] "" +#: superset/datasets/api.py:789 +#, fuzzy, python-format msgid "Deleted %(num)d dataset" -msgstr "Conjunto de dados %(num)d excluído" +msgid_plural "Deleted %(num)d datasets" +msgstr[0] "Conjunto de dados %(num)d excluído" +msgstr[1] "" +#: superset/reports/api.py:502 +#, fuzzy, python-format msgid "Deleted %(num)d report schedule" -msgstr "%(num)d cronograma de relatório excluído" +msgid_plural "Deleted %(num)d report schedules" +msgstr[0] "%(num)d cronograma de relatório excluído" +msgstr[1] "" +#: superset/row_level_security/api.py:349 +#, fuzzy, python-format +msgid "Deleted %(num)d rules" +msgid_plural "Deleted %(num)d rules" +msgstr[0] "Gráfico %(num)d excluído" +msgstr[1] "" + +#: superset/queries/saved_queries/api.py:222 +#, fuzzy, python-format msgid "Deleted %(num)d saved query" -msgstr "Excluída %(num)d consulta salva" +msgid_plural "Deleted %(num)d saved queries" +msgstr[0] "Excluída %(num)d consulta salva" +msgstr[1] "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:94 +#, fuzzy, python-format +msgid "Deleted %s" +msgstr "Excluído: %s" + +#: superset-frontend/src/features/home/SavedQueries.tsx:172 +#: superset-frontend/src/pages/AlertReportList/index.tsx:183 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 +#: superset-frontend/src/pages/AnnotationList/index.tsx:117 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:93 +#: superset-frontend/src/pages/DatabaseList/index.tsx:169 +#: superset-frontend/src/pages/DatasetList/index.tsx:664 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:242 +#: superset-frontend/src/reports/actions/reports.js:158 +#: superset-frontend/src/views/CRUD/utils.tsx:272 +#: superset-frontend/src/views/CRUD/utils.tsx:311 +#, python-format msgid "Deleted: %s" msgstr "Excluído: %s" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:217 msgid "" -"Deleting a tab will remove all content within it. You may still reverse this " -"action with the" +"Deleting a tab will remove all content within it. You may still reverse " +"this action with the" msgstr "" "Excluindo uma guia irá remover todo o conteúdo dela. Você ainda pode " "reverter isso com o" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:184 msgid "Delimited long & lat single column" msgstr "Coluna única delimitada long & lat" +#: superset/views/database/forms.py:160 msgid "Delimiter" msgstr "Delimitador" +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:124 msgid "Delivery method" msgstr "Método de entrega" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:33 msgid "Demographics" msgstr "Demografia" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:43 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:38 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:45 msgid "Density" msgstr "Densidade" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:89 msgid "Dependent on" msgstr "Depende de" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:40 +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 msgid "Deprecated" msgstr "Depreciado" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:96 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:127 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:55 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:156 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:265 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1206 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1210 +#: superset-frontend/src/components/ReportModal/index.tsx:293 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1158 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:465 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 +#: superset-frontend/src/pages/AnnotationList/index.tsx:161 +#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:398 superset/views/chart/mixin.py:80 +#: superset/views/sql_lab/views.py:84 msgid "Description" msgstr "Descrição" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:266 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:331 msgid "Description (this can be seen in the list)" msgstr "Descrição (esta pode ser vista na lista)" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:585 msgid "Description Columns" msgstr "Colunas de descrição" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:50 msgid "Description text that shows up below your Big Number" msgstr "Texto descritivo que aparece abaixo do seu Número Grande" +#: superset-frontend/src/components/ListView/ListView.tsx:360 msgid "Deselect all" msgstr "Desmarcar tudo" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:344 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1237 msgid "Details of the certification" msgstr "Detalhes da certificação" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:91 +#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:43 msgid "Determines how whiskers and outliers are calculated." msgstr "Determina como whiskers e outliers são calculados." +#: superset/views/dashboard/mixin.py:70 msgid "" "Determines whether or not this dashboard is visible in the list of all " "dashboards" msgstr "Determina se esse painel é visível ou não na lista de todos os painéis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:231 msgid "Diamond" msgstr "Diamante" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:77 msgid "Did you mean:" msgstr "Quis dizer:" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:141 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:94 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:333 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:215 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:485 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:65 +#: superset-frontend/src/explore/controlPanels/sections.tsx:211 msgid "Difference" msgstr "Diferença" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:46 msgid "Dim Gray" msgstr "Cinza escuro" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:116 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:110 msgid "Dimension" msgstr "Dimensão" -msgid "Dimensions" -msgstr "Dimensões" - +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 msgid "Dimension to use on x-axis." msgstr "Dimensão para usar no eixo x." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 msgid "Dimension to use on y-axis." msgstr "Dimensão para usar no eixo y." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:164 +#: superset-frontend/src/explore/controls.jsx:123 +#: superset-frontend/src/explore/controls.jsx:380 +msgid "Dimensions" +msgstr "Dimensões" + +#: superset/viz.py:1928 msgid "Directed Force Layout" msgstr "Directed Force Layout" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:44 msgid "Directional" msgstr "Direcional" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 msgid "Disable SQL Lab data preview queries" msgstr "Desativar as consultas de pré-visualização de dados do SQL Lab" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 msgid "" "Disable data preview when fetching table metadata in SQL Lab. Useful to " -"avoid browser performance issues when using databases with very wide tables." +"avoid browser performance issues when using databases with very wide " +"tables." msgstr "" -"Desativar a pré-visualização de dados ao obter metadados de tabelas no SQL " -"Lab. Útil para evitar problemas de desempenho do navegador quando se " -"utilizam bancos de dados com tabelas muito grandes." +"Desativar a pré-visualização de dados ao obter metadados de tabelas no " +"SQL Lab. Útil para evitar problemas de desempenho do navegador quando se" +" utilizam bancos de dados com tabelas muito grandes." +#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:98 msgid "Disable embedding?" msgstr "Desativar incorporação?" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:275 msgid "Disabled" msgstr "Desativado" +#: superset-frontend/src/dashboard/components/Header/index.jsx:596 +#: superset-frontend/src/dashboard/components/Header/index.jsx:598 msgid "Discard" msgstr "Descartar" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:49 msgid "Discrete" msgstr "Discreto" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:194 +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:56 msgid "Display Name" msgstr "Nome de exibição" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:229 msgid "Display column level total" msgstr "Mostrar total ao nível da coluna" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:680 msgid "Display configuration" msgstr "Mostrar configuração" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:252 msgid "" -"Display metrics side by side within each column, as opposed to each column " -"being displayed side by side for each metric." +"Display metrics side by side within each column, as opposed to each " +"column being displayed side by side for each metric." msgstr "" -"Apresentar métricas lado a lado dentro de cada coluna, em vez de cada coluna " -"ser apresentada lado a lado para cada métrica." +"Apresentar métricas lado a lado dentro de cada coluna, em vez de cada " +"coluna ser apresentada lado a lado para cada métrica." +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:217 msgid "Display row level total" msgstr "Exibir total do nível de linha" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:39 msgid "Display settings" msgstr "Configurações de exibição" -msgid "Display total row/column" -msgstr "Exibir linha/coluna total" - +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:35 msgid "" "Displays connections between entities in a graph structure. Useful for " -"mapping relationships and showing which nodes are important in a network. " -"Graph charts can be configured to be force-directed or circulate. If your " -"data has a geospatial component, try the deck.gl Arc chart." +"mapping relationships and showing which nodes are important in a network." +" Graph charts can be configured to be force-directed or circulate. If " +"your data has a geospatial component, try the deck.gl Arc chart." msgstr "" -"Apresenta ligações entre entidades numa estrutura gráfica. Útil para mapear " -"relações e mostrar quais os nós que são importantes numa rede. Os gráficos " -"podem ser configurados para serem dirigidos à força ou circularem. Se os " -"seus dados tiverem um componente geoespacial, experimente o gráfico de arco " -"deck.gl." +"Apresenta ligações entre entidades numa estrutura gráfica. Útil para " +"mapear relações e mostrar quais os nós que são importantes numa rede. Os " +"gráficos podem ser configurados para serem dirigidos à força ou " +"circularem. Se os seus dados tiverem um componente geoespacial, " +"experimente o gráfico de arco deck.gl." +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:168 msgid "Distribute across" msgstr "Distribuir em" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:28 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:52 +#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/createMetadata.ts:25 msgid "Distribution" msgstr "Distribuição" +#: superset/viz.py:1717 msgid "Distribution - Bar Chart" msgstr "Distribuição - Gráfico de barras" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewDivider.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:57 msgid "Divider" msgstr "Divisor" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:222 msgid "Do you want a donut or a pie?" msgstr "Você quer um donut ou uma torta?" +#: superset-frontend/src/features/home/RightMenu.tsx:531 msgid "Documentation" msgstr "Documentação" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 msgid "Domain" msgstr "Domínio" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:219 msgid "Donut" msgstr "Rosquinha" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:692 msgid "Dotted" msgstr "Pontilhado" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:482 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:292 msgid "Download" msgstr "Baixar" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:317 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:512 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:329 msgid "Download as image" msgstr "Baixar como imagem" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:262 msgid "Download to CSV" msgstr "Baixar para CSV" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:72 +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:83 +#: superset-frontend/src/pages/DashboardList/index.tsx:336 +#: superset-frontend/src/pages/DashboardList/index.tsx:575 msgid "Draft" msgstr "Rascunho" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:194 msgid "Drag and drop components and charts to the dashboard" msgstr "Arraste e solte componentes e gráficos para o painel" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:217 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:185 msgid "Drag and drop components to this tab" msgstr "Arraste e solte componentes para essa aba" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:216 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:145 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:133 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:127 msgid "Draw a marker on data points. Only applicable for line types." msgstr "" -"Desenha um marcador nos pontos de dados. Apenas aplicável a tipos de linha." +"Desenha um marcador nos pontos de dados. Apenas aplicável a tipos de " +"linha." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:173 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:94 msgid "Draw area under curves. Only applicable for line types." msgstr "Desenhar área sob curvas. Aplicável apenas para tipos de linha." +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:177 msgid "Draw line from Pie to label when labels outside?" msgstr "" "Desenhar uma linha da torta para rótulo quando as etiquetas estão no " "exterior?" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:218 msgid "Draw split lines for minor axis ticks" msgstr "Desenhar linhas de divisão para os ticks do eixo secundário" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:347 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:225 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:219 msgid "Draw split lines for minor y-axis ticks" msgstr "Desenhar linhas de divisão para os ticks menores do eixo y" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 msgid "Drill by" msgstr "Drill by" -msgid "Drill by: %s" -msgstr "Drill by: %s" - +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 msgid "Drill by is not available for this data point" msgstr "Drill by não está disponível para este ponto de dados" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 msgid "Drill by is not yet supported for this chart type" msgstr "Drill by não é suportado para esse tipo de gráfico" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:420 +#, python-format +msgid "Drill by: %s" +msgstr "Drill by: %s" + +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:124 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:139 msgid "Drill to detail" msgstr "Drill to detail" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:38 msgid "Drill to detail by" msgstr "Drill to detail por" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:150 msgid "Drill to detail by value is not yet supported for this chart type." -msgstr "" -"Drill to detail por valor ainda não é suportado para esse tipo de gráfico." +msgstr "Drill to detail por valor ainda não é suportado para esse tipo de gráfico." +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:126 msgid "" "Drill to detail is disabled because this chart does not group data by " "dimension value." msgstr "" -"Drill to detail está desabilitado porque esse gráfico não agrupar dados por " -"valor da dimensão." +"Drill to detail está desabilitado porque esse gráfico não agrupar dados " +"por valor da dimensão." +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:99 +#, python-format msgid "Drill to detail: %s" msgstr "Drill to detail: %s" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:184 +#, fuzzy +msgid "Drop a column here or click" +msgid_plural "Drop columns here or click" +msgstr[0] "Deixe sua coluna aqui ou clique em" +msgstr[1] "" + +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:330 +#, fuzzy +msgid "Drop a column/metric here or click" +msgid_plural "Drop columns/metrics here or click" +msgstr[0] "Insira uma coluna/métrica aqui ou clique em" +msgstr[1] "" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 msgid "Drop a temporal column here or click" msgstr "Colocar uma coluna temporal aqui ou clique" -msgid "Drop column here" -msgstr "Solte a coluna aqui" - -msgid "Drop column or metric here" -msgstr "Coloque a coluna ou a métrica aqui" - -msgid "Drop a column here or click" -msgstr "Deixe sua coluna aqui ou clique em" - -msgid "Drop a column/metric here or click" -msgstr "Insira uma coluna/métrica aqui ou clique em" - -msgid "Drop columns here" -msgstr "Colocar colunas aqui" - -msgid "Drop columns or metrics here" -msgstr "Coloque colunas ou métricas aqui" - +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:405 msgid "Drop columns/metrics here or click" msgstr "Colocar colunas/métricas aqui ou clique" -msgid "Drop temporal column here" -msgstr "Colocar coluna temporal aqui" - +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:32 msgid "Dual Line Chart" msgstr "Gráfico de linha dupla" +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 +#: superset-frontend/src/pages/DatasetList/index.tsx:483 msgid "Duplicate" msgstr "Duplicado" +#: superset/views/datasource/views.py:124 +#, python-format msgid "Duplicate column name(s): %(columns)s" msgstr "Nome(s) de coluna duplicado(s): %(columns)s" +#: superset/common/query_object.py:291 +#, python-format msgid "" -"Duplicate column/metric labels: %(labels)s. Please make sure all columns and " -"metrics have a unique label." +"Duplicate column/metric labels: %(labels)s. Please make sure all columns " +"and metrics have a unique label." msgstr "" -"Rótulos de coluna/métrica duplicados: %(labels)s. Por favor, certifique-se " -"todas métricas e colunas tem um único rótulo." +"Rótulos de coluna/métrica duplicados: %(labels)s. Por favor, certifique-" +"se todas métricas e colunas tem um único rótulo." +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:61 msgid "Duplicate dataset" msgstr "Conjunto de dados duplicado" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:143 msgid "Duplicate tab" msgstr "Duplicar aba" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:82 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:138 msgid "Duration" msgstr "Duração" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:249 msgid "" -"Duration (in seconds) of the caching timeout for charts of this database. A " -"timeout of 0 indicates that the cache never expires, and -1 bypasses the " -"cache. Note this defaults to the global timeout if undefined." +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires, and -1 bypasses " +"the cache. Note this defaults to the global timeout if undefined." msgstr "" -"Duração (em segundos) do tempo limite do cache para gráficos desse banco de " -"dados. Um tempo limite de 0 indica que o cache nunca expira, e -1 ignora o " -"cache. Observe que o padrão é o tempo limite global se não for definido." +"Duração (em segundos) do tempo limite do cache para gráficos desse banco " +"de dados. Um tempo limite de 0 indica que o cache nunca expira, e -1 " +"ignora o cache. Observe que o padrão é o tempo limite global se não for " +"definido." +#: superset/views/database/mixins.py:172 msgid "" -"Duration (in seconds) of the caching timeout for this chart. Set to -1 to " -"bypass the cache. Note this defaults to the dataset's timeout if undefined." +"Duration (in seconds) of the caching timeout for charts of this database." +" A timeout of 0 indicates that the cache never expires. Note this " +"defaults to the global timeout if undefined." +msgstr "" +"Duração (em segundos) do tempo limite de armazenamento em cache para os " +"gráficos desse banco de dados. Um tempo limite de 0 indica que a cache " +"nunca expira. Observe que o padrão é o tempo limite global se não for " +"definido." + +#: superset/views/chart/mixin.py:69 +msgid "" +"Duration (in seconds) of the caching timeout for this chart. Note this " +"defaults to the datasource/table timeout if undefined." +msgstr "" +"Duração (em segundos) do tempo limite de armazenamento em cache para este" +" gráfico. Observe que o padrão é o tempo limite da fonte de dados/tabela " +"se não for definido." + +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:406 +msgid "" +"Duration (in seconds) of the caching timeout for this chart. Set to -1 to" +" bypass the cache. Note this defaults to the dataset's timeout if " +"undefined." msgstr "" "Duração (em segundos) do tempo limite do cache para esse gráfico. Defina " "como -1 para ignorar o cache. Observe que o padrão é o tempo limite do " "conjunto de dados, se não for definido." +#: superset/connectors/sqla/views.py:369 msgid "" -"Duration (in seconds) of the metadata caching timeout for schemas of this " -"database. If left unset, the cache never expires." +"Duration (in seconds) of the caching timeout for this table. A timeout of" +" 0 indicates that the cache never expires. Note this defaults to the " +"database timeout if undefined." msgstr "" -"Duração (em segundos) do tempo limite do cache de metadados para esquemas " -"desse banco de dados. Se não for definido, o cache nunca expira." +"Duração (em segundos) do tempo limite de armazenamento em cache para esta" +" tabela. Um tempo limite de 0 indica que a cache nunca expira. Note que " +"este tempo limite é predefinido para o tempo limite da base de dados se " +"não for definido." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:271 +msgid "" +"Duration (in seconds) of the metadata caching timeout for schemas of this" +" database. If left unset, the cache never expires." +msgstr "" +"Duração (em segundos) do tempo limite do cache de metadados para esquemas" +" desse banco de dados. Se não for definido, o cache nunca expira." + +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:292 +#, fuzzy msgid "" "Duration (in seconds) of the metadata caching timeout for tables of this " -"database. If left unset, the cache never expires." +"database. If left unset, the cache never expires. " msgstr "" "Duração (em segundos) do tempo limite do cache de metadados para tabelas " "desse banco de dados. Se não for definido, o cache nunca expira." -msgid "" -"Duration (in seconds) of the caching timeout for charts of this database. A " -"timeout of 0 indicates that the cache never expires. Note this defaults to " -"the global timeout if undefined." -msgstr "" -"Duração (em segundos) do tempo limite de armazenamento em cache para os " -"gráficos desse banco de dados. Um tempo limite de 0 indica que a cache nunca " -"expira. Observe que o padrão é o tempo limite global se não for definido." - -msgid "" -"Duration (in seconds) of the caching timeout for this chart. Note this " -"defaults to the datasource/table timeout if undefined." -msgstr "" -"Duração (em segundos) do tempo limite de armazenamento em cache para este " -"gráfico. Observe que o padrão é o tempo limite da fonte de dados/tabela se " -"não for definido." - -msgid "" -"Duration (in seconds) of the caching timeout for this table. A timeout of 0 " -"indicates that the cache never expires. Note this defaults to the database " -"timeout if undefined." -msgstr "" -"Duração (em segundos) do tempo limite de armazenamento em cache para esta " -"tabela. Um tempo limite de 0 indica que a cache nunca expira. Note que este " -"tempo limite é predefinido para o tempo limite da base de dados se não for " -"definido." - +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" msgstr "Duração em ms (1,40008 => 1ms 400µs 80ns)" +#: superset-frontend/src/explore/controls.jsx:90 msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" msgstr "Duração em ms (100,40008 => 100ms 400µs 80ns)" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 +#: superset-frontend/src/explore/controls.jsx:89 msgid "Duration in ms (66000 => 1m 6s)" msgstr "Duração em ms (66000 => 1m 6s)" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:223 +#, python-format msgid "Duration: %s" msgstr "Duração: %s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:66 msgid "Dynamic Aggregation Function" msgstr "Função de agregação dinâmica" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:136 msgid "Dynamically search all filter values" msgstr "Pesquisar dinamicamente todos os valores de filtro" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:65 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:130 msgid "ECharts" msgstr "ECharts" +#: superset/reports/notifications/email.py:133 msgid "EMAIL_REPORTS_CTA" msgstr "EMAIL_REPORTS_CTA" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:182 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:189 msgid "END (EXCLUSIVE)" msgstr "FIM (EXCLUSIVO)" +#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 msgid "ERROR" msgstr "ERRO" +#: superset-frontend/src/views/CRUD/hooks.ts:704 +#, python-format msgid "ERROR: %s" msgstr "ERRO: %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:242 msgid "Edge length" msgstr "Comprimento da borda" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:248 msgid "Edge length between nodes" msgstr "Comprimento da borda entre nós" -msgid "Edge width" -msgstr "Largura da borda" - +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:125 msgid "Edge symbols" msgstr "Símbolos de borda" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:227 +msgid "Edge width" +msgstr "Largura da borda" + +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:224 +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:35 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:83 +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:144 +#: superset-frontend/src/features/charts/ChartCard.tsx:131 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:77 +#: superset-frontend/src/features/home/SavedQueries.tsx:201 +#: superset-frontend/src/pages/AlertReportList/index.tsx:385 +#: superset-frontend/src/pages/ChartList/index.tsx:553 +#: superset-frontend/src/pages/DashboardList/index.tsx:461 +#: superset-frontend/src/pages/DatabaseList/index.tsx:442 +#: superset-frontend/src/pages/DatasetList/index.tsx:463 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:200 msgid "Edit" msgstr "Editar" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:379 msgid "Edit Alert" msgstr "Editar Alerta" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:279 msgid "Edit CSS" msgstr "Editar CSS" +#: superset/views/css_templates.py:41 msgid "Edit CSS Template" msgstr "Editar modelo CSS" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:229 msgid "Edit CSS template properties" msgstr "Editar propriedades do modelo CSS" +#: superset/views/chart/mixin.py:28 msgid "Edit Chart" msgstr "Editar gráfico" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:301 msgid "Edit Chart Properties" msgstr "Editar propriedades do gráfico" +#: superset/connectors/sqla/views.py:74 msgid "Edit Column" msgstr "Editar Coluna" +#: superset/views/dashboard/mixin.py:27 msgid "Edit Dashboard" msgstr "Editar Painel" +#: superset/views/database/mixins.py:36 msgid "Edit Database" msgstr "Editar Banco de Dados" -msgid "Edit Dataset" -msgstr "Editar Conjunto de dados" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:241 +#, fuzzy +msgid "Edit Dataset " +msgstr "Editar conjunto de dados" +#: superset/views/log/__init__.py:24 msgid "Edit Log" msgstr "Editar log" +#: superset/connectors/sqla/views.py:209 msgid "Edit Metric" msgstr "Editar Métrica" -msgid "Edit Report" -msgstr "Editar relatório" - +#: superset/views/dynamic_plugins.py:61 msgid "Edit Plugin" msgstr "Editar Plugin" -msgid "Edit Row level security filter" -msgstr "Editar filtro de segurança de nível de linha" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:378 +msgid "Edit Report" +msgstr "Editar relatório" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +#, fuzzy +msgid "Edit Rule" +msgstr "modo de edição" + +#: superset/views/sql_lab/views.py:55 msgid "Edit Saved Query" msgstr "Editar Consulta Salva" +#: superset/connectors/sqla/views.py:294 msgid "Edit Table" msgstr "Editar Tabela" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:282 +#: superset-frontend/src/pages/AnnotationList/index.tsx:188 msgid "Edit annotation" msgstr "Editar anotação" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/index.jsx:184 msgid "Edit annotation layer" msgstr "Editar camada de anotação" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:241 msgid "Edit annotation layer properties" msgstr "Editar propriedades da camada de anotação" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:122 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:44 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:217 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:405 msgid "Edit chart" msgstr "Editar gráfico" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:278 msgid "Edit chart properties" msgstr "Editar propriedades do gráfico" +#: superset-frontend/src/dashboard/components/Header/index.jsx:630 +#: superset-frontend/src/dashboard/components/Header/index.jsx:632 msgid "Edit dashboard" msgstr "Editar painel" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 msgid "Edit database" msgstr "Editar banco de dados" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:288 msgid "Edit dataset" msgstr "Editar conjunto de dados" +#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:243 +#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:264 +#: superset-frontend/src/components/ReportModal/index.tsx:211 msgid "Edit email report" msgstr "Editar relatório de e-mail" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/ConditionalFormattingControl.tsx:151 msgid "Edit formatter" msgstr "Editar formatador" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:273 msgid "Edit properties" msgstr "Editar propriedades" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:407 msgid "Edit query" msgstr "Editar consulta" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:227 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:210 msgid "Edit template" msgstr "Editar modelo" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:104 msgid "Edit template parameters" msgstr "Editar parâmetros do modelo" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:718 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:242 msgid "Edit the dashboard" msgstr "Editar o painel" +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:347 msgid "Edit time range" msgstr "Editar intervalo de tempo" +#: superset-frontend/src/features/home/ActivityTable.tsx:151 msgid "Edited" msgstr "Editado" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:747 msgid "Editing 1 filter:" msgstr "Editando 1 filtro:" -msgid "Either the database is spelled incorrectly or does not exist." -msgstr "Ou o banco de dados está soletrado incorretamente ou não existe." - -msgid "Either the username \"%(username)s\"or the password is incorrect." -msgstr "Ou o nome de usuário \"%(username)s\"ou a senha estão incorretos." - -msgid "" -"Either the username \"%(username)s\", password, or database name " -"\"%(database)s\"is incorrect." -msgstr "" -"Ou o nome de usuário \"%(username)s\", senha ou nome do banco de dados " -"\"%(database)s\"estão incorretos." - -msgid "Either the username or the password is wrong." -msgstr "Ou o nome de usuário ou a senha está incorreto." - +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:118 msgid "Editing filter set:" msgstr "Edição do conjunto de filtros:" +#: superset/errors.py:116 +msgid "Either the database is spelled incorrectly or does not exist." +msgstr "Ou o banco de dados está soletrado incorretamente ou não existe." + +#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:681 +#: superset/db_engine_specs/redshift.py:71 +#: superset/db_engine_specs/starrocks.py:122 +#, python-format msgid "Either the username \"%(username)s\" or the password is incorrect." msgstr "Ou o nome de usuário \"%(username)s\" ou a senha está incorreta." +#: superset/db_engine_specs/mssql.py:85 +#, python-format msgid "" "Either the username \"%(username)s\", password, or database name " "\"%(database)s\" is incorrect." @@ -4369,323 +6693,468 @@ msgstr "" "O nome de usuário \"%(username)s\", a senha ou o nome do banco de dados " "\"%(database)s\" estão incorretos." +#: superset/errors.py:115 +msgid "Either the username or the password is wrong." +msgstr "Ou o nome de usuário ou a senha está incorreto." + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:88 msgid "Elevation" msgstr "Elevação" +#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:239 +#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:254 msgid "Email reports active" msgstr "Relatórios por e-mail ativo" +#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:244 msgid "Embed" msgstr "Incorporar" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:349 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:351 msgid "Embed code" msgstr "Incorporar código" -msgid "Embedding deactivated." -msgstr "Incorporação desativada." - +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:344 msgid "Embed dashboard" msgstr "Incorporar painel" +#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:108 +msgid "Embedding deactivated." +msgstr "Incorporação desativada." + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:163 msgid "Emit Filter Events" msgstr "Emitir eventos de filtro" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:192 msgid "Emphasis" msgstr "Ênfase" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:36 msgid "Employment and education" msgstr "Emprego e educação" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:215 msgid "Empty circle" msgstr "Círculo vazio" +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:59 msgid "Empty collection" msgstr "Coleção vazia" +#: superset-frontend/src/dashboard/components/gridComponents/Column.jsx:220 msgid "Empty column" msgstr "Coluna vazia" +#: superset/charts/data/api.py:366 msgid "Empty query result" msgstr "Resultado da consulta vazio" +#: superset/models/helpers.py:1508 msgid "Empty query?" msgstr "Consulta vazia?" +#: superset-frontend/src/dashboard/components/gridComponents/Row.jsx:250 msgid "Empty row" msgstr "Linha vazia" +#: superset-frontend/src/features/home/RightMenu.tsx:299 +#: superset-frontend/src/features/home/SubMenu.tsx:303 msgid "Enable 'Allow file uploads to database' in any database's settings" msgstr "" "Ativar 'Permitir uploads de arquivos para banco de dados' em quaisquer " "configurações do banco de dados" +#: superset/connectors/sqla/views.py:389 msgid "Enable Filter Select" msgstr "Ativar seleção de filtro" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 msgid "Enable cross-filtering" msgstr "Habilitar filtragem cruzada" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:309 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:177 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:316 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:165 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:159 msgid "Enable data zooming controls" msgstr "Ativar controles de zoom de dados" +#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:232 msgid "Enable embedding" msgstr "Habilitar incorporação" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:44 msgid "Enable forecast" msgstr "Habilitar previsão" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:47 msgid "Enable forecasting" msgstr "Habilitar previsão" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:162 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:271 msgid "Enable graph roaming" msgstr "Habilitar gráfico de roaming" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:142 msgid "Enable node dragging" msgstr "Ativar arrastar nó" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 msgid "Enable query cost estimation" msgstr "Ativar estimativa de custo de consulta" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:36 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:299 msgid "Enable server side pagination of results (experimental feature)" msgstr "" "Ativar a paginação dos resultados do lado do servidor (funcionalidade " "experimental)" +#: superset/viz.py:2514 msgid "" -"Encountered invalid NULL spatial " -"entry, please consider filtering " -"those out" +"Encountered invalid NULL spatial entry," +" please consider filtering those " +"out" msgstr "" -"Encontrou entrada espacial NULL " -"inválida, por favor considere a " -"possibilidade de a filtrar" +"Encontrou entrada espacial NULL inválida," +" por favor considere a possibilidade " +"de a filtrar" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:77 +#: superset-frontend/src/pages/AnnotationList/index.tsx:178 msgid "End" msgstr "Fim" -msgid "End (Longitude, Latitude):" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.jsx:44 +#, fuzzy +msgid "End (Longitude, Latitude): " msgstr "Fim (Longitude, Latitude):" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:64 msgid "End Longitude & Latitude" msgstr "Longitude e latitude finais" +#: superset/views/sql_lab/views.py:86 msgid "End Time" msgstr "Hora do fim" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:116 msgid "End angle" msgstr "Ângulo final" +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:307 msgid "End date" msgstr "Data final" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:78 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:184 msgid "End date excluded from time range" msgstr "Data final excluída do intervalo de tempo" +#: superset/annotation_layers/annotations/commands/exceptions.py:35 msgid "End date must be after start date" msgstr "A data final deve ser após a data de início" -msgid "Engine \"%(engine)s\"cannot be configured through parameters." -msgstr "Motor \"%(engine)s\"não pôde ser configurado através parâmetros." - -msgid "" -"Engine spec \"InvalidEngine\"does not support being configured via " -"individual parameters." -msgstr "" -"Especificação do motor \"InvalidEngine\" não suporta ser configurado através " -"de parâmetros individuais." - +#: superset/databases/commands/validate.py:59 +#, python-format msgid "Engine \"%(engine)s\" cannot be configured through parameters." -msgstr "" -"O motor \"%(engine)s\" não pode ser configurado por meio de parâmetros." +msgstr "O motor \"%(engine)s\" não pode ser configurado por meio de parâmetros." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:512 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:516 msgid "Engine Parameters" msgstr "Parâmetros do motor" +#: superset/databases/schemas.py:302 msgid "" "Engine spec \"InvalidEngine\" does not support being configured via " "individual parameters." msgstr "" -"A especificação do mecanismo \"InvalidEngine\" não permite a configuração " -"por meio de parâmetros individuais." +"A especificação do mecanismo \"InvalidEngine\" não permite a configuração" +" por meio de parâmetros individuais." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:376 msgid "Enter CA_BUNDLE" msgstr "Digite CA_BUNDLE" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:98 msgid "Enter Primary Credentials" msgstr "Inserir credenciais primárias" +#: superset/views/database/forms.py:161 msgid "Enter a delimiter for this data" msgstr "Insira um delimitador para esses dados" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:54 msgid "Enter a name for this sheet" msgstr "Digite um nome para essa planilha" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:82 msgid "Enter a new title for the tab" msgstr "Digite um novo título para a aba" -msgid "Enter the required %(dbModelName)s credentials" -msgstr "Digite as credenciais %(dbModelName)s necessárias" - +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:244 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:286 msgid "Enter duration in seconds" msgstr "Insira a duração em segundos" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:265 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:369 msgid "Enter fullscreen" msgstr "Entrar em tela cheia" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:141 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:184 +#, python-format +msgid "Enter the required %(dbModelName)s credentials" +msgstr "Digite as credenciais %(dbModelName)s necessárias" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:128 +#: superset-frontend/src/explore/controls.jsx:392 msgid "Entity" msgstr "Entidade" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:124 msgid "Entity ID" msgstr "ID da entidade" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:209 msgid "Equal Date Sizes" msgstr "Tamanhos de datas iguais" +#: superset-frontend/src/explore/constants.ts:59 msgid "Equal to (=)" msgstr "Igual para (=)" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:182 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:139 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:298 +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:57 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:97 +#: superset-frontend/src/pages/AlertReportList/index.tsx:64 msgid "Error" msgstr "Erro" +#: superset/models/helpers.py:1919 +#, python-format msgid "Error in jinja expression in HAVING clause: %(msg)s" msgstr "Erro na expressão jinja na cláusula HAVING: %(msg)s" +#: superset/connectors/sqla/models.py:1105 superset/models/helpers.py:835 +#, python-format msgid "Error in jinja expression in RLS filters: %(msg)s" msgstr "Erro na expressão jinja em filtros RLS: %(msg)s" +#: superset/models/helpers.py:1901 +#, python-format msgid "Error in jinja expression in WHERE clause: %(msg)s" msgstr "Erro na expressão jinja na cláusula WHERE: %(msg)s" +#: superset/connectors/sqla/models.py:789 +#, python-format msgid "Error in jinja expression in fetch values predicate: %(msg)s" msgstr "Erro na expressão jinja no predicado para obter valores: %(msg)s" +#: superset-frontend/src/dashboard/containers/DashboardPage.tsx:274 msgid "Error loading chart datasources. Filters may not work correctly." msgstr "" -"Erro ao carregar fontes de dados de gráficos. Os filtros podem não funcionar " -"corretamente." +"Erro ao carregar fontes de dados de gráficos. Os filtros podem não " +"funcionar corretamente." +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:147 msgid "Error message" msgstr "Mensagem de erro" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:104 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:139 msgid "Error while fetching charts" msgstr "Erro ao buscar gráficos" +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:89 +#, python-format msgid "Error while fetching data: %s" msgstr "Erro ao buscar dados: %s" +#: superset/connectors/sqla/models.py:914 superset/models/helpers.py:1072 +#, python-format msgid "Error while rendering virtual dataset query: %(msg)s" msgstr "Erro ao renderizar consulta de conjunto de dados virtual: %(msg)s" +#: superset/charts/data/commands/get_data_command.py:55 +#, python-format msgid "Error: %(error)s" msgstr "Erro: %(error)s" +#: superset/views/core.py:842 superset/views/core.py:1955 +#, python-format msgid "Error: %(msg)s" msgstr "Erro: %(msg)s" +#: superset/views/core.py:839 msgid "Error: permalink state not found" msgstr "Erro: estado do link permanente não encontrado" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:100 msgid "Estimate cost" msgstr "Custo estimado" +#: superset-frontend/src/SqlLab/components/EstimateQueryCostButton/index.tsx:99 msgid "Estimate selected query cost" msgstr "Estimar custo da consulta selecionada" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:615 msgid "Estimate the cost before running a query" msgstr "Estimar o custo antes de executar uma consulta" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:37 +#: superset-frontend/src/modules/AnnotationTypes.js:36 msgid "Event" msgstr "Evento" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:31 msgid "Event Flow" msgstr "Fluxo do Evento" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:44 msgid "Event Names" msgstr "Nome do Evento" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:36 msgid "Event definition" msgstr "Definição do evento" +#: superset/viz.py:2927 msgid "Event flow" msgstr "Fluxo de eventos" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:543 msgid "Event time column" msgstr "Coluna de hora do evento" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:43 msgid "Every" msgstr "Todo" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:29 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:26 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:26 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:30 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:26 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:25 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:52 msgid "Evolution" msgstr "Evolução" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1138 msgid "Exact" msgstr "Exato" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:34 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:49 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:67 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:81 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:95 msgid "Example" msgstr "Exemplo" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:853 +#: superset-frontend/src/pages/Home/index.tsx:208 msgid "Examples" msgstr "Exemplos" +#: superset/views/database/forms.py:288 msgid "Excel File" msgstr "Arquivo Excel" +#: superset/views/database/views.py:427 +#, python-format msgid "" -"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in " -"database \"%(db_name)s\"" +"Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" +" database \"%(db_name)s\"" msgstr "" "Arquivo do Excel \"%(excel_filename)s\" carregado na tabela " "\"%(table_name)s\" no banco de dados \"%(db_name)s\"" -msgid "" -"Excel file \"%(excel_filename)s\"uploaded to table \"%(table_name)s\"in " -"database \"%(db_name)s\"" -msgstr "" -"Arquivo Excel \"%(excel_ filename)s \"carregado para tabela " -"\"%(table_name)s\"no banco de dados \"%(db_name)s\"" - +#: superset/views/database/views.py:306 msgid "Excel to Database configuration" msgstr "Configuração Excel para Banco de Dados" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:125 msgid "Exclude selected values" msgstr "Excluir valores selecionados" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:405 +#, fuzzy +msgid "Excluded roles" +msgstr "(excluído)" + +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 msgid "Executed SQL" msgstr "SQL executado" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:164 msgid "Executed query" msgstr "Consulta executada" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:108 msgid "Execution ID" msgstr "ID de execução" +#: superset-frontend/src/pages/AlertReportList/index.tsx:376 msgid "Execution log" msgstr "Log de execução" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:419 msgid "Existing dataset" msgstr "Conjunto de dados existente" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:264 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:368 msgid "Exit fullscreen" msgstr "Sair da tela cheia" +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 msgid "Expand" msgstr "Expandir" +#: superset-frontend/src/dashboard/components/filterscope/treeIcons.jsx:36 msgid "Expand all" msgstr "Expandir tudo" +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:167 msgid "Expand data panel" msgstr "Expandir painel de dados" +#: superset-frontend/src/components/Table/index.tsx:213 msgid "Expand row" msgstr "Expandir linha" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 msgid "Expand table preview" msgstr "Expandir visualização da tabela" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 msgid "Expand tool bar" msgstr "Expandir barra de ferramentas" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:460 msgid "" "Expects a formula with depending time parameter 'x'\n" " in milliseconds since epoch. mathjs is used to evaluate the " @@ -4693,96 +7162,158 @@ msgid "" " Example: '2x+5'" msgstr "" "Espera uma fórmula com o parâmetro de tempo dependente 'x'\n" -" em milissegundos desde a época. mathjs é utilizado para avaliar as " -"fórmulas.\n" +" em milissegundos desde a época. mathjs é utilizado para avaliar " +"as fórmulas.\n" " Exemplo: '2x+5'" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:37 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:84 +#: superset-frontend/src/filters/components/GroupBy/index.ts:31 +#: superset-frontend/src/filters/components/Range/index.ts:31 +#: superset-frontend/src/filters/components/Select/index.ts:32 +#: superset-frontend/src/filters/components/Time/index.ts:31 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:31 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:31 msgid "Experimental" msgstr "Experimental" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 +#: superset/views/core.py:1009 msgid "Explore" msgstr "Explorar" +#: superset/views/core.py:1007 +#, python-format msgid "Explore - %(table)s" msgstr "Explorar - %(table)s" +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:84 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:41 msgid "Explore the result set in the data exploration view" msgstr "Explorar o conjunto de resultados na visão de exploração de dados" +#: superset-frontend/src/features/charts/ChartCard.tsx:119 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:90 +#: superset-frontend/src/pages/ChartList/index.tsx:537 +#: superset-frontend/src/pages/ChartList/index.tsx:854 +#: superset-frontend/src/pages/DashboardList/index.tsx:445 +#: superset-frontend/src/pages/DashboardList/index.tsx:720 +#: superset-frontend/src/pages/DatabaseList/index.tsx:426 +#: superset-frontend/src/pages/DatasetList/index.tsx:445 +#: superset-frontend/src/pages/DatasetList/index.tsx:781 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:550 +#: superset/views/dashboard/views.py:65 msgid "Export" msgstr "Exportar" +#: superset/views/dashboard/views.py:65 msgid "Export dashboards?" msgstr "Exportar paineis?" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:421 msgid "Export query" msgstr "Exportar consulta" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:487 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:316 msgid "Export to .CSV" msgstr "Exportar para .CSV" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:323 msgid "Export to .JSON" msgstr "Exportar para .JSON" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:335 msgid "Export to Excel" msgstr "Exportar para Excel" +#: superset/views/base.py:607 msgid "Export to YAML" msgstr "Exportar para YAML" +#: superset/views/base.py:607 msgid "Export to YAML?" msgstr "Exportar para YAML?" -msgid "Export to full.CSV" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:498 +#, fuzzy +msgid "Export to full .CSV" msgstr "Exportar para .CSV completo" -msgid "Export to original.CSV" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:300 +#, fuzzy +msgid "Export to original .CSV" msgstr "Exportar para .CSV original" -msgid "Export to pivoted.CSV" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:307 +#, fuzzy +msgid "Export to pivoted .CSV" msgstr "Exportar para .CSV articulado" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 msgid "Expose database in SQL Lab" msgstr "Expor banco de dados no SQL Lab" +#: superset-frontend/src/pages/DatabaseList/index.tsx:365 +#: superset-frontend/src/pages/DatabaseList/index.tsx:471 +#: superset/views/database/mixins.py:183 msgid "Expose in SQL Lab" msgstr "Expor no SQL Lab" +#: superset/views/database/mixins.py:103 msgid "Expose this DB in SQL Lab" msgstr "Expor este banco de dados no SQL Lab" +#: superset/connectors/sqla/views.py:160 msgid "Expression" msgstr "Expressão" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:908 +#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:401 +#: superset/views/database/mixins.py:193 msgid "Extra" msgstr "Extra" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:126 msgid "Extra Controls" msgstr "Controles extras" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:99 msgid "Extra Parameters" msgstr "Parâmetros extra" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:121 msgid "Extra data for JS" msgstr "Dados extras para JS" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:909 msgid "" "Extra data to specify table metadata. Currently supports metadata of the " -"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\", " -"\"details\": \"This table is the source of truth.\" }, \"warning_markdown\": " -"\"This is a warning.\" }`." +"format: `{ \"certification\": { \"certified_by\": \"Data Platform Team\"," +" \"details\": \"This table is the source of truth.\" }, " +"\"warning_markdown\": \"This is a warning.\" }`." msgstr "" "Dados extras para especificar metadados de tabela. Atualmente suporta " "metadados do formato: `{ \"certification\": { \"certified_by\": \"Data " "Platform Team\", \"details\": \"This table is the source of truth.\" }, " "\"warning_markdown\": \"This is a warning.\" }`." +#: superset/views/database/mixins.py:240 superset/views/database/mixins.py:264 +#, python-format msgid "Extra field cannot be decoded by JSON. %(msg)s" msgstr "Campo extra não pode ser decodificado por JSON. %(msg)s" +#: superset-frontend/src/explore/controlPanels/sections.tsx:52 msgid "Extra parameters for use in jinja templated queries" msgstr "Parâmetros extra para utilização em consultas de modelo jinja" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:101 msgid "" "Extra parameters that any plugins can choose to set for use in Jinja " "templated queries" @@ -4790,278 +7321,397 @@ msgstr "" "Parâmetros extras que qualquer plug-in pode escolher definir para uso em " "consultas modeladas Jinja" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:90 msgid "Extra url parameters for use in Jinja templated queries" msgstr "Parâmetros de url extras para uso em consultas de modelo Jinja" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:270 msgid "Extruded" msgstr "Extrudados" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:92 msgid "FEB" msgstr "FEV" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:86 msgid "FRI" msgstr "SEX" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:108 msgid "Factor" msgstr "Fator" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:337 msgid "Factor to multiply the metric by" msgstr "Fator para multiplicar a métrica por" +#: superset/views/database/forms.py:177 superset/views/database/forms.py:334 +#: superset/views/database/forms.py:465 msgid "Fail" msgstr "Falha" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:133 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:139 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:168 msgid "Failed" msgstr "Falhou" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:210 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:350 msgid "Failed at retrieving results" msgstr "Falha na obtenção de resultados" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:496 +#, python-format msgid "Failed at stopping query. %s" msgstr "Falha ao parar a consulta. %s" +#: superset-frontend/src/components/ReportModal/index.tsx:342 msgid "Failed to create report" msgstr "Falha ao criar relatório" +#: superset/sqllab/exceptions.py:66 +#, python-format msgid "Failed to execute %(query)s" msgstr "Falha ao executar %(query)s" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:97 +#, fuzzy +msgid "Failed to generate chart edit URL" +msgstr "Falha ao carregar dados do gráfico" + +#: superset-frontend/src/pages/Chart/index.tsx:57 msgid "Failed to load chart data" msgstr "Falha ao carregar dados do gráfico" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:402 +#: superset-frontend/src/pages/Chart/index.tsx:69 msgid "Failed to load chart data." msgstr "Falha ao carregar dados do gráfico." +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 +#, fuzzy +msgid "Failed to load dimensions for drill by" +msgstr "Sem dimensões disponível para drill by" + +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 +#, fuzzy +msgid "Failed to retrieve advanced type" +msgstr "Falha na obtenção de resultados" + +#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +#, fuzzy +msgid "Failed to save cross-filter scoping" +msgstr "Habilitar filtragem cruzada" + +#: superset/errors.py:143 superset/sqllab/sql_json_executer.py:189 msgid "Failed to start remote query on a worker." msgstr "Falha ao iniciar a consulta remota em um worker." +#: superset-frontend/src/components/ReportModal/index.tsx:341 msgid "Failed to update report" msgstr "Falha ao atualizar relatório" +#: superset-frontend/src/explore/components/controls/withAsyncVerification.tsx:201 +#, python-format msgid "Failed to verify select options: %s" msgstr "Falha ao verificar opções selecionadas: %s" +#: superset-frontend/src/features/home/ChartTable.tsx:145 +#: superset-frontend/src/features/home/DashboardTable.tsx:156 +#: superset-frontend/src/pages/ChartList/index.tsx:590 +#: superset-frontend/src/pages/DashboardList/index.tsx:498 msgid "Favorite" msgstr "Favorito" +#: superset-frontend/src/profile/components/App.tsx:52 msgid "Favorites" msgstr "Favoritos" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:67 msgid "February" msgstr "Fevereiro" +#: superset/connectors/sqla/views.py:395 msgid "Fetch Values Predicate" msgstr "Predicado de obtenção de valores" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:531 msgid "Fetch data preview" msgstr "Obter pré-visualização de dados" -msgid "Fetching" -msgstr "Buscando" - -msgid "Field cannot be decoded by JSON. %(json_error)s" -msgstr "O campo não pode ser decodificado por JSON. %(json_error)s" - +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:354 +#, python-format msgid "Fetched %s" msgstr "Obtido %s" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:151 +msgid "Fetching" +msgstr "Buscando" + +#: superset/databases/commands/exceptions.py:63 +#, python-format +msgid "Field cannot be decoded by JSON. %(json_error)s" +msgstr "O campo não pode ser decodificado por JSON. %(json_error)s" + +#: superset/databases/schemas.py:199 superset/databases/schemas.py:214 +#, python-format msgid "Field cannot be decoded by JSON. %(msg)s" msgstr "Campo não pode ser decodificado por JSON. %(msg)s" +#: superset/databases/commands/exceptions.py:50 +#: superset/databases/ssh_tunnel/commands/exceptions.py:57 msgid "Field is required" msgstr "Campo é obrigatório" -msgid "Fill Color" -msgstr "Cor de preenchimento" - +#: superset/templates/superset/import_dashboards.html:37 msgid "File" msgstr "Arquivo" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:221 +msgid "Fill Color" +msgstr "Cor de preenchimento" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1266 msgid "Fill all required fields to enable \"Default Value\"" msgstr "Preencher todos os campos obrigatórios para ativar \"Default Value\"" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:255 msgid "Fill method" msgstr "Método de preenchimento" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:248 msgid "Filled" msgstr "Preenchido" +#: superset-frontend/src/components/ListView/Filters/Select.tsx:93 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:106 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitlePane.tsx:56 msgid "Filter" msgstr "Filtro" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:289 msgid "Filter Configuration" msgstr "Configuração de Filtro" +#: superset/templates/appbuilder/general/widgets/search.html:24 msgid "Filter List" msgstr "Lista de filtros" -msgid "FILTER LIST" -msgstr "LISTA DE FILTROS" - -msgid "filter list" -msgstr "lista de filtros" - +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:293 msgid "Filter Settings" msgstr "Configurações de filtro" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:825 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:362 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:373 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:134 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:255 msgid "Filter Type" msgstr "Tipo de filtro" -msgid "Filter box" -msgstr "Caixa de filtro" +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:28 +#, fuzzy +msgid "Filter box (deprecated)" +msgstr "Nenhum filtro selecionado." +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:351 msgid "Filter charts" msgstr "Filtrar gráficos" +#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:281 msgid "Filter configuration" msgstr "Configuração do filtro" +#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:36 msgid "Filter configuration for the filter box" msgstr "Configuração do filtro para a caixa de filtro" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1172 msgid "Filter has default value" msgstr "O filtro tem valor padrão" +#: superset-frontend/src/components/Table/index.tsx:201 msgid "Filter menu" msgstr "Menu do filtro" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:113 msgid "Filter metadata changed in dashboard. It will not be applied." msgstr "Filtrar metadados alterados no painel. Isso não será aplicado." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:815 msgid "Filter name" msgstr "Nome do filtro" -msgid "" -"Filter only displays values relevant to selections made in other filters." -msgstr "" -"Filtro só exibe valores relevantes para seleções feitas em outros filtros." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/DependenciesRow.tsx:91 +msgid "Filter only displays values relevant to selections made in other filters." +msgstr "Filtro só exibe valores relevantes para seleções feitas em outros filtros." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:283 msgid "Filter results" msgstr "Filtrar resultados" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:143 msgid "Filter set already exists" msgstr "O conjunto de filtros já existe" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:142 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:83 msgid "Filter set with this name already exists" msgstr "O conjunto de filtros com esse nome já existe" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:253 +#, python-format msgid "Filter sets (%(filterSetCount)d)" msgstr "Conjuntos de filtros (%(filterSetCount)d)" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/TypeRow.tsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:829 msgid "Filter type" msgstr "Tipo do filtro" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:529 msgid "Filter value (case sensitive)" msgstr "Valor do filtro (diferencia maiúsculas de minúsculas)" -msgid "Filter value list cannot be empty" -msgstr "A lista de valores do filtro não pode estar vazia" - -msgid "Filter your charts" -msgstr "Filtrar os seus gráficos" - +#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:72 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:55 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:90 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:53 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:33 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:33 msgid "Filter value is required" msgstr "O valor do filtro é obrigatório" +#: superset/models/helpers.py:1815 +msgid "Filter value list cannot be empty" +msgstr "A lista de valores do filtro não pode estar vazia" + +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:350 +msgid "Filter your charts" +msgstr "Filtrar os seus gráficos" + +#: superset/connectors/sqla/views.py:158 msgid "Filterable" msgstr "Filtrável" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:139 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 +#: superset-frontend/src/explore/controls.jsx:446 +#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:35 +#: superset/viz.py:2071 msgid "Filters" msgstr "Filtros" -msgid "REFERRER" -msgstr "Referente" - +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:88 +#, python-format msgid "Filters (%d)" msgstr "Filtros (%d)" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:132 msgid "Filters by columns" msgstr "Filtros por colunas" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:134 msgid "Filters by metrics" msgstr "Filtros por métricas" +#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:27 msgid "Filters configuration" msgstr "Configurações de filtros" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FiltersOutOfScopeCollapsible/index.tsx:92 +#, python-format msgid "Filters out of scope (%d)" msgstr "Filtros fora do escopo (%d)" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:435 msgid "" "Filters with the same group key will be ORed together within the group, " -"while different filter groups will be ANDed together. Undefined group keys " -"are treated as unique groups, i.e. are not grouped together. For example, if " -"a table has three filters, of which two are for departments Finance and " -"Marketing (group key = 'department'), and one refers to the region Europe " -"(group key = 'region'), the filter clause would apply the filter (department " -"= 'Finance' OR department = 'Marketing') AND (region = 'Europe')." +"while different filter groups will be ANDed together. Undefined group " +"keys are treated as unique groups, i.e. are not grouped together. For " +"example, if a table has three filters, of which two are for departments " +"Finance and Marketing (group key = 'department'), and one refers to the " +"region Europe (group key = 'region'), the filter clause would apply the " +"filter (department = 'Finance' OR department = 'Marketing') AND (region =" +" 'Europe')." msgstr "" "Os filtros com a mesma chave de grupo serão agrupados dentro do grupo, " -"enquanto os grupos de filtros diferentes serão agrupados. As chaves de grupo " -"indefinidas são tratadas como grupos únicos, ou seja, não são agrupadas. Por " -"exemplo, se uma tabela tiver três filtros, dos quais dois são para os " -"departamentos Finanças e Marketing (chave de grupo = 'departamento') e um se " -"refere à região Europa (chave de grupo = 'região'), a cláusula de filtro " -"aplicaria o filtro (departamento = 'Finanças' OU departamento = 'Marketing') " -"AND (região = 'Europa')." +"enquanto os grupos de filtros diferentes serão agrupados. As chaves de " +"grupo indefinidas são tratadas como grupos únicos, ou seja, não são " +"agrupadas. Por exemplo, se uma tabela tiver três filtros, dos quais dois " +"são para os departamentos Finanças e Marketing (chave de grupo = " +"'departamento') e um se refere à região Europa (chave de grupo = " +"'região'), a cláusula de filtro aplicaria o filtro (departamento = " +"'Finanças' OU departamento = 'Marketing') AND (região = 'Europa')." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1132 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1180 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 msgid "Finish" msgstr "Finalizar" -msgid "" -"JSON string containing additional connection configuration. This is used to " -"provide connection information for systems like Hive, Presto and BigQuery " -"which do not conform to the username:password syntax normally used by " -"SQLAlchemy." -msgstr "" -"Cadeia de caracteres JSON contendo configuração de conexão adicional. Isso é " -"usado para fornecer informações de conexão para sistemas como Hive, Presto e " -"BigQuery, que não estão em conformidade com a sintaxe de nome de usuário:" -"senha normalmente usada pelo SQLAlchemy." - +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:189 msgid "First" msgstr "Primeiro" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:116 msgid "" -"Fix the trend line to the full time range specified in case filtered results " -"do not include the start or end dates" +"Fix the trend line to the full time range specified in case filtered " +"results do not include the start or end dates" msgstr "" "Corrigir a linha de tendência para o intervalo de tempo completo " "especificado no caso dos resultados filtrados não incluírem as datas de " "início ou fim" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:115 msgid "Fix to selected Time Range" msgstr "Corrigir para o intervalo de tempo selecionado" +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:149 msgid "Fixed" msgstr "Fixo" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:129 msgid "Fixed Color" msgstr "Cor Fixa" +#: superset-frontend/src/explore/controls.jsx:205 msgid "Fixed color" msgstr "Cor fixa" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:322 msgid "Fixed point radius" msgstr "Raio do ponto fixo" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:25 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:33 msgid "Flow" msgstr "Fluxo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:129 msgid "Font size" msgstr "Tamanho da Fonte" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:130 msgid "Font size for axis labels, detail value and other text elements" msgstr "" -"Tamanho da Fonte para rótulos de eixo, detalhes de valor e outros elementos " -"de texto" +"Tamanho da Fonte para rótulos de eixo, detalhes de valor e outros " +"elementos de texto" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:75 msgid "Font size for the biggest value in the list" msgstr "Tamanho da Fonte para o maior valor na lista" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:64 msgid "Font size for the smallest value in the list" msgstr "Tamanho da Fonte para o menor valor na lista" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 msgid "" "For Bigquery, Presto and Postgres, shows a button to compute cost before " "running a query." @@ -5069,529 +7719,759 @@ msgstr "" "Para Bigquery, Presto e Postgres, mostra um botão para calcular o custo " "antes de executar uma consulta." +#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:183 msgid "For further instructions, consult the" msgstr "Para mais instruções , consultar o" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:45 msgid "" "For more information about objects are in context in the scope of this " "function, refer to the" msgstr "" -"Para mais informações sobre os objetos que estão no contexto do escopo dessa " -"função, consulte para o" +"Para mais informações sobre os objetos que estão no contexto do escopo " +"dessa função, consulte para o" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:408 msgid "" -"For regular filters, these are the roles this filter will be applied to. For " -"base filters, these are the roles that the filter DOES NOT apply to, e.g. " -"Admin if admin should see all data." +"For regular filters, these are the roles this filter will be applied to. " +"For base filters, these are the roles that the filter DOES NOT apply to, " +"e.g. Admin if admin should see all data." msgstr "" -"Para os filtros regulares, estas são as funções às quais este filtro será " -"aplicado. Para os filtros de base, estas são as funções às quais o filtro " -"NÃO se aplica, por exemplo, Admin se o admin tiver de ver todos os dados." - -msgid "" -"Force all tables and views to be created in this schema when clicking CTAS " -"or CVAS in SQL Lab." -msgstr "" -"Força a criação de todas as tabelas e visôes neste esquema ao clicar em CTAS " -"ou CVAS no SQL Lab." +"Para os filtros regulares, estas são as funções às quais este filtro será" +" aplicado. Para os filtros de base, estas são as funções às quais o " +"filtro NÃO se aplica, por exemplo, Admin se o admin tiver de ver todos os" +" dados." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:112 msgid "Force" msgstr "Forçar" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 +msgid "" +"Force all tables and views to be created in this schema when clicking " +"CTAS or CVAS in SQL Lab." +msgstr "" +"Força a criação de todas as tabelas e visôes neste esquema ao clicar em " +"CTAS ou CVAS no SQL Lab." + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 msgid "Force date format" msgstr "Forçar o formato da data" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 msgid "Force refresh" msgstr "Forçar atualização" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:291 msgid "Force refresh schema list" msgstr "Forçar atualização da lista de esquemas" +#: superset-frontend/src/components/TableSelector/index.tsx:307 msgid "Force refresh table list" msgstr "Forçar atualização da lista de tabelas" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:56 msgid "Forecast periods" msgstr "Períodos de previsão" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:64 msgid "Foreign key" msgstr "Chave estrangeira" -msgid "Form data not found in cache, reverting to chart metadata." -msgstr "" -"Os dados do formulário não foram encontrados na cache, revertendo para os " -"metadados do gráfico." - -msgid "Form data not found in cache, reverting to dataset metadata." -msgstr "" -"Os dados do formulário não foram encontrados na cache, revertendo para os " -"metadados do conjunto de dados." - +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:48 msgid "Forest Green" msgstr "Verde floresta" +#: superset/explore/commands/get.py:87 superset/views/core.py:856 +msgid "Form data not found in cache, reverting to chart metadata." +msgstr "" +"Os dados do formulário não foram encontrados na cache, revertendo para os" +" metadados do gráfico." + +#: superset/explore/commands/get.py:95 superset/views/core.py:862 +msgid "Form data not found in cache, reverting to dataset metadata." +msgstr "" +"Os dados do formulário não foram encontrados na cache, revertendo para os" +" metadados do conjunto de dados." + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:39 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:49 msgid "Formattable" msgstr "Formatável" +#: superset-frontend/src/components/ReportModal/index.tsx:254 msgid "Formatted CSV attached in email" msgstr "CSV formatado anexado no e-mail" +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:142 msgid "Formatted date" msgstr "Data formatada" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:132 msgid "Formatted value" msgstr "Valor formatado" +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:128 msgid "Formatting" msgstr "Formatação" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:33 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:459 +#: superset-frontend/src/modules/AnnotationTypes.js:32 msgid "Formula" msgstr "Fórmula" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:187 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:261 msgid "Forward values" msgstr "Valores futuros" +#: superset-frontend/packages/superset-ui-core/src/query/extractQueryFields.ts:131 msgid "Found invalid orderby options" msgstr "Encontradas opções de orderby inválidas" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:69 msgid "Fraction digits" msgstr "Dígitos de frações" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:54 msgid "Frequency" msgstr "Frequência" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:305 msgid "Friction" msgstr "Atrito" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:311 msgid "Friction between nodes" msgstr "Atrito entre nós" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:61 msgid "Friday" msgstr "Sexta" +#: superset/utils/date_parser.py:267 superset/viz.py:403 msgid "From date cannot be larger than to date" msgstr "A data de início não pode ser maior do que a data de fim" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:44 msgid "Full name" msgstr "Nome completo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:58 msgid "Funnel Chart" msgstr "Gráfico de funil" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:483 msgid "Further customize how to display each column" msgstr "Personalizar ainda mais a forma de apresentação de cada coluna" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:166 msgid "Further customize how to display each metric" msgstr "Personalizar ainda mais como exibir cada métrica" +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:39 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:119 msgid "GROUP BY" msgstr "AGRUPAR POR" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:49 msgid "Gauge Chart" msgstr "Gráfico de medidores" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:76 msgid "General" msgstr "Em geral" +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:82 msgid "Generating link, please wait.." msgstr "Gerando link, por favor espere.." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:68 msgid "Generic Chart" msgstr "Gráfico genérico" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:38 msgid "Geo" msgstr "Geo" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:390 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:36 msgid "GeoJson Column" msgstr "Coluna GeoJson" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:68 msgid "GeoJson Settings" msgstr "Configurações de GeoJson" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:203 msgid "Geohash" msgstr "Geohash" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:75 msgid "Get the last date by the date unit." msgstr "Obter a última data através da unidade de data." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:88 msgid "Get the specify date for the holiday" msgstr "Obter a data específica para o feriado" +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:714 msgid "Go to the edit mode to configure the dashboard and add charts" msgstr "Vá ao modo de edição para configurar o painel e adicionar gráficos" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:45 msgid "Gold" msgstr "Ouro" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:46 msgid "Google Sheet Name and URL" msgstr "Planilha Google Nome e URL" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:402 msgid "Grace period" msgstr "Período de inatividade" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:39 msgid "Graph Chart" msgstr "Gráfico" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:109 msgid "Graph layout" msgstr "Layout do gráfico" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:263 msgid "Gravity" msgstr "Gravidade" +#: superset-frontend/src/explore/constants.ts:68 msgid "Greater or equal (>=)" msgstr "Maior ou igual (>=)" +#: superset-frontend/src/explore/constants.ts:66 msgid "Greater than (>)" msgstr "Maior que (>)" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:61 msgid "Grid" msgstr "Grade" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:281 msgid "Grid Size" msgstr "Tamanho da grade" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 +#: superset-frontend/src/filters/components/GroupBy/index.ts:28 msgid "Group By" msgstr "Agrupar por" +#: superset-frontend/src/filters/components/GroupBy/index.ts:29 msgid "Group By filter plugin" msgstr "Plugin do filtro Agrupar por" -msgid "Group By' and 'Columns' can't overlap" -msgstr "'Agrupar por' e 'Colunas' não podem ser sobrepostos" - +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:84 msgid "Group By, Metrics or Percentage Metrics must have a value" msgstr "Agrupar por , Métricas ou Métricas de porcentagem devem ter um valor" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:433 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:139 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:267 +#, fuzzy +msgid "Group Key" +msgstr "Agrupar por" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 msgid "Group by" msgstr "Agrupar por" +#: superset/connectors/sqla/views.py:157 msgid "Groupable" msgstr "Agrupável" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:41 msgid "Handlebars" msgstr "Handlebars" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/handlebarTemplate.tsx:60 msgid "Handlebars Template" msgstr "Modelo de handlebars" -msgid "Has created by" -msgstr "Foi criado por" - +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:252 msgid "" "Hard value bounds applied for color coding. Is only relevant and applied " "when the normalization is applied against the whole heatmap." msgstr "" "Limites de valores rígidos aplicados para codificação de cores. Só é " -"relevante e aplicado quando a normalização é aplicada a todo o mapa de calor." +"relevante e aplicado quando a normalização é aplicada a todo o mapa de " +"calor." +#: superset/charts/filters.py:107 superset/dashboards/filters.py:243 +msgid "Has created by" +msgstr "Foi criado por" + +#: superset-frontend/src/dashboard/components/gridComponents/new/NewHeader.jsx:31 msgid "Header" msgstr "Cabeçalho" +#: superset/views/database/forms.py:254 superset/views/database/forms.py:341 msgid "Header Row" msgstr "Linha do Cabeçalho" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 +#: superset/viz.py:2183 msgid "Heatmap" msgstr "Mapa de calor" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:105 msgid "Heatmap Options" msgstr "Opções do mapa de calor" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.jsx:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:75 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:38 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:239 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:245 msgid "Height" msgstr "Altura" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:240 msgid "Height of the sparkline" msgstr "Altura do minigráfico" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:751 msgid "Hide Line" msgstr "Ocultar linha" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:396 msgid "Hide chart description" msgstr "Ocultar descrição do gráfico" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:797 msgid "Hide layer" msgstr "Esconder camada" +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:136 msgid "Hide password." msgstr "Ocultar senha." +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:123 msgid "Hide tool bar" msgstr "Esconder barra de ferramentas" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:752 msgid "Hides the Line for the time series" msgstr "Oculta a linha da série temporal" +#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:192 msgid "Hierarchy" msgstr "Hierarquia" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 +#: superset/viz.py:1656 msgid "Histogram" msgstr "Histograma" +#: superset-frontend/src/pages/Home/index.tsx:333 +#: superset/initialization/__init__.py:235 msgid "Home" msgstr "Início" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:32 msgid "Horizon Chart" msgstr "Gráfico de horizonte" +#: superset/viz.py:2246 msgid "Horizon Charts" msgstr "Gráficos do horizonte" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:282 msgid "Horizontal" msgstr "Horizontal" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 msgid "Horizontal (Top)" msgstr "Horizontal (topo)" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:95 msgid "Horizontal alignment" msgstr "Alinhamento horizontal" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:47 msgid "Host" msgstr "Host" +#: superset/db_engine_specs/base.py:1872 +#: superset/db_engine_specs/clickhouse.py:204 msgid "Hostname or IP address" msgstr "Nome do host ou endereço IP" +#: superset/db_engine_specs/base.py:105 msgid "Hour" msgstr "Hora" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:64 +#, python-format msgid "Hours %s" msgstr "Horas %s" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:953 msgid "Hours offset" msgstr "Compensação de horas" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:93 msgid "How do you want to enter service account credentials?" msgstr "Como pretende introduzir as credenciais da conta de serviço?" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:139 msgid "How many buckets should the data be grouped in." msgstr "Em quantos compartimentos devem ser agrupados os dados." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:59 msgid "How many periods into the future do we want to predict" msgstr "Quantos períodos no futuro queremos prever" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:145 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:337 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:219 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:489 +#: superset-frontend/src/explore/controlPanels/sections.tsx:215 +msgid "" +"How to display time shifts: as individual lines; as the difference " +"between the main time series and each time shift; as the percentage " +"change; or as the ratio between series and time shifts." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:85 msgid "Huge" msgstr "Enorme" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:79 msgid "ISO 3166-2 Codes" msgstr "Códigos ISO 3166-2" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:310 msgid "ISO 8601" msgstr "ISO 8601" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:51 msgid "Id" msgstr "Id" -msgid "" -"If Presto or Trino, all the queries in SQL Lab are going to be executed as " -"the currently logged on user who must have permission to run them. If Hive " -"and hive.server2.enable.doAs is enabled, will run the queries as service " -"account, but impersonate the currently logged on user via hive.server2.proxy." -"user property." -msgstr "" -"Se for o Presto ou o Trino, todas as consultas no SQL Lab serão executadas " -"como o usuário conectado no momento, que deve ter permissão para executá-" -"las. Se o Hive e o hive.server2.enable.doAs estiverem ativados, as consultas " -"serão executadas como conta de serviço, mas representarão o usuário " -"conectado no momento por meio da propriedade hive.server2.proxy.user." - -msgid "If Table Already Exists" -msgstr "Se a tabela já existir" - +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:86 msgid "Id of root node of the tree." msgstr "Id do nó raiz da árvore." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:401 +msgid "" +"If Presto or Trino, all the queries in SQL Lab are going to be executed " +"as the currently logged on user who must have permission to run them. If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." +msgstr "" +"Se for o Presto ou o Trino, todas as consultas no SQL Lab serão " +"executadas como o usuário conectado no momento, que deve ter permissão " +"para executá-las. Se o Hive e o hive.server2.enable.doAs estiverem " +"ativados, as consultas serão executadas como conta de serviço, mas " +"representarão o usuário conectado no momento por meio da propriedade " +"hive.server2.proxy.user." + +#: superset/views/database/mixins.py:165 msgid "" "If Presto, all the queries in SQL Lab are going to be executed as the " -"currently logged on user who must have permission to run them.
If Hive " -"and hive.server2.enable.doAs is enabled, will run the queries as service " -"account, but impersonate the currently logged on user via hive.server2.proxy." -"user property." +"currently logged on user who must have permission to run them.
If " +"Hive and hive.server2.enable.doAs is enabled, will run the queries as " +"service account, but impersonate the currently logged on user via " +"hive.server2.proxy.user property." msgstr "" "Se Presto, todas as consultas no SQL Lab serão executadas como o usuário " -"atualmente conectado, que deve ter permissão para executá-las.
Se Hive e " -"hive.server2.enable.doAs estiverem ativados, as consultas serão executadas " -"como conta de serviço, mas personificarão o usuário atualmente conectado por " -"meio da propriedade hive.server2.proxy.user." +"atualmente conectado, que deve ter permissão para executá-las.
Se " +"Hive e hive.server2.enable.doAs estiverem ativados, as consultas serão " +"executadas como conta de serviço, mas personificarão o usuário atualmente" +" conectado por meio da propriedade hive.server2.proxy.user." -msgid "" -"If a metric is specified, sorting will be done based on the metric value" +#: superset/views/database/forms.py:174 +msgid "If Table Already Exists" +msgstr "Se a tabela já existir" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1076 +msgid "If a metric is specified, sorting will be done based on the metric value" msgstr "" -"Se for especificada uma métrica, a ordenação será efetuada com base no valor " -"da métrica" +"Se for especificada uma métrica, a ordenação será efetuada com base no " +"valor da métrica" +#: superset/views/database/forms.py:248 msgid "" -"If duplicate columns are not overridden, they will be presented as \"X.1, " -"X.2...X.x\"" -msgstr "" -"Se as colunas duplicadas não forem substituídas, serão apresentadas como " -"\"X.1, X.2... Xx \"" - -msgid "If selected, please set the schemas allowed for csv upload in Extra." -msgstr "" -"Se selecionado, defina os esquemas permitidos para o carregamento de csv no " -"Extra." - -msgid "" -"If table exists do one of the following: Fail (do nothing), Replace (drop " -"and recreate table) or Append (insert data)." -msgstr "" -"Se a tabela existir, efetuar uma das seguintes acções: Fail (não fazer " -"nada), Replace (eliminar e recriar a tabela) ou Append (inserir dados)." - -msgid "" -"If duplicate columns are not overridden, they will be presented as \"X.1, " -"X.2 ...X.x\"" +"If duplicate columns are not overridden, they will be presented as \"X.1," +" X.2 ...X.x\"" msgstr "" "Se as colunas duplicadas não forem substituídas, elas serão apresentadas " "como \"X.1, X.2 ...X.x\"" +#: superset/views/database/mixins.py:177 +msgid "If selected, please set the schemas allowed for csv upload in Extra." +msgstr "" +"Se selecionado, defina os esquemas permitidos para o carregamento de csv " +"no Extra." + +#: superset/views/database/forms.py:328 superset/views/database/forms.py:459 +msgid "" +"If table exists do one of the following: Fail (do nothing), Replace (drop" +" and recreate table) or Append (insert data)." +msgstr "" +"Se a tabela existir, efetuar uma das seguintes acções: Fail (não fazer " +"nada), Replace (eliminar e recriar a tabela) ou Append (inserir dados)." + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:409 msgid "Ignore cache when generating screenshot" msgstr "Ignorar o cache ao gerar a captura de tela" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:87 msgid "Ignore null locations" msgstr "Ignorar localizações nulas" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:76 msgid "Ignore time" msgstr "Ignorar hora" +#: superset-frontend/src/components/ReportModal/index.tsx:251 msgid "Image (PNG) embedded in email" msgstr "Imagem (PNG) incorporada no e-mail" +#: superset-frontend/src/utils/downloadAsImage.ts:55 msgid "Image download failed, please refresh and try again." msgstr "Falha no download da imagem, por favor atualizar e tentar novamente." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:396 +msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" +msgstr "" +"Fazer-se passar por usuário conectado (Presto, Trino, Drill, Hive e " +"GSheets)" + +#: superset/views/database/mixins.py:197 msgid "Impersonate the logged on user" msgstr "Representar o usuário com sessão iniciada" -msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" -msgstr "" -"Fazer-se passar por usuário conectado (Presto, Trino, Drill, Hive e GSheets)" - +#: superset-frontend/src/components/ImportModal/index.tsx:426 msgid "Import" msgstr "Importar" +#: superset-frontend/src/components/ImportModal/index.tsx:430 +#, python-format msgid "Import %s" msgstr "Importar %s" +#: superset/templates/superset/import_dashboards.html:26 msgid "Import Dashboard(s)" msgstr "Importar Painel(eis)" +#: superset/initialization/__init__.py:331 msgid "Import Dashboards" msgstr "Importar Paineis" +#: superset/connectors/sqla/views.py:293 msgid "Import a table definition" msgstr "Importar uma definição de tabela" +#: superset/charts/commands/exceptions.py:155 msgid "Import chart failed for an unknown reason" msgstr "A importação do gráfico falhou por um motivo desconhecido" +#: superset-frontend/src/pages/ChartList/index.tsx:813 msgid "Import charts" msgstr "Importar gráficos" +#: superset/dashboards/commands/exceptions.py:82 msgid "Import dashboard failed for an unknown reason" msgstr "A importação do painel falhou por um motivo desconhecido" +#: superset-frontend/src/pages/DashboardList/index.tsx:686 +#: superset/templates/superset/import_dashboards.html:21 msgid "Import dashboards" msgstr "Importar painéis" -msgid "Import database from file" -msgstr "Importar banco de dados de um arquivo" - +#: superset/databases/commands/exceptions.py:171 msgid "Import database failed for an unknown reason" msgstr "A importação do banco de dados falhou por um motivo desconhecido" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1969 +msgid "Import database from file" +msgstr "Importar banco de dados de um arquivo" + +#: superset/datasets/commands/exceptions.py:202 msgid "Import dataset failed for an unknown reason" msgstr "A importação do conjunto de dados falhou por um motivo desconhecido" -msgid "" -"Important! Select this if the table is not already sorted by entity id, else " -"there is no guarantee that all events for each entity are returned." -msgstr "" -"Importante! Seleccione esta opção se a tabela ainda não estiver ordenada por " -"id de entidade, caso contrário não há garantia de que todos os eventos de " -"cada entidade sejam retornados." - +#: superset-frontend/src/pages/DatasetList/index.tsx:631 msgid "Import datasets" msgstr "Importar conjuntos de dados" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:198 msgid "Import queries" msgstr "Importar consultas" +#: superset/queries/saved_queries/commands/exceptions.py:36 msgid "Import saved query failed for an unknown reason." msgstr "A consulta salva de importação falhou por um motivo desconhecido." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:63 +msgid "" +"Important! Select this if the table is not already sorted by entity id, " +"else there is no guarantee that all events for each entity are returned." +msgstr "" +"Importante! Seleccione esta opção se a tabela ainda não estiver ordenada " +"por id de entidade, caso contrário não há garantia de que todos os " +"eventos de cada entidade sejam retornados." + +#: superset-frontend/src/explore/constants.ts:71 msgid "In" msgstr "Em" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:57 msgid "Include Series" msgstr "Incluir Séries" +#: superset-frontend/src/components/ReportModal/index.tsx:294 msgid "Include a description that will be sent with your report" msgstr "Incluir uma descrição que será enviada com o seu relatório" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:60 msgid "Include series name as an axis" msgstr "Incluir o nome da série como um eixo" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:27 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:336 msgid "Include time" msgstr "Incluir horário" +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:65 msgid "Index" msgstr "Índice" +#: superset/views/database/forms.py:220 superset/views/database/forms.py:351 msgid "Index Column" msgstr "Coluna de índice" +#: superset-frontend/src/features/home/RightMenu.tsx:482 msgid "Info" msgstr "Informações" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:231 msgid "Inner Radius" msgstr "Raio interior" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:237 msgid "Inner radius of donut hole" msgstr "Raio interior do buraco de rosquinha" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:330 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:207 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:177 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:195 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:138 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:137 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:189 msgid "Input field supports custom rotation. e.g. 30 for 30°" msgstr "" -"O campo de entrada suporta uma rotação personalizada, por exemplo, 30 para " -"30°" +"O campo de entrada suporta uma rotação personalizada, por exemplo, 30 " +"para 30°" +#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:60 msgid "Instant filtering" msgstr "Filtragem instantânea" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:41 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:36 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:36 msgid "Intensity" msgstr "Intensidade" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:85 +#, fuzzy +msgid "Intensity Radius" +msgstr "Raio do ponto" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:86 +msgid "Intensity Radius is the radius at which the weight is distributed" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:69 +msgid "Intensity is the value multiplied by the weight to obtain the final weight" +msgstr "" + +#: superset/views/database/forms.py:200 msgid "Interpret Datetime Format Automatically" msgstr "Interpretar automaticamente o formato de data e hora" +#: superset/views/database/forms.py:201 msgid "Interpret the datetime format automatically" msgstr "Interpretar o formato de data e hora automaticamente" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:42 +#: superset-frontend/src/modules/AnnotationTypes.js:41 msgid "Interval" msgstr "Intervalo" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:560 msgid "Interval End column" msgstr "Intervalo Coluna final" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:282 msgid "Interval bounds" msgstr "Limites de intervalo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:296 msgid "Interval colors" msgstr "Cores do intervalo" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:542 msgid "Interval start column" msgstr "Coluna de início do intervalo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:276 msgid "Intervals" msgstr "Intervalos" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:68 +#, fuzzy +msgid "Intesity" +msgstr "Intensidade" + +#: superset/db_engine_specs/ocient.py:274 +#, fuzzy +msgid "" +"Invalid Connection String: Expecting String of the form " +"'ocient://user:pass@host:port/database'." +msgstr "" +"Cadeia de conexão inválida, uma cadeia válida geralmente é a seguinte: " +"backend+driver://user:password@database-host/database-name" + +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 msgid "Invalid JSON" msgstr "JSON inválido" +#: superset/advanced_data_type/api.py:100 +#, python-format msgid "Invalid advanced data type: %(advanced_data_type)s" msgstr "Tipo de dados avançados inválido: %(advanced_data_type)s" +#: superset/databases/schemas.py:186 superset/exceptions.py:196 msgid "Invalid certificate" msgstr "Certificado inválido" +#: superset/views/core.py:1463 msgid "" "Invalid connection string, a valid string usually follows:\n" "'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" @@ -5599,2719 +8479,4264 @@ msgstr "" "String de conexão inválida, uma string válida é normalmente a seguinte:\n" "'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" +#: superset/databases/schemas.py:164 msgid "" -"Invalid connection string, a valid string usually follows: backend+driver://" -"user:password@database-host/database-name" +"Invalid connection string, a valid string usually follows: " +"backend+driver://user:password@database-host/database-name" msgstr "" "Cadeia de conexão inválida, uma cadeia válida geralmente é a seguinte: " "backend+driver://user:password@database-host/database-name" +#: superset/views/database/validators.py:40 msgid "" -"Invalid connection string, a valid string usually follows:'DRIVER://USER:" -"PASSWORD@DB-HOST/DATABASE-NAME'

Example:'postgresql://user:password@your-" -"postgres-db/database'

" +"Invalid connection string, a valid string usually " +"follows:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" +"NAME'

Example:'postgresql://user:password@your-postgres-" +"db/database'

" msgstr "" "String de conexão inválida, uma string válida é normalmente a " "seguinte:'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-" -"NAME'

Exemplo:'postgresql://user:password@your-postgres-db/database'

" +"NAME'

Exemplo:'postgresql://user:password@your-postgres-" +"db/database'

" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:52 msgid "Invalid cron expression" msgstr "Expressão cron inválida" +#: superset/utils/pandas_postprocessing/cum.py:55 +#, python-format msgid "Invalid cumulative operator: %(operator)s" msgstr "Operador cumulativo inválido: %(operator)s" +#: superset/connectors/sqla/views.py:180 superset/datasets/schemas.py:44 msgid "Invalid date/timestamp format" msgstr "Formato de data/carimbo de data/hora inválido" +#: superset/viz.py:2091 msgid "Invalid filter configuration, please select a column" msgstr "Configuração de filtro inválida, selecione uma coluna" +#: superset/models/helpers.py:1891 +#, python-format msgid "Invalid filter operation type: %(op)s" msgstr "Tipo de operação de filtragem inválido: %(op)s" +#: superset/utils/pandas_postprocessing/geography.py:118 msgid "Invalid geodetic string" msgstr "Cadeia geodésica inválida" +#: superset/utils/pandas_postprocessing/geography.py:49 msgid "Invalid geohash string" msgstr "Cadeia de caracteres geohash inválida" +#: superset-frontend/src/utils/getClientErrorObject.ts:65 msgid "Invalid input" msgstr "Entrada inválida" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:82 msgid "Invalid lat/long configuration." msgstr "Configuração lat/long inválida." +#: superset/utils/pandas_postprocessing/geography.py:76 msgid "Invalid longitude/latitude" msgstr "Longitude/latitude inválida" +#: superset/utils/core.py:1373 +#, python-format msgid "Invalid metric object: %(metric)s" msgstr "Objeto de métrica inválido: %(metric)s" +#: superset/utils/pandas_postprocessing/utils.py:170 +#, python-format msgid "Invalid numpy function: %(operator)s" msgstr "Função numpy inválida: %(operator)s" +#: superset/utils/pandas_postprocessing/rolling.py:90 +#, python-format msgid "Invalid options for %(rolling_type)s: %(options)s" msgstr "Opções inválidas para %(rolling_type)s: %(opções)s" +#: superset/key_value/utils.py:60 msgid "Invalid permalink key" msgstr "Chave de permalink inválida" +#: superset/db_engine_specs/ocient.py:292 +#, python-format +msgid "Invalid reference to column: \"%(column)s\"" +msgstr "" + +#: superset/common/query_actions.py:227 +#, python-format msgid "Invalid result type: %(result_type)s" msgstr "Tipo de resultado inválido: %(result_type)s" +#: superset/utils/pandas_postprocessing/rolling.py:84 +#, python-format msgid "Invalid rolling_type: %(type)s" msgstr "Inválido rolling_type: %(type)s" +#: superset/viz.py:2474 +#, python-format msgid "Invalid spatial point encountered: %s" msgstr "Encontrado um ponto espacial inválido: %s" +#: superset/dashboards/permalink/exceptions.py:23 +#: superset/explore/permalink/exceptions.py:23 msgid "Invalid state." msgstr "Estado inválido." +#: superset/reports/commands/create.py:142 +#, python-format msgid "Invalid tab ids: %s(tab_ids)" msgstr "IDs das abas inválido: %s(tab_ids)" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:123 msgid "Inverse selection" msgstr "Seleção inversa" +#: superset-frontend/src/components/Table/index.tsx:209 msgid "Invert current page" msgstr "Inverter a página atual" +#: superset/charts/filters.py:78 superset/dashboards/filters.py:217 +#: superset/datasets/filters.py:39 msgid "Is certified" msgstr "É certificado" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:361 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:369 msgid "Is dimension" msgstr "É dimensão" +#: superset-frontend/src/explore/constants.ts:89 msgid "Is false" msgstr "É falso" +#: superset/views/base_api.py:149 msgid "Is favorite" msgstr "É favorito" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:364 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:372 msgid "Is filterable" msgstr "É filtrável" -msgid "Is tagged" -msgstr "É marcado" - -msgid "Is temporal" -msgstr "É temporal" - -msgid "Is true" -msgstr "É verdadeiro" - +#: superset-frontend/src/explore/constants.ts:80 msgid "Is not null" msgstr "Não é nulo" +#: superset-frontend/src/explore/constants.ts:83 msgid "Is null" msgstr "É nulo" +#: superset/views/base_api.py:177 +msgid "Is tagged" +msgstr "É marcado" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:362 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 +#: superset/connectors/sqla/views.py:161 +msgid "Is temporal" +msgstr "É temporal" + +#: superset-frontend/src/explore/constants.ts:88 +msgid "Is true" +msgstr "É verdadeiro" + +#: superset-frontend/src/utils/getClientErrorObject.ts:153 +msgid "Issue 1000 - The dataset is too large to query." +msgstr "Problema 1000 - O conjunto de dados é muito grande para ser consultado." + +#: superset-frontend/src/utils/getClientErrorObject.ts:157 msgid "Issue 1001 - The database is under an unusual load." msgstr "Problema 1001 - O Banco de dados está sob uma carga incomum." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:232 msgid "It’s not recommended to truncate axis in Bar chart." msgstr "Não é recomendado truncar o eixo no gráfico de barras." -msgid "Issue 1000 - The dataset is too large to query." -msgstr "" -"Problema 1000 - O conjunto de dados é muito grande para ser consultado." - +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:91 msgid "JAN" msgstr "JAN" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:56 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:351 +#: superset/views/log/__init__.py:33 msgid "JSON" msgstr "JSON" +#: superset/views/dashboard/mixin.py:88 msgid "JSON Metadata" msgstr "Metadados JSON" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:776 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:336 msgid "JSON metadata" msgstr "Metadados JSON" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:368 msgid "JSON metadata is invalid!" msgstr "Os metadados JSON são inválidos!" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 +msgid "" +"JSON string containing additional connection configuration. This is used " +"to provide connection information for systems like Hive, Presto and " +"BigQuery which do not conform to the username:password syntax normally " +"used by SQLAlchemy." +msgstr "" +"Cadeia de caracteres JSON contendo configuração de conexão adicional. " +"Isso é usado para fornecer informações de conexão para sistemas como " +"Hive, Presto e BigQuery, que não estão em conformidade com a sintaxe de " +"nome de usuário:senha normalmente usada pelo SQLAlchemy." + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:97 msgid "JUL" msgstr "JUL" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:96 msgid "JUN" msgstr "JUN" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:66 msgid "January" msgstr "Janeiro" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:132 msgid "JavaScript data interceptor" msgstr "Interceptador de dados JavaScript" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:154 msgid "JavaScript onClick href" msgstr "JavaScript onClick href" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:144 msgid "JavaScript tooltip generator" msgstr "Gerador de dicas de ferramentas JavaScript" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:78 msgid "Jinja templating" msgstr "Modelo Jinja" +#: superset/views/database/forms.py:243 msgid "Json list of the column names that should be read" msgstr "Lista Json dos nomes das colunas que devem ser lidas" +#: superset/views/database/forms.py:474 msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"] for " -"empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive " -"database supports only a single value" -msgstr "" -"Lista Json dos valores que devem ser tratados como nulos. Exemplos: [\"\"] " -"para cadeias de caracteres vazias, [\"None\", \"N/A\"], [\"nan\", \"null\"]. " -"Aviso: O banco de dados Hive suporta apenas um único valor" - -msgid "" -"Json list of the column names that should be read. If not None, only these " -"columns will be read from the file." +"Json list of the column names that should be read. If not None, only " +"these columns will be read from the file." msgstr "" "Lista Json dos nomes das colunas que devem ser lidas. Se não for None, " "apenas estas colunas serão lidas do ficheiro." +#: superset/views/database/forms.py:213 msgid "" -"Json list of the values that should be treated as null. Examples: [\"\"], " -"[\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database supports " -"only single value. Use [\"\"] for empty string." +"Json list of the values that should be treated as null. Examples: [\"\"] " +"for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " +"Hive database supports only a single value" msgstr "" -"Lista Json dos valores que devem ser tratados como nulos. Exemplos: [\"\"], " -"[\"None\", \"N/A\"], [\"nan\", \"null\"]. Aviso: A base de dados Hive " -"suporta apenas um único valor. Utilize [\"\"] para uma cadeia de caracteres " -"vazia." +"Lista Json dos valores que devem ser tratados como nulos. Exemplos: " +"[\"\"] para cadeias de caracteres vazias, [\"None\", \"N/A\"], [\"nan\", " +"\"null\"]. Aviso: O banco de dados Hive suporta apenas um único valor" +#: superset/views/database/forms.py:404 +msgid "" +"Json list of the values that should be treated as null. Examples: [\"\"]," +" [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " +"supports only single value. Use [\"\"] for empty string." +msgstr "" +"Lista Json dos valores que devem ser tratados como nulos. Exemplos: " +"[\"\"], [\"None\", \"N/A\"], [\"nan\", \"null\"]. Aviso: A base de dados " +"Hive suporta apenas um único valor. Utilize [\"\"] para uma cadeia de " +"caracteres vazia." + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:72 msgid "July" msgstr "Julho" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:71 msgid "June" msgstr "Junho" -msgid "Key" -msgstr "Chave" - +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:26 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:31 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:43 msgid "KPI" msgstr "KPI" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:668 msgid "Keep control settings?" msgstr "Manter configurações de controle?" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:56 msgid "Keep editing" msgstr "Continue editando" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:99 +msgid "Key" +msgstr "Chave" + +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:185 msgid "Keys for table" msgstr "Chaves da tabela" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:145 msgid "Kilometers" msgstr "Quilômetros" +#: superset-frontend/src/SqlLab/components/QueryLimitSelect/index.tsx:101 msgid "LIMIT" msgstr "LIMITE" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:93 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:122 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:251 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:255 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1198 +#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:157 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:195 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:201 +#: superset-frontend/src/pages/AnnotationList/index.tsx:157 +#: superset/views/sql_lab/views.py:81 msgid "Label" msgstr "Rótulo" -msgid "Label Type" -msgstr "Tipo de rótulo" - -msgid "Label already exists" -msgstr "O rótulo já existe" - +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:174 msgid "Label Line" msgstr "Linha de rótulos" -msgid "Label position" -msgstr "Posição do rótulo" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:99 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:106 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:95 +msgid "Label Type" +msgstr "Tipo de rótulo" +#: superset/utils/pandas_postprocessing/rename.py:53 +msgid "Label already exists" +msgstr "O rótulo já existe" + +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:172 msgid "Label for your query" msgstr "Rótulo para sua consulta" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:123 +msgid "Label position" +msgstr "Posição do rótulo" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:199 msgid "Label threshold" msgstr "Rótulo limite" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:156 msgid "Labelling" msgstr "Rotulagem" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:93 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:65 msgid "Labels" msgstr "Rótulos" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:90 msgid "Labels for the marker lines" msgstr "Rótulos para o marcador linhas" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:70 msgid "Labels for the markers" msgstr "Rótulos para o marcadores" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:50 msgid "Labels for the ranges" msgstr "Rótulos para os intervalos" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:81 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:35 msgid "Large" msgstr "Grande" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:190 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:31 msgid "Last" msgstr "Último" +#: superset/connectors/sqla/views.py:388 superset/views/database/mixins.py:190 msgid "Last Changed" msgstr "Última alteração" +#: superset/views/chart/mixin.py:81 msgid "Last Modified" msgstr "Última modificação" +#: superset-frontend/src/components/LastUpdated/index.tsx:74 +#, python-format msgid "Last Updated %s" msgstr "Última atualização %s" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:182 +#, python-format msgid "Last Updated %s by %s" msgstr "Última atualização %s por %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:86 +#, python-format msgid "Last available value seen on %s" msgstr "Último valor disponível visto em %s" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:80 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:177 +#: superset-frontend/src/pages/ChartList/index.tsx:445 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:158 +#: superset-frontend/src/pages/DatabaseList/index.tsx:391 msgid "Last modified" msgstr "Última modificação" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:151 +#, python-format msgid "Last modified by %s" msgstr "Última modificação por %s" +#: superset-frontend/src/pages/AlertReportList/index.tsx:267 msgid "Last run" msgstr "Última execução" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:73 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:178 msgid "Latitude" msgstr "Latitude" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:299 msgid "Latitude of default viewport" msgstr "Latitude da janela de visualização padrão" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:784 msgid "Layer configuration" msgstr "Configuração de camadas" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:111 msgid "Layout" msgstr "Layout" +#: superset-frontend/src/dashboard/components/BuilderComponentPane/index.tsx:81 msgid "Layout elements" msgstr "Elementos de layout" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:115 msgid "Layout type of graph" msgstr "Tipo de layout de gráfico" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:124 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:247 msgid "Layout type of tree" msgstr "Tipo de layout de árvore" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:80 msgid "" -"Leaf nodes that represent fewer than this number of events will be initially " -"hidden in the visualization" +"Leaf nodes that represent fewer than this number of events will be " +"initially hidden in the visualization" msgstr "" "Os nós folha que representam menos do que este número de eventos serão " "inicialmente ocultados na visualização" +#: superset-frontend/src/pages/ChartList/index.tsx:749 +#: superset-frontend/src/pages/DashboardList/index.tsx:623 +#: superset-frontend/src/pages/Tags/index.tsx:229 msgid "Least recently modified" msgstr "Modificação mais recente" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:28 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:100 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:371 msgid "Left" msgstr "Esquerda" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/controlPanel.ts:72 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:166 msgid "Left Axis Format" msgstr "Formato do eixo esquerdo" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/controlPanel.ts:68 msgid "Left Axis Metric" msgstr "Eixo esquerdo métrico" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:97 msgid "Left Axis chart(s)" msgstr "Gráfico(s) do eixo esquerdo" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:201 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:76 msgid "Left Margin" msgstr "Margem Esquerda" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:213 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:88 msgid "Left margin, in pixels, allowing for more room for axis labels" msgstr "" -"Margem esquerda, em pixels, permitindo mais espaço para os rótulos dos eixos" +"Margem esquerda, em pixels, permitindo mais espaço para os rótulos dos " +"eixos" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:138 msgid "Left to Right" msgstr "Esquerda para Direita" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 msgid "Left value" msgstr "Valor esquerdo" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:42 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/index.js:33 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 +#: superset-frontend/plugins/legacy-plugin-chart-treemap/src/index.js:43 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:47 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:37 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:34 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 +#: superset-frontend/src/visualizations/TimeTable/index.ts:35 msgid "Legacy" msgstr "Legado" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:289 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:115 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:99 msgid "Legend" msgstr "Legenda" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:162 msgid "Legend Format" msgstr "Formato de legenda" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:92 msgid "Legend Orientation" msgstr "Orientação de legenda" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:176 msgid "Legend Position" msgstr "Posição da legenda" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:72 msgid "Legend type" msgstr "Tipo de legenda" +#: superset-frontend/src/explore/constants.ts:63 msgid "Less or equal (<=)" msgstr "Menor ou igual (<=)" +#: superset-frontend/src/explore/constants.ts:61 msgid "Less than (<)" msgstr "Menos que (<)" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:90 msgid "Lift percent precision" msgstr "Precisão da percentagem de elevação" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:230 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:376 msgid "Light" msgstr "Claro" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:30 msgid "Light mode" msgstr "Modo claro" +#: superset-frontend/src/explore/constants.ts:73 msgid "Like" msgstr "Como" +#: superset-frontend/src/explore/constants.ts:75 msgid "Like (case insensitive)" msgstr "Como (não diferencia maiúsculas de minúsculas)" +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:49 msgid "Limit reached" msgstr "Limite atingido" +#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:97 msgid "Limit selector values" msgstr "Valores limite do seletor" -msgid "" -"Limiting rows may result in incomplete data and misleading charts. Consider " -"filtering or grouping source/target names instead." -msgstr "" -"Limitar as linhas pode resultar em dados incompletos e gráficos errôneos. Em " -"vez disso, considere filtrar ou agrupar nomes de origem/destino." - -msgid "Limits the number of cells that get retrieved." -msgstr "Limita o número de células recuperadas." - -msgid "Limits the number of rows that get displayed." -msgstr "Limita o número de linhas exibidas." - +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:107 msgid "Limit type" msgstr "Tipo de limite" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:48 +msgid "" +"Limiting rows may result in incomplete data and misleading charts. " +"Consider filtering or grouping source/target names instead." +msgstr "" +"Limitar as linhas pode resultar em dados incompletos e gráficos errôneos." +" Em vez disso, considere filtrar ou agrupar nomes de origem/destino." + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:136 +msgid "Limits the number of cells that get retrieved." +msgstr "Limita o número de células recuperadas." + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:251 +#: superset-frontend/src/explore/controls.jsx:344 +msgid "Limits the number of rows that get displayed." +msgstr "Limita o número de linhas exibidas." + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:274 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:289 +#: superset-frontend/src/explore/controls.jsx:354 msgid "" "Limits the number of series that get displayed. A joined subquery (or an " "extra phase where subqueries are not supported) is applied to limit the " -"number of series that get fetched and rendered. This feature is useful when " -"grouping by high cardinality column(s) though does increase the query " -"complexity and cost." +"number of series that get fetched and rendered. This feature is useful " +"when grouping by high cardinality column(s) though does increase the " +"query complexity and cost." msgstr "" -"Limita o número de séries que são exibidas. Uma subconsulta unida (ou uma " -"fase extra em que não há suporte para subconsultas) é aplicada para limitar " -"o número de séries que são obtidas e renderizadas. Esse recurso é útil ao " -"agrupar por coluna(s) de alta cardinalidade, embora aumente a complexidade e " -"o custo da consulta." +"Limita o número de séries que são exibidas. Uma subconsulta unida (ou uma" +" fase extra em que não há suporte para subconsultas) é aplicada para " +"limitar o número de séries que são obtidas e renderizadas. Esse recurso é" +" útil ao agrupar por coluna(s) de alta cardinalidade, embora aumente a " +"complexidade e o custo da consulta." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:48 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:141 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:79 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:72 msgid "Line" msgstr "Linha" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:80 +#: superset-frontend/plugins/preset-chart-xy/src/Line/createMetadata.ts:26 msgid "Line Chart" msgstr "Gráfico de linhas" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:38 msgid "Line Chart (legacy)" msgstr "Gráfico de linhas (herdado)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:120 msgid "Line Style" msgstr "Estilo da linha" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:66 msgid "" -"Line chart is used to visualize measurements taken over a given category. " -"Line chart is a type of chart which displays information as a series of data " -"points connected by straight line segments. It is a basic type of chart " -"common in many fields." +"Line chart is used to visualize measurements taken over a given category." +" Line chart is a type of chart which displays information as a series of " +"data points connected by straight line segments. It is a basic type of " +"chart common in many fields." msgstr "" -"O gráfico de linhas é utilizado para visualizar as medições efetuadas numa " -"determinada categoria. O gráfico de linhas é um tipo de gráfico que " +"O gráfico de linhas é utilizado para visualizar as medições efetuadas " +"numa determinada categoria. O gráfico de linhas é um tipo de gráfico que " "apresenta informações como uma série de pontos de dados ligados por " "segmentos de linha reta. É um tipo básico de gráfico comum em muitos " "domínios." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:131 msgid "Line interpolation as defined by d3.js" msgstr "Linha interpolação conforme definido por d3.js" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:210 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:732 msgid "Line width" msgstr "Largura da linha" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:137 msgid "Linear Color Scheme" msgstr "Esquema de Cores Linear" +#: superset-frontend/src/explore/controls.jsx:221 msgid "Linear color scheme" msgstr "Esquema de cores linear" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:186 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:260 msgid "Linear interpolation" msgstr "Interpolação linear" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:196 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:27 msgid "Lines column" msgstr "Coluna de linhas" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:345 msgid "Lines encoding" msgstr "Codificação de linhas" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:226 +#: superset-frontend/src/views/CRUD/hooks.ts:677 msgid "Link Copied!" msgstr "Link copiado!" +#: superset/views/sql_lab/views.py:52 msgid "List Saved Query" msgstr "Listar consulta salva" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:181 msgid "List Unique Values" msgstr "Listar valores exclusivos" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:123 msgid "List of extra columns made available in JavaScript functions" msgstr "Lista de colunas extra disponibilizadas em funções JavaScript" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:151 msgid "List of n+1 values for bucketing metric into n buckets." msgstr "Lista de n+1 valores para a métrica de agrupamento em n agrupamentos." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:81 msgid "List of values to mark with lines" msgstr "Lista de valores a marcar com linhas" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:61 msgid "List of values to mark with triangles" msgstr "Lista de valores para marcar com triângulos" +#: superset-frontend/src/components/TableSelector/index.tsx:184 msgid "List updated" msgstr "Lista atualizada" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:109 msgid "Live CSS editor" msgstr "Editor de CSS em tempo real" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:211 msgid "Live render" msgstr "Renderização em tempo real" +#: superset-frontend/src/dashboard/components/CssEditor/index.jsx:94 msgid "Load a CSS template" msgstr "Carregar um modelo CSS" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:30 msgid "Loaded data cached" msgstr "Dados carregados em cache" +#: superset-frontend/src/components/CachedLabel/TooltipContent.tsx:34 msgid "Loaded from cache" msgstr "Carregado da cache" -msgid "Loading..." -msgstr "Carregando..." - +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:177 msgid "Loading" msgstr "Carregando" +#: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:496 +#: superset-frontend/src/components/Select/Select.tsx:477 +#: superset-frontend/src/components/Select/utils.tsx:152 +#: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 +#: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 +msgid "Loading..." +msgstr "Carregando..." + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/CrossFilterTitle.tsx:82 msgid "Locate the chart" msgstr "Localize o gráfico" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:197 msgid "Log Scale" msgstr "Escala Log" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:398 msgid "Log retention" msgstr "Retenção de log" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:201 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:204 msgid "Logarithmic axis" msgstr "Eixo Logarítmico" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:399 msgid "Logarithmic scale on primary y-axis" msgstr "Escala logarítmica no eixo y primário" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:449 msgid "Logarithmic scale on secondary y-axis" msgstr "Escala logarítmica no eixo y secundário" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:396 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:437 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:446 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:225 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:210 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:213 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:154 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:154 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:157 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:204 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:207 msgid "Logarithmic y-axis" msgstr "Eixo y logarítmico" -msgid "Login with" -msgstr "Fazer login com" - +#: superset-frontend/src/features/home/RightMenu.tsx:562 msgid "Login" msgstr "Entrar" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:119 +msgid "Login with" +msgstr "Fazer login com" + +#: superset-frontend/src/features/home/RightMenu.tsx:486 msgid "Logout" msgstr "Sair" +#: superset/views/log/__init__.py:21 msgid "Logs" msgstr "Logs" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:691 msgid "Long dashed" msgstr "Traço longo" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:63 +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:174 msgid "Longitude" msgstr "Longitude" -msgid "Longitude & Latitude columns" -msgstr "Colunas de latitude e longitude" - -msgid "Longitude of default viewport" -msgstr "Longitude da viewport padrão" - +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:307 msgid "Longitude & Latitude" msgstr "Longitude e Latitude" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:168 +msgid "Longitude & Latitude columns" +msgstr "Colunas de latitude e longitude" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/Grid.jsx:34 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/Scatter.jsx:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:44 msgid "Longitude and Latitude" msgstr "Longitude e Latitude" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:285 +msgid "Longitude of default viewport" +msgstr "Longitude da viewport padrão" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:93 msgid "MAR" msgstr "MAR" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:95 msgid "MAY" msgstr "MAIO" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:82 msgid "MON" msgstr "SEG" +#: superset/connectors/sqla/views.py:397 msgid "Main Datetime Column" msgstr "Coluna principal de data e hora" +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:292 msgid "" "Make sure that the controls are configured properly and the datasource " "contains data for the selected time range" msgstr "" -"Certifique-se de que os controles estão corretamente configurados e que a " -"fonte de dados contém dados para o intervalo de tempo selecionado" +"Certifique-se de que os controles estão corretamente configurados e que a" +" fonte de dados contém dados para o intervalo de tempo selecionado" +#: superset/views/core.py:1752 msgid "" -"Malformed request. slice_id or table_name and db_name arguments are expected" +"Malformed request. slice_id or table_name and db_name arguments are " +"expected" msgstr "" "Pedido malformado. Os argumentos slice_id ou table_name e db_name são " "esperados" +#: superset/initialization/__init__.py:279 +#: superset/initialization/__init__.py:291 +#: superset/initialization/__init__.py:335 +#: superset/initialization/__init__.py:406 +#: superset/initialization/__init__.py:419 msgid "Manage" msgstr "Gerenciar" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:351 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:368 msgid "Manage email report" msgstr "Gerenciar relatório de e-mail" +#: superset-frontend/src/components/EmptyState/index.tsx:230 msgid "Manage your databases" msgstr "Gerenciar seus bancos de dados" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:793 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:831 msgid "Mandatory" msgstr "Obrigatório" +#: superset/views/database/forms.py:360 msgid "Mangle Duplicate Columns" msgstr "Emaranhar colunas duplicadas" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:297 msgid "Manually set min/max values for the y-axis." msgstr "Definir manualmente os valores mínimo/máximo para o eixo y." +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:27 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:78 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:54 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:54 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:98 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:54 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:25 msgid "Map" msgstr "Mapa" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:224 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:370 msgid "Map Style" msgstr "Estilo do mapa" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:33 msgid "MapBox" msgstr "MapBox" +#: superset/viz.py:2258 msgid "Mapbox" msgstr "MapBox" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:68 msgid "March" msgstr "Março" -msgid "Mark a column as temporal in \"Edit datasource\"modal" -msgstr "Marcar uma coluna como temporal em \"Editar fonte de dados\"modal" - +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:50 msgid "Margin" msgstr "Margem" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:354 msgid "Mark a column as temporal in \"Edit datasource\" modal" msgstr "Marcar uma coluna como temporal no modal \"Edit datasource\"" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:213 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:142 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:124 msgid "Marker" msgstr "Marcador" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:156 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:144 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:138 msgid "Marker Size" msgstr "Tamanho do marcador" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:68 msgid "Marker labels" msgstr "Rótulos de marcadores" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:88 msgid "Marker line labels" msgstr "Rótulos de linhas de marcação" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:79 msgid "Marker lines" msgstr "Linhas de marcação" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:227 msgid "Marker size" msgstr "Tamanho do marcador" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:59 msgid "Markers" msgstr "Marcadores" +#: superset-frontend/src/explore/controlPanels/Separator.js:32 msgid "Markup type" msgstr "Tipo de marcação" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:96 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:49 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:96 msgid "Max" msgstr "Máx" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:96 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:60 msgid "Max Bubble Size" msgstr "Tamanho máximo da bolha" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:128 msgid "Max Events" msgstr "Max Eventos" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:188 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1141 msgid "Maximum" msgstr "Máximo" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:72 msgid "Maximum Font Size" msgstr "Tamanho Máximo da Fonte" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:116 msgid "Maximum Radius" msgstr "Raio Máximo" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:121 msgid "" "Maximum radius size of the circle, in pixels. As the zoom level changes, " "this insures that the circle respects this maximum radius." msgstr "" -"Tamanho máximo do raio do círculo, em pixels. À medida que o nível de zoom " -"muda, isto assegura que o círculo respeite este raio máximo." +"Tamanho máximo do raio do círculo, em pixels. À medida que o nível de " +"zoom muda, isto assegura que o círculo respeite este raio máximo." +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 msgid "Maximum value" msgstr "Valor máximo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:97 msgid "Maximum value on the gauge axis" msgstr "Valor máximo no eixo do medidor" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:70 msgid "May" msgstr "Maio" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:86 msgid "Mean of values over specified period" msgstr "Média dos valores durante o período especificado" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:264 msgid "Mean values" msgstr "Valores médios" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:184 msgid "Median" msgstr "Mediana" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:231 msgid "" "Median edge width, the thickest edge will be 4 times thicker than the " "thinnest." msgstr "" -"Largura mediana da aresta, a aresta mais grossa será 4 vezes mais grossa do " -"que a mais fina." +"Largura mediana da aresta, a aresta mais grossa será 4 vezes mais grossa " +"do que a mais fina." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:218 msgid "" -"Median node size, the largest node will be 4 times larger than the smallest" -msgstr "" -"Tamanho médio do nó, o nó maior será 4 vezes maior do que o mais pequeno" +"Median node size, the largest node will be 4 times larger than the " +"smallest" +msgstr "Tamanho médio do nó, o nó maior será 4 vezes maior do que o mais pequeno" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:189 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:263 msgid "Median values" msgstr "Valores médios" +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:30 msgid "Medium" msgstr "Médio" +#: superset-frontend/src/components/PageHeaderWithActions/index.tsx:160 msgid "Menu actions trigger" msgstr "Acionador de ações do menu" +#: superset-frontend/src/components/ReportModal/index.tsx:236 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 msgid "Message content" msgstr "Conteúdo da Mensagem" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:104 msgid "Metadata" msgstr "Metadados" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:486 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:490 msgid "Metadata Parameters" msgstr "Parâmetros de metadados" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:785 msgid "Metadata has been synced" msgstr "Os metadados foram sincronizados" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:370 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:252 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:524 +#: superset-frontend/src/explore/controlPanels/sections.tsx:248 msgid "Method" msgstr "Método" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:175 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:176 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/Calendar.js:88 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:85 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:98 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1197 +#: superset-frontend/src/explore/controls.jsx:167 +#: superset-frontend/src/explore/controls.jsx:168 +#: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 +#: superset/connectors/sqla/views.py:249 msgid "Metric" msgstr "Métrica" +#: superset/connectors/sqla/models.py:1133 superset/models/helpers.py:1236 +#: superset/models/helpers.py:1529 +#, python-format msgid "Metric '%(metric)s' does not exist" msgstr "Métrica '%(métric)s' não existe" -msgid "Metric name" -msgstr "Nome da métrica" - +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:39 msgid "Metric ascending" msgstr "Métrica crescente" -msgid "Metric descending" -msgstr "Métrica decrescente" - +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:214 +#: superset-frontend/src/explore/controls.jsx:402 msgid "Metric assigned to the [X] axis" msgstr "Métrica atribuída para o eixo [X]" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:221 +#: superset-frontend/src/explore/controls.jsx:410 msgid "Metric assigned to the [Y] axis" msgstr "Métrica atribuída para o eixo [Y]" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:96 msgid "Metric change in value from `since` to `until`" msgstr "Alteração do valor da métrica de `desde` a `até`" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:40 +msgid "Metric descending" +msgstr "Métrica decrescente" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:110 msgid "Metric factor change from `since` to `until`" msgstr "Alteração do fator métrico de `since` para `until`" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:99 msgid "Metric for node values" msgstr "Métrica para valores de nó" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:119 +msgid "Metric name" +msgstr "Nome da métrica" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:826 +#, python-format msgid "Metric name [%s] is duplicated" msgstr "Métrica nome [%s] está duplicada" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:103 msgid "Metric percent change in value from `since` to `until`" msgstr "Métrica de variação percentual do valor de `desde` até `até`" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:140 msgid "Metric that defines the size of the bubble" msgstr "Métrica que define o tamanho da bolha" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:86 msgid "Metric to display bottom title" msgstr "Métrica para exibir o título inferior" +#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:185 msgid "Metric to sort the results by" msgstr "Métrica para organizar o resultados por" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:139 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:78 msgid "Metric used as a weight for the grid's coloring" msgstr "Métrica usada como peso para coloração de grid" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:207 msgid "Metric used to calculate bubble size" msgstr "Métrica utilizada para calcular o tamanho da bolha" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:76 msgid "Metric used to control height" msgstr "Métrica utilizada para controlar a altura" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:146 msgid "" "Metric used to define how the top series are sorted if a series or cell " "limit is present. If undefined reverts to the first metric (where " "appropriate)." msgstr "" -"Métrica utilizada para definir a forma como as séries de topo são ordenadas " -"se estiver presente um limite de série ou de célula. Se não for definida, " -"reverte para a primeira métrica (quando apropriado)." +"Métrica utilizada para definir a forma como as séries de topo são " +"ordenadas se estiver presente um limite de série ou de célula. Se não for" +" definida, reverte para a primeira métrica (quando apropriado)." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:192 +#: superset-frontend/src/explore/controls.jsx:367 msgid "" -"Metric used to define how the top series are sorted if a series or row limit " -"is present. If undefined reverts to the first metric (where appropriate)." +"Metric used to define how the top series are sorted if a series or row " +"limit is present. If undefined reverts to the first metric (where " +"appropriate)." msgstr "" -"Métrica utilizada para definir a forma como as séries de topo são ordenadas " -"se estiver presente um limite de série ou de linha. Se não for definida, " -"reverte para a primeira métrica (quando apropriado)." +"Métrica utilizada para definir a forma como as séries de topo são " +"ordenadas se estiver presente um limite de série ou de linha. Se não for " +"definida, reverte para a primeira métrica (quando apropriado)." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:55 msgid "" -"Metric used to order the limit if a series limit is present. If undefined " -"reverts to the first metric (where appropriate)." +"Metric used to order the limit if a series limit is present. If undefined" +" reverts to the first metric (where appropriate)." msgstr "" "Métrica utilizada para ordenar o limite se estiver presente um limite de " "série. Se não for definida, reverte para a primeira métrica (quando " "apropriado)." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:161 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1362 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 +#: superset-frontend/src/explore/controls.jsx:152 +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 +#: superset/connectors/sqla/views.py:206 msgid "Metrics" msgstr "Métricas" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:34 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:126 msgid "" -"Metrics for which percentage of total are to be displayed. Calculated from " -"only data within the row limit." +"Metrics for which percentage of total are to be displayed. Calculated " +"from only data within the row limit." msgstr "" -"Métricas para as quais a porcentagem do total deve ser exibida. Calculado " -"apenas com base nos dados dentro do limite de linhas." +"Métricas para as quais a porcentagem do total deve ser exibida. Calculado" +" apenas com base nos dados dentro do limite de linhas." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:76 msgid "Middle" msgstr "Médio" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:90 msgid "Midnight" msgstr "Meia-noite" -msgid "Min" -msgstr "Min" - +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:144 msgid "Miles" msgstr "Milhas" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:85 +#: superset-frontend/src/explore/components/controls/BoundsControl.tsx:88 +msgid "Min" +msgstr "Min" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:283 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:165 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:434 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:214 msgid "Min Periods" msgstr "Períodos mínimos" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:79 msgid "Min Width" msgstr "Largura mínima" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:80 +#: superset-frontend/src/explore/controlPanels/sections.tsx:162 msgid "Min periods" msgstr "Períodos mínimos" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:96 +#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:48 msgid "Min/max (no outliers)" msgstr "Mín/máx (sem outliers)" +#: superset-frontend/src/features/home/ChartTable.tsx:153 +#: superset-frontend/src/features/home/DashboardTable.tsx:164 +#: superset-frontend/src/features/home/SavedQueries.tsx:251 msgid "Mine" msgstr "Meu" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:187 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1135 msgid "Minimum" msgstr "Mínimo" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:61 msgid "Minimum Font Size" msgstr "Tamanho Mínimo da Fonte" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:101 msgid "Minimum Radius" msgstr "Raio Mínimo" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:77 msgid "Minimum leaf node event count" msgstr "Contagem mínima de eventos de nó folha" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:106 msgid "" "Minimum radius size of the circle, in pixels. As the zoom level changes, " "this insures that the circle respects this minimum radius." msgstr "" -"Tamanho mínimo do raio do círculo, em pixels. À medida que o nível de zoom " -"muda, isto assegura que o círculo respeita este raio mínimo." +"Tamanho mínimo do raio do círculo, em pixels. À medida que o nível de " +"zoom muda, isto assegura que o círculo respeita este raio mínimo." +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:152 msgid "Minimum threshold in percentage points for showing labels." msgstr "Limiar mínimo em pontos percentuais para mostrar as etiquetas." -msgid "Minimum value for label to be displayed on graph." -msgstr "Valor mínimo para o rótulo a apresentar no gráfico." - +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:69 msgid "Minimum value" msgstr "Valor mínimo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:203 +msgid "Minimum value for label to be displayed on graph." +msgstr "Valor mínimo para o rótulo a apresentar no gráfico." + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:86 msgid "Minimum value on the gauge axis" msgstr "Valor mínimo no eixo do medidor" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:344 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:234 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:215 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:222 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:166 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:216 msgid "Minor Split Line" msgstr "Linha de divisão menor" +#: superset/db_engine_specs/base.py:100 msgid "Minute" msgstr "Minuto" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:63 +#, python-format msgid "Minutes %s" msgstr "Minutos %s" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:401 msgid "Missing URL parameters" msgstr "Parâmetros de URL ausentes" +#: superset-frontend/src/components/ErrorMessage/DatasetNotFoundErrorMessage.tsx:34 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:363 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:419 msgid "Missing dataset" msgstr "Conjunto de dados ausentes" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 msgid "Mixed Chart" msgstr "Gráfico misto" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:78 msgid "Mixed Time-Series" msgstr "Séries Temporais Mistas" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:278 +#: superset-frontend/src/pages/AlertReportList/index.tsx:335 +#: superset-frontend/src/pages/DashboardList/index.tsx:347 +#: superset-frontend/src/pages/DatasetList/index.tsx:375 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:152 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:369 +#: superset-frontend/src/pages/Tags/index.tsx:118 +#: superset/connectors/sqla/views.py:402 superset/views/dashboard/mixin.py:85 +#: superset/views/dashboard/views.py:186 superset/views/database/mixins.py:199 +#: superset/views/sql_lab/views.py:85 msgid "Modified" msgstr "Modificado" +#: superset-frontend/src/features/charts/ChartCard.tsx:158 +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:134 +#: superset-frontend/src/features/home/ActivityTable.tsx:121 +#: superset-frontend/src/features/tags/TagCard.tsx:105 +#, python-format msgid "Modified %s" msgstr "Modificado %s" +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 +#: superset-frontend/src/pages/ChartList/index.tsx:431 +#: superset-frontend/src/pages/DashboardList/index.tsx:326 +#: superset-frontend/src/pages/DatasetList/index.tsx:385 msgid "Modified by" msgstr "Modificado por" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:772 +#, python-format msgid "Modified columns: %s" msgstr "Colunas modificadas: %s" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:57 msgid "Monday" msgstr "Segunda-feira" +#: superset/db_engine_specs/base.py:109 msgid "Month" msgstr "Mês" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:67 +#, python-format msgid "Months %s" msgstr "Meses %s" +#: superset-frontend/src/components/DropdownContainer/index.tsx:121 msgid "More" msgstr "Mais informações" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:251 msgid "More filters" msgstr "Mais filtros" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:168 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:277 msgid "Move only" msgstr "Mover apenas" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:43 msgid "Moves the given set of dates by a specified interval." msgstr "Move o conjunto de datas dado por um intervalo especificado." +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:34 msgid "Multi-Dimensions" msgstr "Multidimensões" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:39 msgid "Multi-Layers" msgstr "Múltiplas Camadas" +#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 +#: superset-frontend/plugins/legacy-plugin-chart-treemap/src/index.js:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:66 msgid "Multi-Levels" msgstr "Multiníveis" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:65 +#: superset-frontend/src/visualizations/TimeTable/index.ts:33 msgid "Multi-Variables" msgstr "Multi-Variáveis" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:188 msgid "Multiple" msgstr "Múltiplos" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:32 msgid "Multiple Line Charts" msgstr "Gráficos de linhas múltiplas" -msgid "Multiple filtering" -msgstr "Filtragem múltipla" - +#: superset/views/database/views.py:468 msgid "" -"Multiple file extensions are not allowed for columnar uploads. Please make " -"sure all files are of the same extension." +"Multiple file extensions are not allowed for columnar uploads. Please " +"make sure all files are of the same extension." msgstr "" "Não são permitidas várias extensões de ficheiros para upload em colunas. " "Certifique-se de que todos os ficheiros têm a mesma extensão." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:173 +msgid "Multiple filtering" +msgstr "Filtragem múltipla" + +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:185 msgid "" "Multiple formats accepted, look the geopy.points Python library for more " "details" msgstr "" -"São aceitos vários formatos, consulte a biblioteca Python geopy.points para " -"mais detalhes" +"São aceitos vários formatos, consulte a biblioteca Python geopy.points " +"para mais detalhes" -msgid "" -"Multiple selections allowed, otherwise filter is limited to a single value" +#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:218 +msgid "Multiple selections allowed, otherwise filter is limited to a single value" msgstr "" -"São permitidas seleções múltiplas, caso contrário o filtro limita-se a um " -"único valor" +"São permitidas seleções múltiplas, caso contrário o filtro limita-se a um" +" único valor" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:333 msgid "Multiplier" msgstr "Multiplicador" +#: superset/dashboards/commands/exceptions.py:39 msgid "Must be unique" msgstr "Deve ser único" +#: superset/reports/commands/exceptions.py:94 msgid "Must choose either a chart or a dashboard" msgstr "Deve escolher um gráfico ou um painel" +#: superset/viz.py:2283 msgid "Must have a [Group By] column to have 'count' as the [Label]" msgstr "Deve ter uma coluna [Agrupar por] para ter 'count' como [Rótulo]" +#: superset/viz.py:1666 msgid "Must have at least one numeric column specified" msgstr "Deve ter pelo menos uma coluna numérica especificada" +#: superset/databases/ssh_tunnel/commands/exceptions.py:63 msgid "Must provide credentials for the SSH Tunnel" msgstr "Forneça credenciais para o Túnel SSH" +#: superset/models/helpers.py:1848 msgid "Must specify a value for filters with comparison operators" msgstr "Deve especificar um valor para filtros com operadores de comparação" +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:74 msgid "My beautiful colors" msgstr "As minhas lindas cores" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:41 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelectPopoverTitle.jsx:65 msgid "My column" msgstr "Minha coluna" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopoverTitle.tsx:55 msgid "My metric" msgstr "Minha métrica" +#: superset-frontend/src/constants.ts:139 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:239 msgid "N/A" msgstr "N/D" -msgid "NOV" -msgstr "NOV" - +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:53 msgid "NOT GROUPED BY" msgstr "NÃO AGRUPADO POR" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:101 +msgid "NOV" +msgstr "NOV" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:244 msgid "NOW" msgstr "AGORA" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:144 msgid "NUMERIC" msgstr "NUMÉRICO" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:148 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:789 +#: superset-frontend/src/pages/AlertReportList/index.tsx:272 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:131 +#: superset-frontend/src/pages/DatasetList/index.tsx:345 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:130 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:248 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:283 +#: superset-frontend/src/pages/Tags/index.tsx:109 +#: superset/views/chart/mixin.py:85 msgid "Name" msgstr "Nome" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:817 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:823 msgid "Name is required" msgstr "O nome é obrigatório" +#: superset/annotation_layers/commands/exceptions.py:66 msgid "Name must be unique" msgstr "O nome deve ser único" +#: superset/views/database/forms.py:416 msgid "Name of table to be created from columnar data." msgstr "Nome da tabela a ser criada a partir de dados colunares." -msgid "Name of table to be created with CSV file" -msgstr "Nome da tabela a ser criada com o arquivo CSV" - +#: superset/views/database/forms.py:280 msgid "Name of table to be created from excel data." msgstr "Nome da tabela a ser criada a partir dos dados do Excel." +#: superset/views/database/forms.py:129 +msgid "Name of table to be created with CSV file" +msgstr "Nome da tabela a ser criada com o arquivo CSV" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:62 msgid "Name of the column containing the id of the parent node" msgstr "Nome da coluna que contém o id do nó pai" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:52 msgid "Name of the id column" msgstr "Nome da coluna id" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:54 msgid "Name of the source nodes" msgstr "Nome dos nós de origem" +#: superset/connectors/sqla/views.py:335 msgid "Name of the table that exists in the source database" msgstr "Nome da tabela que existe no banco de dados de origem" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:64 msgid "Name of the target nodes" msgstr "Nome dos nós de destino" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:65 msgid "Name your database" msgstr "Nome do seu banco de dados" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:100 msgid "Need help? Learn how to connect your database" msgstr "Precisa de ajuda? Aprenda como conectar seu banco de dados" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:146 msgid "Need help? Learn more about" msgstr "Precisa de ajuda? Saiba mais sobre" -msgid "Network error." -msgstr "Erro de rede." - +#: superset-frontend/src/utils/getClientErrorObject.ts:132 msgid "Network error" msgstr "Erro de rede" +#: superset-frontend/src/components/Chart/chartReducer.ts:108 +#: superset-frontend/src/components/Chart/chartReducer.ts:169 +msgid "Network error." +msgstr "Erro de rede." + +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:223 msgid "New chart" msgstr "Novo gráfico" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:782 +#, python-format msgid "New columns added: %s" msgstr "Novas colunas adicionadas: %s" +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:36 msgid "New dataset" msgstr "Novo conjunto de dados" +#: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:66 msgid "New dataset name" msgstr "Novo nome do conjunto de dados" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/index.tsx:90 msgid "New filter set" msgstr "Novo conjunto de filtros" +#: superset-frontend/src/dashboard/util/newComponentFactory.js:49 msgid "New header" msgstr "Novo cabeçalho" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:331 msgid "New tab" msgstr "Nova aba" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:278 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:320 msgid "New tab (Ctrl + q)" msgstr "Nova guia (Ctrl + q)" +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:279 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:321 msgid "New tab (Ctrl + t)" msgstr "Nova guia (Ctrl + t)" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:134 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:114 msgid "Next" msgstr "Próximo" +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:32 msgid "Nightingale Rose Chart" msgstr "Gráfico Nightingale Rose" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:89 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:108 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:127 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:145 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:143 +#: superset-frontend/src/pages/ChartList/index.tsx:599 +#: superset-frontend/src/pages/ChartList/index.tsx:708 +#: superset-frontend/src/pages/DashboardList/index.tsx:507 +#: superset-frontend/src/pages/DashboardList/index.tsx:589 +#: superset-frontend/src/pages/DatabaseList/index.tsx:479 +#: superset-frontend/src/pages/DatabaseList/index.tsx:499 +#: superset-frontend/src/pages/DatasetList/index.tsx:584 msgid "No" msgstr "Não" +#: superset-frontend/src/pages/AlertReportList/index.tsx:439 +#, python-format msgid "No %s yet" msgstr "Sem %s ainda" +#: superset/templates/superset/request_access.html:20 msgid "No Access!" msgstr "Sem acesso!" +#: superset-frontend/src/components/ListView/ListView.tsx:420 +#: superset-frontend/src/profile/components/RecentActivity.tsx:52 msgid "No Data" msgstr "Sem dados" +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:78 msgid "No Results" msgstr "Sem resultados" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:235 +#, fuzzy +msgid "No Rules yet" +msgstr "Ainda não há registros" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:116 msgid "No annotation layers" msgstr "Nenhuma camada de anotação" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:314 msgid "No annotation layers yet" msgstr "Sem camadas de anotação ainda" +#: superset-frontend/src/pages/AnnotationList/index.tsx:242 msgid "No annotation yet" msgstr "Sem anotação ainda" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterControls/FilterControls.tsx:255 msgid "No applied filters" msgstr "Nenhum filtro aplicado" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:157 msgid "No available filters." msgstr "Não há filtros disponíveis." +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:253 +#: superset-frontend/src/profile/components/CreatedContent.tsx:61 msgid "No charts" msgstr "Sem gráficos" +#: superset-frontend/src/features/home/EmptyState.tsx:34 msgid "No charts yet" msgstr "Ainda não há gráficos" +#: superset-frontend/src/filters/components/GroupBy/GroupByFilterPlugin.tsx:86 msgid "No columns" msgstr "Sem colunas" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 msgid "No columns found" msgstr "Nenhuma coluna encontrada" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:127 msgid "No compatible columns found" msgstr "Não foram encontradas colunas compatíveis" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:85 msgid "No compatible datasets found" msgstr "Não foram encontrados conjuntos de dados compatíveis" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 msgid "No compatible schema found" msgstr "Nenhum esquema compatível foi encontrado" +#: superset-frontend/src/profile/components/CreatedContent.tsx:91 msgid "No dashboards" msgstr "Sem paineis" +#: superset-frontend/src/features/home/EmptyState.tsx:35 msgid "No dashboards yet" msgstr "Ainda não há painéis" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 +#: superset-frontend/src/components/Table/index.tsx:207 +#: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:225 +#: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 msgid "No data" msgstr "Sem dados" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 msgid "No data after filtering or data is NULL for the latest time record" msgstr "" -"Não há dados após a filtragem ou os dados são NULL para o último registo de " -"tempo" +"Não há dados após a filtragem ou os dados são NULL para o último registo " +"de tempo" +#: superset/dashboards/commands/importers/v0.py:304 msgid "No data in file" msgstr "Não há dados no arquivo" +#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:274 msgid "No database tables found" msgstr "Nenhuma tabela de banco de dados encontrada" +#: superset-frontend/src/components/EmptyState/index.tsx:228 msgid "No databases match your search" msgstr "Nenhum banco de dados corresponde a sua pesquisa" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:846 msgid "No description available." msgstr "Nenhuma descrição disponível." -msgid "No dimensions available for drill by" -msgstr "Sem dimensões disponível para drill by" - +#: superset-frontend/src/profile/components/Favorites.tsx:61 msgid "No favorite charts yet, go click on stars!" msgstr "Ainda não há gráficos favoritos, clique nas estrelas!" +#: superset-frontend/src/profile/components/Favorites.tsx:89 msgid "No favorite dashboards yet, go click on stars!" msgstr "Ainda não há painéis favoritos, clique nas estrelas!" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1011 +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:35 +#: superset-frontend/src/explore/controls.jsx:326 msgid "No filter" msgstr "Sem filtro" -msgid "No filters" -msgstr "Sem filtros" - -msgid "No filters are currently added to this dashboard." -msgstr "Nenhum filtro foi adicionado a esse painel no momento." - +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:746 msgid "No filter is selected." msgstr "Nenhum filtro selecionado." +#: superset-frontend/src/components/Table/index.tsx:204 +msgid "No filters" +msgstr "Sem filtros" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Horizontal.tsx:152 +msgid "No filters are currently added to this dashboard." +msgstr "Nenhum filtro foi adicionado a esse painel no momento." + +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:680 msgid "No form settings were maintained" msgstr "Nenhuma configuração de formulário foi mantida" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Vertical.tsx:205 msgid "No global filters are currently added" msgstr "Nenhum filtro global está atualmente adicionado" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 msgid "No matching records found" msgstr "Não foram encontrados registros correspondentes" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:72 msgid "No of Bins" msgstr "Número de lixeiras" +#: superset-frontend/src/features/home/EmptyState.tsx:36 msgid "No recents yet" msgstr "Ainda não há registros" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:204 +#: superset/templates/appbuilder/general/widgets/base_list.html:64 msgid "No records found" msgstr "Não foram encontrados registos" +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:137 +#: superset-frontend/src/explore/components/DataTablesPane/components/SingleQueryResultPane.tsx:64 msgid "No results" msgstr "Nenhum resultado" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:428 msgid "No results found" msgstr "Não foram encontrados resultados" +#: superset-frontend/src/components/ListView/ListView.tsx:411 msgid "No results match your filter criteria" msgstr "Nenhum resultado corresponde aos seus critérios de filtragem" +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:289 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 msgid "No results were returned for this query" msgstr "Não foram apresentados resultados para esta consulta" +#: superset-frontend/packages/superset-ui-core/src/chart/components/NoResultsComponent.tsx:65 msgid "" "No results were returned for this query. If you expected results to be " "returned, ensure any filters are configured properly and the datasource " "contains data for the selected time range." msgstr "" -"Não foram apresentados resultados para esta consulta. Se esperava que fossem " -"devolvidos resultados, certifique-se de que todos os filtros estão " -"corretamente configurados e que a fonte de dados contém dados para o " +"Não foram apresentados resultados para esta consulta. Se esperava que " +"fossem devolvidos resultados, certifique-se de que todos os filtros estão" +" corretamente configurados e que a fonte de dados contém dados para o " "intervalo de tempo selecionado." +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:284 msgid "No rows were returned for this dataset" msgstr "Não foram devolvidas linhas para este conjunto de dados" +#: superset-frontend/src/explore/components/DataTablesPane/components/SamplesPane.tsx:119 msgid "No samples were returned for this dataset" msgstr "Não foram devolvidas amostras para este conjunto de dados" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:299 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:317 msgid "No saved expressions found" msgstr "Nenhuma expressão salva foi encontrada" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 msgid "No saved metrics found" msgstr "Nenhuma métrica salva foi encontrada" +#: superset-frontend/src/features/home/EmptyState.tsx:37 msgid "No saved queries yet" msgstr "Ainda não há consultas salvas" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:173 msgid "No stored results found, you need to re-run your query" msgstr "" "Não foram encontrados resultados armazenados, é necessário executar " "novamente a consulta" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:337 msgid "No such column found. To filter on a metric, try the Custom SQL tab." msgstr "" -"Não foi encontrada tal coluna. Para filtrar uma métrica, experimente a aba " -"SQL personalizado." +"Não foi encontrada tal coluna. Para filtrar uma métrica, experimente a " +"aba SQL personalizado." +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:67 msgid "No table columns" msgstr "Nenhuma coluna da tabela" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:298 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:316 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:351 msgid "No temporal columns found" msgstr "Não foram encontradas colunas temporais" +#: superset-frontend/src/filters/components/TimeColumn/TimeColumnFilterPlugin.tsx:85 msgid "No time columns" msgstr "Sem colunas de tempo" +#: superset/databases/commands/exceptions.py:152 msgid "No validator found (configured for the engine)" msgstr "Sem validador encontrado (configurado para o motor)" +#: superset/databases/commands/validate_sql.py:114 msgid "No validator named {} found (configured for the {} engine)" msgstr "Sem validador nomeado {} encontrado (configurado para o motor {})" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:156 msgid "Node label position" msgstr "Posição do rótulo do nó" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:183 msgid "Node select mode" msgstr "Modo de seleção de nó" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:214 msgid "Node size" msgstr "Tamanho do nó" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:187 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:270 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:286 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:253 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:135 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:182 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:402 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:182 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:243 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:124 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:196 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:576 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:51 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:138 +#: superset-frontend/src/explore/controlPanels/sections.tsx:134 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:127 msgid "None" msgstr "Nenhum" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:130 msgid "None -> Arrow" msgstr "Nenhum -> Seta" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:129 msgid "None -> None" msgstr "Nenhum -> Nenhum" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:77 msgid "Normal" msgstr "Normal" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:166 msgid "Normalize Across" msgstr "Normalizar em" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:329 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:127 msgid "Normalized" msgstr "Normalizado" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:74 msgid "Not Time Series" msgstr "Não é uma série temporal" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:180 msgid "Not added to any dashboard" msgstr "Não adicionado a nenhum painel" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:191 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:195 +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:72 msgid "Not available" msgstr "Não disponível" +#: superset-frontend/src/explore/constants.ts:60 msgid "Not equal to (≠)" msgstr "Diferente de (≠)" +#: superset-frontend/src/explore/constants.ts:72 msgid "Not in" msgstr "Não está em" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:120 msgid "Not null" msgstr "Não nulo" +#: superset-frontend/src/pages/AlertReportList/index.tsx:65 msgid "Not triggered" msgstr "Não acionado" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:89 msgid "Not up to date" msgstr "Não atualizado" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:87 +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:97 msgid "Nothing triggered" msgstr "Nada foi acionado" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:410 +#: superset-frontend/src/pages/AlertReportList/index.tsx:302 msgid "Notification method" msgstr "Método de notificação" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:76 msgid "November" msgstr "Novembro" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:89 msgid "Now" msgstr "Agora" +#: superset/views/database/forms.py:211 msgid "Null Values" msgstr "Valores nulos" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:184 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:258 msgid "Null imputation" msgstr "Imputação nula" +#: superset/datasets/filters.py:26 msgid "Null or Empty" msgstr "Nulo ou Vazio" +#: superset/views/database/forms.py:402 msgid "Null values" msgstr "Valores nulos" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 msgid "Number Format" msgstr "Formato do número" -msgid "Number format" -msgstr "Formato numérico" - -msgid "Number format string" -msgstr "String de formato de número" - +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:307 msgid "" "Number bounds used for color encoding from red to blue.\n" " Reverse the numbers for blue to red. To get pure red or " "blue,\n" " you can enter either only min or max." msgstr "" -"Limites numéricos utilizados para a codificação de cores de vermelho para " -"azul.\n" +"Limites numéricos utilizados para a codificação de cores de vermelho para" +" azul.\n" " Inverta os números de azul para vermelho. Para obter vermelho ou azul " "puro,\n" " pode introduzir apenas o mínimo ou o máximo." +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:60 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:65 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:144 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:67 +#: superset-frontend/plugins/legacy-plugin-chart-treemap/src/controlPanel.ts:67 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:137 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:276 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:137 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:113 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:145 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:137 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:113 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:317 +msgid "Number format" +msgstr "Formato numérico" + +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:323 +msgid "Number format string" +msgstr "String de formato de número" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:136 msgid "Number of buckets to group data" msgstr "Número de compartimentos para agrupar dados" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:70 msgid "Number of decimal digits to round numbers to" msgstr "Número de dígitos decimais para arredondar os números" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:92 msgid "Number of decimal places with which to display lift values" msgstr "Número de casas decimais para exibir valores de elevação" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:79 msgid "Number of decimal places with which to display p-values" msgstr "Número de casas decimais para exibir valores-p" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:251 msgid "Number of periods to compare against" msgstr "Número de períodos para comparar com" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:262 msgid "Number of periods to ratio against" msgstr "Número de períodos para razão contra" +#: superset/views/database/forms.py:265 msgid "Number of rows of file to read" msgstr "Número de linhas do arquivo a ser lido" -msgid "Number of rows to skip at start of file" -msgstr "Número de linhas a serem ignoradas no início do arquivo" - -msgid "Numerical range" -msgstr "Faixa numérica" - +#: superset/views/database/forms.py:371 msgid "Number of rows of file to read." msgstr "Número de linhas do arquivo a ser lido." +#: superset/views/database/forms.py:271 +msgid "Number of rows to skip at start of file" +msgstr "Número de linhas a serem ignoradas no início do arquivo" + +#: superset/views/database/forms.py:365 msgid "Number of rows to skip at start of file." msgstr "Número de linhas para pular no início do arquivo." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:227 msgid "Number of split segments on the axis" msgstr "Número de segmentos divididos no eixo" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:120 msgid "Number of steps to take between ticks when displaying the X scale" msgstr "Número de passos a dar entre os tiques ao apresentar a escala X" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:136 msgid "Number of steps to take between ticks when displaying the Y scale" msgstr "Número de passos a dar entre os tiques ao apresentar a escala Y" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:319 +msgid "Numerical range" +msgstr "Faixa numérica" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:100 msgid "OCT" msgstr "OUT" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 +#: superset-frontend/src/components/Modal/Modal.tsx:238 +#: superset-frontend/src/components/Table/index.tsx:202 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:865 msgid "OK" msgstr "OK" +#: superset-frontend/src/components/ImportModal/index.tsx:267 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1434 msgid "OVERWRITE" msgstr "SOBRESCREVER" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:75 msgid "October" msgstr "Outubro" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:157 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:178 msgid "Offline" msgstr "Offline" +#: superset/connectors/sqla/views.py:392 msgid "Offset" msgstr "Deslocamento" +#: superset-frontend/src/pages/AlertReportList/index.tsx:66 msgid "On Grace" msgstr "Na Graça" +#: superset-frontend/src/explore/controls.jsx:126 msgid "" -"One or many columns to group by. High cardinality groupings should include a " -"series limit to limit the number of fetched and rendered series." -msgstr "" -"Uma ou várias colunas para agrupar. Os agrupamentos de elevada cardinalidade " -"devem incluir um limite de séries para limitar o número de séries obtidas e " -"processadas." - -msgid "" -"One or many columns to group by. High cardinality groupings should include a " -"sort by metric and series limit to limit the number of fetched and rendered " +"One or many columns to group by. High cardinality groupings should " +"include a series limit to limit the number of fetched and rendered " "series." msgstr "" -"Uma ou várias colunas para agrupar. Os agrupamentos de elevada cardinalidade " -"devem incluir uma ordenação por métrica e um limite de séries para limitar o " -"número de séries obtidas e processadas." +"Uma ou várias colunas para agrupar. Os agrupamentos de elevada " +"cardinalidade devem incluir um limite de séries para limitar o número de " +"séries obtidas e processadas." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:73 +msgid "" +"One or many columns to group by. High cardinality groupings should " +"include a sort by metric and series limit to limit the number of fetched " +"and rendered series." +msgstr "" +"Uma ou várias colunas para agrupar. Os agrupamentos de elevada " +"cardinalidade devem incluir uma ordenação por métrica e um limite de " +"séries para limitar o número de séries obtidas e processadas." + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:111 +#, fuzzy +msgid "One or many columns to pivot as columns" +msgstr "Um ou mais controles a dinamizar como colunas" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:328 msgid "" "One or many controls to group by. If grouping, latitude and longitude " "columns must be present." msgstr "" -"Um ou vários controles para agrupar. Em caso de agrupamento, as colunas de " -"latitude e longitude devem estar presentes." +"Um ou vários controles para agrupar. Em caso de agrupamento, as colunas " +"de latitude e longitude devem estar presentes." +#: superset-frontend/src/explore/controls.jsx:245 msgid "One or many controls to pivot as columns" msgstr "Um ou mais controles a dinamizar como colunas" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:169 +#: superset-frontend/src/explore/controls.jsx:162 msgid "One or many metrics to display" msgstr "Uma ou muitos métricas para exibir" +#: superset/datasets/commands/exceptions.py:107 msgid "One or more columns already exist" msgstr "Uma ou mais colunas já existem" +#: superset/datasets/commands/exceptions.py:97 msgid "One or more columns are duplicated" msgstr "Uma ou mais colunas estão duplicadas" +#: superset/datasets/commands/exceptions.py:87 msgid "One or more columns do not exist" msgstr "Um ou mais colunas não existem" +#: superset/datasets/commands/exceptions.py:136 msgid "One or more metrics already exist" msgstr "Uma ou mais métricas já existem" +#: superset/datasets/commands/exceptions.py:126 msgid "One or more metrics are duplicated" msgstr "Um ou mais métricas estão duplicadas" +#: superset/datasets/commands/exceptions.py:116 msgid "One or more metrics do not exist" msgstr "Um ou mais métricas não existem" -msgid "" -"One or more required fields are missing in the request. Please try again, " -"and if the problem persists contact your administrator." -msgstr "" -"Um ou mais campos obrigatórios estão em falta no pedido. Tente novamente e, " -"se o problema persistir, contate o seu administrador." - -msgid "One ore more annotation layers failed loading." -msgstr "Falha no carregamento de uma ou mais camadas de anotação." - +#: superset/errors.py:119 msgid "One or more parameters needed to configure a database are missing." msgstr "" -"Um ou mais parâmetros necessários para configurar um banco de dados estão " -"faltando." +"Um ou mais parâmetros necessários para configurar um banco de dados estão" +" faltando." +#: superset/errors.py:133 msgid "One or more parameters specified in the query are malformatted." msgstr "Um ou mais parâmetros especificados na consulta estão malformatados." +#: superset/errors.py:107 msgid "One or more parameters specified in the query are missing." msgstr "Um ou mais parâmetros especificados na consulta estão faltando." +#: superset/views/core.py:2029 +msgid "" +"One or more required fields are missing in the request. Please try again," +" and if the problem persists contact your administrator." +msgstr "" +"Um ou mais campos obrigatórios estão em falta no pedido. Tente novamente " +"e, se o problema persistir, contate o seu administrador." + +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:56 +msgid "One ore more annotation layers failed loading." +msgstr "Falha no carregamento de uma ou mais camadas de anotação." + +#: superset/sql_lab.py:228 msgid "Only SELECT statements are allowed against this database." msgstr "Somente comandos SELECT são permitidos nesse banco de dados." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:133 msgid "Only Total" msgstr "Apenas Total" +#: superset/connectors/sqla/utils.py:122 msgid "Only `SELECT` statements are allowed" msgstr "Apenas instruções `SELECT` são permitidas" -msgid "Only applies when \"Label Type\"is not set to a percentage." +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 +#, fuzzy +msgid "Only applies when \"Label Type\" is not set to a percentage." msgstr "" -"Só se aplica quando \"Label Type\" (Tipo de rótulo) não está definido para " -"uma porcentagem." +"Só se aplica quando \"Label Type\" (Tipo de rótulo) não está definido " +"para uma porcentagem." -msgid "Only applies when \"Label Type\"is set to show values." +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 +#, fuzzy +msgid "Only applies when \"Label Type\" is set to show values." msgstr "" "Só se aplica quando \"Label Type\" (Tipo de rótulo) está definido para " "mostrar valores." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/FilterScope.tsx:137 msgid "Only selected panels will be affected by this filter" msgstr "Apenas os painéis selecionados serão afetados por este filtro" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 msgid "" -"Only show the total value on the stacked chart, and not show on the selected " -"category" +"Only show the total value on the stacked chart, and not show on the " +"selected category" msgstr "" "Mostrar apenas o valor total no gráfico empilhado, e não mostrar na " "categoria selecionada" +#: superset/connectors/sqla/utils.py:131 msgid "Only single queries supported" msgstr "Só são suportadas consultas únicas" +#: superset/views/database/forms.py:119 superset/views/database/forms.py:298 +#: superset/views/database/forms.py:436 +#, python-format msgid "Only the following file extensions are allowed: %(allowed_extensions)s" msgstr "" -"Só as seguintes extensões de arquivo são permitidas: %(allowed_extensions)s" +"Só as seguintes extensões de arquivo são permitidas: " +"%(allowed_extensions)s" +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:45 msgid "Oops! An error occurred!" msgstr "Ops! Ocorreu um erro!" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:248 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:119 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:198 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:701 msgid "Opacity" msgstr "Opacidade" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:99 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:111 msgid "Opacity of Area Chart. Also applies to confidence band." msgstr "Opacidade do gráfico de áreas. Também se aplica à banda de confiança." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:251 msgid "Opacity of all clusters, points, and labels. Between 0 and 1." msgstr "Opacidade de todos os clusters, pontos e rótulos. Entre 0 e 1." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:204 msgid "Opacity of area chart." msgstr "Opacidade do gráfico de área." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:125 msgid "Opacity, expects values between 0 and 100" msgstr "Opacidade, espera valores entre 0 e 100" +#: superset-frontend/src/explore/components/ExploreViewContainer/index.jsx:649 msgid "Open Datasource tab" msgstr "Abrir aba fonte de dados" +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:38 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:142 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:122 msgid "Open in SQL Lab" msgstr "Abrir no SQL Lab" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:335 msgid "Open query in SQL Lab" msgstr "Abrir consulta no SQL Lab" -msgid "Operator" -msgstr "Operador" - +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 +#: superset/views/database/mixins.py:104 msgid "" "Operate the database in asynchronous mode, meaning that the queries are " "executed on remote workers as opposed to on the web server itself. This " -"assumes that you have a Celery worker setup as well as a results backend. " -"Refer to the installation docs for more information." +"assumes that you have a Celery worker setup as well as a results backend." +" Refer to the installation docs for more information." msgstr "" -"Operar o banco de dados em modo assíncrono, o que significa que as consultas " -"são executadas em workers remotos e não no próprio servidor Web. Isso " -"pressupõe que você tenha uma configuração do Celery worker, bem como um " -"backend de resultados. Consulte os documentos de instalação para obter mais " -"informações." +"Operar o banco de dados em modo assíncrono, o que significa que as " +"consultas são executadas em workers remotos e não no próprio servidor " +"Web. Isso pressupõe que você tenha uma configuração do Celery worker, bem" +" como um backend de resultados. Consulte os documentos de instalação para" +" obter mais informações." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 +msgid "Operator" +msgstr "Operador" + +#: superset/utils/pandas_postprocessing/utils.py:158 +#, python-format msgid "Operator undefined for aggregator: %(name)s" msgstr "Operador indefinido para o agregador: %(name)s" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:381 msgid "" -"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on " -"certain database engines." +"Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" +" certain database engines." msgstr "" -"Conteúdo CA_BUNDLE opcional para validar pedidos HTTPS. Apenas disponível em " -"determinados motores de banco de dados." +"Conteúdo CA_BUNDLE opcional para validar pedidos HTTPS. Apenas disponível" +" em determinados motores de banco de dados." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:329 msgid "Optional d3 date format string" msgstr "Cadeia de caracteres opcional de formato de data d3" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:318 msgid "Optional d3 number format string" msgstr "String opcional de formato de número d3" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:74 msgid "Optional name of the data column." msgstr "Nome opcional da coluna de dados." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1248 msgid "Optional warning about use of this metric" msgstr "Aviso opcional sobre o uso dessa métrica" -msgid "Optionally add a detailed description" -msgstr "Opcionalmente, adicionar uma descrição detalhada" - +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:39 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:68 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:45 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:70 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:167 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:263 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:378 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:52 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:68 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:133 msgid "Options" msgstr "Opções" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:973 msgid "Or choose from a list of other databases we support:" -msgstr "" -"Ou escolha a partir de uma lista de outros bancos de dados que suportamos:" +msgstr "Ou escolha a partir de uma lista de outros bancos de dados que suportamos:" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:62 msgid "Order by entity id" msgstr "Pedido por id da entidade" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:278 msgid "Order results by selected columns" msgstr "Ordenar resultados por colunas selecionadas" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:28 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:277 msgid "Ordering" msgstr "Pedidos" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:83 msgid "Orientation" msgstr "Orientação" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:284 msgid "Orientation of bar chart" msgstr "Orientação do gráfico de barras" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 msgid "Orientation of filter bar" msgstr "Orientação de barra de filtro" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:143 msgid "Orientation of tree" msgstr "Orientação da árvore" +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:75 msgid "Original" msgstr "Original" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:213 msgid "Original table column order" msgstr "Ordem das colunas da tabela original" +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 +#: superset-frontend/src/explore/controls.jsx:79 msgid "Original value" msgstr "Valor original" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:121 msgid "Orthogonal" msgstr "Ortogonal" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:126 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:479 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:993 +#: superset-frontend/src/features/home/EmptyState.tsx:112 +#: superset/views/database/forms.py:165 superset/views/database/forms.py:171 msgid "Other" msgstr "Outro" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:236 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:379 msgid "Outdoors" msgstr "Ao ar livre" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:204 msgid "Outer Radius" msgstr "Raio Exterior" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:210 msgid "Outer edge of Pie chart" msgstr "Borda externa do gráfico de pizza" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:253 msgid "Overlap" msgstr "Sobreposição" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:123 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:199 msgid "" -"Overlay one or more timeseries from a relative time period. Expects relative " -"time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 " -"days). Free text is supported." +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." +msgstr "" +"Sobrepor um ou mais séries temporais de um período de tempo relativo. " +"Espera deltas de tempo relativo em linguagem natural (exemplo: 24 horas, " +"7 dias , 52 semanas , 365 dias). Livre texto é suportado." + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:317 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:467 +#: superset-frontend/src/explore/controlPanels/sections.tsx:195 +msgid "" +"Overlay one or more timeseries from a relative time period. Expects " +"relative time deltas in natural language (example: 24 hours, 7 days, 52 " +"weeks, 365 days). Free text is supported." msgstr "" "Sobrepor uma ou mais séries temporais de um período de tempo relativo. " -"Espera deltas de tempo relativos em linguagem natural (exemplo: 24 horas, 7 " -"dias, 52 semanas, 365 dias). Há suporte para texto livre." +"Espera deltas de tempo relativos em linguagem natural (exemplo: 24 horas," +" 7 dias, 52 semanas, 365 dias). Há suporte para texto livre." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:27 +msgid "" +"Overlays a hexagonal grid on a map, and aggregates data within the " +"boundary of each cell." +msgstr "" +"Sobrepõe uma grade hexagonal em um mapa e agrega dados dentro do limite " +"de cada célula." + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:617 +#, fuzzy +msgid "Override time grain" +msgstr "Intervalo de tempo de substituição" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:599 msgid "Override time range" msgstr "Intervalo de tempo de substituição" -msgid "" -"Overlay one or more timeseries from a relative time period. Expects relative " -"time deltas in natural language (example: 24 hours, 7 days, 52 weeks, 365 " -"days). Free text is supported." -msgstr "" -"Sobrepor um ou mais séries temporais de um período de tempo relativo. Espera " -"deltas de tempo relativo em linguagem natural (exemplo: 24 horas, 7 dias , " -"52 semanas , 365 dias). Livre texto é suportado." - -msgid "" -"Overlays a hexagonal grid on a map, and aggregates data within the boundary " -"of each cell." -msgstr "" -"Sobrepõe uma grade hexagonal em um mapa e agrega dados dentro do limite de " -"cada célula." - +#: superset-frontend/src/components/ImportModal/index.tsx:426 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:493 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:463 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:464 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:148 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 msgid "Overwrite" msgstr "Sobrescrever" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:247 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 msgid "Overwrite & Explore" msgstr "Sobrescrever & Explorar" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:178 +#, python-format msgid "Overwrite Dashboard [%s]" msgstr "Substituir o Painel [%s]" +#: superset/views/database/forms.py:247 msgid "Overwrite Duplicate Columns" msgstr "Substituir colunas duplicadas" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:412 msgid "Overwrite existing" msgstr "Sobrescrever existente" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:285 msgid "Overwrite text in the editor with a query on this table" msgstr "Substituir o texto no editor por uma consulta nesta tabela" +#: superset/charts/filters.py:141 msgid "Owned Created or Favored" msgstr "Próprio Criado ou Favorecido" +#: superset-frontend/src/pages/AlertReportList/index.tsx:452 +#: superset-frontend/src/pages/ChartList/index.tsx:608 +#: superset-frontend/src/pages/DashboardList/index.tsx:523 +#: superset-frontend/src/pages/DatasetList/index.tsx:511 msgid "Owner" msgstr "Proprietário" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:93 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:408 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:422 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:441 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:455 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:480 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:483 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:527 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:531 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:254 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 +#: superset-frontend/src/pages/AlertReportList/index.tsx:324 +#: superset-frontend/src/pages/DashboardList/index.tsx:369 +#: superset-frontend/src/pages/DatasetList/index.tsx:400 +#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:82 +#: superset/views/dashboard/mixin.py:81 msgid "Owners" msgstr "Proprietários" +#: superset/commands/exceptions.py:112 +#: superset/datasets/commands/exceptions.py:161 msgid "Owners are invalid" msgstr "Proprietários são inválidos" +#: superset/views/dashboard/mixin.py:64 msgid "Owners is a list of users who can alter the dashboard." msgstr "Os proprietários são uma lista de usuários que podem alterar o painel." +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:494 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:542 msgid "" -"Owners is a list of users who can alter the dashboard. Searchable by name or " -"username." +"Owners is a list of users who can alter the dashboard. Searchable by name" +" or username." msgstr "" "Os proprietários são uma lista de usuários que podem alterar o painel. " "Pesquisável por nome ou nome de usuário." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:403 msgid "Page length" msgstr "Comprimento da página" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:29 msgid "Paired t-test Table" msgstr "Tabela teste-t pareado" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:193 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:380 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:262 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:534 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:267 +#: superset-frontend/src/explore/controlPanels/sections.tsx:258 msgid "Pandas resample method" msgstr "Métodos de reamostragem do Pandas" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:172 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:362 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:244 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:514 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:245 +#: superset-frontend/src/explore/controlPanels/sections.tsx:240 msgid "Pandas resample rule" msgstr "Regra de reamostragem do Pandas" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 +#: superset/viz.py:2152 msgid "Parallel Coordinates" msgstr "Coordenadas paralelas" +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:116 msgid "Parameter error" msgstr "Erro de parâmetro" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:56 +#: superset/views/chart/mixin.py:83 msgid "Parameters" msgstr "Parâmetros" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:108 +#, fuzzy +msgid "Parameters " +msgstr "Parâmetros" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:295 msgid "Parameters related to the view and perspective on the map" msgstr "Parâmetros relacionados com a visão e a perspectiva no mapa" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:61 msgid "Parent" msgstr "Pai" +#: superset/views/database/forms.py:376 msgid "Parse Dates" msgstr "Analisar datas" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:26 +#: superset-frontend/plugins/legacy-plugin-chart-treemap/src/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:54 msgid "Part of a Whole" msgstr "Parte de um Todo" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:29 msgid "Partition Chart" msgstr "Gráfico de partição" +#: superset/viz.py:3069 msgid "Partition Diagram" msgstr "Diagrama de partição" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:169 msgid "Partition Limit" msgstr "Limite de partição" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:182 msgid "Partition Threshold" msgstr "Limiar de partição" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:185 msgid "" -"Partitions whose height to parent height proportions are below this value " -"are pruned" +"Partitions whose height to parent height proportions are below this value" +" are pruned" msgstr "" "As partições cujas proporções entre a altura e a altura dos pais sejam " "inferiores a este valor são eliminadas" -msgid "Paste Private Key here" -msgstr "Cole a chave privada aqui" - +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 +#: superset/db_engine_specs/base.py:1870 +#: superset/db_engine_specs/clickhouse.py:202 msgid "Password" msgstr "Senha" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:185 +msgid "Paste Private Key here" +msgstr "Cole a chave privada aqui" + +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:120 msgid "Paste content of service credentials JSON file here" msgstr "Colar aqui o conteúdo do arquivo JSON das credenciais de serviço" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/TableCatalog.tsx:87 msgid "Paste the shareable Google Sheet URL here" msgstr "Colar o URL compartilhável da Planilha Google aqui" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:37 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:50 msgid "Pattern" msgstr "Padrão" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:101 msgid "Percent Change" msgstr "Variação percentual" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:105 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:66 msgid "Percentage" msgstr "Porcentagem" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:142 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:334 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:216 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:486 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:67 +#: superset-frontend/src/explore/controlPanels/sections.tsx:212 msgid "Percentage change" msgstr "Variação percentual" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:33 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:125 msgid "Percentage metrics" msgstr "Métricas de porcentagem" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:148 msgid "Percentage threshold" msgstr "Limiar da Porcentagem" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:41 +#: superset-frontend/plugins/legacy-plugin-chart-treemap/src/index.js:45 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:51 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:67 +#: superset-frontend/src/visualizations/TimeTable/index.ts:36 msgid "Percentages" msgstr "Porcentagens" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:229 msgid "Performance" msgstr "Desempenho" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:74 msgid "Period average" msgstr "Média do período" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:56 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:271 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:153 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:420 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:200 +#: superset-frontend/src/explore/controlPanels/sections.tsx:150 msgid "Periods" msgstr "Períodos" +#: superset/utils/pandas_postprocessing/prophet.py:126 msgid "Periods must be a whole number" msgstr "Os períodos devem ser um número inteiro" +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:382 msgid "Person or group that has certified this chart." msgstr "Pessoa ou grupo que certificou este gráfico." +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:718 msgid "Person or group that has certified this dashboard." msgstr "Pessoa ou grupo que certificou esse painel." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:333 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1224 msgid "Person or group that has certified this metric" msgstr "Pessoa ou grupo que certificou esta métrica" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1114 +#: superset-frontend/src/pages/DatasetList/index.tsx:353 +#: superset-frontend/src/pages/DatasetList/index.tsx:571 msgid "Physical" msgstr "Físico" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:150 msgid "Physical (table or view)" msgstr "Físico (tabela ou view)" +#: superset-frontend/src/pages/DatasetList/index.tsx:284 msgid "Physical dataset" msgstr "Conjunto de dados físicos" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:106 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:143 msgid "Pick a dimension from which categorical colors are defined" -msgstr "" -"Escolha uma dimensão a partir da qual as cores categóricas são definidas" +msgstr "Escolha uma dimensão a partir da qual as cores categóricas são definidas" +#: superset/viz.py:795 msgid "Pick a granularity in the Time section or uncheck 'Include Time'" msgstr "" -"Escolha uma granularidade na seção Tempo ou desmarque a opção 'Incluir tempo'" +"Escolha uma granularidade na seção Tempo ou desmarque a opção 'Incluir " +"tempo'" +#: superset/viz.py:1514 msgid "Pick a metric for left axis!" msgstr "Escolha uma métrica para o eixo esquerdo!" +#: superset/viz.py:1516 msgid "Pick a metric for right axis!" msgstr "Escolha uma métrica para o eixo direito!" +#: superset/viz.py:1090 msgid "Pick a metric for x, y and size" msgstr "Escolha uma métrica para x, y e tamanho" +#: superset/viz.py:1131 msgid "Pick a metric to display" msgstr "Escolha uma métrica para exibir" +#: superset/viz.py:1159 superset/viz.py:1195 msgid "Pick a metric!" msgstr "Escolha uma métrica!" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:70 msgid "Pick a name to help you identify this database." msgstr "Escolha um nome para te ajudar identificar esse banco de dados." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:196 msgid "Pick a nickname for how the database will display in Superset." msgstr "" -"Escolha um apelido para a forma como o banco de dados será exibido no Superset." +"Escolha um apelido para a forma como o banco de dados será exibido no " +"Superset." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:40 msgid "Pick a set of deck.gl charts to layer on top of one another" msgstr "" -"Escolha um conjunto de gráficos deck.gl para colocar em camadas uns sobre os " -"outros" +"Escolha um conjunto de gráficos deck.gl para colocar em camadas uns sobre" +" os outros" +#: superset/viz.py:1294 superset/viz.py:1564 msgid "Pick a time granularity for your time series" msgstr "Escolha uma granularidade de tempo para sua série temporal" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:575 msgid "Pick a title for you annotation." msgstr "Escolha um título para a sua anotação." +#: superset/viz.py:1732 msgid "Pick at least one field for [Series]" msgstr "Escolha no ao menos um campo para [Série]" +#: superset/viz.py:887 superset/viz.py:1730 msgid "Pick at least one metric" msgstr "Escolha ao menos uma métrica" +#: superset/viz.py:1863 msgid "Pick exactly 2 columns as [Source / Target]" msgstr "Escolha exatamente 2 colunas como [Origem / Destino]" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:586 msgid "" "Pick one or more columns that should be shown in the annotation. If you " "don't select a column all of them will be shown." msgstr "" -"Selecione uma ou mais colunas que devem ser mostradas na anotação. Se não " -"selecionar uma coluna, todas as colunas serão mostradas." +"Selecione uma ou mais colunas que devem ser mostradas na anotação. Se não" +" selecionar uma coluna, todas as colunas serão mostradas." +#: superset-frontend/src/explore/controlPanels/Separator.js:37 msgid "Pick your favorite markup language" msgstr "Escolha sua linguagem de marcação favorita" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/index.js:27 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:67 msgid "Pie Chart" msgstr "Gráfico de pizza" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:198 msgid "Pie shape" msgstr "Formato de torta" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:235 msgid "Pin" msgstr "Pino" -msgid "Pivoted" -msgstr "Pivotado" - -msgid "Pivot Options" -msgstr "Opções de pivô" - +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 msgid "Pivot Table" msgstr "Tabela Pivô" -msgid "Pivot Table (legacy)" -msgstr "Tabela Pivô (legado)" - +#: superset/utils/pandas_postprocessing/pivot.py:70 msgid "Pivot operation must include at least one aggregate" msgstr "A operação de pivotagem deve incluir pelo menos um agregado" +#: superset/utils/pandas_postprocessing/pivot.py:66 msgid "Pivot operation requires at least one index" msgstr "A operação de pivotagem requer em ao menos um índice" +#: superset-frontend/src/explore/components/ExportToCSVDropdown/index.tsx:81 +msgid "Pivoted" +msgstr "Pivotado" + +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:75 msgid "Pixel height of each series" msgstr "Altura do pixel de cada série" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:143 msgid "Pixels" msgstr "Pixels" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 msgid "Plain" msgstr "Simples" -msgid "Please DO NOT overwrite the \"filter_scopes\"key." +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:795 +#, fuzzy +msgid "Please DO NOT overwrite the \"filter_scopes\" key." msgstr "Por favor , NÃO sobrescreva a chave \"filter_scopes \"." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:26 msgid "Please apply filter changes" msgstr "Aplicar alterações ao filtro" +#: superset/sqllab/query_render.py:118 msgid "" "Please check your query and confirm that all template parameters are " -"surround by double braces, for example, \"{{ ds }}\". Then, try running your " -"query again." +"surround by double braces, for example, \"{{ ds }}\". Then, try running " +"your query again." msgstr "" -"Verifique a sua consulta e confirme se todos os parâmetros do modelo estão " -"entre parênteses duplos, por exemplo, \"{{ ds }}\". Em seguida , tente " -"executar sua consulta novamente." +"Verifique a sua consulta e confirme se todos os parâmetros do modelo " +"estão entre parênteses duplos, por exemplo, \"{{ ds }}\". Em seguida , " +"tente executar sua consulta novamente." +#: superset/db_engine_specs/athena.py:56 +#: superset/db_engine_specs/bigquery.py:211 +#: superset/db_engine_specs/postgres.py:160 +#: superset/db_engine_specs/snowflake.py:117 +#, python-format msgid "" -"Please check your query for syntax errors at or near \"%(syntax_error)s\". " +"Please check your query for syntax errors at or near " +"\"%(syntax_error)s\". Then, try running your query again." +msgstr "" +"Verifique se há erros de sintaxe na consulta ou perto de " +"\"%(error_sintaxe)s \". Em seguida , tente executar sua consulta " +"novamente." + +#: superset/db_engine_specs/gsheets.py:82 superset/db_engine_specs/mysql.py:170 +#, python-format +msgid "" +"Please check your query for syntax errors near \"%(server_error)s\". " "Then, try running your query again." msgstr "" -"Verifique se há erros de sintaxe na consulta ou perto de \"%(error_sintaxe)s " -"\". Em seguida , tente executar sua consulta novamente." +"Verifique se há erros de sintaxe na sua consulta \"%(erro_servidor)s \". " +"Em seguida , tente executar sua consulta novamente." +#: superset/sqllab/query_render.py:38 superset/views/core.py:199 msgid "" -"Please check your query for syntax errors near \"%(server_error)s\". Then, " -"try running your query again." +"Please check your template parameters for syntax errors and make sure " +"they match across your SQL query and Set Parameters. Then, try running " +"your query again." msgstr "" -"Verifique se há erros de sintaxe na sua consulta \"%(erro_servidor)s \". Em " -"seguida , tente executar sua consulta novamente." - -msgid "" -"Please check your template parameters for syntax errors and make sure they " -"match across your SQL query and Set Parameters. Then, try running your query " -"again." -msgstr "" -"Verifique se existem erros de sintaxe nos parâmetros do modelo e certifique-" -"se de que correspondem à consulta SQL e aos parâmetros de definição. Em " -"seguida, tente executar a consulta novamente." - -msgid "Please choose at least one metric" -msgstr "Por favor escolher ao menos uma métrica" - -msgid "Please choose different metrics on left and right axis" -msgstr "Escolha métricas diferentes no eixo esquerdo e direito" - -msgid "Please choose at least one 'Group by' field" -msgstr "Escolha pelo menos um campo 'Agrupar por'" +"Verifique se existem erros de sintaxe nos parâmetros do modelo e " +"certifique-se de que correspondem à consulta SQL e aos parâmetros de " +"definição. Em seguida, tente executar a consulta novamente." +#: superset/viz.py:3234 msgid "Please choose at least one groupby" msgstr "Escolha pelo menos um agrupar por" +#: superset/viz.py:1519 +msgid "Please choose different metrics on left and right axis" +msgstr "Escolha métricas diferentes no eixo esquerdo e direito" + +#: superset-frontend/src/features/charts/ChartCard.tsx:80 +#: superset-frontend/src/features/home/DashboardTable.tsx:246 +#: superset-frontend/src/features/tags/TagCard.tsx:69 +#: superset-frontend/src/pages/AlertReportList/index.tsx:583 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:357 +#: superset-frontend/src/pages/AnnotationList/index.tsx:297 +#: superset-frontend/src/pages/ChartList/index.tsx:506 +#: superset-frontend/src/pages/ChartList/index.tsx:837 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:327 +#: superset-frontend/src/pages/DashboardList/index.tsx:415 +#: superset-frontend/src/pages/DashboardList/index.tsx:701 +#: superset-frontend/src/pages/DashboardList/index.tsx:756 +#: superset-frontend/src/pages/DatasetList/index.tsx:762 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:170 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:304 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:533 +#: superset-frontend/src/pages/Tags/index.tsx:141 +#: superset-frontend/src/pages/Tags/index.tsx:281 msgid "Please confirm" msgstr "Por favor confirme" +#: superset-frontend/src/dashboard/actions/dashboardState.js:447 msgid "Please confirm the overwrite values." msgstr "Por favor, confirme os valores de substituição." -msgid "Please filter set name" -msgstr "Favor filtrar o nome do conjunto" - -msgid "Please reach out to the Chart Owner for assistance." -msgstr "Entre em contato com o proprietário do gráfico para obter ajuda." - +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:641 msgid "Please enter a SQLAlchemy URI to test" msgstr "Por favor insira um URI SQLAlchemy para teste" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:81 +msgid "Please filter set name" +msgstr "Favor filtrar o nome do conjunto" + +#: superset/db_engine_specs/postgres.py:124 msgid "Please re-enter the password." msgstr "Por favor digite a senha novamente." +#: superset-frontend/src/views/CRUD/hooks.ts:439 msgid "Please re-export your file and try importing again" msgstr "Por favor reexportar seu arquivo e tente importar novamente" +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:59 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:72 +#, fuzzy +msgid "Please reach out to the Chart Owner for assistance." +msgid_plural "Please reach out to the Chart Owners for assistance." +msgstr[0] "Entre em contato com o proprietário do gráfico para obter ajuda." +msgstr[1] "" + +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:85 msgid "Please save the query to enable sharing" msgstr "Por favor salvar a consulta para habilitar compartilhamento" +#: superset/reports/commands/exceptions.py:105 msgid "Please save your chart first, then try creating a new email report." msgstr "" "Por favor primeiramente salvar seu gráfico, então tentar crir um novo " "relatório de e-mail." +#: superset/reports/commands/exceptions.py:117 msgid "Please save your dashboard first, then try creating a new email report." msgstr "" -"Por favor, salve primeiro o seu painel e, em seguida, tente criar um novo " -"relatório de e-mail." +"Por favor, salve primeiro o seu painel e, em seguida, tente criar um novo" +" relatório de e-mail." +#: superset-frontend/src/pages/ChartCreation/index.tsx:422 msgid "Please select both a Dataset and a Chart type to proceed" msgstr "" "Por favor selecionar um conjunto de dados e um tipo de gráfico para " "prosseguir" +#: superset/viz.py:1088 msgid "Please use 3 different metric labels" msgstr "Por favor, use 3 diferentes rótulos de métrica" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:27 msgid "Plot the distance (like flight paths) between origin and destination." msgstr "Plota a distância (como rotas de voo) entre origem e destino." +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:29 msgid "" -"Plots the individual metrics for each row in the data vertically and links " -"them together as a line. This chart is useful for comparing multiple metrics " -"across all of the samples or rows in the data." +"Plots the individual metrics for each row in the data vertically and " +"links them together as a line. This chart is useful for comparing " +"multiple metrics across all of the samples or rows in the data." msgstr "" -"Plota os índices individuais para cada linha nos dados verticalmente e os " -"vincula como uma linha. Este gráfico é útil para comparar várias métricas em " -"todas as amostras ou linhas nos dados." - -msgid "Point Color" -msgstr "Cor do ponto" +"Plota os índices individuais para cada linha nos dados verticalmente e os" +" vincula como uma linha. Este gráfico é útil para comparar várias " +"métricas em todas as amostras ou linhas nos dados." +#: superset/initialization/__init__.py:277 msgid "Plugins" msgstr "Plugins" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:132 +msgid "Point Color" +msgstr "Cor do ponto" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:118 msgid "Point Radius" msgstr "Raio do ponto" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:80 msgid "Point Radius Scale" msgstr "Escala do Raio do ponto" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:140 msgid "Point Radius Unit" msgstr "Unidade de raio do ponto" -msgid "Point Unit" -msgstr "Unidade de ponto" - +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:71 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:320 msgid "Point Size" msgstr "Tamanho do ponto" -msgid "Points" -msgstr "Pontos" - -msgid "Polygon Column" -msgstr "Coluna de polígono" - -msgid "Polygon Encoding" -msgstr "Codificação de polígonos" - -msgid "Polygon Settings" -msgstr "Configurações de polígono" - -msgid "Populate \"Default value\" to enable this control" -msgstr "Preencha \"Default value\" para ativar esse controle" - -msgid "Port" -msgstr "Porta" - -msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." -msgstr "A porta %(port)s no nome do host \"%(hostname)s\" recusou a conexão." - -msgid "Pre-filter is required" -msgstr "É necessário um pré-filtro" - -msgid "Predictive" -msgstr "Preditivo" - -msgid "Predictive Analytics" -msgstr "Análise preditiva" - -msgid "Previous Line" -msgstr "Linha anterior" - -msgid "Primary" -msgstr "Primário" - -msgid "Primary Metric" -msgstr "Métrica primária" - -msgid "Primary key" -msgstr "Chave primária" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:79 +msgid "Point Unit" +msgstr "Unidade de ponto" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:54 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:66 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:309 msgid "Point to your spatial columns" msgstr "Apontar para as colunas espaciais" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:111 +msgid "Points" +msgstr "Pontos" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:213 msgid "Points and clusters will update as the viewport is being changed" msgstr "Pontos e clusters serão atualizados conforme a janela de exibição mude" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:68 +msgid "Polygon Column" +msgstr "Coluna de polígono" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:77 +msgid "Polygon Encoding" +msgstr "Codificação de polígonos" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:106 +msgid "Polygon Settings" +msgstr "Configurações de polígono" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:55 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:350 msgid "Polyline" msgstr "Polilinha" +#: superset/views/sql_lab/views.py:87 msgid "Pop Tab Link" msgstr "Pop Tab Link" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:93 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:89 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:51 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:130 msgid "Popular" msgstr "Popular" -msgid "Populate \"Default value\"to enable this control" -msgstr "Preencher \"Default value\"(valor padrão) para habilitar esse controle" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:173 +msgid "Populate \"Default value\" to enable this control" +msgstr "Preencha \"Default value\" para ativar esse controle" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:33 msgid "Population age data" msgstr "Dados sobre a idade da população" -msgid "Port %(port)s on hostname \"%(hostname)s\"refused the connection." -msgstr "Porta %(port)s ligada ao hostname \"%(hostname)s\"recusou a conexão." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:69 +msgid "Port" +msgstr "Porta" +#: superset/db_engine_specs/mssql.py:98 +#: superset/db_engine_specs/postgres.py:134 +#: superset/db_engine_specs/presto.py:699 +#: superset/db_engine_specs/redshift.py:81 +#, python-format +msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." +msgstr "A porta %(port)s no nome do host \"%(hostname)s\" recusou a conexão." + +#: superset/db_engine_specs/ocient.py:269 +msgid "Port out of range 0-65535" +msgstr "" + +#: superset/views/dashboard/mixin.py:86 msgid "Position JSON" msgstr "Posição JSON" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:182 msgid "Position of child node label on tree" msgstr "Posição do rótulo do nó filho na árvore" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:375 msgid "Position of column level subtotal" msgstr "Posição do subtotal ao nível da coluna" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:164 msgid "Position of intermediate node label on tree" msgstr "Posição do rótulo do nó intermédio na árvore" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:358 msgid "Position of row level subtotal" msgstr "Posição do subtotal ao nível da linha" +#: superset-frontend/src/features/home/RightMenu.tsx:496 msgid "Powered by Apache Superset" msgstr "Feito por Apache Superset" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1000 +#, fuzzy +msgid "Pre-filter" +msgstr "Mais filtros" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:959 msgid "Pre-filter available values" msgstr "Valores disponíveis para o pré-filtro" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:647 +msgid "Pre-filter is required" +msgstr "É necessário um pré-filtro" + +#: superset/connectors/sqla/views.py:347 msgid "" "Predicate applied when fetching distinct value to populate the filter " -"control component. Supports jinja template syntax. Applies only when `Enable " -"Filter Select` is on." +"control component. Supports jinja template syntax. Applies only when " +"`Enable Filter Select` is on." msgstr "" -"Predicado aplicado quando se vai buscar um valor distinto para preencher o " -"componente de controle do filtro. Suporta a sintaxe do modelo jinja. Aplica-" -"se apenas quando `Ativar seleção de filtro` está ativado." +"Predicado aplicado quando se vai buscar um valor distinto para preencher " +"o componente de controle do filtro. Suporta a sintaxe do modelo jinja. " +"Aplica-se apenas quando `Ativar seleção de filtro` está ativado." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:44 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:41 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:79 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:73 +msgid "Predictive" +msgstr "Preditivo" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:36 +msgid "Predictive Analytics" +msgstr "Análise preditiva" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:64 msgid "Prefix metric name with slice name" msgstr "Prefixo do nome da métrica com o nome da fatia" +#: superset-frontend/src/dashboard/components/menu/MarkdownModeDropdown.tsx:39 msgid "Preview" msgstr "Pré-visualização" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:209 +#, python-format msgid "Preview: `%s`" msgstr "Pré-visualização: `%s`" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:32 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:126 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:106 msgid "Previous" msgstr "Anterior" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:348 +msgid "Previous Line" +msgstr "Linha anterior" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:245 +msgid "Primary" +msgstr "Primário" + +#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:61 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:157 +msgid "Primary Metric" +msgstr "Métrica primária" + +#: superset-frontend/src/SqlLab/components/ColumnElement/index.tsx:63 +msgid "Primary key" +msgstr "Chave primária" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:251 msgid "Primary or secondary y-axis" msgstr "Eixo y primário ou secundário" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 +#, fuzzy +msgid "Primary y-axis Bounds" +msgstr "Formato do eixo y primário" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:387 msgid "Primary y-axis format" msgstr "Formato do eixo y primário" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:181 msgid "Private Key" msgstr "Chave privada" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:138 msgid "Private Key & Password" msgstr "Chave privada e Senha" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:198 +#, fuzzy +msgid "Private Key Password" +msgstr "Chave privada e Senha" + +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 +#, fuzzy +msgid "Proceed" +msgstr "vermelho" + +#: superset-frontend/src/features/home/RightMenu.tsx:477 msgid "Profile" msgstr "Perfil" +#: superset-frontend/src/profile/components/UserInfo.tsx:44 msgid "Profile picture provided by Gravatar" msgstr "Foto de perfil oferecido por Gravatar" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:235 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:83 msgid "Progress" msgstr "Progresso" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/index.ts:32 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:62 msgid "Progressive" msgstr "Progressivo" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:59 msgid "Propagate" msgstr "Propagar" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:42 +#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 +#: superset-frontend/plugins/legacy-plugin-chart-treemap/src/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:50 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:50 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:68 msgid "Proportional" msgstr "Proporcional" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:85 msgid "Public and privately shared sheets" msgstr "Planilhas compartilhadas públicas e privadas" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:82 msgid "Publicly shared sheets only" msgstr "Apenas Planilhas compartilhadas publicamente" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:101 +#: superset-frontend/src/pages/DashboardList/index.tsx:336 +#: superset-frontend/src/pages/DashboardList/index.tsx:574 +#: superset/views/dashboard/mixin.py:83 msgid "Published" msgstr "Publicado" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:44 msgid "Purple" msgstr "Roxo" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:107 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:160 msgid "Put labels outside" msgstr "Colocar rótulos no exterior" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:163 msgid "Put the labels outside of the pie?" msgstr "Colocar rótulos no exterior da torta?" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:110 msgid "Put the labels outside the pie?" msgstr "Colocar o rótulos fora a torta?" +#: superset-frontend/src/explore/controlPanels/Separator.js:47 msgid "Put your code here" msgstr "Coloque seu código here" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:306 msgid "Python datetime string pattern" msgstr "Padrão de String de data e hora em Python" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1585 msgid "QUERY DATA IN SQL LAB" msgstr "CONSULTAR DADOS NO SQL LAB" +#: superset/db_engine_specs/base.py:110 msgid "Quarter" msgstr "Trimestre" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:68 +#, python-format msgid "Quarters %s" msgstr "Trimestres %s" +#: superset-frontend/src/features/allEntities/AllEntitiesTable.tsx:119 msgid "Queries" msgstr "Consultas" -msgid "Query A" -msgstr "Consulta A" - -msgid "Query B" -msgstr "Consulta B" - +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:43 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:53 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:33 +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:90 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:66 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:46 +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:55 +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:26 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:26 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:36 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:26 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-plugin-chart-treemap/src/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:32 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:63 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:54 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:55 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:41 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:60 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:54 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:45 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:26 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/controlPanel.ts:60 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:158 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:361 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:44 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:34 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:39 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:53 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:44 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:152 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:30 +#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:26 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1471 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 +#: superset-frontend/src/explore/controlPanels/sections.tsx:94 +#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:34 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:31 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:41 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:29 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:186 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:26 msgid "Query" msgstr "Consulta" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:363 +#, python-format msgid "Query %s: %s" msgstr "Consulta %s: %s" -msgid "Query was stopped" -msgstr "A consulta foi interrompida" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:288 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:299 +msgid "Query A" +msgstr "Consulta A" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:290 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:300 +msgid "Query B" +msgstr "Consulta B" + +#: superset/initialization/__init__.py:360 msgid "Query History" msgstr "Histórico de consultas" -msgid "Query history" -msgstr "Histórico de consultas" - +#: superset/commands/exceptions.py:142 msgid "Query does not exist" msgstr "A consulta não existe" -msgid "Query in a new tab" -msgstr "Consulta em uma nova guia" - -msgid "Query is too complex and takes too long to run." -msgstr "A consulta é muito complexa e demora muito para executar." - -msgid "Query mode" -msgstr "Modo de consulta" - -msgid "Query name" -msgstr "Nome da consulta" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:244 +#: superset-frontend/src/features/home/commonMenuData.ts:32 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:95 +msgid "Query history" +msgstr "Histórico de consultas" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:137 msgid "Query imported" msgstr "Consulta importada" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 +msgid "Query in a new tab" +msgstr "Consulta em uma nova guia" + +#: superset/errors.py:131 +msgid "Query is too complex and takes too long to run." +msgstr "A consulta é muito complexa e demora muito para executar." + +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/queryMode.tsx:29 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:90 +msgid "Query mode" +msgstr "Modo de consulta" + +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:127 +msgid "Query name" +msgstr "Nome da consulta" + +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:323 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:325 +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:117 +#: superset-frontend/src/features/queries/SavedQueryPreviewModal.tsx:97 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:400 msgid "Query preview" msgstr "Pré-visualização da consulta" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:415 +msgid "Query was stopped" +msgstr "A consulta foi interrompida" + +#: superset-frontend/src/SqlLab/actions/sqlLab.js:494 msgid "Query was stopped." msgstr "A consulta foi parada." +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:285 +#: superset-frontend/src/explore/components/controls/DateFilterControl/DateFilterLabel.tsx:287 msgid "RANGE TYPE" msgstr "TIPO DA FAIXA" -msgid "Radar" -msgstr "Radar" - -msgid "Radar render type, whether to display 'circle' shape." -msgstr "" -"Tipo de renderização do radar, se deve ser apresentada a forma de 'círculo'." - +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:263 msgid "RGB Color" msgstr "Cor RGB" +#: superset/row_level_security/commands/exceptions.py:29 +#, fuzzy +msgid "RLS Rule could not be deleted." +msgstr "Não foi possível remover o gráfico." + +#: superset/row_level_security/commands/exceptions.py:25 +#, fuzzy +msgid "RLS Rule not found." +msgstr "Agendamento de relatório não encontrado." + +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:159 +msgid "Radar" +msgstr "Radar" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:60 msgid "Radar Chart" msgstr "Gráfico de Radar" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:202 +msgid "Radar render type, whether to display 'circle' shape." +msgstr "" +"Tipo de renderização do radar, se deve ser apresentada a forma de " +"'círculo'." + +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:122 msgid "Radial" msgstr "Radial" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:87 msgid "Radius in kilometers" msgstr "Raio em quilômetros" -msgid "Radius in miles" -msgstr "Raio em milhas" - +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:86 msgid "Radius in meters" msgstr "Raio em metros" -msgid "Range filter plugin using AntD" -msgstr "Plugin de filtro de intervalo usando AntD" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:88 +msgid "Radius in miles" +msgstr "Raio em milhas" +#: superset-frontend/src/features/home/SavedQueries.tsx:292 +#, python-format msgid "Ran %s" msgstr "Corrida %s" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 msgid "Range" msgstr "Faixa" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:319 +#: superset-frontend/src/filters/components/Range/index.ts:28 msgid "Range filter" msgstr "Filtro de faixa" -msgid "Ranges" -msgstr "Faixas" - -msgid "Ranking" -msgstr "Classificação" - -msgid "Ratio" -msgstr "Proporção" - -msgid "Ready to review filters in this dashboard?" -msgstr "Pronto para revisar os filtros desse painel?" +#: superset-frontend/src/filters/components/Range/index.ts:29 +msgid "Range filter plugin using AntD" +msgstr "Plugin de filtro de intervalo usando AntD" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:48 msgid "Range labels" msgstr "Rótulos de intervalo" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:39 +msgid "Ranges" +msgstr "Faixas" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/controlPanel.ts:41 msgid "Ranges to highlight with shading" msgstr "Intervalos a destacar com sombreamento" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:27 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:27 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:54 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:33 +msgid "Ranking" +msgstr "Classificação" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:143 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:335 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:217 +#: superset-frontend/plugins/legacy-plugin-chart-treemap/src/controlPanel.ts:53 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:487 +#: superset-frontend/src/explore/controlPanels/sections.tsx:213 +msgid "Ratio" +msgstr "Proporção" + +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:58 msgid "Raw records" msgstr "Registros Brutos" +#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:64 +msgid "Ready to review filters in this dashboard?" +msgstr "Pronto para revisar os filtros desse painel?" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:86 msgid "Rebuild" msgstr "Reconstruir" +#: superset-frontend/src/profile/components/App.tsx:72 msgid "Recent activity" msgstr "Atividade recente" -msgid "Recently modified" -msgstr "Modificado recentemente" - +#: superset-frontend/src/features/home/EmptyState.tsx:107 msgid "Recently created charts, dashboards, and saved queries will appear here" msgstr "Os gráficos, painéis e consultas recentemente criados aparecerão aqui" +#: superset-frontend/src/features/home/EmptyState.tsx:116 msgid "Recently edited charts, dashboards, and saved queries will appear here" msgstr "Os gráficos, painéis e consultas recentemente editados aparecerão aqui" -msgid "Recently viewed charts, dashboards, and saved queries will appear here" -msgstr "" -"Os gráficos, painéis e consultas recentemente visualizados aparecerão aqui" +#: superset-frontend/src/pages/ChartList/index.tsx:743 +#: superset-frontend/src/pages/DashboardList/index.tsx:617 +#: superset-frontend/src/pages/Tags/index.tsx:223 +msgid "Recently modified" +msgstr "Modificado recentemente" +#: superset-frontend/src/features/home/EmptyState.tsx:102 +msgid "Recently viewed charts, dashboards, and saved queries will appear here" +msgstr "Os gráficos, painéis e consultas recentemente visualizados aparecerão aqui" + +#: superset-frontend/src/pages/Home/index.tsx:368 msgid "Recents" msgstr "Recentes" -msgid "Recipients are separated by \",\"or \";\"" +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:160 +#, fuzzy +msgid "Recipients are separated by \",\" or \";\"" msgstr "Os destinatários são separados por \",\"ou \";\"" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:673 msgid "Recommended tags" msgstr "Etiquetas recomendadas" +#: superset/templates/appbuilder/general/widgets/base_list.html:55 msgid "Record Count" msgstr "Contagem de registos" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:223 msgid "Rectangle" msgstr "Retângulo" -msgid "" -"Redirects to this endpoint when clicking on the table from the table list" +#: superset/connectors/sqla/views.py:353 +msgid "Redirects to this endpoint when clicking on the table from the table list" msgstr "" -"Redireciona para este endpoint quando se clica na tabela a partir da lista " -"de tabelas" +"Redireciona para este endpoint quando se clica na tabela a partir da " +"lista de tabelas" +#: superset-frontend/src/dashboard/components/Header/index.jsx:571 msgid "Redo the action" msgstr "Refazer o ação" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:336 msgid "Reduce X ticks" msgstr "Reduzir X ticks" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:339 +msgid "" +"Reduces the number of X-axis ticks to be rendered. If true, the x-axis " +"will not overflow and labels may be missing. If false, a minimum width " +"will be applied to columns and the width may overflow into an horizontal " +"scroll." +msgstr "" +"Reduz o número de ticks do eixo X a serem processados. Se verdadeiro, o " +"eixo X não transbordará e os rótulos podem estar ausentes. Se falso, será" +" aplicada uma largura mínima às colunas e a largura pode transbordar para" +" um deslocamento horizontal." + +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:92 msgid "Refer to the" msgstr "Consulte o" -msgid "" -"Reduces the number of X-axis ticks to be rendered. If true, the x-axis will " -"not overflow and labels may be missing. If false, a minimum width will be " -"applied to columns and the width may overflow into an horizontal scroll." -msgstr "" -"Reduz o número de ticks do eixo X a serem processados. Se verdadeiro, o eixo " -"X não transbordará e os rótulos podem estar ausentes. Se falso, será " -"aplicada uma largura mínima às colunas e a largura pode transbordar para um " -"deslocamento horizontal." - +#: superset/utils/pandas_postprocessing/utils.py:125 msgid "Referenced columns not available in DataFrame." msgstr "As colunas referenciadas não estão disponíveis no DataFrame." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:542 msgid "Refetch results" msgstr "Recuperar resultados" -msgid "refresh" -msgstr "atualizar" - +#: superset/templates/appbuilder/general/widgets/search.html:57 msgid "Refresh" msgstr "Atualizar" -msgid "REFRESH" -msgstr "ATUALIZAR" - +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:255 msgid "Refresh dashboard" msgstr "Atualizar Painel" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:114 msgid "Refresh frequency" msgstr "Atualizar Frequência" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:111 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:116 msgid "Refresh interval" msgstr "Atualizar intervalo" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:79 msgid "Refresh interval saved" msgstr "Intervalo de atualização salvo" +#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:277 msgid "Refresh table list" msgstr "Atualizar lista de tabelas" +#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:278 msgid "Refresh tables" msgstr "Atualizar tabelas" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1260 msgid "Refresh the default values" msgstr "Atualizar os valores padrão" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:163 msgid "Refreshing charts" msgstr "Atualização de gráficos" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:175 msgid "Refreshing columns" msgstr "Atualização de colunas" +#: superset-frontend/src/explore/constants.ts:78 msgid "Regex" msgstr "Regex" +#: superset-frontend/src/features/rls/constants.ts:24 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:262 +#, fuzzy +msgid "Regular" +msgstr "Circular" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:364 +#, fuzzy +msgid "" +"Regular filters add where clauses to queries if a user belongs to a role " +"referenced in the filter, base filters apply filters to all queries " +"except the roles defined in the filter, and can be used to define what " +"users can see if no RLS filters within a filter group apply to them." +msgstr "" +"Os filtros regulares adicionam cláusulas WHERE às consultas se um " +"utilizador pertencer a uma função referenciada no filtro. Os filtros de " +"base aplicam filtros a todas as consultas, excepto às funções definidas " +"no filtro, e podem ser utilizados para definir o que os utilizadores " +"podem ver se nenhum filtro RLS dentro de um grupo de filtros se aplicar a" +" eles." + +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:40 +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:46 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:44 msgid "Relational" msgstr "Relacional" -msgid "" -"Regular filters add where clauses to queries if a user belongs to a role " -"referenced in the filter. Base filters apply filters to all queries except " -"the roles defined in the filter, and can be used to define what users can " -"see if no RLS filters within a filter group apply to them." -msgstr "" -"Os filtros regulares adicionam cláusulas WHERE às consultas se um utilizador " -"pertencer a uma função referenciada no filtro. Os filtros de base aplicam " -"filtros a todas as consultas, excepto às funções definidas no filtro, e " -"podem ser utilizados para definir o que os utilizadores podem ver se nenhum " -"filtro RLS dentro de um grupo de filtros se aplicar a eles." - +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:32 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:35 msgid "Relationships between community channels" msgstr "Relações entre canais comunitários" -msgid "Relative quantity" -msgstr "Quantidade relativa" - +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:88 msgid "Relative Date/Time" msgstr "Data/hora relativa" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:171 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:223 msgid "Relative period" msgstr "Período relativo" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:159 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:211 +msgid "Relative quantity" +msgstr "Quantidade relativa" + +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailTableControls.tsx:133 msgid "Reload" msgstr "Recarregar" +#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:69 msgid "Remind me in 24 hours" msgstr "Lembre-me em 24 horas" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:847 msgid "Remove" msgstr "Remover" -msgid "Remove invalid filters" -msgstr "Remover filtros inválidos" - +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:194 msgid "Remove cross-filter" msgstr "Remover filtro cruzado" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FilterSetUnit.tsx:85 +msgid "Remove invalid filters" +msgstr "Remover filtros inválidos" + +#: superset-frontend/src/explore/components/controls/CollectionControl/index.jsx:142 msgid "Remove item" msgstr "Remover item" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:301 msgid "Remove query from log" msgstr "Remover consulta do log" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:241 msgid "Remove table preview" msgstr "Remover a pré-visualização da tabela" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:777 +#, python-format msgid "Removed columns: %s" msgstr "Colunas removidas: %s" +#: superset-frontend/src/SqlLab/components/SqlEditorTabHeader/index.tsx:113 msgid "Rename tab" msgstr "Renomear Aba" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:147 msgid "Rendering" msgstr "Renderização" +#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 +#: superset/views/database/forms.py:466 msgid "Replace" msgstr "Substituir" -msgid "Report Schedule could not be created." -msgstr "Não foi possível criar um agendamento do relatório." - -msgid "Report Schedule could not be deleted." -msgstr "O agendamento do relatório pode não ser deletado." - -msgid "Report Schedule could not be updated." -msgstr "O agendamento do relatório pode não ser atualizado." - -msgid "Report Schedule delete failed." -msgstr "Falha na exclusão do agendamento do relatório." - -msgid "Report Schedule execution failed when generating a screenshot." -msgstr "" -"A execução do agendamento do relatório falhou ao gerar uma captura de tela." - -msgid "Report Schedule execution got an unexpected error." -msgstr "A execução do agendamento de relatório obteve um erro inesperado." - -msgid "Report Schedule is still working, refusing to re-compute." -msgstr "" -"O agendamento de relatório ainda está funcionando, recusando-se a recalcular." - -msgid "Report Schedule log prune failed." -msgstr "Falha na poda do registo do agendamento do relatório." - -msgid "Report Schedule not found." -msgstr "Agendamento de relatório não encontrado." - -msgid "Report Schedule parameters are invalid." -msgstr "Os parâmetros do agendamento de relatório são inválidos." - -msgid "Report Schedule reached a working timeout." -msgstr "O agendamento do relatório atingiu o tempo limite de trabalho." - -msgid "Report Schedule state not found" -msgstr "Estado do agendamento do relatório não encontrado" - -msgid "Report failed" -msgstr "Relatório falhou" - +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:38 +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:43 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:55 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:163 msgid "Report" msgstr "Relatório" +#: superset-frontend/src/components/ReportModal/index.tsx:281 msgid "Report Name" msgstr "Nome do relatório" +#: superset/reports/commands/exceptions.py:134 +msgid "Report Schedule could not be created." +msgstr "Não foi possível criar um agendamento do relatório." + +#: superset/reports/commands/exceptions.py:130 +msgid "Report Schedule could not be deleted." +msgstr "O agendamento do relatório pode não ser deletado." + +#: superset/reports/commands/exceptions.py:138 +msgid "Report Schedule could not be updated." +msgstr "O agendamento do relatório pode não ser atualizado." + +#: superset/reports/commands/exceptions.py:147 +msgid "Report Schedule delete failed." +msgstr "Falha na exclusão do agendamento do relatório." + +#: superset/reports/commands/exceptions.py:159 msgid "Report Schedule execution failed when generating a csv." msgstr "A execução do Report Schedule falhou ao gerar um arquivo csv." +#: superset/reports/commands/exceptions.py:163 msgid "Report Schedule execution failed when generating a dataframe." msgstr "A execução do Report Schedule falhou ao gerar um dataframe." -msgid "Report name" -msgstr "Nome do relatório" +#: superset/reports/commands/exceptions.py:155 +msgid "Report Schedule execution failed when generating a screenshot." +msgstr "" +"A execução do agendamento do relatório falhou ao gerar uma captura de " +"tela." -msgid "Report schedule" -msgstr "Agendamento do relatório" +#: superset/reports/commands/exceptions.py:167 +msgid "Report Schedule execution got an unexpected error." +msgstr "A execução do agendamento de relatório obteve um erro inesperado." -msgid "Report schedule client error" -msgstr "Relatar erro do cliente de programação" +#: superset/reports/commands/exceptions.py:172 +msgid "Report Schedule is still working, refusing to re-compute." +msgstr "" +"O agendamento de relatório ainda está funcionando, recusando-se a " +"recalcular." -msgid "Report schedule system error" -msgstr "Relatar erro do sistema de programação" +#: superset/reports/commands/exceptions.py:151 +msgid "Report Schedule log prune failed." +msgstr "Falha na poda do registo do agendamento do relatório." -msgid "Report schedule unexpected error" -msgstr "Erro inesperado no agendamento do relatório" +#: superset/reports/commands/exceptions.py:143 +msgid "Report Schedule not found." +msgstr "Agendamento de relatório não encontrado." -msgid "Report sending" -msgstr "Enviando relatório" +#: superset/reports/commands/exceptions.py:126 +msgid "Report Schedule parameters are invalid." +msgstr "Os parâmetros do agendamento de relatório são inválidos." -msgid "Report sent" -msgstr "Relatório enviado" +#: superset/reports/commands/exceptions.py:177 +msgid "Report Schedule reached a working timeout." +msgstr "O agendamento do relatório atingiu o tempo limite de trabalho." -msgid "Report updated" -msgstr "Relatório atualizado" - -msgid "Reports" -msgstr "Relatórios" - -msgid "Repulsion" -msgstr "Repulsão" +#: superset/reports/commands/exceptions.py:262 +msgid "Report Schedule state not found" +msgstr "Estado do agendamento do relatório não encontrado" +#: superset-frontend/src/features/home/RightMenu.tsx:548 msgid "Report a bug" msgstr "Relatar um bug" +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:81 +msgid "Report failed" +msgstr "Relatório falhou" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:382 +msgid "Report name" +msgstr "Nome do relatório" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:394 +msgid "Report schedule" +msgstr "Agendamento do relatório" + +#: superset/reports/commands/exceptions.py:273 +msgid "Report schedule client error" +msgstr "Relatar erro do cliente de programação" + +#: superset/reports/commands/exceptions.py:267 +msgid "Report schedule system error" +msgstr "Relatar erro do sistema de programação" + +#: superset/reports/commands/exceptions.py:277 +msgid "Report schedule unexpected error" +msgstr "Erro inesperado no agendamento do relatório" + +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:74 +msgid "Report sending" +msgstr "Enviando relatório" + +#: superset-frontend/src/features/alerts/components/AlertStatusIcon.tsx:67 +msgid "Report sent" +msgstr "Relatório enviado" + +#: superset-frontend/src/reports/actions/reports.js:121 +msgid "Report updated" +msgstr "Relatório atualizado" + +#: superset-frontend/src/pages/AlertReportList/index.tsx:541 +msgid "Reports" +msgstr "Relatórios" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:284 +msgid "Repulsion" +msgstr "Repulsão" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:290 msgid "Repulsion strength between nodes" msgstr "Força de repulsão entre nós" +#: superset/templates/superset/request_access.html:31 msgid "Request Permissions" msgstr "Pedir permissões" +#: superset/charts/data/api.py:153 superset/charts/data/api.py:243 +#: superset/charts/data/api.py:312 +#, python-format msgid "Request is incorrect: %(error)s" msgstr "O pedido está incorreto: %(error)s" +#: superset/charts/data/api.py:230 msgid "Request is not JSON" msgstr "O Pedido não é JSON" +#: superset/views/datasource/views.py:77 msgid "Request missing data field." msgstr "Pedido com campo de dados ausente." +#: superset-frontend/src/utils/getClientErrorObject.ts:144 msgid "Request timed out" msgstr "O tempo limite da solicitação expirou" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 +#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:252 msgid "Required" msgstr "Necessário" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 msgid "Required control values have been removed" msgstr "Os valores de controle necessários foram eliminados" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:153 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:345 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:227 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:497 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:226 +#: superset-frontend/src/explore/controlPanels/sections.tsx:223 msgid "Resample" msgstr "Reamostragem" -msgid "Resample method should in" +#: superset/utils/pandas_postprocessing/resample.py:46 +#, fuzzy +msgid "Resample method should in " msgstr "O método de reamostragem deve estar em" +#: superset/utils/pandas_postprocessing/resample.py:43 msgid "Resample operation requires DatetimeIndex" msgstr "A operação de reamostragem requer DatetimeIndex" +#: superset-frontend/src/components/Table/index.tsx:203 msgid "Reset" msgstr "Redefinir" +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:280 msgid "Reset state" msgstr "Redefinir estado" -msgid "Resource was not found." -msgstr "O recurso não foi encontrado." - -msgid "Restore Filter" -msgstr "Restaurar filtro" - +#: superset/reports/commands/exceptions.py:194 msgid "Resource already has an attached report." msgstr "Recurso já tem um relatório anexado." -msgid "Results %s" -msgstr "Resultados %s" +#: superset/temporary_cache/commands/exceptions.py:49 +msgid "Resource was not found." +msgstr "O recurso não foi encontrado." -msgid "Reverse Lat & Long" -msgstr "Lat. e Long. invertidos" - -msgid "Reverse lat/long" -msgstr "Lat/long invertido" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:46 +msgid "Restore Filter" +msgstr "Restaurar filtro" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:86 +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:241 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:204 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:76 msgid "Results" msgstr "Resultados" +#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:212 +#: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 +#, python-format +msgid "Results %s" +msgstr "Resultados %s" + +#: superset/sql_lab.py:402 superset/sqllab/commands/results.py:59 +#: superset/views/core.py:2169 msgid "Results backend is not configured." msgstr "O backend de resultados não está configurado." +#: superset/errors.py:122 msgid "Results backend needed for asynchronous queries is not configured." msgstr "" -"O backend de resultados necessário para as consultas assíncronas não está " -"configurado." +"O backend de resultados necessário para as consultas assíncronas não está" +" configurado." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:29 msgid "Return to specific datetime." msgstr "Retornar para data e hora específica." -msgid "Right" -msgstr "Direito" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:361 +msgid "Reverse Lat & Long" +msgstr "Lat. e Long. invertidos" -msgid "Right Axis Format" -msgstr "Formato do eixo direito" - -msgid "Right Axis Metric" -msgstr "Métrica do eixo direito" - -msgid "Right Axis chart(s)" -msgstr "Gráfico(s) do eixo direito" +#: superset-frontend/src/explore/components/controls/SpatialControl.jsx:155 +#, fuzzy +msgid "Reverse lat/long " +msgstr "Lat/long invertido" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:223 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:92 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:301 msgid "Rich Tooltip" msgstr "Dica avançada" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:178 msgid "Rich tooltip" msgstr "Dica avançada" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:372 +msgid "Right" +msgstr "Direito" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:52 +msgid "Right Axis Format" +msgstr "Formato do eixo direito" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:181 +msgid "Right Axis Metric" +msgstr "Métrica do eixo direito" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:132 +msgid "Right Axis chart(s)" +msgstr "Gráfico(s) do eixo direito" + +#: superset-frontend/src/explore/controls.jsx:214 msgid "Right axis metric" msgstr "Métrica do eixo direito" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:139 msgid "Right to Left" msgstr "Direita para Esquerda" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 msgid "Right value" msgstr "Valor correto" -msgid "Role" -msgstr "Função" - +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:219 msgid "Right-click on a dimension value to drill to detail by that value." msgstr "" "Clique com o botão direito do mouse em valor de dimensão para pesquisar " "detalhes por esse valor." +#: superset/dashboards/filters.py:200 +msgid "Role" +msgstr "Função" + +#: superset/views/core.py:408 +#, python-format msgid "Role %(r)s was extended to provide the access to the datasource %(ds)s" msgstr "" -"A função %(r)s foi estendida para fornecer o acesso a fonte de dados %(ds)s" +"A função %(r)s foi estendida para fornecer o acesso a fonte de dados " +"%(ds)s" +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:375 +#: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:389 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:551 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:406 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:415 +#: superset-frontend/src/profile/components/Security.tsx:35 +#: superset/views/dashboard/mixin.py:82 msgid "Roles" msgstr "Funções" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:562 msgid "" "Roles is a list which defines access to the dashboard. Granting a role " "access to a dashboard will bypass dataset level checks. If no roles are " "defined, regular access permissions apply." msgstr "" "As funções são uma lista que define o acesso ao painel. Conceder a uma " -"função o acesso a um painel irá ignorar as verificações ao nível do conjunto " -"de dados. Se não forem definidas funções, aplicam-se as permissões de acesso " -"normais." +"função o acesso a um painel irá ignorar as verificações ao nível do " +"conjunto de dados. Se não forem definidas funções, aplicam-se as " +"permissões de acesso normais." +#: superset/views/dashboard/mixin.py:65 msgid "" "Roles is a list which defines access to the dashboard. Granting a role " "access to a dashboard will bypass dataset level checks.If no roles are " @@ -8320,1542 +12745,2363 @@ msgstr "" "As funções são uma lista que define o acesso ao painel. Se não forem " "definidas funções, aplicam-se as permissões de acesso normais." +#: superset/views/access_requests.py:48 msgid "Roles to grant" msgstr "Funções a atribuir" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:250 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:132 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:399 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:179 msgid "Rolling Function" msgstr "Função de rolagem" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:244 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:126 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:393 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:173 msgid "Rolling Window" msgstr "Janela de rolagem" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:39 +#: superset-frontend/src/explore/controlPanels/sections.tsx:131 msgid "Rolling function" msgstr "Função de rolagem" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:33 +#: superset-frontend/src/explore/controlPanels/sections.tsx:125 msgid "Rolling window" msgstr "Janela de rolagem" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 +#: superset/views/database/mixins.py:195 msgid "Root certificate" msgstr "Raiz do certificado" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:85 msgid "Root node id" msgstr "ID do nó raiz" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:170 msgid "Rotate axis label" msgstr "Rodar o rótulo do eixo" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:323 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:200 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:188 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:131 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:130 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:182 msgid "Rotate x axis label" msgstr "Rodar o rótulo do eixo x" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:93 msgid "Rotation to apply to words in the cloud" msgstr "Rotação para aplicar às palavras na nuvem" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:267 msgid "Round cap" msgstr "Tampa circular" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 +#: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 msgid "Row" msgstr "Linha" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:70 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:302 +#: superset/initialization/__init__.py:436 +msgid "Row Level Security" +msgstr "Segurança em nível de linha" + +#: superset/views/database/forms.py:255 msgid "" -"Row containing the headers to use as column names (0 is first line of data). " -"Leave empty if there is no header row." +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row" +msgstr "" +"Linha que contém os cabeçalhos a serem usados como nomes de coluna (0 é a" +" primeira linha de dados). Deixe em branco se não houver linha de " +"cabeçalho" + +#: superset/views/database/forms.py:342 +msgid "" +"Row containing the headers to use as column names (0 is first line of " +"data). Leave empty if there is no header row." msgstr "" "Linha que contém os cabeçalhos a utilizar como nomes de colunas (0 é a " "primeira linha de dados). Deixar em branco se não existir uma linha de " "cabeçalho." -msgid "Row Level Security" -msgstr "Segurança em nível de linha" - -msgid "Row level security filter" -msgstr "Filtro de segurança ao nível da linha" - -msgid "" -"Row containing the headers to use as column names (0 is first line of data). " -"Leave empty if there is no header row" -msgstr "" -"Linha que contém os cabeçalhos a serem usados como nomes de coluna (0 é a " -"primeira linha de dados). Deixe em branco se não houver linha de cabeçalho" - +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:247 +#: superset-frontend/src/explore/controls.jsx:340 msgid "Row limit" msgstr "Limite de linhas" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:120 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:84 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:307 msgid "Rows" msgstr "Linhas" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:53 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:324 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:406 msgid "Rows per page, 0 means no pagination" msgstr "Linhas por página, 0 significa sem paginação" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:350 msgid "Rows subtotal position" msgstr "Posição do subtotal das linhas" +#: superset/views/database/forms.py:264 superset/views/database/forms.py:370 msgid "Rows to Read" msgstr "Linhas para Leitura" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:160 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:352 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:234 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:504 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:233 +#: superset-frontend/src/explore/controlPanels/sections.tsx:230 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:286 msgid "Rule" msgstr "Regra" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:355 +#, fuzzy +msgid "Rule Name" +msgstr "Nome completo" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:253 +msgid "Rule added" +msgstr "" + +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:53 msgid "Run" msgstr "Executar" +#: superset-frontend/src/SqlLab/components/QueryHistory/index.tsx:65 msgid "Run a query to display query history" msgstr "Executar uma consulta para exibir o histórico de consultas" +#: superset-frontend/src/SqlLab/components/SouthPane/index.tsx:197 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:109 msgid "Run a query to display results" msgstr "Executar uma consulta para exibir os resultados" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:407 msgid "Run in SQL Lab" msgstr "Executar no SQL Lab" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:311 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:321 msgid "Run query" msgstr "Executar consulta" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:132 msgid "Run query (Ctrl + Return)" msgstr "Executar consulta (Ctrl + Return)" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:294 msgid "Run query in a new tab" msgstr "Executar consulta em uma nova guia" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:51 msgid "Run selection" msgstr "Executar seleção" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:145 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:173 msgid "Running" msgstr "Executando" +#: superset/sql_lab.py:480 +#, python-format msgid "Running statement %(statement_num)s out of %(statement_count)s" msgstr "Executando instrução %(statement_num)s de % (statement_count)s" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:87 msgid "SAT" msgstr "SAB" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:99 msgid "SEP" msgstr "SET" +#: superset-frontend/src/features/home/RightMenu.tsx:506 msgid "SHA" msgstr "SHA" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:101 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:85 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 +#: superset-frontend/src/features/home/commonMenuData.ts:22 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:312 +#: superset/initialization/__init__.py:348 +#: superset/initialization/__init__.py:356 msgid "SQL" msgstr "SQL" +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:71 msgid "SQL Copied!" msgstr "SQL copiado !" +#: superset/connectors/sqla/views.py:253 msgid "SQL Expression" msgstr "Expressão SQL" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 +#: superset/initialization/__init__.py:343 +#: superset/initialization/__init__.py:365 msgid "SQL Lab" msgstr "SQL Lab" +#: superset/connectors/sqla/views.py:399 msgid "SQL Lab View" msgstr "Visão do SQL Lab" +#: superset-frontend/src/SqlLab/components/App/index.jsx:155 +#, python-format msgid "" "SQL Lab uses your browser's local storage to store queries and results.\n" "Currently, you are using %(currentUsage)s KB out of %(maxStorage)d KB " "storage space.\n" "To keep SQL Lab from crashing, please delete some query tabs.\n" -"You can re-access these queries by using the Save feature before you delete " -"the tab.\n" +"You can re-access these queries by using the Save feature before you " +"delete the tab.\n" "Note that you will need to close other SQL Lab windows before you do this." msgstr "" -"O SQL Lab usa seu armazenamento local do navegador para armazenar consultas " -"e resultados.\n" +"O SQL Lab usa seu armazenamento local do navegador para armazenar " +"consultas e resultados.\n" "Atualmente, você está usando %(currentUsage)s KB de %(maxStorage)d KB de " "armazenamento espaço.\n" "Para evitar que o SQL Lab falhe, elimine algumas abas de consulta.\n" -"Pode voltar a essas consultas utilizando a funcionalidade Salvar antes de " -"eliminar a aba.\n" +"Pode voltar a essas consultas utilizando a funcionalidade Salvar antes de" +" eliminar a aba.\n" "Observe que terá de fechar outras janelas do SQL Lab antes de fazer isso." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:389 +#: superset-frontend/src/features/home/SavedQueries.tsx:261 msgid "SQL Query" msgstr "Consulta SQL" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/SQLPopover.tsx:64 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:239 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1199 msgid "SQL expression" msgstr "Expressão SQL" +#: superset-frontend/src/features/home/EmptyState.tsx:151 +#: superset-frontend/src/features/home/RightMenu.tsx:212 msgid "SQL query" msgstr "Consulta SQL" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:75 +#: superset/views/database/mixins.py:191 msgid "SQLAlchemy URI" msgstr "SQLAlchemy URI" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:70 msgid "SSH Host" msgstr "Host SSH" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:150 msgid "SSH Password" msgstr "Senha SSH" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:85 msgid "SSH Port" msgstr "Porta SSH" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:50 msgid "SSH Tunnel" msgstr "Túnel SSH" +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelSwitch.tsx:52 msgid "SSH Tunnel configuration parameters" msgstr "Parâmetros de configuração do Túnel SSH" +#: superset/databases/ssh_tunnel/commands/exceptions.py:29 msgid "SSH Tunnel could not be deleted." msgstr "Não foi possível excluir o túnel SSH." +#: superset/databases/ssh_tunnel/commands/exceptions.py:42 msgid "SSH Tunnel could not be updated." msgstr "Não foi possível atualizar o túnel SSH." +#: superset/databases/ssh_tunnel/commands/exceptions.py:34 msgid "SSH Tunnel not found." msgstr "Túnel SSH não encontrado." +#: superset/databases/ssh_tunnel/commands/exceptions.py:38 msgid "SSH Tunnel parameters are invalid." msgstr "Os parâmetros do túnel SSH são inválidos." +#: superset/databases/ssh_tunnel/commands/exceptions.py:51 msgid "SSH Tunneling is not enabled" msgstr "Túnel SSH não está ativado" -msgid "SSL Mode \"require\"will be used." -msgstr "Modo SSL \"require\"será usado." - +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:247 msgid "SSL Mode \"require\" will be used." msgstr "O modo SSL \"require\" será usado." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:64 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:129 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:136 msgid "START (INCLUSIVE)" msgstr "INÍCIO (INCLUSIVO)" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:93 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:117 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:164 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:178 +#, python-format msgid "STEP %(stepCurr)s OF %(stepLast)s" msgstr "ETAPA %(stepCurr)s De %(stepLast)s" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:143 msgid "STRING" msgstr "STRING" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:81 msgid "SUN" msgstr "DOM" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:186 msgid "Sample Standard Deviation" msgstr "Desvio Padrão da Amostra" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:185 msgid "Sample Variance" msgstr "Variação da amostra" +#: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:231 msgid "Samples" msgstr "Amostras" +#: superset/datasets/commands/exceptions.py:194 msgid "Samples for dataset could not be retrieved." msgstr "Não foi possível recuperar as amostras do conjunto de dados." +#: superset/explore/exceptions.py:45 msgid "Samples for datasource could not be retrieved." msgstr "Não foi possível recuperar as amostras da fonte de dados." +#: superset/viz.py:1854 msgid "Sankey" msgstr "Sankey" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:36 msgid "Sankey Diagram" msgstr "Diagrama Sankey" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/index.js:27 msgid "Sankey Diagram with Loops" msgstr "Diagrama Sankey com Loops" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:235 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:378 msgid "Satellite" msgstr "Satélite" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:233 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:377 msgid "Satellite Streets" msgstr "Ruas Satélites" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:62 msgid "Saturday" msgstr "Sábado" +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 +#: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:288 +#: superset-frontend/src/components/ReportModal/index.tsx:228 +#: superset-frontend/src/dashboard/components/Header/index.jsx:607 +#: superset-frontend/src/dashboard/components/Header/index.jsx:609 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 +#: superset-frontend/src/dashboard/components/SaveModal.tsx:211 +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:794 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:156 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:492 +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:268 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:462 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 +#: superset-frontend/src/explore/components/SaveModal.tsx:449 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:463 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:424 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:147 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:250 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:347 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:376 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 msgid "Save" msgstr "Salvar" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:246 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:190 msgid "Save & Explore" msgstr "Salvar e Explorar" +#: superset-frontend/src/explore/components/SaveModal.tsx:430 msgid "Save & go to dashboard" msgstr "Salvar e ir ao painel" +#: superset-frontend/src/explore/components/SaveModal.tsx:429 msgid "Save & go to new dashboard" msgstr "Salvar e ir para o novo painel" +#: superset-frontend/src/explore/components/SaveModal.tsx:343 msgid "Save (Overwrite)" msgstr "Salvar (Sobrescrever)" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:306 msgid "Save as" msgstr "Salvar como" +#: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:37 msgid "Save as Dataset" msgstr "Salvar como conjunto de dados" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:345 msgid "Save as dataset" msgstr "Salvar como conjunto de dados" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:402 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 msgid "Save as new" msgstr "Salvar como novo" +#: superset-frontend/src/explore/components/SaveModal.tsx:446 msgid "Save as new chart" msgstr "Salvar como novo gráfico" +#: superset-frontend/src/explore/components/SaveModal.tsx:351 msgid "Save as..." msgstr "Salvar como..." +#: superset-frontend/src/dashboard/components/SaveModal.tsx:186 msgid "Save as:" msgstr "Salvar como:" +#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:223 msgid "Save changes" msgstr "Salvar alterações" +#: superset-frontend/src/explore/components/SaveModal.tsx:466 msgid "Save chart" msgstr "Salvar gráfico" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:169 msgid "Save dashboard" msgstr "Salvar painel" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:105 msgid "Save dataset" msgstr "Salvar conjunto de dados" +#: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 msgid "Save for this session" msgstr "Salvar para essa sessão" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:356 msgid "Save or Overwrite Dataset" msgstr "Salvar ou Sobrescrever Conjunto de dados" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:201 msgid "Save query" msgstr "Salvar consulta" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:99 msgid "Save the query to enable this feature" msgstr "Salve a consulta para ativar esse recurso" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:465 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:149 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 msgid "Save this query as a virtual dataset to continue exploring" msgstr "" "Salvar esta consulta como um conjunto de dados virtual para continuar " "explorando" +#: superset-frontend/src/explore/components/SaveModal.tsx:448 msgid "Save to new dashboard" msgstr "Salvar em um novo painel" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:271 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 msgid "Saved" msgstr "Salvo" +#: superset/initialization/__init__.py:352 msgid "Saved Queries" msgstr "Consultas salvas" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:255 msgid "Saved expressions" msgstr "Expressões salvas" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:384 msgid "Saved metric" msgstr "Salvo métrica" +#: superset-frontend/src/features/home/commonMenuData.ts:26 +#: superset-frontend/src/pages/Home/index.tsx:414 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:105 msgid "Saved queries" msgstr "Consultas salvas" -msgid "Saved query parameters are invalid." -msgstr "Os parâmetros de consulta salvos são inválidos." - +#: superset/queries/saved_queries/commands/exceptions.py:28 msgid "Saved queries could not be deleted." msgstr "Não foi possível eliminar as consultas salvas." +#: superset/queries/saved_queries/commands/exceptions.py:32 msgid "Saved query not found." msgstr "Consulta salva não encontrada." +#: superset/queries/saved_queries/commands/exceptions.py:40 +msgid "Saved query parameters are invalid." +msgstr "Os parâmetros de consulta salvos são inválidos." + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:169 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:278 msgid "Scale and Move" msgstr "Dimensionar e deslocar" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:167 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:276 msgid "Scale only" msgstr "Dimensionar apenas" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:142 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:88 msgid "Scatter" msgstr "Dispersão" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:79 +#: superset-frontend/plugins/preset-chart-xy/src/ScatterPlot/createMetadata.ts:26 +msgid "Scatter Plot" +msgstr "Gráfico de dispersão" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:65 msgid "" "Scatter Plot has the horizontal axis in linear units, and the points are " "connected in order. It shows a statistical relationship between two " "variables." msgstr "" "O gráfico de dispersão tem o eixo horizontal em unidades lineares e os " -"pontos estão ligados por ordem. Mostra uma relação estatística entre duas " -"variáveis." - -msgid "Scatter Plot" -msgstr "Gráfico de dispersão" +"pontos estão ligados por ordem. Mostra uma relação estatística entre duas" +" variáveis." +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 +#: superset-frontend/src/components/ReportModal/index.tsx:305 +#: superset-frontend/src/pages/AlertReportList/index.tsx:276 msgid "Schedule" msgstr "Cronograma" +#: superset-frontend/src/components/ReportModal/index.tsx:211 msgid "Schedule a new email report" msgstr "Agendar um novo relatório de e-mail" +#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:279 msgid "Schedule email report" msgstr "Agendar relatório por e-mail" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:229 msgid "Schedule query" msgstr "Consulta de agendamento" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:397 msgid "Schedule settings" msgstr "Configurações de agendamento" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:518 msgid "Schedule the query periodically" msgstr "Agendar a consulta periodicamente" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:163 +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:169 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:186 msgid "Scheduled" msgstr "Agendado" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:120 msgid "Scheduled at (UTC)" msgstr "Programado em (UTC)" +#: superset/tasks/exceptions.py:24 msgid "Scheduled task executor not found" msgstr "O executor da tarefa agendada não foi encontrado" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:298 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 +#: superset-frontend/src/pages/DatasetList/index.tsx:365 +#: superset-frontend/src/pages/DatasetList/index.tsx:547 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:250 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:297 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:469 +#: superset/connectors/sqla/views.py:390 superset/views/database/forms.py:154 +#: superset/views/database/forms.py:321 superset/views/database/forms.py:452 msgid "Schema" msgstr "Esquema" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:257 msgid "Schema cache timeout" msgstr "Tempo limite do cache de esquema" +#: superset/views/core.py:1186 msgid "Schema undefined" msgstr "Esquema indefinido" +#: superset/connectors/sqla/views.py:336 msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" msgstr "" -"Esquema, como usado apenas em alguns bancos de dados como Postgres, Redshift " -"e DB2" - -msgid "Scope" -msgstr "Escopo" +"Esquema, como usado apenas em alguns bancos de dados como Postgres, " +"Redshift e DB2" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:429 msgid "Schemas allowed for File upload" msgstr "Esquemas permitidos para upload de arquivos" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:71 +msgid "Scope" +msgstr "Escopo" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:282 msgid "Scoping" msgstr "Escopo" -msgid "Scroll down to the bottom to enable overwriting changes." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 +msgid "Scroll" +msgstr "Rolagem" + +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:135 +#, fuzzy +msgid "Scroll down to the bottom to enable overwriting changes. " msgstr "" "Role para baixo até a parte inferior para permitir a substituição de " "alterações." -msgid "Scroll" -msgstr "Rolagem" - +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:160 +#: superset-frontend/src/explore/components/DataTableControl/index.tsx:107 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:59 +#: superset-frontend/src/pages/AlertReportList/index.tsx:507 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:303 +#: superset-frontend/src/pages/ChartList/index.tsx:724 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:293 +#: superset-frontend/src/pages/DashboardList/index.tsx:516 +#: superset-frontend/src/pages/DatabaseList/index.tsx:503 +#: superset-frontend/src/pages/DatasetList/index.tsx:588 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:494 +#: superset-frontend/src/pages/Tags/index.tsx:204 +#: superset/templates/appbuilder/general/widgets/search.html:40 msgid "Search" msgstr "Pesquisar" -msgid "Search all charts" -msgstr "Pesquisar todos os gráficos" - -msgid "Search box" -msgstr "Caixa de pesquisa" - -msgid "Search columns" -msgstr "Colunas de pesquisa" - -msgid "Search in filters" -msgstr "Pesquisar em filtros" - -msgid "Search tables" -msgstr "Pesquisar tabelas" - -msgid "Second" -msgstr "Segundo" - -msgid "Secondary" -msgstr "Secundário" - -msgid "Secondary Metric" -msgstr "Métrica secundária" - -msgid "Seconds %s" -msgstr "Segundos %s" - -msgid "See all %(tableName)s" -msgstr "Ver todos %(tableName)s" - +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 msgid "Search / Filter" msgstr "Pesquisa / Filtro" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:362 msgid "Search Metrics & Columns" msgstr "Pesquisar Métricas e Colunas" +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:779 +msgid "Search all charts" +msgstr "Pesquisar todos os gráficos" + +#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:232 msgid "Search all filter options" msgstr "Pesquisar todas as opções de filtro" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:418 +msgid "Search box" +msgstr "Caixa de pesquisa" + +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:410 msgid "Search by query text" msgstr "Pesquisar consulta" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 +msgid "Search columns" +msgstr "Colunas de pesquisa" + +#: superset-frontend/src/components/Table/index.tsx:206 +msgid "Search in filters" +msgstr "Pesquisar em filtros" + +#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:279 +msgid "Search tables" +msgstr "Pesquisar tabelas" + +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:715 msgid "Search..." msgstr "Pesquisar..." +#: superset/db_engine_specs/base.py:97 +msgid "Second" +msgstr "Segundo" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:246 +msgid "Secondary" +msgstr "Secundário" + +#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:67 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:163 +msgid "Secondary Metric" +msgstr "Métrica secundária" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:408 +#, fuzzy +msgid "Secondary y-axis Bounds" +msgstr "Formato do eixo y secundário" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:425 msgid "Secondary y-axis format" msgstr "Formato do eixo y secundário" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:434 msgid "Secondary y-axis title" msgstr "Título secundário do eixo y" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:62 +#, python-format +msgid "Seconds %s" +msgstr "Segundos %s" + +#: superset/views/database/mixins.py:194 msgid "Secure Extra" msgstr "Segurança Extra" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:346 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 msgid "Secure extra" msgstr "Segurança Extra" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:339 +#: superset/initialization/__init__.py:389 +#: superset/initialization/__init__.py:427 +#: superset/initialization/__init__.py:438 msgid "Security" msgstr "Segurança" +#: superset-frontend/src/profile/components/App.tsx:82 msgid "Security & Access" msgstr "Segurança e Acesso" +#: superset-frontend/src/features/home/EmptyState.tsx:183 +#, python-format +msgid "See all %(tableName)s" +msgstr "Ver todos %(tableName)s" + +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:172 msgid "See less" msgstr "Veja menos" +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:128 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:142 +#: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:159 msgid "See more" msgstr "Ver mais" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:405 msgid "See query details" msgstr "Ver detalhes da consulta" +#: superset-frontend/src/components/TableSelector/index.tsx:277 msgid "See table schema" msgstr "Ver esquema da tabela" +#: superset-frontend/src/explore/components/SaveModal.tsx:398 +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 msgid "Select" msgstr "Selecione" +#: superset-frontend/src/components/AsyncSelect/index.jsx:41 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:123 +#: superset-frontend/src/components/Select/Select.tsx:104 +#: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 +#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 msgid "Select ..." msgstr "Selecione ..." +#: superset-frontend/src/features/alerts/components/NotificationMethod.tsx:127 msgid "Select Delivery Method" msgstr "Selecione o método de entrega" +#: superset-frontend/src/explore/components/controls/VizTypeControl/FastVizSwitcher.tsx:94 msgid "Select Viz Type" msgstr "Selecione o tipo de visualização" +#: superset/views/database/forms.py:425 msgid "Select a Columnar file to be uploaded to a database." msgstr "Selecione um arquivo colunar a ser carregado em um banco de dados." +#: superset/views/database/forms.py:289 +msgid "Select a Excel file to be uploaded to a database." +msgstr "Selecione um arquivo do Excel para ser carregado para um banco de dados." + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:126 msgid "Select a column" msgstr "Selecione uma coluna" +#: superset-frontend/src/explore/components/SaveModal.tsx:392 msgid "Select a dashboard" msgstr "Selecione um painel" +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:39 msgid "Select a database table and create dataset" msgstr "Selecione uma tabela de banco de dados e crie um conjunto de dados" +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:87 msgid "Select a database table." msgstr "Selecione uma tabela de banco de dados." +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:169 msgid "Select a database to connect" msgstr "Selecione um banco de dados para se conectar" -msgid "Select..." -msgstr "Selecione..." - -msgid "Select a Excel file to be uploaded to a database." -msgstr "" -"Selecione um arquivo do Excel para ser carregado para um banco de dados." - +#: superset/views/database/forms.py:138 msgid "Select a database to upload the file to" msgstr "Selecione um banco de dados para enviar o arquivo" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:738 msgid "Select a database to write a query" msgstr "Selecione um banco de dados para escrever uma consulta" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:111 msgid "Select a dimension" msgstr "Selecione uma dimensão" +#: superset/views/database/forms.py:110 msgid "Select a file to be uploaded to the database" msgstr "Selecione um arquivo a ser carregado no banco de dados" +#: superset/views/database/forms.py:155 msgid "Select a schema if the database supports this" msgstr "Selecione um esquema se o banco de dados for compatível com isso" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:130 msgid "Select a visualization type" msgstr "Selecione um tipo de visualização" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:331 +#, fuzzy +msgid "Select aggregate options" +msgstr "Proporções de área de uso" + +#: superset-frontend/src/components/Table/index.tsx:211 +#, fuzzy +msgid "Select all data" +msgstr "Limpar todos os dados" + +#: superset-frontend/src/components/Table/index.tsx:205 +#, fuzzy +msgid "Select all items" +msgstr "Desmarcar tudo" + +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:106 msgid "Select any columns for metadata inspection" msgstr "Selecionar quaisquer colunas para inspeção de metadados" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +#, fuzzy +msgid "Select chart" +msgstr "Selecionar gráficos" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:45 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:103 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:138 msgid "Select charts" msgstr "Selecionar gráficos" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:177 msgid "Select color scheme" msgstr "Selecione o esquema de cores" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 msgid "Select column" msgstr "Selecionar coluna" +#: superset-frontend/src/components/Table/index.tsx:208 msgid "Select current page" msgstr "Selecionar a página atual" +#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:272 msgid "Select database & schema" msgstr "Selecione o banco de dados e o esquema" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:271 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:279 msgid "Select database or type to search databases" msgstr "Selecione o banco de dados ou o tipo para pesquisar bancos de dados" +#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:276 msgid "Select database table" msgstr "Selecione a tabela do banco de dados" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1847 +#, fuzzy msgid "" -"Select databases require additional fields to be completed in the Advanced " -"tab to successfully connect the database. Learn what requirements your " -"databases has" +"Select databases require additional fields to be completed in the " +"Advanced tab to successfully connect the database. Learn what " +"requirements your databases has " msgstr "" -"Alguns bancos de dados exigem o preenchimento de campos adicionais na guia " -"Avançado para que a conexão com o banco de dados seja bem-sucedida. Saiba " -"quais são os requisitos de seus bancos de dados" +"Alguns bancos de dados exigem o preenchimento de campos adicionais na " +"guia Avançado para que a conexão com o banco de dados seja bem-sucedida. " +"Saiba quais são os requisitos de seus bancos de dados" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:66 msgid "Select dataset source" msgstr "Selecione a fonte do conjunto de dados" +#: superset-frontend/src/components/ImportModal/index.tsx:445 msgid "Select file" msgstr "Selecionar arquivo" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:318 +#: superset-frontend/src/filters/components/Select/index.ts:28 msgid "Select filter" msgstr "Selecionar filtro" +#: superset-frontend/src/filters/components/Select/index.ts:29 msgid "Select filter plugin using AntD" msgstr "Selecione plug-in de filtro usando AntD" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:104 msgid "Select first filter value by default" msgstr "Selecione primeiro valor do filtro por padrão" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:362 msgid "Select operator" msgstr "Selecionar operador" +#: superset-frontend/src/components/ListView/Filters/Select.tsx:99 +#: superset-frontend/src/components/ListView/Filters/Select.tsx:113 msgid "Select or type a value" msgstr "Selecione ou digite um valor" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:418 msgid "Select or type dataset name" msgstr "Selecione ou digite o nome do conjunto de dados" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:561 msgid "Select owners" msgstr "Selecionar proprietários" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:340 msgid "Select saved metrics" msgstr "Selecionar métricas salvas" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:296 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 msgid "Select schema or type to search schemas" msgstr "Selecione o esquema ou o tipo para pesquisar os esquemas" +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:183 msgid "Select scheme" msgstr "Selecionar esquema" +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:307 msgid "Select start and end date" msgstr "Selecionar data de início e fim" -msgid "Select table or type to search tables" -msgstr "Selecione a tabela ou digite para pesquisar tabelas" - -msgid "Select the Annotation Layer you would like to use." -msgstr "Selecione a camada de anotação que você gostaria de usar." - -msgid "Select the geojson column" -msgstr "Selecione a coluna geojson" - +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:334 msgid "Select subject" msgstr "Selecionar assunto" +#: superset-frontend/src/components/TableSelector/index.tsx:284 +#: superset-frontend/src/components/TableSelector/index.tsx:295 +msgid "Select table or type to search tables" +msgstr "Selecione a tabela ou digite para pesquisar tabelas" + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:447 +msgid "Select the Annotation Layer you would like to use." +msgstr "Selecione a camada de anotação que você gostaria de usar." + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +msgid "" +"Select the charts to which you want to apply cross-filters in this " +"dashboard. Deselecting a chart will exclude it from being filtered when " +"applying cross-filters from any chart on the dashboard. You can select " +"\"All charts\" to apply cross-filters to all charts that use the same " +"dataset or contain the same column name in the dashboard." +msgstr "" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +msgid "" +"Select the charts to which you want to apply cross-filters when " +"interacting with this chart. You can select \"All charts\" to apply " +"filters to all charts that use the same dataset or contain the same " +"column name in the dashboard." +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:392 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:37 +msgid "Select the geojson column" +msgstr "Selecione a coluna geojson" + +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:84 msgid "Select the number of bins for the histogram" msgstr "Selecionar o número de caixas para o histograma" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:34 msgid "Select the numeric columns to draw the histogram" msgstr "Selecionar as colunas numéricas para desenhar o histograma" +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:26 +#, python-format msgid "" "Select values in highlighted field(s) in the control panel. Then run the " "query by clicking on the %s button." msgstr "" -"Selecione os valores no(s) campo(s) destacado(s) no painel de controle. Em " -"seguida, execute a consulta clicando no botão %s." +"Selecione os valores no(s) campo(s) destacado(s) no painel de controle. " +"Em seguida, execute a consulta clicando no botão %s." +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:407 msgid "Send as CSV" msgstr "Enviar como CSV" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:406 msgid "Send as PNG" msgstr "Enviar como PNG" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:408 msgid "Send as text" msgstr "Enviar como texto" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:62 msgid "Send range filter events to other charts" msgstr "Enviar filtro de intervalo eventos para outro gráficos" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:74 msgid "September" msgstr "Setembro" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:64 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:53 msgid "Sequential" msgstr "Sequencial" -msgid "Series Height" -msgstr "Altura da série" - -msgid "Series Limit Sort By" -msgstr "Limite da série Ordenar por" - -msgid "Series Limit Sort Descending" -msgstr "Limite da série Ordenação decrescente" - -msgid "Series Order" -msgstr "Ordem da série" - -msgid "Series Style" -msgstr "Estilo da série" - +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 msgid "Series" msgstr "Série" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:63 +msgid "Series Height" +msgstr "Altura da série" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:54 +msgid "Series Limit Sort By" +msgstr "Limite da série Ordenar por" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:73 +msgid "Series Limit Sort Descending" +msgstr "Limite da série Ordenação decrescente" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:246 +msgid "Series Order" +msgstr "Ordem da série" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:74 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:75 +msgid "Series Style" +msgstr "Estilo da série" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:87 msgid "Series chart type (line, bar etc)" msgstr "Tipo de Gráfico de série (linha , barra etc)" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:269 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:285 +#: superset-frontend/src/explore/controls.jsx:350 msgid "Series limit" msgstr "Limite da série" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:137 msgid "Series type" msgstr "Tipo de série" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:50 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:321 msgid "Server Page Length" msgstr "Comprimento da página do servidor" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/pagination.tsx:35 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:298 msgid "Server pagination" msgstr "Paginação do servidor" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:114 msgid "Service Account" msgstr "Conta de serviço" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:397 msgid "Set auto-refresh interval" msgstr "Definir intervalo da atualização automática" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:383 msgid "Set filter mapping" msgstr "Definir o mapeamento de filtros" -msgid "" -"Sets the hierarchy levels of the chart. Each level is\n" -" represented by one ring with the innermost circle as the top of the " -"hierarchy." -msgstr "" -"Define os níveis hierárquicos do gráfico. Cada nível é\n" -" representado por um anel, sendo o círculo mais interno o topo da hierarquia." - +#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:221 +#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:225 msgid "Set up an email report" msgstr "Configurar um relatório de e-mail" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:193 +msgid "" +"Sets the hierarchy levels of the chart. Each level is\n" +" represented by one ring with the innermost circle as the top of " +"the hierarchy." +msgstr "" +"Define os níveis hierárquicos do gráfico. Cada nível é\n" +" representado por um anel, sendo o círculo mais interno o topo da " +"hierarquia." + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1436 +#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:190 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:278 +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:58 +#: superset-frontend/src/features/home/RightMenu.tsx:439 msgid "Settings" msgstr "Configurações" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:126 msgid "Settings for time series" msgstr "Configurações para séries temporais" -msgid "Share chart by email" -msgstr "Compartilhar gráfico por e-mail" - -msgid "Share permalink by email" -msgstr "Compartilhar permalink por e-mail" - +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:325 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:467 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 +#: superset-frontend/src/features/home/SavedQueries.tsx:211 msgid "Share" msgstr "Compartilhar" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:472 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:343 +msgid "Share chart by email" +msgstr "Compartilhar gráfico por e-mail" + +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:330 +msgid "Share permalink by email" +msgstr "Compartilhar permalink por e-mail" + +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1421 msgid "Shared query" msgstr "Consulta compartilhada" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:283 +#, fuzzy +msgid "Shared query fields" +msgstr "consultas salvas" + +#: superset/views/database/forms.py:308 msgid "Sheet Name" msgstr "Nome da planilha" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:579 msgid "Shift + Click to sort by multiple columns" msgstr "Shift + clique para organizar por colunas múltiplas" +#: superset/annotation_layers/annotations/commands/exceptions.py:46 msgid "Short description must be unique for this layer" msgstr "Uma breve descrição deve ser única para essa camada" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:130 msgid "" -"Should daily seasonality be applied. An integer value will specify Fourier " -"order of seasonality." +"Should daily seasonality be applied. An integer value will specify " +"Fourier order of seasonality." msgstr "" "Deve ser aplicada a sazonalidade diária. Um valor inteiro especificará a " "ordem de Fourier da sazonalidade." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:111 msgid "" -"Should weekly seasonality be applied. An integer value will specify Fourier " -"order of seasonality." +"Should weekly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." msgstr "" -"Deve ser aplicada a sazonalidade semanal. Um valor inteiro especificará a " -"ordem de Fourier da sazonalidade." +"Deve ser aplicada a sazonalidade semanal. Um valor inteiro especificará a" +" ordem de Fourier da sazonalidade." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:92 msgid "" -"Should yearly seasonality be applied. An integer value will specify Fourier " -"order of seasonality." +"Should yearly seasonality be applied. An integer value will specify " +"Fourier order of seasonality." msgstr "" "Deve ser aplicada a sazonalidade anual. Um valor inteiro especificará a " "ordem de Fourier da sazonalidade." +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:38 msgid "Show" msgstr "Mostrar" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:82 msgid "Show Bubbles" msgstr "Mostrar bolhas" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:234 msgid "Show CREATE VIEW statement" msgstr "Mostrar instrução CREATE VIEW" +#: superset/views/css_templates.py:39 msgid "Show CSS Template" msgstr "Mostral modelo CSS" +#: superset/views/chart/mixin.py:26 msgid "Show Chart" msgstr "Mostrar Gráfico" +#: superset/connectors/sqla/views.py:72 msgid "Show Column" msgstr "Mostrar Coluna" +#: superset/views/dashboard/mixin.py:25 msgid "Show Dashboard" msgstr "Mostrar Painel" -msgid "Show Labels" -msgstr "Mostrar rótulos" - +#: superset/views/database/mixins.py:34 msgid "Show Database" msgstr "Mostrar Banco de dados" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:126 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:148 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:94 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:73 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:71 +msgid "Show Labels" +msgstr "Mostrar rótulos" + +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:460 msgid "Show Less..." msgstr "Mostrar Menos..." +#: superset/views/log/__init__.py:22 msgid "Show Log" msgstr "Mostrar log" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:63 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:741 msgid "Show Markers" msgstr "Mostrar Marcadores" +#: superset/connectors/sqla/views.py:207 msgid "Show Metric" msgstr "Mostrar Métricas" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 msgid "Show Metric Names" msgstr "Mostrar nomes de métricas" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:139 msgid "Show Range Filter" msgstr "Mostrar filtro de intervalo" -msgid "Show Row level security filter" -msgstr "Mostrar filtro de segurança a nível de linha" - +#: superset/views/sql_lab/views.py:53 msgid "Show Saved Query" msgstr "Mostrar Consulta Salva" +#: superset/connectors/sqla/views.py:292 msgid "Show Table" msgstr "Mostrar Tabela" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:77 msgid "Show Timestamp" msgstr "Mostrar Carimbo de data/hora" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:190 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:100 msgid "Show Total" msgstr "Mostrar total" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:89 msgid "Show Trend Line" msgstr "Mostrar Linha de Tendência" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:83 msgid "Show Upper Labels" msgstr "Mostrar Sótulos Superiores" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:110 msgid "Show Value" msgstr "Mostrar valor" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:315 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:184 msgid "Show Values" msgstr "Mostrar valores" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:284 msgid "Show Y-axis" msgstr "Mostrar eixo Y" -msgid "Show all columns" -msgstr "Mostrar todas as colunas" - +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:285 msgid "" -"Show Y-axis on the sparkline. Will display the manually set min/max if set " -"or min/max values in the data otherwise." +"Show Y-axis on the sparkline. Will display the manually set min/max if " +"set or min/max values in the data otherwise." msgstr "" "Mostra o eixo Y na Sparkline. Exibirá os valores mínimo/máximo definidos " "manualmente, se definidos, ou os valores mínimo/máximo nos dados, caso " "contrário." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx:156 +msgid "Show all columns" +msgstr "Mostrar todas as colunas" + +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:423 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:460 msgid "Show all..." msgstr "Mostrar tudo..." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:202 msgid "Show axis line ticks" msgstr "Mostrar os tiques das linhas de eixo" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:108 msgid "Show cell bars" msgstr "Mostrar barras de células" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 msgid "Show chart description" msgstr "Mostrar descrição do gráfico" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:226 msgid "Show columns total" msgstr "Mostrar o total de colunas" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:66 msgid "Show data points as circle markers on the lines" msgstr "Mostrar pontos de dados como marcadores de círculos nas linhas" -msgid "" -"Show hierarchical relationships of data, with the value represented by area, " -"showing proportion and contribution to the whole." -msgstr "" -"Mostrar relações hierárquicas de dados, com o valor representado pela área, " -"mostrando a proporção e a contribuição para o todo." - +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:357 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:359 msgid "Show empty columns" msgstr "Mostrar colunas vazias" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:56 +msgid "" +"Show hierarchical relationships of data, with the value represented by " +"area, showing proportion and contribution to the whole." +msgstr "" +"Mostrar relações hierárquicas de dados, com o valor representado pela " +"área, mostrando a proporção e a contribuição para o todo." + +#: superset-frontend/packages/superset-ui-chart-controls/src/components/InfoTooltipWithTrigger.tsx:52 msgid "Show info tooltip" msgstr "Mostrar dica de ferramentas de informação" -msgid "Show labels when the node has children." -msgstr "Mostrar rótulos quando o nó tiver filhos." - +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:803 msgid "Show label" msgstr "Exibir rótulo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:86 +msgid "Show labels when the node has children." +msgstr "Mostrar rótulos quando o nó tiver filhos." + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:39 msgid "Show legend" msgstr "Mostrar legenda" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/ColumnConfigControl.tsx:151 msgid "Show less columns" msgstr "Mostrar menos colunas" +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:423 msgid "Show less..." msgstr "Mostrar menos..." +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:383 msgid "Show only my charts" msgstr "Mostrar apenas meu gráficos" +#: superset-frontend/src/components/Form/LabeledErrorBoundInput.tsx:140 msgid "Show password." msgstr "Mostrar senha." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:301 msgid "Show percentage" msgstr "Mostrar porcentagem" -msgid "Show progress" -msgstr "Mostrar progresso" - +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:175 msgid "Show pointer" msgstr "Mostrar ponteiro" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:241 +msgid "Show progress" +msgstr "Mostrar progresso" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:214 msgid "Show rows total" msgstr "Mostrar total de linhas" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 msgid "Show series values on the chart" msgstr "Mostrar valores de série sobre o gráfico" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:214 msgid "Show split lines" msgstr "Mostrar linhas divididas" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:317 msgid "Show the value on top of the bar" msgstr "Mostrar o valor na parte superior da barra" +#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:85 +msgid "Show time column" +msgstr "Mostrar coluna de tempo" + +#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:74 +msgid "Show time grain dropdown" +msgstr "Exibir menu suspenso de grãos de tempo" + +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:107 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:367 msgid "" -"Show total aggregations of selected metrics. Note that row limit does not " -"apply to the result." +"Show total aggregations of selected metrics. Note that row limit does not" +" apply to the result." msgstr "" "Mostrar agregações totais de métricas selecionadas. Note que o limite de " "linhas não se aplica ao resultado." -msgid "Show time column" -msgstr "Mostrar coluna de tempo" - -msgid "Show time grain dropdown" -msgstr "Exibir menu suspenso de grãos de tempo" - +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:365 msgid "Show totals" msgstr "Mostrar os totais" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:30 msgid "" -"Showcases a single metric front-and-center. Big number is best used to call " -"attention to a KPI or the one thing you want your audience to focus on." +"Showcases a single metric front-and-center. Big number is best used to " +"call attention to a KPI or the one thing you want your audience to focus " +"on." msgstr "" "Apresenta uma única métrica em primeiro plano. Um número grande é melhor " -"utilizado para chamar a atenção para um KPI ou para aquilo em que pretende " -"que o seu público se concentre." +"utilizado para chamar a atenção para um KPI ou para aquilo em que " +"pretende que o seu público se concentre." +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:32 msgid "" "Showcases a single number accompanied by a simple line chart, to call " -"attention to an important metric along with its change over time or other " -"dimension." +"attention to an important metric along with its change over time or other" +" dimension." msgstr "" -"Apresenta um único número acompanhado por um gráfico de linhas simples, para " -"chamar a atenção para uma métrica importante juntamente com a sua alteração " -"ao longo do tempo ou outra dimensão." +"Apresenta um único número acompanhado por um gráfico de linhas simples, " +"para chamar a atenção para uma métrica importante juntamente com a sua " +"alteração ao longo do tempo ou outra dimensão." +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:54 msgid "" -"Showcases how a metric changes as the funnel progresses. This classic chart " -"is useful for visualizing drop-off between stages in a pipeline or lifecycle." +"Showcases how a metric changes as the funnel progresses. This classic " +"chart is useful for visualizing drop-off between stages in a pipeline or " +"lifecycle." msgstr "" "Mostra como uma métrica muda à medida que o funil progride. Este gráfico " "clássico é útil para visualizar a queda entre as fases de um pipeline ou " "ciclo de vida." +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/index.js:28 msgid "" -"Showcases the flow or link between categories using thickness of chords. The " -"value and corresponding thickness can be different for each side." +"Showcases the flow or link between categories using thickness of chords. " +"The value and corresponding thickness can be different for each side." msgstr "" "Mostra o fluxo ou a ligação entre categorias utilizando a espessura das " -"cordas. O valor e a espessura correspondente podem ser diferentes para cada " -"lado." +"cordas. O valor e a espessura correspondente podem ser diferentes para " +"cada lado." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:28 msgid "" -"Showcases the progress of a single metric against a given target. The higher " -"the fill, the closer the metric is to the target." +"Showcases the progress of a single metric against a given target. The " +"higher the fill, the closer the metric is to the target." msgstr "" "Apresenta o progresso de uma única métrica em relação a um determinado " "objetivo. Quanto mais elevado for o preenchimento, mais próxima está a " "métrica do objetivo." +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:399 +#: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:436 +#, python-format msgid "Showing %s of %s" msgstr "Mostrando %s de %s" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 msgid "Shows a list of all series available at that point in time" msgstr "Mostra uma lista de todas as séries disponíveis nesse ponto no tempo" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:742 msgid "Shows or hides markers for the time series" msgstr "Mostra ou esconde marcadores para a série temporal" +#: superset-frontend/plugins/legacy-plugin-chart-treemap/src/index.js:31 msgid "" "Shows the composition of a dataset by segmenting a given rectangle as " -"smaller rectangles with areas proportional to their value or contribution to " -"the whole. Those rectangles may also, in turn, be further segmented " +"smaller rectangles with areas proportional to their value or contribution" +" to the whole. Those rectangles may also, in turn, be further segmented " "hierarchically." msgstr "" "Mostra a composição de um conjunto de dados através da segmentação de um " -"determinado retângulo em retângulos mais pequenos com áreas proporcionais ao " -"seu valor ou contribuição para o todo. Estes retângulos podem também, por " -"sua vez, ser segmentados hierarquicamente." +"determinado retângulo em retângulos mais pequenos com áreas proporcionais" +" ao seu valor ou contribuição para o todo. Estes retângulos podem também," +" por sua vez, ser segmentados hierarquicamente." +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:64 msgid "Significance Level" msgstr "Nível de significância" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 msgid "Simple" msgstr "Simples" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:432 msgid "Simple ad-hoc metrics are not enabled for this dataset" -msgstr "" -"As métricas ad-hoc simples não estão ativadas para este conjunto de dados" +msgstr "As métricas ad-hoc simples não estão ativadas para este conjunto de dados" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:187 msgid "Single" msgstr "Individual" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:45 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:46 msgid "Single Metric" msgstr "Métrica única" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1109 msgid "Single Value" msgstr "Valor único" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:67 msgid "Single value" msgstr "Valor único" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1126 msgid "Single value type" msgstr "Tipo de valor único" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:262 msgid "Size of edge symbols" msgstr "Tamanho dos símbolos de aresta" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:232 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:149 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:143 msgid "Size of marker. Also applies to forecast observations." msgstr "Tamanho do marcador. Também se aplica às observações de previsão." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:34 msgid "Sizes of vehicles" msgstr "Tamanhos de veículos" +#: superset/views/database/forms.py:187 msgid "Skip Blank Lines" msgstr "Pular Linhas em branco" +#: superset/views/database/forms.py:184 msgid "Skip Initial Space" msgstr "Pular espaço inicial" -msgid "Skip blank lines rather than interpreting them as Not A Number values" -msgstr "" -"Ignorar linhas em branco em vez de interpretá-las como valores não numéricos" - -msgid "Skip spaces after delimiter" -msgstr "Ignorar espaços após o delimitador" - +#: superset/views/database/forms.py:270 superset/views/database/forms.py:364 msgid "Skip Rows" msgstr "Pular Linhas" +#: superset/views/database/forms.py:188 +msgid "Skip blank lines rather than interpreting them as Not A Number values" +msgstr "" +"Ignorar linhas em branco em vez de interpretá-las como valores não " +"numéricos" + +#: superset/views/database/forms.py:184 +msgid "Skip spaces after delimiter" +msgstr "Ignorar espaços após o delimitador" + +#: superset/views/dashboard/mixin.py:79 msgid "Slug" msgstr "Slug" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:39 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:73 +#: superset-frontend/src/dashboard/util/headerStyleOptions.ts:25 msgid "Small" msgstr "Pequeno" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:149 msgid "Small number format" msgstr "Formato de número pequenoo" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:143 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:79 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:79 msgid "Smooth Line" msgstr "Linha Suave" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:65 msgid "" -"Smooth-line is a variation of the line chart. Without angles and hard edges, " -"Smooth-line sometimes looks smarter and more professional." +"Smooth-line is a variation of the line chart. Without angles and hard " +"edges, Smooth-line sometimes looks smarter and more professional." msgstr "" -"A linha suave é uma variação do gráfico de linhas. Sem ângulos nem arestas, " -"a linha suave tem por vezes um aspecto mais inteligente e profissional." +"A linha suave é uma variação do gráfico de linhas. Sem ângulos nem " +"arestas, a linha suave tem por vezes um aspecto mais inteligente e " +"profissional." +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:689 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:704 msgid "Solid" msgstr "Sólido" +#: superset/commands/exceptions.py:119 msgid "Some roles do not exist" msgstr "Algumas funções não existem" +#: superset-frontend/src/dashboard/components/URLShortLinkButton/index.tsx:64 msgid "Something went wrong." msgstr "Algo não correu bem." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:919 +#, python-format msgid "Sorry there was an error fetching database information: %s" msgstr "" -"Lamentamos, mas ocorreu um erro ao obter as informações do banco de dados: %s" +"Lamentamos, mas ocorreu um erro ao obter as informações do banco de " +"dados: %s" -msgid "Sorry there was an error fetching saved charts:" +#: superset-frontend/src/dashboard/actions/sliceEntities.ts:172 +#, fuzzy +msgid "Sorry there was an error fetching saved charts: " msgstr "Desculpe, houve um erro ao procurar gráficos salvos:" +#: superset-frontend/src/explore/components/controls/ViewQueryModal.tsx:64 msgid "Sorry, An error occurred" msgstr "Desculpe, ocorreu um erro" +#: superset-frontend/src/components/Chart/chartAction.js:639 +#: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:89 msgid "Sorry, an error occurred" msgstr "Desculpe, ocorreu um erro" +#: superset-frontend/src/dashboard/actions/dashboardState.js:359 msgid "Sorry, an unknown error occurred" msgstr "Desculpe, ocorreu um erro desconhecido" +#: superset-frontend/src/utils/getClientErrorObject.ts:97 msgid "Sorry, an unknown error occurred." msgstr "Desculpe, ocorreu um erro desconhecido." +#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:114 msgid "Sorry, something went wrong. Embedding could not be deactivated." msgstr "Desculpe, ocorreu um erro. Não foi possível desativar a incorporação." +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:71 +#: superset-frontend/src/dashboard/components/menu/ShareMenuItems/index.tsx:84 +#: superset-frontend/src/explore/components/EmbedCodeContent.jsx:58 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:130 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:187 msgid "Sorry, something went wrong. Try again later." msgstr "Desculpe, ocorreu um erro. Tente novamente mais tarde." +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/EventFlow.tsx:50 msgid "Sorry, there appears to be no data" msgstr "Desculpe, mas parece que não existem dados" +#: superset-frontend/src/utils/getClientErrorObject.ts:100 +#, python-format msgid "Sorry, there was an error saving this %s: %s" msgstr "Desculpe, houve um erro ao salvar este %s: %s" +#: superset-frontend/src/dashboard/actions/dashboardState.js:362 +#, python-format msgid "Sorry, there was an error saving this dashboard: %s" msgstr "Desculpe, houve um erro ao salvar este painel: %s" -msgid "Sort" -msgstr "Classificar" - -msgid "Sort Bars" -msgstr "Barras de classificação" - -msgid "Sort Descending" -msgstr "Ordenação decrescente" - -msgid "Sort Metric" -msgstr "Classificar métrica" - -msgid "Sort Series Ascending" -msgstr "Ordenar séries em ordem crescente" - -msgid "Sort Series By" -msgstr "Ordenar séries por" - +#: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:229 +#: superset-frontend/src/views/CRUD/hooks.ts:680 msgid "Sorry, your browser does not support copying." msgstr "Desculpe, seu navegador não suporta cópias." +#: superset-frontend/src/components/CopyToClipboard/index.jsx:81 msgid "Sorry, your browser does not support copying. Use Ctrl / Cmd + C!" msgstr "Desculpe, seu navegador não suporta cópias. Use Ctrl / Cmd + C!" +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 +#: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 +#: superset-frontend/src/components/Table/index.tsx:212 +msgid "Sort" +msgstr "Classificar" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:83 +msgid "Sort Bars" +msgstr "Barras de classificação" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:256 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:98 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:158 +msgid "Sort Descending" +msgstr "Ordenação decrescente" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1073 +msgid "Sort Metric" +msgstr "Classificar métrica" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:238 +msgid "Sort Series Ascending" +msgstr "Ordenar séries em ordem crescente" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:224 +msgid "Sort Series By" +msgstr "Ordenar séries por" + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:265 msgid "Sort X Axis" msgstr "Ordenar Eixo X" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:277 msgid "Sort Y Axis" msgstr "Ordenar Eixo Y" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1063 +#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:205 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:66 msgid "Sort ascending" msgstr "Ordenação crescente" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:86 msgid "Sort bars by x labels." msgstr "Ordenar as barras por rótulos x." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:190 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:365 +#: superset-frontend/src/explore/controls.jsx:364 msgid "Sort by" msgstr "Ordenar por" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:362 +#, python-format msgid "Sort by %s" msgstr "Ordenar por %s" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:95 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:50 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:42 msgid "Sort by metric" msgstr "Classificar por métrica" -msgid "Sort columns by" -msgstr "Classificar colunas por" - +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:214 msgid "Sort columns alphabetically" msgstr "Ordenar colunas alfabeticamente" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:322 +msgid "Sort columns by" +msgstr "Classificar colunas por" + +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:46 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:352 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1064 msgid "Sort descending" msgstr "Ordenação decrescente" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1042 msgid "Sort filter values" msgstr "Valores do filtro de classificação" -msgid "Sort rows by" -msgstr "Ordenar as linhas por" - +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1086 +#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:184 +#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:188 msgid "Sort metric" msgstr "Ordenar métrica" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:294 +msgid "Sort rows by" +msgstr "Ordenar as linhas por" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:241 msgid "Sort series in ascending order" msgstr "Ordenar as séries por ordem crescente" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1056 msgid "Sort type" msgstr "Tipo de classificação" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:53 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1355 msgid "Source" msgstr "Fonte" +#: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:37 msgid "Source / Target" msgstr "Fonte / Alvo" +#: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:76 msgid "Source SQL" msgstr "Fonte SQL" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:74 msgid "Source category" msgstr "Categoria de origem" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:73 msgid "Sparkline" msgstr "Sparkline" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:978 msgid "Spatial" msgstr "Espacial" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:87 msgid "Specific Date/Time" msgstr "Data/Hora Específica" +#: superset/views/database/forms.py:322 superset/views/database/forms.py:453 msgid "Specify a schema (if database flavor supports this)." msgstr "Especificar um esquema (se o variante do banco de dados o suportar)." +#: superset/views/database/forms.py:361 msgid "Specify duplicate columns as \"X.0, X.1\"." msgstr "Especificar colunas duplicadas como \"X.0, X.1\"." +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:705 msgid "Specify name to CREATE TABLE AS schema in: public" msgstr "Especificar o nome para CREATE TABLE AS schema in: public" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:704 msgid "Specify name to CREATE VIEW AS schema in: public" msgstr "Especificar o nome para CREATE VIEW AS schema in: public" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:551 msgid "" -"Specify the database version. This should be used with Presto in order to " -"enable query cost estimation." +"Specify the database version. This should be used with Presto in order to" +" enable query cost estimation." msgstr "" -"Especifique a versão do banco de dados. Isto deve ser utilizado com o Presto " -"para permitir a estimativa do custo da consulta." +"Especifique a versão do banco de dados. Isto deve ser utilizado com o " +"Presto para permitir a estimativa do custo da consulta." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:226 msgid "Split number" msgstr "Número de divisão" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:84 msgid "Square kilometers" msgstr "Quilômetros quadrados" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:83 msgid "Square meters" msgstr "Metros quadrados" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:85 msgid "Square miles" msgstr "Milhas quadradas" +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 msgid "Stack" msgstr "Pilha" +#: superset-frontend/packages/superset-ui-core/src/chart/components/FallbackComponent.tsx:51 msgid "Stack Trace:" msgstr "Rastreamento de Pilha:" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:158 msgid "Stack series" msgstr "Empilhar série" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:115 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:125 msgid "Stack series on top of each other" msgstr "Empilhar séries umas sobre as outras" +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:51 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:90 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:79 msgid "Stacked" msgstr "Empilhado" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:325 msgid "Stacked Bars" msgstr "Barras empilhadas" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:111 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:121 +#: superset-frontend/src/explore/fixtures.tsx:58 msgid "Stacked Style" msgstr "Estilos empilhados" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:37 msgid "Stacked style" msgstr "Estilos empilhados" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:81 msgid "Standard time series" msgstr "Série temporal padrão" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:75 +#: superset-frontend/src/pages/AnnotationList/index.tsx:169 msgid "Start" msgstr "Iniciar" -msgid "Start (Longitude, Latitude):" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.jsx:40 +#, fuzzy +msgid "Start (Longitude, Latitude): " msgstr "Início (Longitude, Latitude):" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:52 msgid "Start Longitude & Latitude" msgstr "Longitude e latitude iniciais" +#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:79 msgid "Start Review" msgstr "Iniciar revisão" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:106 msgid "Start angle" msgstr "Ângulo inicial" +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:128 msgid "Start at (UTC)" msgstr "Início em (UTC)" +#: superset-frontend/src/components/ListView/Filters/DateRange.tsx:67 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:307 msgid "Start date" msgstr "Data de início" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/AdvancedFrame.tsx:66 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/CustomFrame.tsx:131 msgid "Start date included in time range" msgstr "Data de início incluída no intervalo de tempo" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:101 msgid "Start y-axis at 0" msgstr "Iniciar o eixo y em 0" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:104 msgid "" -"Start y-axis at zero. Uncheck to start y-axis at minimum value in the data." +"Start y-axis at zero. Uncheck to start y-axis at minimum value in the " +"data." msgstr "" -"Iniciar o eixo y em zero. Desmarque para iniciar o eixo y no valor mínimo " -"dos dados." +"Iniciar o eixo y em zero. Desmarque para iniciar o eixo y no valor mínimo" +" dos dados." +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:81 msgid "Started" msgstr "Iniciado" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:80 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:97 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:367 msgid "State" msgstr "Estado" +#: superset/sql_lab.py:503 +#, python-format msgid "Statement %(statement_num)s out of %(statement_count)s" msgstr "Instrução %(statement_ num)s de % (statement_count)s" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:59 msgid "Statistical" msgstr "Estatístico" +#: superset-frontend/src/pages/AlertReportList/index.tsx:486 +#: superset-frontend/src/pages/DashboardList/index.tsx:337 +#: superset-frontend/src/pages/DashboardList/index.tsx:567 msgid "Status" msgstr "Estado" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:85 msgid "Step - end" msgstr "Etapa - fim" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:146 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:81 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:84 msgid "Step - middle" msgstr "Passo - meio" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:145 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:80 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:83 msgid "Step - start" msgstr "Passo - início" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:71 msgid "Step type" msgstr "Tipo de etapa" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:70 msgid "Stepped Line" msgstr "Linha escalonada" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:56 msgid "" -"Stepped-line graph (also called step chart) is a variation of line chart but " -"with the line forming a series of steps between data points. A step chart " -"can be useful when you want to show the changes that occur at irregular " -"intervals." +"Stepped-line graph (also called step chart) is a variation of line chart " +"but with the line forming a series of steps between data points. A step " +"chart can be useful when you want to show the changes that occur at " +"irregular intervals." msgstr "" -"O gráfico de linhas escalonadas (também designado por gráfico de passos) é " -"uma variação do gráfico de linhas, mas com a linha a formar uma série de " -"passos entre os pontos de dados. Um gráfico escalonado pode ser útil quando " -"se pretende mostrar as alterações que ocorrem em intervalos irregulares." +"O gráfico de linhas escalonadas (também designado por gráfico de passos) " +"é uma variação do gráfico de linhas, mas com a linha a formar uma série " +"de passos entre os pontos de dados. Um gráfico escalonado pode ser útil " +"quando se pretende mostrar as alterações que ocorrem em intervalos " +"irregulares." +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:46 +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 msgid "Stop" msgstr "Parar" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:339 msgid "Stop query" msgstr "Parar consulta" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:116 msgid "Stop running (Ctrl + e)" msgstr "Parar a execução (Ctrl + e)" +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 msgid "Stop running (Ctrl + x)" msgstr "Parar execução (Ctrl + x)" +#: superset/databases/commands/exceptions.py:128 msgid "Stopped an unsafe database connection" msgstr "Parou uma conexão insegura ao banco de dados" +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 msgid "Stream" msgstr "Fluxo" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:228 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:374 msgid "Streets" msgstr "Ruas" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:269 msgid "Strength to pull the graph toward center" msgstr "Força para puxar o gráfico para o centro" -msgid "Strings used for sheet names (default is the first sheet)." -msgstr "" -"Cadeias de caracteres usadas para nomes de planilhas (o padrão é a primeira " -"planilha)." - +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:36 msgid "Stretched style" msgstr "Estilo alongado" +#: superset/views/database/forms.py:309 +msgid "Strings used for sheet names (default is the first sheet)." +msgstr "" +"Cadeias de caracteres usadas para nomes de planilhas (o padrão é a " +"primeira planilha)." + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:234 msgid "Stroke Color" msgstr "Cor do traço" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:119 msgid "Stroke Width" msgstr "Largura do traço" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:259 msgid "Stroked" msgstr "Tracejado" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:45 msgid "Structural" msgstr "Estrutural" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:686 msgid "Style" msgstr "Estilo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:268 msgid "Style the ends of the progress bar with a round cap" msgstr "Estilizar as extremidades da barra de progresso com uma tampa redonda" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 msgid "Subdomain" msgstr "Subdomínio" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 msgid "Subheader" msgstr "Subtítulo" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:62 msgid "Subheader Font Size" msgstr "Tamanho da fonte do subtítulo" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:209 msgid "Submit" msgstr "Enviar" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 +#: superset/charts/post_processing.py:161 +#: superset/charts/post_processing.py:178 msgid "Subtotal" msgstr "Subtotal" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:127 +#: superset-frontend/src/pages/AlertReportList/index.tsx:62 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:154 msgid "Success" msgstr "Sucesso" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 msgid "Successfully changed dataset!" msgstr "Conjunto de dados alterado com sucesso!" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:68 msgid "Suffix to apply after the percentage display" msgstr "Sufixo para aplicar após a apresentação da percentagem" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:182 msgid "Sum" msgstr "Soma" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:193 msgid "Sum as Fraction of Columns" msgstr "Soma como Fração de Colunas" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:192 msgid "Sum as Fraction of Rows" msgstr "Soma como Fração de Linhas" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:191 msgid "Sum as Fraction of Total" msgstr "Soma como Fração do Total" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:91 msgid "Sum of values over specified period" msgstr "Soma dos valores durante o período especificado" -msgid "Sunburst" -msgstr "Sunburst" - +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:191 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:265 msgid "Sum values" msgstr "Valores da soma" +#: superset/viz.py:1805 +msgid "Sunburst" +msgstr "Sunburst" + +#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:32 msgid "Sunburst Chart" msgstr "Gráfico Sunburst" +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:45 msgid "Sunburst Chart v2" msgstr "Gráfico Sunburst v2" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:56 msgid "Sunday" msgstr "Domingo" +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:125 +#, fuzzy +msgid "Superset Chart" +msgstr "Gráfico do Superset" + +#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:187 msgid "Superset Embedded SDK documentation." msgstr "Documentação do SDK incorporado Superset." +#: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:473 msgid "Superset chart" msgstr "Gráfico do Superset" +#: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:233 msgid "Superset dashboard" msgstr "Painel Superset" +#: superset/errors.py:111 msgid "Superset encountered an error while running a command." msgstr "O Superset encontrou um erro ao executar um comando." +#: superset/errors.py:112 msgid "Superset encountered an unexpected error." msgstr "O Superset encontrou um erro inesperado." +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 msgid "Supported databases" msgstr "Bancos de dados compatíveis" +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:34 msgid "Survey Responses" msgstr "Respostas da pesquisa" -msgid "Swap Groups and Columns" -msgstr "Trocar Grupos e Colunas" - +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:311 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:435 msgid "Swap dataset" msgstr "Trocar conjunto de dados" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:240 msgid "Swap rows and columns" msgstr "Trocar linhas e colunas" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:55 msgid "" -"Swiss army knife for visualizing data. Choose between step, line, scatter, " -"and bar charts. This viz type has many customization options as well." +"Swiss army knife for visualizing data. Choose between step, line, " +"scatter, and bar charts. This viz type has many customization options as " +"well." msgstr "" -"Canivete suíço para visualizar dados. Escolha entre gráficos de etapas, de " -"linhas, de dispersão e de barras. Esse tipo de visualização também tem " -"muitas opções de personalização." +"Canivete suíço para visualizar dados. Escolha entre gráficos de etapas, " +"de linhas, de dispersão e de barras. Esse tipo de visualização também tem" +" muitas opções de personalização." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:58 msgid "" "Swiss army knife for visualizing time series data. Choose between step, " -"line, scatter, and bar charts. This viz type has many customization options " -"as well." +"line, scatter, and bar charts. This viz type has many customization " +"options as well." msgstr "" "Canivete suíço para visualizar dados de séries temporais. Escolha entre " "gráficos de etapas, de linhas, de dispersão e de barras. Esse tipo de " "visualização também tem muitas opções de personalização." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:211 +#, fuzzy +msgid "Symbol" +msgstr "Símbolos de borda" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:126 msgid "Symbol of two ends of edge line" msgstr "Símbolo de duas extremidades da linha de borda" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:256 msgid "Symbol size" msgstr "Tamanho do símbolo" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1389 msgid "Sync columns from source" msgstr "Sincronizar colunas da fonte" +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:30 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:44 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:62 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:76 +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:89 msgid "Syntax" msgstr "Sintaxe" +#: superset/db_engine_specs/ocient.py:282 +#, python-format +msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +msgstr "" + +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:268 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:315 msgid "TABLES" msgstr "TABELAS" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:279 msgid "TEMPORAL X-AXIS" msgstr "EIXO X TEMPORAL" +#: superset-frontend/src/explore/constants.ts:91 msgid "TEMPORAL_RANGE" msgstr "INTERVALO TEMPORAL" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:85 msgid "THU" msgstr "QUI" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:83 msgid "TUE" msgstr "TER" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:147 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:236 msgid "Tab name" msgstr "Nome da aba" +#: superset-frontend/src/dashboard/util/newComponentFactory.js:58 +#: superset-frontend/src/dashboard/util/newComponentFactory.js:59 msgid "Tab title" msgstr "Título da aba" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 +#: superset-frontend/src/components/TableSelector/index.tsx:279 +#: superset-frontend/src/visualizations/TimeTable/index.ts:26 +#: superset/connectors/sqla/views.py:159 superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:384 superset/views/chart/mixin.py:86 msgid "Table" msgstr "Tabela" +#: superset/views/core.py:1775 +#, python-format msgid "Table %(table)s wasn't found in the database %(db)s" msgstr "Tabela %(table)s não foi encontrada no banco de dados %(db)s" +#: superset/views/database/forms.py:327 superset/views/database/forms.py:458 msgid "Table Exists" msgstr "A Tabela existe" +#: superset/connectors/sqla/views.py:394 superset/views/database/forms.py:128 +#: superset/views/database/forms.py:279 superset/views/database/forms.py:415 msgid "Table Name" msgstr "Nome da Tabela" +#: superset/viz.py:722 msgid "Table View" msgstr "Visão da Tabela" +#: superset/datasets/commands/exceptions.py:147 +#, python-format msgid "" -"Table [%(table_name)s] could not be found, please double check your database " -"connection, schema, and table name" +"Table [%(table_name)s] could not be found, please double check your " +"database connection, schema, and table name" msgstr "" -"Não foi possível encontrar a tabela [%(table_name)s], verifique novamente a " -"conexão ao banco de dados, o esquema e o nome da tabela" +"Não foi possível encontrar a tabela [%(table_name)s], verifique novamente" +" a conexão ao banco de dados, o esquema e o nome da tabela" +#: superset/views/base.py:303 msgid "" "Table [%{table}s] could not be found, please double check your database " "connection, schema, and table name, error: {}" @@ -9863,21 +15109,33 @@ msgstr "" "Não foi possível encontrar a tabela [%{table}s], verifique novamente a " "conexão ao banco de dados, o esquema e o nome da tabela, erro: {}" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:278 msgid "Table cache timeout" msgstr "Tempo limite do cache da tabela" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:176 msgid "Table columns" msgstr "Colunas da tabela" +#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:273 msgid "Table loading" msgstr "Carregamento da tabela" +#: superset/views/database/forms.py:132 superset/views/database/forms.py:283 +#: superset/views/database/forms.py:419 msgid "Table name cannot contain a schema" msgstr "O nome da tabela não pode conter um esquema" +#: superset/databases/decorators.py:47 msgid "Table name undefined" msgstr "Não da tabela indefinido" +#: superset/db_engine_specs/ocient.py:287 +#, fuzzy, python-format +msgid "Table or View \"%(table)s\" does not exist." +msgstr "O nome de usuário \"%(username)s\" não existe." + +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 msgid "" "Table that visualizes paired t-tests, which are used to understand " "statistical differences between groups." @@ -9885,117 +15143,164 @@ msgstr "" "Tabela que visualiza testes t emparelhados, que são utilizados para " "compreender as diferenças estatísticas entre grupos." +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:384 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:393 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:287 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:334 +#: superset/connectors/sqla/views.py:291 msgid "Tables" msgstr "Tabelas" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewTabs.jsx:31 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:63 msgid "Tabs" msgstr "Abas" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 +#: superset-frontend/plugins/plugin-chart-table/src/index.ts:54 +#: superset-frontend/src/visualizations/TimeTable/index.ts:37 msgid "Tabular" msgstr "Tabular" +#: superset/tags/commands/exceptions.py:34 msgid "Tag could not be created." msgstr "Não foi possível criar a tag." +#: superset/tags/commands/exceptions.py:38 msgid "Tag could not be deleted." msgstr "Não foi possível excluir a tag." +#: superset/tags/exceptions.py:28 msgid "Tag name is invalid (cannot contain ':')" msgstr "O nome do rótulo é inválido (não pode conter ':')" +#: superset/tags/commands/exceptions.py:30 msgid "Tag parameters are invalid." msgstr "Os parâmetros da tag são inválidos." +#: superset/tags/commands/exceptions.py:42 msgid "Tagged Object could not be deleted." msgstr "O objeto marcado não pôde ser excluído." +#: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:126 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:736 +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:430 +#: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:683 +#: superset-frontend/src/pages/ChartList/index.tsx:482 +#: superset-frontend/src/pages/ChartList/index.tsx:714 +#: superset-frontend/src/pages/DashboardList/index.tsx:394 +#: superset-frontend/src/pages/DashboardList/index.tsx:595 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:382 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:487 +#: superset-frontend/src/pages/Tags/index.tsx:279 +#: superset/initialization/__init__.py:378 msgid "Tags" msgstr "Tags" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:29 msgid "" -"Take your data points, and group them into \"bins\" to see where the densest " -"areas of information lie" +"Take your data points, and group them into \"bins\" to see where the " +"densest areas of information lie" msgstr "" -"Pegue seus pontos de dados e agrupe-os em \"bins\" para ver onde estão as " -"áreas mais densas de informações" +"Pegue seus pontos de dados e agrupe-os em \"bins\" para ver onde estão as" +" áreas mais densas de informações" +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:63 msgid "Target" msgstr "Alvo" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:92 msgid "Target Color" msgstr "Cor do alvo" -msgid "Target category" -msgstr "Categoria de destino" - -msgid "Target value" -msgstr "Valor alvo" - -msgid "" -"Take your data points, and group them into \"bins\"to see where the densest " -"areas of information lie" -msgstr "" -"Pegue nos seus pontos de dados e agrupe-os em \"bins\" para ver onde se " -"encontram as áreas mais densas de informação" - +#: superset-frontend/plugins/legacy-plugin-chart-treemap/src/controlPanel.ts:57 msgid "Target aspect ratio for treemap tiles." msgstr "Alvo de aspecto pretendido para mosaicos de mapas de árvore." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:87 +msgid "Target category" +msgstr "Categoria de destino" + +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 +msgid "Target value" +msgstr "Valor alvo" + +#: superset/views/css_templates.py:46 msgid "Template Name" msgstr "Nome do Modelo" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:962 +#: superset/connectors/sqla/views.py:400 msgid "Template parameters" msgstr "Parâmetros do Modelo" +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:52 msgid "" -"Templated link, it's possible to include {{ metric }} or other values coming " -"from the controls." +"Templated link, it's possible to include {{ metric }} or other values " +"coming from the controls." msgstr "" "Link do modelo, é possível incluir {{ métrica }} ou outros valores " "provenientes dos controles." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:327 msgid "" -"Terminate running queries when browser window closed or navigated to another " -"page. Available for Presto, Hive, MySQL, Postgres and Snowflake databases." +"Terminate running queries when browser window closed or navigated to " +"another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " +"databases." msgstr "" -"Termina as consultas em execução quando a janela do browser é fechada ou se " -"navega para outra página. Disponível para bancos de dados Presto, Hive, " -"MySQL, Postgres e Snowflake." +"Termina as consultas em execução quando a janela do browser é fechada ou " +"se navega para outra página. Disponível para bancos de dados Presto, " +"Hive, MySQL, Postgres e Snowflake." +#: superset/templates/superset/models/database/macros.html:22 msgid "Test Connection" msgstr "Testar Conexão" +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:111 msgid "Test connection" msgstr "Testar Conexão" +#: superset-frontend/src/dashboard/components/gridComponents/new/NewMarkdown.jsx:31 +#: superset-frontend/src/visualizations/TimeTable/index.ts:38 msgid "Text" msgstr "Texto" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:94 msgid "Text align" msgstr "Alinhamento Texto" +#: superset-frontend/src/components/ReportModal/index.tsx:247 msgid "Text embedded in email" msgstr "Texto incorporado no e-mail" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:99 +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/index.tsx:105 +#, python-format msgid "The API response from %s does not match the IDatabaseTable interface." msgstr "A resposta da API de %s não corresponde à interface IDatabaseTable." +#: superset/views/dashboard/mixin.py:52 msgid "" -"The CSS for individual dashboards can be altered here, or in the dashboard " -"view where changes are immediately visible" +"The CSS for individual dashboards can be altered here, or in the " +"dashboard view where changes are immediately visible" msgstr "" -"O CSS para painéis individuais pode ser alterado aqui ou na visão do painel, " -"onde as alterações são imediatamente visíveis" +"O CSS para painéis individuais pode ser alterado aqui ou na visão do " +"painel, onde as alterações são imediatamente visíveis" +#: superset/errors.py:124 msgid "" "The CTAS (create table as select) doesn't have a SELECT statement at the " -"end. Please make sure your query has a SELECT as its last statement. Then, " -"try running your query again." +"end. Please make sure your query has a SELECT as its last statement. " +"Then, try running your query again." msgstr "" "O CTAS (create table as select) não tem uma instrução SELECT no final. " -"Certifique-se de que sua consulta tenha um SELECT como última instrução. Em " -"seguida, tente executar sua consulta novamente." +"Certifique-se de que sua consulta tenha um SELECT como última instrução. " +"Em seguida, tente executar sua consulta novamente." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:27 msgid "" "The GeoJsonLayer takes in GeoJSON formatted data and renders it as " "interactive polygons, lines and points (circles, icons and/or texts)." @@ -10003,74 +15308,83 @@ msgstr "" "O GeoJsonLayer recebe dados formatados em GeoJSON e apresenta-os como " "polígonos, linhas e pontos interativos (círculos, ícones e/ou textos)." +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:406 msgid "The URL is missing the dataset_id or slice_id parameters." msgstr "O URL não tem os parâmetros dataset_id ou slice_id." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:313 msgid "The X-axis is not on the filters list" msgstr "O eixo X não consta da lista de filtros" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:315 msgid "" -"The X-axis is not on the filters list which will prevent it from being used " -"in\n" -" time range filters in dashboards. Would you like to add it to " -"the filters list?" +"The X-axis is not on the filters list which will prevent it from being " +"used in\n" +" time range filters in dashboards. Would you like to add it to" +" the filters list?" msgstr "" -"O eixo X não está na lista de filtros, o que impedirá a sua utilização em\n" -" filtros de intervalo de tempo nos painéis. Gostaria de o adicionar à lista " -"de filtros?" +"O eixo X não está na lista de filtros, o que impedirá a sua utilização em" +"\n" +" filtros de intervalo de tempo nos painéis. Gostaria de o adicionar à " +"lista de filtros?" +#: superset/views/core.py:373 msgid "The access requests seem to have been deleted" msgstr "Os pedidos de acesso parecem ter sido excluídos" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:168 msgid "The annotation has been saved" msgstr "A anotação foi salva" +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:152 msgid "The annotation has been updated" msgstr "A anotação foi atualizada" -msgid "The chart datasource does not exist" -msgstr "A fonte de dados do gráfico não existe" - -msgid "The chart does not exist" -msgstr "O gráfico não existe" - +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:75 msgid "" -"The category of source nodes used to assign colors. If a node is associated " -"with more than one category, only the first will be used." +"The category of source nodes used to assign colors. If a node is " +"associated with more than one category, only the first will be used." msgstr "" "A categoria dos nós de origem utilizada para atribuir cores. Se um nó " "estiver associado a mais do que uma categoria, apenas a primeira será " "utilizada." +#: superset/common/query_context_processor.py:585 +msgid "The chart datasource does not exist" +msgstr "A fonte de dados do gráfico não existe" + +#: superset/common/query_context_processor.py:583 +msgid "The chart does not exist" +msgstr "O gráfico não existe" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/index.ts:58 msgid "" "The classic. Great for showing how much of a company each investor gets, " -"what demographics follow your blog, or what portion of the budget goes to " -"the military industrial complex.\n" +"what demographics follow your blog, or what portion of the budget goes to" +" the military industrial complex.\n" "\n" -" Pie charts can be difficult to interpret precisely. If clarity of " -"relative proportion is important, consider using a bar or other chart type " -"instead." +" Pie charts can be difficult to interpret precisely. If clarity of" +" relative proportion is important, consider using a bar or other chart " +"type instead." msgstr "" -"O clássico. Ótimo para mostrar quanto de uma empresa cada investidor recebe, " -"que dados demográficos seguem o seu blog ou que parte do orçamento vai para " -"o complexo industrial militar.\n" +"O clássico. Ótimo para mostrar quanto de uma empresa cada investidor " +"recebe, que dados demográficos seguem o seu blog ou que parte do " +"orçamento vai para o complexo industrial militar.\n" "\n" -" Os gráficos de pizza podem ser difíceis de interpretar com precisão. Se a " -"clareza da proporção relativa for importante, considere utilizar um gráfico " -"de barras ou outro tipo de gráfico." +" Os gráficos de pizza podem ser difíceis de interpretar com precisão. Se " +"a clareza da proporção relativa for importante, considere utilizar um " +"gráfico de barras ou outro tipo de gráfico." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:266 msgid "The color for points and clusters in RGB" msgstr "A cor dos pontos e clusters em RGB" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:341 +#: superset-frontend/src/explore/controls.jsx:464 msgid "The color scheme for rendering chart" msgstr "O esquema de cores para a renderização do gráfico" -msgid "The column header label" -msgstr "O rótulo do cabeçalho da coluna" - -msgid "The column was deleted or renamed in the database." -msgstr "A coluna foi excluída ou renomeada no banco de dados." - +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:55 msgid "" "The color scheme is determined by the related dashboard.\n" " Edit the color scheme in the dashboard properties." @@ -10078,6 +15392,15 @@ msgstr "" "O esquema de cores é determinado pelo painel relacionado.\n" " Edite o esquema de cores nas propriedades do painel." +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:196 +msgid "The column header label" +msgstr "O rótulo do cabeçalho da coluna" + +#: superset/errors.py:105 +msgid "The column was deleted or renamed in the database." +msgstr "A coluna foi excluída ou renomeada no banco de dados." + +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:49 msgid "" "The country code standard that Superset should expect to find in the " "[country] column" @@ -10085,61 +15408,90 @@ msgstr "" "O código de país padrão que o Superset deve esperar encontrar na coluna " "[country]" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:465 msgid "The dashboard has been saved" msgstr "O painel foi salvo" +#: superset/views/core.py:197 msgid "The data source seems to have been deleted" msgstr "A Fonte de dados parece ter sido excluída" +#: superset/connectors/sqla/views.py:114 msgid "" "The data type that was inferred by the database. It may be necessary to " -"input a type manually for expression-defined columns in some cases. In most " -"case users should not need to alter this." +"input a type manually for expression-defined columns in some cases. In " +"most case users should not need to alter this." msgstr "" -"O tipo de dados que foi inferido pela base de dados. Em alguns casos, pode " -"ser necessário introduzir manualmente um tipo para colunas definidas por " -"expressões. Na maioria dos casos, os usuários não devem precisar de alterar " -"isto." +"O tipo de dados que foi inferido pela base de dados. Em alguns casos, " +"pode ser necessário introduzir manualmente um tipo para colunas definidas" +" por expressões. Na maioria dos casos, os usuários não devem precisar de " +"alterar isto." +#: superset-frontend/src/pages/DatabaseList/index.tsx:529 +#, fuzzy, python-format +msgid "" +"The database %s is linked to %s charts that appear on %s dashboards and " +"users have %s SQL Lab tabs using this database open. Are you sure you " +"want to continue? Deleting the database will break those objects." +msgstr "" +"O conjunto de dados %s é ligado aos %s gráficos que aparecerem em %s " +"painéis. Tem certeza que você deseja continuar? A eliminação do conjunto " +"de dados irá quebrar esses objetos." + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:198 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:28 msgid "The database columns that contains lines information" msgstr "As colunas do banco de dados que contêm informações sobre as linhas" +#: superset/sqllab/commands/estimate.py:58 +msgid "The database could not be found" +msgstr "Não foi possível encontrar o banco de dados" + +#: superset/errors.py:132 msgid "The database is currently running too many queries." msgstr "O banco de dados está atualmente executando muitas consultas." +#: superset/errors.py:99 +msgid "The database is under an unusual load." +msgstr "O banco de dados está sob uma carga incomum." + +#: superset/sqllab/commands/execute.py:172 msgid "" "The database referenced in this query was not found. Please contact an " "administrator for further assistance or try again." msgstr "" -"O banco de dados referenciado nesta consulta não foi encontrado. Contate um " -"administrador para obter mais assistência ou tente novamente." - -msgid "" -"The dataset %s is linked to %s charts that appear on %s dashboards. Are you " -"sure you want to continue? Deleting the dataset will break those objects." -msgstr "" -"O conjunto de dados %s é ligado aos %s gráficos que aparecerem em %s " -"painéis. Tem certeza que você deseja continuar? A eliminação do conjunto de " -"dados irá quebrar esses objetos." - -msgid "The database could not be found" -msgstr "Não foi possível encontrar o banco de dados" - -msgid "The database is under an unusual load." -msgstr "O banco de dados está sob uma carga incomum." +"O banco de dados referenciado nesta consulta não foi encontrado. Contate " +"um administrador para obter mais assistência ou tente novamente." +#: superset/errors.py:100 msgid "The database returned an unexpected error." msgstr "O banco de dados retornou um erro inesperado." +#: superset/errors.py:144 msgid "The database was deleted." msgstr "O banco de dados foi excluído." +#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2039 msgid "The database was not found." msgstr "O banco de dados não foi encontrado." +#: superset-frontend/src/pages/DatasetList/index.tsx:724 +#, python-format +msgid "" +"The dataset %s is linked to %s charts that appear on %s dashboards. Are " +"you sure you want to continue? Deleting the dataset will break those " +"objects." +msgstr "" +"O conjunto de dados %s é ligado aos %s gráficos que aparecerem em %s " +"painéis. Tem certeza que você deseja continuar? A eliminação do conjunto " +"de dados irá quebrar esses objetos." + +#: superset-frontend/src/components/Chart/Chart.jsx:88 +#: superset/views/utils.py:272 msgid "The dataset associated with this chart no longer exists" msgstr "O conjunto de dados associado a este gráfico já não existe" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:210 msgid "" "The dataset configuration exposed here\n" " affects all the charts using this dataset.\n" @@ -10147,405 +15499,429 @@ msgid "" " here may affect other charts\n" " in undesirable ways." msgstr "" -"A configuração do conjunto de dados exposta aqui afeta todos os gráficos que " -"usam esse conjunto de dados.\n" +"A configuração do conjunto de dados exposta aqui afeta todos os gráficos " +"que usam esse conjunto de dados.\n" " Tenha em mente que alterar as configurações\n" " aqui pode afetar outros gráficos \n" " de maneiras indesejáveis." +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:164 +#: superset-frontend/src/pages/ChartCreation/index.tsx:261 msgid "The dataset has been saved" msgstr "O conjunto de dados foi salvo" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:424 msgid "The dataset linked to this chart may have been deleted." msgstr "O conjunto de dados vinculado a esse gráfico pode ter sido excluído." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1488 msgid "The datasource couldn't be loaded" msgstr "A fonte de dados não pode ser carregada" +#: superset/errors.py:98 +msgid "The datasource is too large to query." +msgstr "A fonte de dados é muito grande para ser consultada." + +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:371 msgid "" -"The description can be displayed as widget headers in the dashboard view. " -"Supports markdown." +"The description can be displayed as widget headers in the dashboard view." +" Supports markdown." msgstr "" "A descrição pode ser apresentada como cabeçalhos de widgets na visão do " "painel. Suporta markdown." -msgid "The datasource is too large to query." -msgstr "A fonte de dados é muito grande para ser consultada." - +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 msgid "The distance between cells, in pixels" msgstr "A distância entre células, em pixels" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:946 msgid "" -"The following entries in `series_columns` are missing in `columns`: " -"%(columns)s." -msgstr "" -"As seguintes entradas em `series_columns` estão faltando em `columns`: " -"%(columns)s." - -msgid "" -"The duration of time in seconds before the cache is invalidated. Set to -1 " -"to bypass the cache." +"The duration of time in seconds before the cache is invalidated. Set to " +"-1 to bypass the cache." msgstr "" "O período de tempo, em segundos, antes de o cache ser invalidado. Defina " "como -1 para ignorar o cache." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:348 msgid "The encoding format of the lines" msgstr "The encoding format of the lines" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:531 msgid "" "The engine_params object gets unpacked into the sqlalchemy.create_engine " "call." msgstr "" -"O objeto engine_params é descompactado na chamada sqlalchemy.create_engine." +"O objeto engine_params é descompactado na chamada " +"sqlalchemy.create_engine." +#: superset/common/query_object.py:313 +#, fuzzy, python-format +msgid "" +"The following entries in `series_columns` are missing in `columns`: " +"%(columns)s. " +msgstr "" +"As seguintes entradas em `series_columns` estão faltando em `columns`: " +"%(columns)s." + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:111 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:67 msgid "The function to use when aggregating points into groups" msgstr "A função para usar quando agregar pontos em grupos" -msgid "The host \"%(hostname)s\"might be down and can't be reached." +#: superset/db_engine_specs/mysql.py:160 +#, fuzzy, python-format +msgid "The host \"%(hostname)s\" might be down and can't be reached." msgstr "O host \"%(hostname)s\"pode ter caído e não pode ser alcançado." +#: superset/db_engine_specs/mssql.py:103 +#: superset/db_engine_specs/postgres.py:139 +#: superset/db_engine_specs/presto.py:691 +#: superset/db_engine_specs/redshift.py:86 +#, fuzzy, python-format msgid "" -"The host \"%(hostname)s\"might be down, and can't be reached on port " +"The host \"%(hostname)s\" might be down, and can't be reached on port " "%(port)s." msgstr "" "O host \"%(hostname)s\"pode ter caído, e não pode ser alcançado na porta " "%(port)s." +#: superset/errors.py:110 msgid "The host might be down, and can't be reached on the provided port." msgstr "O host pode ter caído, e não pode ser alcançado na porta fornecida." -msgid "The hostname \"%(hostname)s\"cannot be resolved." +#: superset/db_engine_specs/mssql.py:93 +#: superset/db_engine_specs/postgres.py:129 +#: superset/db_engine_specs/presto.py:686 +#: superset/db_engine_specs/redshift.py:76 +#, fuzzy, python-format +msgid "The hostname \"%(hostname)s\" cannot be resolved." msgstr "O nome de host \"%(hostname)s\"não pode ser resolvido." +#: superset/errors.py:108 msgid "The hostname provided can't be resolved." msgstr "O nome do host oferecido não pode ser resolvido." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:72 +#: superset-frontend/src/explore/controlPanels/sections.tsx:34 msgid "The id of the active chart" msgstr "O id do gráfico ativo" +#: superset/connectors/sqla/views.py:325 msgid "" -"The list of charts associated with this table. By altering this datasource, " -"you may change how these associated charts behave. Also note that charts " -"need to point to a datasource, so this form will fail at saving if removing " -"charts from a datasource. If you want to change the datasource for a chart, " -"overwrite the chart from the 'explore view'" +"The list of charts associated with this table. By altering this " +"datasource, you may change how these associated charts behave. Also note " +"that charts need to point to a datasource, so this form will fail at " +"saving if removing charts from a datasource. If you want to change the " +"datasource for a chart, overwrite the chart from the 'explore view'" msgstr "" "A lista de gráficos associados a esta tabela. Ao alterar esta fonte de " -"dados, pode alterar o comportamento dos gráficos associados. Tenha também em " -"atenção que os gráficos têm de apontar para uma fonte de dados, pelo que " -"este formulário falhará ao ser guardado se remover gráficos de uma fonte de " -"dados. Se pretender alterar a fonte de dados de um gráfico, substitua o " -"gráfico da 'visão de exploração'" +"dados, pode alterar o comportamento dos gráficos associados. Tenha também" +" em atenção que os gráficos têm de apontar para uma fonte de dados, pelo " +"que este formulário falhará ao ser guardado se remover gráficos de uma " +"fonte de dados. Se pretender alterar a fonte de dados de um gráfico, " +"substitua o gráfico da 'visão de exploração'" -msgid "" -"The maximum number of events to return, equivalent to the number of rows" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:129 +msgid "The maximum number of events to return, equivalent to the number of rows" msgstr "O número máximo de eventos retornados, equivalente ao número de linhas" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:172 msgid "" -"The maximum number of subdivisions of each group; lower values are pruned " -"first" +"The maximum number of subdivisions of each group; lower values are pruned" +" first" msgstr "" "O máximo número de subdivisões de cada grupo ; mais baixo os valores são " "podados primeiro" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:50 msgid "The maximum value of metrics. It is an optional configuration" msgstr "O valor máximo de métricas. Trata-se de uma configuração opcional" -msgid "" -"The minimum number of rolling periods required to show a value. For instance " -"if you do a cumulative sum on 7 days you may want your \"Min Period\" to be " -"7, so that all data points shown are the total of 7 periods. This will hide " -"the \"ramp up\" taking place over the first 7 periods" -msgstr "" -"O número mínimo de períodos de rolagem necessários para mostrar um valor. " -"Por exemplo, se você fizer uma soma cumulativa em 7 dias, talvez queira que " -"seu \"Min Period\" seja 7, de modo que todos os pontos de dados mostrados " -"sejam o total de 7 períodos. Isso ocultará o \"ramp up\" que ocorre nos " -"primeiros 7 períodos" - +#: superset/databases/schemas.py:222 +#, python-format msgid "" "The metadata_params in Extra field is not configured correctly. The key " "%(key)s is invalid." msgstr "" -"O metadata_params no campo Extra não está configurado corretamente. A chave " -"%(key)s é inválida." +"O metadata_params no campo Extra não está configurado corretamente. A " +"chave %(key)s é inválida." +#: superset/databases/commands/exceptions.py:80 +#: superset/views/database/mixins.py:248 msgid "" "The metadata_params in Extra field is not configured correctly. The key " "%{key}s is invalid." msgstr "" -"O metadata_params no campo Extra não está configurado corretamente. A chave " -"%{key}s é inválida." +"O metadata_params no campo Extra não está configurado corretamente. A " +"chave %{key}s é inválida." +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:505 msgid "" -"The metadata_params object gets unpacked into the sqlalchemy.MetaData call." -msgstr "" -"O objeto metadata_params é desempacotado na chamada sqlalchemy.MetaData." +"The metadata_params object gets unpacked into the sqlalchemy.MetaData " +"call." +msgstr "O objeto metadata_params é desempacotado na chamada sqlalchemy.MetaData." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:82 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:285 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:167 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:436 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:216 +#: superset-frontend/src/explore/controlPanels/sections.tsx:164 msgid "" -"The minimum number of rolling periods required to show a value. For instance " -"if you do a cumulative sum on 7 days you may want your \"Min Period\"to be " -"7, so that all data points shown are the total of 7 periods. This will hide " -"the \"ramp up\"taking place over the first 7 periods" +"The minimum number of rolling periods required to show a value. For " +"instance if you do a cumulative sum on 7 days you may want your \"Min " +"Period\" to be 7, so that all data points shown are the total of 7 " +"periods. This will hide the \"ramp up\" taking place over the first 7 " +"periods" msgstr "" -"O número mínimo de períodos de rolamento necessário para mostrar um valor. " -"Por exemplo, se fizer uma soma cumulativa em 7 dias, pode querer que o seu " -"\"Min Period\" seja 7, para que todos os pontos de dados apresentados sejam " -"o total de 7 períodos. Isto ocultará a \"ramp up\" que ocorre nos primeiros " -"7 períodos" +"O número mínimo de períodos de rolagem necessários para mostrar um valor." +" Por exemplo, se você fizer uma soma cumulativa em 7 dias, talvez queira " +"que seu \"Min Period\" seja 7, de modo que todos os pontos de dados " +"mostrados sejam o total de 7 períodos. Isso ocultará o \"ramp up\" que " +"ocorre nos primeiros 7 períodos" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 msgid "The number color \"steps\"" msgstr "A cor do número \"steps\"" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:955 msgid "" -"The number of hours, negative or positive, to shift the time column. This " -"can be used to move UTC time to local time." +"The number of hours, negative or positive, to shift the time column. This" +" can be used to move UTC time to local time." msgstr "" "O número de horas, negativo ou positivo, para deslocar a coluna da hora. " "Isto pode ser utilizado para mudar a hora UTC para a hora local." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:301 +#, python-format msgid "" -"The number of results displayed is limited to %(rows)d by the configuration " -"DISPLAY_MAX_ROWS. Please add additional limits/filters or download to csv to " -"see more rows up to the %(limit)d limit." +"The number of results displayed is limited to %(rows)d by the " +"configuration DISPLAY_MAX_ROWS. Please add additional limits/filters or " +"download to csv to see more rows up to the %(limit)d limit." msgstr "" -"O número de resultados apresentados é limitado a %(rows)d pela configuração " -"DISPLAY_MAX_ROWS. Adicione limites/filtros adicionais ou descarregue para " -"csv para ver mais linhas até ao limite de %(limit)d." +"O número de resultados apresentados é limitado a %(rows)d pela " +"configuração DISPLAY_MAX_ROWS. Adicione limites/filtros adicionais ou " +"descarregue para csv para ver mais linhas até ao limite de %(limit)d." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:307 +#, python-format msgid "" "The number of results displayed is limited to %(rows)d. Please add " -"additional limits/filters, download to csv, or contact an admin to see more " -"rows up to the %(limit)d limit." +"additional limits/filters, download to csv, or contact an admin to see " +"more rows up to the %(limit)d limit." msgstr "" "O número de resultados apresentados está limitado a %(rows)d. Adicione " -"limites/filtros adicionais, transfira para csv ou contate um administrador " -"para ver mais linhas até ao limite de %(limit)d." +"limites/filtros adicionais, transfira para csv ou contate um " +"administrador para ver mais linhas até ao limite de %(limit)d." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:358 +#, python-format msgid "The number of rows displayed is limited to %(rows)d by the dropdown." -msgstr "" -"O número de linhas apresentadas é limitado a %(rows)d pelo menu suspenso." +msgstr "O número de linhas apresentadas é limitado a %(rows)d pelo menu suspenso." -msgid "" -"The number of rows displayed is limited to %(rows)d by the limit dropdown." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 +#, python-format +msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." msgstr "" "O número de linhas exibidas é limitado a %(rows)d pelo menu suspenso de " "limite." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:319 +#, python-format msgid "The number of rows displayed is limited to %(rows)d by the query" msgstr "O número de linhas exibidas é limitado a %(rows)d pela consulta" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:332 +#, python-format msgid "" -"The number of rows displayed is limited to %(rows)d by the query and limit " -"dropdown." +"The number of rows displayed is limited to %(rows)d by the query and " +"limit dropdown." msgstr "" -"O número de linhas exibidas é limitado a %(rows)d pela consulta e pelo menu " -"suspenso de limite." +"O número de linhas exibidas é limitado a %(rows)d pela consulta e pelo " +"menu suspenso de limite." +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:81 +#: superset-frontend/src/explore/controlPanels/sections.tsx:43 msgid "The number of seconds before expiring the cache" msgstr "O número de segundos antes da expiração da cache" -msgid "The parameter %(parameters)s in your query is undefined." -msgstr "O parâmetro %(parâmeters)s em sua consulta é indefinido." - -msgid "The password provided for username \"%(username)s\"is incorrect." -msgstr "" -"A senha fornecida para o nome de usuário \"%(username)s\"está incorreta." - -msgid "The password provided when connecting to a database is not valid." -msgstr "A senha fornecida ao se conectar a um banco de dados não é válida." - -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the charts. Please note that the \"Secure Extra\"and " -"\"Certificate\"sections of the database configuration are not present in " -"export files, and should be added manually after the import if they are " -"needed." -msgstr "" -"As senhas dos bancos de dados abaixo são necessárias para importá-los junto " -"com os gráficos. Observe que as seções \"Secure Extra\"e \"Certificate\"da " -"configuração do banco de dados não estão presentes nos arquivos de " -"exportação e devem ser adicionadas manualmente após a importação, caso sejam " -"necessárias." - -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the dashboards. Please note that the \"Secure Extra\"and " -"\"Certificate\"sections of the database configuration are not present in " -"export files, and should be added manually after the import if they are " -"needed." -msgstr "" -"As senhas dos bancos de dados abaixo são necessárias para importá-los junto " -"com os painéis. Observe que as seções \"Secure Extra\"e \"Certificate\"da " -"configuração do banco de dados não estão presentes nos arquivos de " -"exportação e devem ser adicionadas manualmente após a importação, caso sejam " -"necessárias." - -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the datasets. Please note that the \"Secure Extra\"and " -"\"Certificate\"sections of the database configuration are not present in " -"export files, and should be added manually after the import if they are " -"needed." -msgstr "" -"As senhas dos bancos de dados abaixo são necessárias para importá-las junto " -"com os conjuntos de dados. Observe que as seções \"Secure Extra\"e " -"\"Certificate\"da configuração do banco de dados não estão presentes nos " -"arquivos de exportação e devem ser adicionadas manualmente após a " -"importação, caso sejam necessárias." - -msgid "The pattern of timestamp format. For strings use" -msgstr "O padrão do formato do registro de data e hora. Para string, use" - -msgid "" -"The periodicity over which to pivot time. Users can provide\n" -" \"Pandas\"offset alias.\n" -" Click on the info bubble for more details on accepted " -"\"freq\"expressions." -msgstr "" -"A periodicidade sobre a qual o tempo será dinamizado. Os usuários podem " -"fornecer um alias de deslocamento \"Pandas\".\n" -" Clique no balão de informações para obter mais detalhes sobre as expressões " -"\"freq\" aceitas." - +#: superset/errors.py:134 msgid "The object does not exist in the given database." msgstr "O objeto não existe no banco de dados fornecido." -msgid "The password provided for username \"%(username)s\" is incorrect." -msgstr "" -"A senha fornecida para o nome de usuário \"%(username)s\" está incorreta." +#: superset/sqllab/query_render.py:94 +#, fuzzy, python-format +msgid "The parameter %(parameters)s in your query is undefined." +msgid_plural "The following parameters in your query are undefined: %(parameters)s." +msgstr[0] "O parâmetro %(parâmeters)s em sua consulta é indefinido." +msgstr[1] "" +#: superset/db_engine_specs/postgres.py:119 +#, python-format +msgid "The password provided for username \"%(username)s\" is incorrect." +msgstr "A senha fornecida para o nome de usuário \"%(username)s\" está incorreta." + +#: superset/errors.py:114 +msgid "The password provided when connecting to a database is not valid." +msgstr "A senha fornecida ao se conectar a um banco de dados não é válida." + +#: superset-frontend/src/pages/ChartList/index.tsx:93 msgid "" "The passwords for the databases below are needed in order to import them " "together with the charts. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in " -"export files, and should be added manually after the import if they are " -"needed." -msgstr "" -"As senhas dos bancos de dados abaixo são necessárias para importá-los junto " -"com os gráficos. Observe que as seções \"Secure Extra\" e \"Certificate\" da " -"configuração do banco de dados não estão presentes nos arquivos de " -"exportação e devem ser adicionadas manualmente após a importação, caso sejam " -"necessárias." - -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the dashboards. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in " -"export files, and should be added manually after the import if they are " -"needed." -msgstr "" -"As senhas dos bancos de dados abaixo são necessárias para importá-los junto " -"com os painéis. Observe que as seções \"Secure Extra\" e \"Certificate\" da " -"configuração do banco de dados não estão presentes nos arquivos de " -"exportação e devem ser adicionadas manualmente após a importação, caso sejam " -"necessárias." - -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the datasets. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in " -"export files, and should be added manually after the import if they are " -"needed." -msgstr "" -"As senhas dos bancos de dados abaixo são necessárias para importá-las junto " -"com os conjuntos de dados. Observe que as seções \"Secure Extra\" e " -"\"Certificate\" da configuração do banco de dados não estão presentes nos " -"arquivos de exportação e devem ser adicionadas manualmente após a " -"importação, caso sejam necessárias." - -msgid "" -"The passwords for the databases below are needed in order to import them " -"together with the saved queries. Please note that the \"Secure Extra\" and " -"\"Certificate\" sections of the database configuration are not present in " -"export files, and should be added manually after the import if they are " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " "needed." msgstr "" "As senhas dos bancos de dados abaixo são necessárias para importá-los " -"juntamente com as consultas salvas. Observe que as seções \"Secure Extra\" e " -"\"Certificate\" da configuração do banco de dados não estão presentes nos " -"arquivos de exportação e devem ser adicionadas manualmente após a " +"junto com os gráficos. Observe que as seções \"Secure Extra\" e " +"\"Certificate\" da configuração do banco de dados não estão presentes nos" +" arquivos de exportação e devem ser adicionadas manualmente após a " "importação, caso sejam necessárias." +#: superset-frontend/src/pages/DashboardList/index.tsx:62 msgid "" -"The passwords for the databases below are needed in order to import them. " -"Please note that the \"Secure Extra\" and \"Certificate\" sections of the " -"database configuration are not present in explore files and should be added " -"manually after the import if they are needed." +"The passwords for the databases below are needed in order to import them " +"together with the dashboards. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." +msgstr "" +"As senhas dos bancos de dados abaixo são necessárias para importá-los " +"junto com os painéis. Observe que as seções \"Secure Extra\" e " +"\"Certificate\" da configuração do banco de dados não estão presentes nos" +" arquivos de exportação e devem ser adicionadas manualmente após a " +"importação, caso sejam necessárias." + +#: superset-frontend/src/features/datasets/constants.ts:23 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the datasets. Please note that the \"Secure Extra\" and " +"\"Certificate\" sections of the database configuration are not present in" +" export files, and should be added manually after the import if they are " +"needed." +msgstr "" +"As senhas dos bancos de dados abaixo são necessárias para importá-las " +"junto com os conjuntos de dados. Observe que as seções \"Secure Extra\" e" +" \"Certificate\" da configuração do banco de dados não estão presentes " +"nos arquivos de exportação e devem ser adicionadas manualmente após a " +"importação, caso sejam necessárias." + +#: superset-frontend/src/pages/SavedQueryList/index.tsx:56 +msgid "" +"The passwords for the databases below are needed in order to import them " +"together with the saved queries. Please note that the \"Secure Extra\" " +"and \"Certificate\" sections of the database configuration are not " +"present in export files, and should be added manually after the import if" +" they are needed." +msgstr "" +"As senhas dos bancos de dados abaixo são necessárias para importá-los " +"juntamente com as consultas salvas. Observe que as seções \"Secure " +"Extra\" e \"Certificate\" da configuração do banco de dados não estão " +"presentes nos arquivos de exportação e devem ser adicionadas manualmente " +"após a importação, caso sejam necessárias." + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1339 +msgid "" +"The passwords for the databases below are needed in order to import them." +" Please note that the \"Secure Extra\" and \"Certificate\" sections of " +"the database configuration are not present in explore files and should be" +" added manually after the import if they are needed." msgstr "" "As senhas dos bancos de dados abaixo são necessárias para importá-los. " -"Observe que as seções \"Secure Extra\" e \"Certificate\" da configuração do " -"banco de dados não estão presentes nos arquivos de exploração e devem ser " -"adicionadas manualmente após a importação, caso sejam necessárias." +"Observe que as seções \"Secure Extra\" e \"Certificate\" da configuração " +"do banco de dados não estão presentes nos arquivos de exploração e devem " +"ser adicionadas manualmente após a importação, caso sejam necessárias." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:304 +#, fuzzy +msgid "The pattern of timestamp format. For strings use " +msgstr "O padrão do formato do registro de data e hora. Para string, use" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:66 msgid "" "The periodicity over which to pivot time. Users can provide\n" " \"Pandas\" offset alias.\n" -" Click on the info bubble for more details on accepted \"freq\" " -"expressions." +" Click on the info bubble for more details on accepted " +"\"freq\" expressions." msgstr "" "A periodicidade sobre a qual o tempo será dinamizado. Os usuários podem " "fornecer um alias de deslocamento \"Pandas\".\n" -" Clique no balão de informações para obter mais detalhes sobre as expressões " -"\"freq\" aceitas." +" Clique no balão de informações para obter mais detalhes sobre as " +"expressões \"freq\" aceitas." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 msgid "The pixel radius" msgstr "O raio do pixel" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1155 +msgid "" +"The pointer to a physical table (or view). Keep in mind that the chart is" +" associated to this Superset logical table, and this logical table points" +" the physical table referenced here." +msgstr "" +"O ponteiro para uma tabela física (ou visualização). Lembre-se de que o " +"gráfico está associado a essa tabela lógica Superset, e essa tabela " +"lógica aponta para a tabela física referenciada aqui." + +#: superset/errors.py:109 msgid "The port is closed." msgstr "A porta está fechada." +#: superset/errors.py:142 msgid "The port number is invalid." msgstr "O número da porta é inválido." +#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:62 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:158 msgid "The primary metric is used to define the arc segment sizes" -msgstr "" -"A métrica primária é usada para definir os tamanhos dos segmentos de arco" - -msgid "" -"The pointer to a physical table (or view). Keep in mind that the chart is " -"associated to this Superset logical table, and this logical table points the " -"physical table referenced here." -msgstr "" -"O ponteiro para uma tabela física (ou visualização). Lembre-se de que o " -"gráfico está associado a essa tabela lógica Superset, e essa tabela lógica " -"aponta para a tabela física referenciada aqui." +msgstr "A métrica primária é usada para definir os tamanhos dos segmentos de arco" +#: superset/views/core.py:2248 msgid "The provided `rows` argument is not a valid integer." msgstr "O argumento `rows` fornecido não é um número inteiro válido." +#: superset/errors.py:137 msgid "The query associated with the results was deleted." msgstr "A consulta associada aos resultados foi excluída." +#: superset/sqllab/commands/export.py:63 superset/sqllab/commands/results.py:91 +#: superset/views/core.py:2198 msgid "" -"The query associated with these results could not be found. You need to re-" -"run the original query." +"The query associated with these results could not be found. You need to " +"re-run the original query." msgstr "" "A consulta associada a esses resultados não pôde ser encontrada. Você " "precisa executar novamente a consulta original." +#: superset/sqllab/query_render.py:115 msgid "The query contains one or more malformed template parameters." msgstr "A consulta contém um ou mais parâmetros de modelo malformados." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:107 msgid "The query couldn't be loaded" msgstr "Não foi possível carregar a consulta" +#: superset/sqllab/commands/estimate.py:86 +#, python-format msgid "" -"The query estimation was killed after %(sqllab_timeout)s seconds. It might " -"be too complex, or the database might be under heavy load." +"The query estimation was killed after %(sqllab_timeout)s seconds. It " +"might be too complex, or the database might be under heavy load." msgstr "" -"A estimativa de consulta foi encerrada após %(sqllab_timeout)s segundos. Ela " -"pode ser muito complexa ou o banco de dados pode estar sob carga pesada." +"A estimativa de consulta foi encerrada após %(sqllab_timeout)s segundos. " +"Ela pode ser muito complexa ou o banco de dados pode estar sob carga " +"pesada." +#: superset/errors.py:135 msgid "The query has a syntax error." msgstr "A consulta tem um erro de sintaxe." +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:512 msgid "The query returned no data" msgstr "A consulta não retornou dados" -msgid "The report has been created" -msgstr "O relatório foi criado" - +#: superset/sql_lab.py:297 +#, python-format msgid "" "The query was killed after %(sqllab_timeout)s seconds. It might be too " "complex, or the database might be under heavy load." @@ -10553,155 +15929,187 @@ msgstr "" "A consulta foi encerrada após %(sqllab_timeout)s segundos. Ela pode ser " "muito complexa ou o banco de dados pode estar sob carga pesada." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:97 msgid "" -"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 to " -"turn off clustering, but beware that a large number of points (>1000) will " -"cause lag." +"The radius (in pixels) the algorithm uses to define a cluster. Choose 0 " +"to turn off clustering, but beware that a large number of points (>1000) " +"will cause lag." msgstr "" -"O raio (em pixels) que o algoritmo usa para definir um cluster. Escolha 0 " -"para desativar o agrupamento, mas lembre-se de que um grande número de " +"O raio (em pixels) que o algoritmo usa para definir um cluster. Escolha 0" +" para desativar o agrupamento, mas lembre-se de que um grande número de " "pontos (>1000) causará atraso." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:120 msgid "" -"The radius of individual points (ones that are not in a cluster). Either a " -"numerical column or `Auto`, which scales the point based on the largest " -"cluster" +"The radius of individual points (ones that are not in a cluster). Either " +"a numerical column or `Auto`, which scales the point based on the largest" +" cluster" msgstr "" "O raio de pontos individuais (aqueles que não estão em um cluster). Uma " -"coluna numérica ou `Auto`, que dimensiona o ponto com base no maior cluster" +"coluna numérica ou `Auto`, que dimensiona o ponto com base no maior " +"cluster" +#: superset-frontend/src/reports/actions/reports.js:110 +msgid "The report has been created" +msgstr "O relatório foi criado" + +#: superset/errors.py:136 msgid "The results backend no longer has the data from the query." msgstr "O backend de resultados não tem mais os dados da consulta." +#: superset/errors.py:138 msgid "" -"The schema \"%(schema)s\" does not exist. A valid schema must be used to run " -"this query." -msgstr "" -"O esquema \"%(schema)s\" não existe. Um esquema válido deve ser usado para " -"executar essa consulta." - -msgid "" -"The schema \"%(schema_name)s\" does not exist. A valid schema must be used " -"to run this query." -msgstr "" -"O esquema \"%(schema_name)s\" não existe. Um esquema válido deve ser usado " -"para executar essa consulta." - -msgid "The schema was deleted or renamed in the database." -msgstr "O esquema foi excluído ou renomeado no banco de dados." - -msgid "" -"The results stored in the backend were stored in a different format, and no " -"longer can be deserialized." +"The results stored in the backend were stored in a different format, and " +"no longer can be deserialized." msgstr "" "Os resultados armazenados no backend foram armazenados em um formato " "diferente e não podem mais ser desserializados." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:226 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:95 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:304 msgid "The rich tooltip shows a list of all series for that point in time" msgstr "" -"A dica de ferramenta avançada mostra uma lista de todas as séries para esse " -"ponto no tempo" +"A dica de ferramenta avançada mostra uma lista de todas as séries para " +"esse ponto no tempo" +#: superset/db_engine_specs/bigquery.py:203 +#, python-format +msgid "" +"The schema \"%(schema)s\" does not exist. A valid schema must be used to " +"run this query." +msgstr "" +"O esquema \"%(schema)s\" não existe. Um esquema válido deve ser usado " +"para executar essa consulta." + +#: superset/db_engine_specs/presto.py:673 +#, python-format +msgid "" +"The schema \"%(schema_name)s\" does not exist. A valid schema must be " +"used to run this query." +msgstr "" +"O esquema \"%(schema_name)s\" não existe. Um esquema válido deve ser " +"usado para executar essa consulta." + +#: superset/errors.py:117 +msgid "The schema was deleted or renamed in the database." +msgstr "O esquema foi excluído ou renomeado no banco de dados." + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 msgid "The size of the square cell, in pixels" msgstr "O tamanho da célula quadrada, em pixels" +#: superset/datasets/commands/exceptions.py:72 +#: superset/views/datasource/views.py:90 msgid "" -"The submitted URL is not considered safe, only use URLs with the same domain " -"as Superset." +"The submitted URL is not considered safe, only use URLs with the same " +"domain as Superset." msgstr "" -"O URL enviado não é considerado seguro, use apenas URLs com o mesmo domínio " -"do Superset." +"O URL enviado não é considerado seguro, use apenas URLs com o mesmo " +"domínio do Superset." +#: superset/errors.py:120 msgid "The submitted payload has the incorrect format." msgstr "O payload enviado tem o formato incorreto." -msgid "" -"The table \"%(table)s\" does not exist. A valid table must be used to run " -"this query." -msgstr "" -"A tabela \"%(tabela)s\" não existe. Uma tabela válida deve ser usada para " -"executar essa consulta." +#: superset/errors.py:121 +msgid "The submitted payload has the incorrect schema." +msgstr "O payload enviado tem o esquema incorreto." +#: superset/db_engine_specs/bigquery.py:190 +#, python-format msgid "" -"The table \"%(table_name)s\" does not exist. A valid table must be used to " -"run this query." +"The table \"%(table)s\" does not exist. A valid table must be used to run" +" this query." +msgstr "" +"A tabela \"%(tabela)s\" não existe. Uma tabela válida deve ser usada para" +" executar essa consulta." + +#: superset/db_engine_specs/presto.py:665 +#, python-format +msgid "" +"The table \"%(table_name)s\" does not exist. A valid table must be used " +"to run this query." msgstr "" "A tabela \"%(table_name)s\" não existe. Uma tabela válida deve ser usada " "para executar essa consulta." -msgid "The table was deleted or renamed in the database." -msgstr "A tabela foi excluída ou renomeada no banco de dados." - +#: superset/connectors/sqla/views.py:422 msgid "" -"The time granularity for the visualization. Note that you can type and use " -"simple natural language as in `10 seconds`,`1 day` or `56 weeks`" -msgstr "" -"A granularidade de tempo para a visualização. Observe que você pode digitar " -"e usar linguagem natural simples, como `10 segundos`, `1 dia` ou `56 semanas`" - -msgid "The submitted payload has the incorrect schema." -msgstr "O payload enviado tem o esquema incorreto." - -msgid "" -"The table \"%(table_name)s\"does not exist. A valid table must be used to " -"run this query." -msgstr "" -"A tabela \"%(table_name)s\"não existe. Uma tabela válida deve ser usada para " -"executar essa consulta." - -msgid "" -"The table was created. As part of this two-phase configuration process, you " -"should now click the edit button by the new table to configure it." +"The table was created. As part of this two-phase configuration process, " +"you should now click the edit button by the new table to configure it." msgstr "" "A tabela foi criada. Como parte desse processo de configuração em duas " "fases, agora você deve clicar no botão de edição da nova tabela para " "configurá-la." +#: superset/errors.py:106 +msgid "The table was deleted or renamed in the database." +msgstr "A tabela foi excluída ou renomeada no banco de dados." + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:237 +#: superset-frontend/src/explore/controls.jsx:281 msgid "" -"The time column for the visualization. Note that you can define arbitrary " -"expression that return a DATETIME column in the table. Also note that the " -"filter below is applied against this column or expression" +"The time column for the visualization. Note that you can define arbitrary" +" expression that return a DATETIME column in the table. Also note that " +"the filter below is applied against this column or expression" msgstr "" "A coluna de tempo para a visualização. Observe que você pode definir uma " "expressão arbitrária que retorne uma coluna DATETIME na tabela. Observe " "também que o filtro abaixo é aplicado a essa coluna ou expressão" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:177 msgid "" -"The time granularity for the visualization. Note that you can type and use " -"simple natural language as in `10 seconds`, `1 day` or `56 weeks`" +"The time granularity for the visualization. Note that you can type and " +"use simple natural language as in `10 seconds`, `1 day` or `56 weeks`" msgstr "" -"A granularidade de tempo para a visualização. Observe que você pode digitar " -"e usar linguagem natural simples, como `10 segundos`, `1 dia` ou `56 semanas`" +"A granularidade de tempo para a visualização. Observe que você pode " +"digitar e usar linguagem natural simples, como `10 segundos`, `1 dia` ou " +"`56 semanas`" +#: superset-frontend/src/explore/controls.jsx:271 +msgid "" +"The time granularity for the visualization. Note that you can type and " +"use simple natural language as in `10 seconds`,`1 day` or `56 weeks`" +msgstr "" +"A granularidade de tempo para a visualização. Observe que você pode " +"digitar e usar linguagem natural simples, como `10 segundos`, `1 dia` ou " +"`56 semanas`" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:200 +#: superset-frontend/src/explore/controls.jsx:310 msgid "" "The time granularity for the visualization. This applies a date " -"transformation to alter your time column and defines a new time granularity. " -"The options here are defined on a per database engine basis in the Superset " -"source code." +"transformation to alter your time column and defines a new time " +"granularity. The options here are defined on a per database engine basis " +"in the Superset source code." msgstr "" -"A granularidade de tempo para a visualização. Isso aplica uma transformação " -"de data para alterar sua coluna de tempo e define uma nova granularidade de " -"tempo. As opções aqui são definidas com base em cada mecanismo de banco de " -"dados no código-fonte do Superset." +"A granularidade de tempo para a visualização. Isso aplica uma " +"transformação de data para alterar sua coluna de tempo e define uma nova " +"granularidade de tempo. As opções aqui são definidas com base em cada " +"mecanismo de banco de dados no código-fonte do Superset." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:234 +#: superset-frontend/src/explore/controls.jsx:327 msgid "" "The time range for the visualization. All relative times, e.g. \"Last " -"month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using " -"the server's local time (sans timezone). All tooltips and placeholder times " -"are expressed in UTC (sans timezone). The timestamps are then evaluated by " -"the database using the engine's local timezone. Note one can explicitly set " -"the timezone per the ISO 8601 format if specifying either the start and/or " -"end time." +"month\", \"Last 7 days\", \"now\", etc. are evaluated on the server using" +" the server's local time (sans timezone). All tooltips and placeholder " +"times are expressed in UTC (sans timezone). The timestamps are then " +"evaluated by the database using the engine's local timezone. Note one can" +" explicitly set the timezone per the ISO 8601 format if specifying either" +" the start and/or end time." msgstr "" -"O intervalo de tempo para a visualização. Todos os horários relativos, por " -"exemplo, \"Last month\", \"Last 7 days\", \"now\" etc., são avaliados no " -"servidor usando o horário local do servidor (sem fuso horário). Todas as " -"dicas de ferramentas e horários de espaço reservado são expressos em UTC " -"(sem fuso horário). Os registros de data e hora são avaliados pelo banco de " -"dados usando o fuso horário local do mecanismo. Observe que é possível " -"definir explicitamente o fuso horário de acordo com o formato ISO 8601 ao " -"especificar a hora inicial e/ou final." +"O intervalo de tempo para a visualização. Todos os horários relativos, " +"por exemplo, \"Last month\", \"Last 7 days\", \"now\" etc., são avaliados" +" no servidor usando o horário local do servidor (sem fuso horário). Todas" +" as dicas de ferramentas e horários de espaço reservado são expressos em " +"UTC (sem fuso horário). Os registros de data e hora são avaliados pelo " +"banco de dados usando o fuso horário local do mecanismo. Observe que é " +"possível definir explicitamente o fuso horário de acordo com o formato " +"ISO 8601 ao especificar a hora inicial e/ou final." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 msgid "" "The time unit for each block. Should be a smaller unit than " "domain_granularity. Should be larger or equal to Time Grain" @@ -10709,243 +16117,374 @@ msgstr "" "A unidade de tempo para cada bloco. Deve ser uma unidade menor que " "domain_granularity. Deve ser maior ou igual a Time Grain" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 msgid "The time unit used for the grouping of blocks" msgstr "A unidade de tempo usada para o agrupamento de blocos" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:124 +#: superset-frontend/src/explore/controls.jsx:201 msgid "The type of visualization to display" msgstr "O tipo de visualização para exibir" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:147 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/controlPanel.ts:90 msgid "The unit of measure for the specified point radius" msgstr "A unidade de medida do raio do ponto especificado" +#: superset/views/core.py:198 msgid "The user seems to have been deleted" msgstr "O usuário parece ter sido excluído" +#: superset/db_engine_specs/ocient.py:251 +msgid "The user/password combination is not valid (Incorrect password for user)." +msgstr "" + +#: superset/db_engine_specs/ocient.py:246 +#: superset/db_engine_specs/postgres.py:114 +#, python-format msgid "The username \"%(username)s\" does not exist." msgstr "O nome de usuário \"%(username)s\" não existe." +#: superset/errors.py:113 msgid "The username provided when connecting to a database is not valid." -msgstr "" -"O nome de usuário fornecido ao se conectar ao banco de dados não é válido." +msgstr "O nome de usuário fornecido ao se conectar ao banco de dados não é válido." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:226 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:127 +#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:68 msgid "The way the ticks are laid out on the X-axis" msgstr "O modo como os ticks são dispostos no eixo X" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:214 msgid "The width of the lines" msgstr "A largura das linhas" +#: superset/charts/commands/exceptions.py:127 +#: superset/charts/commands/exceptions.py:151 +#: superset/dashboards/commands/exceptions.py:62 +#: superset/dashboards/commands/exceptions.py:74 +#: superset/databases/commands/exceptions.py:119 msgid "There are associated alerts or reports" msgstr "Há alertas ou relatórios associados" +#: superset/charts/commands/bulk_delete.py:61 +#: superset/charts/commands/delete.py:70 +#: superset/dashboards/commands/bulk_delete.py:62 +#: superset/dashboards/commands/delete.py:63 +#: superset/databases/commands/delete.py:62 +#, python-format msgid "There are associated alerts or reports: %s," msgstr "Há alertas ou relatórios associados: %s," +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:711 msgid "There are no charts added to this dashboard" msgstr "Não há gráficos adicionados a esse painel" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:238 +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:186 msgid "There are no components added to this tab" msgstr "Não há componentes adicionados a essa aba" +#: superset-frontend/src/components/EmptyState/index.tsx:229 msgid "There are no databases available" msgstr "Não há bancos de dados disponíveis" +#: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:770 +msgid "There are no filters in this dashboard." +msgstr "Não há filtros neste painel." + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:45 msgid "There are unsaved changes." msgstr "Há mudanças que não foram salvas." +#: superset/errors.py:101 msgid "" -"There is a syntax error in the SQL query. Perhaps there was a misspelling or " -"a typo." +"There is a syntax error in the SQL query. Perhaps there was a misspelling" +" or a typo." msgstr "" "Há um erro de sintaxe na consulta SQL. Talvez tenha havido um erro de " "ortografia ou de digitação." -msgid "There are no filters in this dashboard." -msgstr "Não há filtros neste painel." - +#: superset-frontend/src/dashboard/components/MissingChart.jsx:31 msgid "" -"There is no chart definition associated with this component, could it have " -"been deleted?" +"There is no chart definition associated with this component, could it " +"have been deleted?" msgstr "" -"Não há nenhuma definição de gráfico associada a esse componente; ele poderia " -"ter sido excluído?" +"Não há nenhuma definição de gráfico associada a esse componente; ele " +"poderia ter sido excluído?" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:182 +msgid "" +"There is not enough space for this component. Try decreasing its width, " +"or increasing the destination width." +msgstr "" +"Não há espaço suficiente para esse componente. Tente diminuir sua largura" +" ou aumentar a largura do destino." + +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 +#: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 msgid "There was an error fetching dataset" msgstr "Houve um erro ao buscar o conjunto de dados" +#: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 msgid "There was an error fetching dataset's related objects" msgstr "Ocorreu um erro ao buscar os objetos relacionados ao conjunto de dados" +#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:209 +#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:210 msgid "There was an error fetching tables" msgstr "Ocorreu um erro ao buscar tabelas" +#: superset-frontend/src/views/CRUD/hooks.ts:593 +#, python-format msgid "There was an error fetching the favorite status: %s" msgstr "Houve um erro ao buscar o status de favorito: %s" -msgid "" -"There is not enough space for this component. Try decreasing its width, or " -"increasing the destination width." -msgstr "" -"Não há espaço suficiente para esse componente. Tente diminuir sua largura ou " -"aumentar a largura do destino." - +#: superset-frontend/src/views/CRUD/utils.tsx:209 msgid "There was an error fetching your recent activity:" msgstr "Ocorreu um erro ao buscar sua atividade recente:" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:450 +#, fuzzy +msgid "There was an error loading the chart data" +msgstr "Ocorreu um erro ao carregar os esquemas" + +#: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 msgid "There was an error loading the dataset metadata" msgstr "Ocorreu um erro ao carregar os metadados do conjunto de dados" +#: superset-frontend/src/components/DatabaseSelector/index.tsx:240 msgid "There was an error loading the schemas" msgstr "Ocorreu um erro ao carregar os esquemas" +#: superset-frontend/src/components/TableSelector/index.tsx:191 msgid "There was an error loading the tables" msgstr "Ocorreu um erro ao carregar as tabelas" +#: superset-frontend/src/views/CRUD/hooks.ts:616 +#, python-format msgid "There was an error saving the favorite status: %s" msgstr "Ocorreu um erro ao salvar o status de favorito: %s" +#: superset-frontend/src/SqlLab/components/ShareSqlLabQuery/index.tsx:71 msgid "There was an error with your request" msgstr "Houve um erro em sua solicitação" +#: superset-frontend/src/features/home/SavedQueries.tsx:175 +#: superset-frontend/src/pages/AlertReportList/index.tsx:186 +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 +#: superset-frontend/src/pages/AnnotationList/index.tsx:121 +#: superset-frontend/src/pages/CssTemplateList/index.tsx:97 +#: superset-frontend/src/pages/DatabaseList/index.tsx:178 +#: superset-frontend/src/pages/DatasetList/index.tsx:668 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:97 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:245 +#: superset-frontend/src/views/CRUD/utils.tsx:315 +#, python-format msgid "There was an issue deleting %s: %s" msgstr "Houve um problema ao excluir %s: %s" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:111 +#, fuzzy, python-format +msgid "There was an issue deleting rules: %s" +msgstr "Houve um problema ao excluir %s: %s" + +#: superset-frontend/src/pages/AlertReportList/index.tsx:201 +#, python-format msgid "There was an issue deleting the selected %s: %s" msgstr "Houve um problema ao excluir o %s selecionado: %s" +#: superset-frontend/src/pages/AnnotationList/index.tsx:141 +#, python-format msgid "There was an issue deleting the selected annotations: %s" msgstr "Houve um problema ao excluir as anotações selecionadas: %s" +#: superset-frontend/src/pages/ChartList/index.tsx:263 +#, python-format msgid "There was an issue deleting the selected charts: %s" msgstr "Houve um problema ao excluir os gráficos selecionados: %s" -msgid "There was an issue deleting the selected dashboards:" +#: superset-frontend/src/pages/DashboardList/index.tsx:258 +#, fuzzy +msgid "There was an issue deleting the selected dashboards: " msgstr "Houve um problema ao excluir os painéis selecionados:" +#: superset-frontend/src/pages/DatasetList/index.tsx:686 +#, python-format msgid "There was an issue deleting the selected datasets: %s" msgstr "Houve um problema ao excluir os conjuntos de dados selecionados: %s" +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:110 +#, python-format msgid "There was an issue deleting the selected layers: %s" msgstr "Houve um problema ao excluir as camadas selecionadas: %s" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:272 +#, python-format msgid "There was an issue deleting the selected queries: %s" msgstr "Houve um problema ao excluir as consultas selecionadas: %s" +#: superset-frontend/src/pages/CssTemplateList/index.tsx:115 +#, python-format msgid "There was an issue deleting the selected templates: %s" msgstr "Houve um problema ao excluir os modelos selecionados: %s" +#: superset-frontend/src/views/CRUD/utils.tsx:275 +#, python-format msgid "There was an issue deleting: %s" msgstr "Houve um problema ao excluir: %s" +#: superset-frontend/src/pages/DatasetList/index.tsx:694 msgid "There was an issue duplicating the dataset." msgstr "Houve um problema ao duplicar o conjunto de dados." +#: superset-frontend/src/pages/DatasetList/index.tsx:710 +#, python-format msgid "There was an issue duplicating the selected datasets: %s" msgstr "Houve um problema ao duplicar os conjuntos de dados selecionados: %s" -msgid "There was an issue fetching reports attached to this dashboard." -msgstr "Houve um problema na obtenção de relatórios anexados a esse painel." - -msgid "There was an issue fetching your chart: %s" -msgstr "Houve um problema ao buscar seu gráfico: %s" - -msgid "There was an issue fetching your dashboards: %s" -msgstr "Houve um problema ao buscar seus painéis: %s" - -msgid "There was an issue fetching your recent activity: %s" -msgstr "Houve um problema ao buscar sua atividade recente: %s" - -msgid "There was an issue fetching your saved queries: %s" -msgstr "Houve um problema ao buscar suas consultas salvas: %s" - +#: superset-frontend/src/dashboard/actions/dashboardState.js:127 msgid "There was an issue favoriting this dashboard." msgstr "Houve um problema ao favoritar esse painel." +#: superset-frontend/src/reports/actions/reports.js:68 +msgid "There was an issue fetching reports attached to this dashboard." +msgstr "Houve um problema na obtenção de relatórios anexados a esse painel." + +#: superset-frontend/src/dashboard/actions/dashboardState.js:103 msgid "There was an issue fetching the favorite status of this dashboard." msgstr "Houve um problema ao buscar o status de favorito desse painel." +#: superset-frontend/src/pages/Home/index.tsx:281 +#, python-format +msgid "There was an issue fetching your chart: %s" +msgstr "Houve um problema ao buscar seu gráfico: %s" + +#: superset-frontend/src/pages/Home/index.tsx:270 +#, python-format +msgid "There was an issue fetching your dashboards: %s" +msgstr "Houve um problema ao buscar seus painéis: %s" + +#: superset-frontend/src/pages/Home/index.tsx:248 +#, python-format +msgid "There was an issue fetching your recent activity: %s" +msgstr "Houve um problema ao buscar sua atividade recente: %s" + +#: superset-frontend/src/pages/Home/index.tsx:293 +#, python-format +msgid "There was an issue fetching your saved queries: %s" +msgstr "Houve um problema ao buscar suas consultas salvas: %s" + +#: superset-frontend/src/pages/SavedQueryList/index.tsx:160 +#, python-format msgid "There was an issue previewing the selected query %s" msgstr "Houve um problema ao visualizar a consulta selecionada %s" +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:115 +#, python-format msgid "There was an issue previewing the selected query. %s" msgstr "Houve um problema ao visualizar a consulta selecionada. %s" +#: superset/viz.py:1915 msgid "" -"There's a loop in your Sankey, please provide a tree. Here's a faulty link: " -"{}" +"There's a loop in your Sankey, please provide a tree. Here's a faulty " +"link: {}" msgstr "" -"Há um loop em seu Sankey, forneça uma árvore. Aqui está um link defeituoso: " -"{}" +"Há um loop em seu Sankey, forneça uma árvore. Aqui está um link " +"defeituoso: {}" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:386 msgid "These are the tables this filter will be applied to." msgstr "Essas são as tabelas às quais esse filtro será aplicado." +#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:98 msgid "These filters apply to the values available in the dropdowns" msgstr "Esses filtros se aplicam aos valores disponíveis nos menus suspensos" +#: superset/views/chart/mixin.py:63 msgid "" "These parameters are generated dynamically when clicking the save or " -"overwrite button in the explore view. This JSON object is exposed here for " -"reference and for power users who may want to alter specific parameters." +"overwrite button in the explore view. This JSON object is exposed here " +"for reference and for power users who may want to alter specific " +"parameters." msgstr "" -"Esses parâmetros são gerados dinamicamente quando se clica no botão salvar " -"ou sobrescrever na exibição de exploração. Esse objeto JSON é exposto aqui " -"para referência e para usuários avançados que queiram alterar parâmetros " -"específicos." +"Esses parâmetros são gerados dinamicamente quando se clica no botão " +"salvar ou sobrescrever na exibição de exploração. Esse objeto JSON é " +"exposto aqui para referência e para usuários avançados que queiram " +"alterar parâmetros específicos." +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:789 +#: superset/views/dashboard/mixin.py:58 msgid "" "This JSON object is generated dynamically when clicking the save or " -"overwrite button in the dashboard view. It is exposed here for reference and " -"for power users who may want to alter specific parameters." +"overwrite button in the dashboard view. It is exposed here for reference " +"and for power users who may want to alter specific parameters." msgstr "" -"Esse objeto JSON é gerado dinamicamente quando se clica no botão salvar ou " -"sobrescrever na exibição do painel. Ele é exposto aqui para referência e " -"para usuários avançados que podem querer alterar parâmetros específicos." +"Esse objeto JSON é gerado dinamicamente quando se clica no botão salvar " +"ou sobrescrever na exibição do painel. Ele é exposto aqui para referência" +" e para usuários avançados que podem querer alterar parâmetros " +"específicos." +#: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:324 +#: superset-frontend/src/pages/AlertReportList/index.tsx:568 +#, python-format msgid "This action will permanently delete %s." msgstr "Essa ação excluirá permanentemente %s." +#: superset-frontend/src/pages/AnnotationLayerList/index.tsx:345 msgid "This action will permanently delete the layer." msgstr "Essa ação excluirá permanentemente a camada." +#: superset-frontend/src/features/home/SavedQueries.tsx:231 +#: superset-frontend/src/pages/SavedQueryList/index.tsx:509 msgid "This action will permanently delete the saved query." msgstr "Essa ação excluirá permanentemente a consulta salva." +#: superset-frontend/src/pages/CssTemplateList/index.tsx:315 msgid "This action will permanently delete the template." msgstr "Essa ação excluirá permanentemente o modelo." +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:40 msgid "" "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. " "mydatabase.com)." msgstr "" -"Pode ser um endereço IP (por exemplo, 127.0.0.1) ou um nome de domínio (por " -"exemplo, mydatabase.com)." +"Pode ser um endereço IP (por exemplo, 127.0.0.1) ou um nome de domínio " +"(por exemplo, mydatabase.com)." +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:245 +#, fuzzy msgid "" -"This chart emits/applies cross-filters to other charts that use the same " -"dataset" +"This chart applies cross-filters to charts whose datasets contain columns" +" with the same name." msgstr "" "Esse gráfico emite/aplica filtros cruzados a outros gráficos que usam o " "mesmo conjunto de dados" +#: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 msgid "This chart has been moved to a different filter scope." msgstr "Esse gráfico foi movido para um escopo de filtro diferente." +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:322 msgid "This chart is managed externally, and can't be edited in Superset" -msgstr "" -"Esse gráfico é gerenciado externamente e não pode ser editado no Superset" +msgstr "Esse gráfico é gerenciado externamente e não pode ser editado no Superset" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/utils.ts:61 msgid "This chart might be incompatible with the filter (datasets don't match)" msgstr "" -"Esse gráfico pode ser incompatível com o filtro (os conjuntos de dados não " -"correspondem)" +"Esse gráfico pode ser incompatível com o filtro (os conjuntos de dados " +"não correspondem)" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 +#, fuzzy msgid "" "This chart type is not supported when using an unsaved query as a chart " -"source." +"source. " msgstr "" "Não há suporte para esse tipo de gráfico quando se usa uma consulta não " "salva como fonte de gráfico." +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:50 msgid "" "This color scheme is being overridden by custom label colors.\n" " Check the JSON metadata in the Advanced settings" @@ -10954,9 +16493,16 @@ msgstr "" "personalizados.\n" " Verifique os metadados JSON nas configurações avançadas" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:113 msgid "This column might be incompatible with current dataset" msgstr "Essa coluna pode ser incompatível com o conjunto de dados atual" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:545 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:561 +msgid "This column must contain date/time information." +msgstr "Isso a coluna deve conter informações de data/hora." + +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:600 msgid "" "This controls whether the \"time_range\" field from the current\n" " view should be passed down to the chart containing the " @@ -10965,31 +16511,7 @@ msgstr "" "Isso controla se o campo \"time_range\" da visualização atual deve ser " "passado para o gráfico que contém os dados da anotação." -msgid "" -"This dashboard is currently auto refreshing; the next auto refresh will be " -"in %s." -msgstr "" -"Este painel está sendo atualizado automaticamente no momento; a próxima " -"atualização automática será em %s." - -msgid "This column must contain date/time information." -msgstr "Isso a coluna deve conter informações de data/hora." - -msgid "This dashboard is now hidden" -msgstr "Esse painel agora está oculto" - -msgid "This dashboard is now published" -msgstr "Esse painel foi publicado" - -msgid "" -"This controls whether the \"time_range\"field from the current\n" -" view should be passed down to the chart containing the " -"annotation data." -msgstr "" -"Isso controla se o campo \"time_range\" da visualização atual\n" -" deve ser passado para o gráfico que contém os dados da " -"anotação." - +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:618 msgid "" "This controls whether the time grain field from the current\n" " view should be passed down to the chart containing the " @@ -10998,18 +16520,30 @@ msgstr "" "Isso controla se o campo de grão de tempo da exibição atual\n" " deve ser passado para o gráfico que contém os dados de anotação." +#: superset-frontend/src/dashboard/components/Header/index.jsx:320 +#, python-format +msgid "" +"This dashboard is currently auto refreshing; the next auto refresh will " +"be in %s." +msgstr "" +"Este painel está sendo atualizado automaticamente no momento; a próxima " +"atualização automática será em %s." + +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:661 msgid "This dashboard is managed externally, and can't be edited in Superset" msgstr "Esse painel é gerenciado externamente e não pode ser editado no Superset" +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:38 msgid "" -"This dashboard is not published which means it will not show up in the list " -"of dashboards. Favorite it to see it there or access it by using the URL " -"directly." +"This dashboard is not published which means it will not show up in the " +"list of dashboards. Favorite it to see it there or access it by using the" +" URL directly." msgstr "" "Esse painel não está publicado, o que significa que não será exibido na " -"lista de painéis. Favorite-o para vê-lo lá ou acesse-o usando diretamente a " -"URL." +"lista de painéis. Favorite-o para vê-lo lá ou acesse-o usando diretamente" +" a URL." +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:33 msgid "" "This dashboard is not published, it will not show up in the list of " "dashboards. Click here to publish this dashboard." @@ -11017,34 +16551,46 @@ msgstr "" "Esse painel não foi publicado, portanto não será exibido na lista de " "painéis. Clique aqui para publicar esse painel." +#: superset-frontend/src/dashboard/actions/dashboardState.js:152 +msgid "This dashboard is now hidden" +msgstr "Esse painel agora está oculto" + +#: superset-frontend/src/dashboard/actions/dashboardState.js:151 +msgid "This dashboard is now published" +msgstr "Esse painel foi publicado" + +#: superset-frontend/src/dashboard/components/PublishedStatus/index.jsx:43 msgid "This dashboard is published. Click to make it a draft." msgstr "Este painel foi publicado. Clique para torná-lo um rascunho." +#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:168 msgid "" -"This dashboard is ready to embed. In your application, pass the following id " -"to the SDK:" +"This dashboard is ready to embed. In your application, pass the following" +" id to the SDK:" msgstr "" "Esse painel está pronto para ser incorporado. Em seu aplicativo, passe o " "seguinte id para o SDK:" +#: superset/views/core.py:1353 msgid "" -"This dashboard was changed recently. Please reload dashboard to get latest " -"version." +"This dashboard was changed recently. Please reload dashboard to get " +"latest version." msgstr "" "Este painel foi alterado recentemente. Recarregue o painel para obter a " "versão mais recente." +#: superset-frontend/src/dashboard/actions/dashboardState.js:313 +#: superset-frontend/src/dashboard/actions/dashboardState.js:352 msgid "This dashboard was saved successfully." msgstr "Este painel foi salvo com sucesso." -msgid "This defines the level of the hierarchy" -msgstr "Isso define o nível da hierarquia" - +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1174 msgid "This database is managed externally, and can't be edited in Superset" msgstr "" "Esse banco de dados é gerenciado externamente e não pode ser editado no " "Superset" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:68 msgid "" "This database table does not contain any data. Please select a different " "table." @@ -11052,74 +16598,95 @@ msgstr "" "Essa tabela do banco de dados não contém dados. Selecione uma tabela " "diferente." +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:282 msgid "This dataset is managed externally, and can't be edited in Superset" msgstr "" -"Esse conjunto de dados é gerenciado externamente e não pode ser editado no " -"Superset" +"Esse conjunto de dados é gerenciado externamente e não pode ser editado " +"no Superset" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:254 msgid "This dataset is not used to power any charts." msgstr "Esse conjunto de dados não é usado para alimentar nenhum gráfico." +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:132 +#: superset-frontend/src/explore/controls.jsx:396 msgid "This defines the element to be plotted on the chart" msgstr "Isso define o elemento a ser plotado no gráfico" +#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:97 +msgid "This defines the level of the hierarchy" +msgstr "Isso define o nível da hierarquia" + +#: superset/connectors/sqla/views.py:343 msgid "" "This fields acts a Superset view, meaning that Superset will run a query " "against this string as a subquery." msgstr "" -"Esses campos funcionam como uma visualização do Superset, o que significa que " -"o Superset executará uma consulta com base nessa string como uma subconsulta." +"Esses campos funcionam como uma visualização do Superset, o que significa" +" que o Superset executará uma consulta com base nessa string como uma " +"subconsulta." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:109 msgid "This filter doesn't exist in dashboard. It will not be applied." msgstr "Esse filtro não existe no painel. Ele não será aplicado." +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndAdhocFilterOption.tsx:72 msgid "This filter might be incompatible with current dataset" msgstr "Esse filtro pode ser incompatível com o conjunto de dados atual" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:164 +#, python-format msgid "This filter set is identical to: \"%s\"" msgstr "Esse conjunto de filtros é idêntico a: \"%s\"" -msgid "" -"This functionality is disabled in your environment for security reasons." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:75 +msgid "This functionality is disabled in your environment for security reasons." msgstr "" -"Essa funcionalidade está desativada em seu ambiente por motivos de segurança." +"Essa funcionalidade está desativada em seu ambiente por motivos de " +"segurança." +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:456 msgid "" -"This is the condition that will be added to the WHERE clause. For example, " -"to only return rows for a particular client, you might define a regular " -"filter with the clause `client_id = 9`. To display no rows unless a user " -"belongs to a RLS filter role, a base filter can be created with the clause " -"`1 = 0` (always false)." +"This is the condition that will be added to the WHERE clause. For " +"example, to only return rows for a particular client, you might define a " +"regular filter with the clause `client_id = 9`. To display no rows unless" +" a user belongs to a RLS filter role, a base filter can be created with " +"the clause `1 = 0` (always false)." msgstr "" -"Essa é a condição que será adicionada à cláusula WHERE. Por exemplo, para " -"retornar apenas as linhas de um cliente específico, você pode definir um " -"filtro regular com a cláusula `client_id = 9`. Para não exibir nenhuma linha " -"a menos que um usuário pertença a uma função de filtro RLS, um filtro básico " -"pode ser criado com a cláusula `1 = 0` (sempre falso)." +"Essa é a condição que será adicionada à cláusula WHERE. Por exemplo, para" +" retornar apenas as linhas de um cliente específico, você pode definir um" +" filtro regular com a cláusula `client_id = 9`. Para não exibir nenhuma " +"linha a menos que um usuário pertença a uma função de filtro RLS, um " +"filtro básico pode ser criado com a cláusula `1 = 0` (sempre falso)." +#: superset/views/dashboard/mixin.py:46 msgid "" -"This json object describes the positioning of the widgets in the dashboard. " -"It is dynamically generated when adjusting the widgets size and positions by " -"using drag & drop in the dashboard view" +"This json object describes the positioning of the widgets in the " +"dashboard. It is dynamically generated when adjusting the widgets size " +"and positions by using drag & drop in the dashboard view" msgstr "" "Esse objeto json descreve o posicionamento dos widgets no painel. Ele é " -"gerado dinamicamente ao ajustar o tamanho e as posições dos widgets usando " -"arrastar e soltar na exibição do painel" +"gerado dinamicamente ao ajustar o tamanho e as posições dos widgets " +"usando arrastar e soltar na exibição do painel" +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:85 msgid "This markdown component has an error." msgstr "Este componente de remarcação para baixo tem um erro." -msgid "" -"This markdown component has an error. Please revert your recent changes." -msgstr "" -"Este componente markdown tem um erro. Reverta suas alterações recentes." +#: superset-frontend/src/dashboard/components/gridComponents/Markdown.jsx:203 +msgid "This markdown component has an error. Please revert your recent changes." +msgstr "Este componente markdown tem um erro. Reverta suas alterações recentes." +#: superset-frontend/src/components/ErrorMessage/DatabaseErrorMessage.tsx:47 +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:62 msgid "This may be triggered by:" msgstr "Isso pode ser provocado por:" +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:256 msgid "This metric might be incompatible with current dataset" msgstr "Essa métrica pode ser incompatível com o conjunto de dados atual" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:531 msgid "" "This section allows you to configure how to use the slice\n" " to generate annotations." @@ -11127,155 +16694,232 @@ msgstr "" "Esta seção permite configurar como usar o slice\n" " para gerar anotações." -msgid "slice" -msgstr "fatia" - +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:27 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:237 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:119 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:387 +#: superset-frontend/src/explore/controlPanels/sections.tsx:119 msgid "" "This section contains options that allow for advanced analytical post " "processing of query results" msgstr "" -"Esta seção contém opções que permitem o pós-processamento analítico avançado " -"dos resultados da consulta" +"Esta seção contém opções que permitem o pós-processamento analítico " +"avançado dos resultados da consulta" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:583 msgid "This section contains validation errors" msgstr "Esta seção contém erros de validação" +#: superset-frontend/src/embedded/index.tsx:109 msgid "" -"This session has encountered an interruption, and some controls may not work " -"as intended. If you are the developer of this app, please check that the " -"guest token is being generated correctly." +"This session has encountered an interruption, and some controls may not " +"work as intended. If you are the developer of this app, please check that" +" the guest token is being generated correctly." msgstr "" -"Esta sessão sofreu uma interrupção e alguns controles podem não funcionar " -"como pretendido. Se você for o desenvolvedor desse aplicativo, verifique se " -"o token de convidado está sendo gerado corretamente." +"Esta sessão sofreu uma interrupção e alguns controles podem não funcionar" +" como pretendido. Se você for o desenvolvedor desse aplicativo, verifique" +" se o token de convidado está sendo gerado corretamente." +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:234 msgid "This table already has a dataset" msgstr "Essa tabela já tem um conjunto de dados" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:224 +#, fuzzy msgid "" -"This table already has a dataset associated with it. You can only associate " -"one dataset with a table." +"This table already has a dataset associated with it. You can only " +"associate one dataset with a table.\n" msgstr "" "Essa tabela já tem um conjunto de dados associado a ela. Você só pode " "associar um conjunto de dados a uma tabela." +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 msgid "This value should be greater than the left target value" msgstr "Esse valor deve ser maior do que o valor-alvo esquerdo" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 msgid "This value should be smaller than the right target value" msgstr "Esse valor deve ser menor do que o valor-alvo direito" +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:171 msgid "This visualization type does not support cross-filtering." msgstr "Esse tipo de visualização não oferece suporte à filtragem cruzada." -msgid "This was triggered by:" -msgstr "Isso foi desencadeado por:" - +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:64 msgid "This visualization type is not supported." msgstr "Não há suporte para esse tipo de visualização." +#: superset-frontend/src/components/ErrorMessage/ParameterErrorMessage.tsx:61 +#, fuzzy +msgid "This was triggered by:" +msgid_plural "This may be triggered by:" +msgstr[0] "Isso foi desencadeado por:" +msgstr[1] "" + +#: superset-frontend/src/dashboard/components/DashboardEmbedControls.tsx:99 msgid "This will remove your current embed configuration." msgstr "Isso removerá sua configuração de incorporação atual." +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:66 msgid "Threshold alpha level for determining significance" msgstr "Nível alfa de limiar para determinar a significância" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:393 msgid "Threshold value should be double precision number" msgstr "O valor do limite deve ser um número de precisão dupla" +#: superset-frontend/src/pages/Home/index.tsx:343 msgid "Thumbnails" msgstr "Miniaturas" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:60 msgid "Thursday" msgstr "Quinta" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:38 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:39 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:35 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:38 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:82 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:77 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:74 +#: superset-frontend/src/explore/controlPanels/sections.tsx:65 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:200 msgid "Time" msgstr "Tempo" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:32 msgid "Time Column" msgstr "Coluna do tempo" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:296 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:178 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:446 msgid "Time Comparison" msgstr "Comparação de tempo" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 msgid "Time Format" msgstr "Formato de hora" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:33 msgid "Time Grain" msgstr "Grão de tempo" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:34 msgid "Time Granularity" msgstr "Granularidade de tempo" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:256 msgid "Time Lag" msgstr "Atraso de tempo" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:31 +#: superset-frontend/src/explore/components/controls/FilterControl/utils/useDatePickerInAdhocFilter.tsx:43 msgid "Time Range" msgstr "Intervalo de tempo" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:267 msgid "Time Ratio" msgstr "Relação de tempo" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/vendor/superset/AnnotationTypes.js:47 msgid "Time Series" msgstr "Séries temporais" +#: superset/viz.py:1581 msgid "Time Series - Bar Chart" msgstr "Série temporal - Gráfico de barras" +#: superset/viz.py:1504 msgid "Time Series - Dual Axis Line Chart" msgstr "Série Temporal - Gráfico de Linhas de Eixo Duplo" +#: superset/viz.py:1209 msgid "Time Series - Line Chart" msgstr "Série temporal - Gráfico de linhas" +#: superset/viz.py:1424 msgid "Time Series - Multiple Line Charts" msgstr "Séries temporais - Gráficos de linhas múltiplas" +#: superset/viz.py:3033 msgid "Time Series - Nightingale Rose Chart" msgstr "Séries temporais - Gráfico Nightingale Rose" +#: superset/viz.py:2961 msgid "Time Series - Paired t-test" msgstr "Séries temporais - Teste t pareado" +#: superset/viz.py:1638 msgid "Time Series - Percent Change" msgstr "Séries temporais - Variação percentual" +#: superset/viz.py:1590 msgid "Time Series - Period Pivot" msgstr "Série temporal - Pivô de período" +#: superset/viz.py:1646 msgid "Time Series - Stacked" msgstr "Séries temporais - empilhadas" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:60 msgid "Time Series Options" msgstr "Opções de séries temporais" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:304 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:186 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:454 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:640 msgid "Time Shift" msgstr "Mudança de hora" +#: superset/viz.py:878 msgid "Time Table View" msgstr "Visualização da tabela de horários" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:321 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:763 +#: superset-frontend/src/explore/constants.ts:133 +#: superset-frontend/src/filters/components/TimeColumn/index.ts:28 msgid "Time column" msgstr "Coluna de tempo" +#: superset/models/helpers.py:1659 +#, python-format msgid "Time column \"%(col)s\" does not exist in dataset" msgstr "A coluna de tempo \"%(col)s\" não existe no conjunto de dados" -msgid "Time column \"%(col)s\"does not exist in dataset" -msgstr "A Coluna de tempo \"%(col)s\"não existe no conjunto de dados" - +#: superset-frontend/src/filters/components/TimeColumn/index.ts:29 msgid "Time column filter plugin" msgstr "Plug-in de filtro de coluna de tempo" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:768 msgid "Time column to apply dependent temporal filter to" msgstr "Coluna de tempo à qual aplicar o filtro temporal dependente" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:769 msgid "Time column to apply time range to" msgstr "Coluna de tempo à qual aplicar o intervalo de tempo" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:102 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:71 +#: superset-frontend/src/explore/controlPanels/sections.tsx:174 msgid "Time comparison" msgstr "Comparação de tempo" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:641 msgid "" "Time delta in natural language\n" " (example: 24 hours, 7 days, 56 weeks, 365 days)" @@ -11283,6 +16927,8 @@ msgstr "" "Delta de tempo em linguagem natural \n" " (exemplo: 24 horas, 7 dias , 56 semanas , 365 dias)" +#: superset/charts/commands/exceptions.py:66 +#, python-format msgid "" "Time delta is ambiguous. Please specify [%(human_readable)s ago] or " "[%(human_readable)s later]." @@ -11290,132 +16936,74 @@ msgstr "" "O delta de tempo é ambíguo. Especifique [%(human_readable)s ago] ou " "[%(human_readable)s later]." +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:320 +#: superset-frontend/src/filters/components/Time/index.ts:27 msgid "Time filter" msgstr "Filtro de tempo" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:326 msgid "Time format" msgstr "Formato de hora" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:322 +#: superset-frontend/src/explore/constants.ts:134 +#: superset-frontend/src/filters/components/TimeGrain/index.ts:28 msgid "Time grain" msgstr "Grão de tempo" +#: superset-frontend/src/filters/components/TimeGrain/index.ts:29 msgid "Time grain filter plugin" msgstr "Plug-in de filtro de granulação de tempo" +#: superset/utils/pandas_postprocessing/prophet.py:114 msgid "Time grain missing" msgstr "Grão do tempo ausente" +#: superset-frontend/src/explore/constants.ts:135 msgid "Time granularity" msgstr "Granularidade de tempo" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:400 msgid "Time in seconds" msgstr "Tempo em segundos" -msgid "Time range" -msgstr "Intervalo de tempo" - +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:250 msgid "Time lag" msgstr "Defasagem de tempo" -msgid "Time related form attributes" -msgstr "Atributos de formulário relacionados ao tempo" - -msgid "Time series columns" -msgstr "Colunas de séries temporais" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:320 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1009 +#: superset-frontend/src/explore/constants.ts:132 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:403 +msgid "Time range" +msgstr "Intervalo de tempo" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:261 msgid "Time ratio" msgstr "Relação de tempo" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 +#: superset-frontend/src/explore/controlPanels/sections.tsx:66 +msgid "Time related form attributes" +msgstr "Atributos de formulário relacionados ao tempo" + +#: superset-frontend/src/modules/AnnotationTypes.js:46 msgid "Time series" msgstr "Séries temporais" -msgid "Time-series Area Chart" -msgstr "Gráfico de área de séries temporais" - -msgid "Time-series Bar Chart" -msgstr "Gráfico de barras de séries temporais" - -msgid "Time-series Bar Chart (legacy)" -msgstr "Gráfico de barras de séries temporais (legado)" - -msgid "Time-series Chart" -msgstr "Gráfico de séries temporais" - -msgid "Time-series Line Chart" -msgstr "Gráfico de linhas de séries temporais" - -msgid "Time-series Percent Change" -msgstr "Variação percentual da série temporal" - -msgid "Time-series Period Pivot" -msgstr "Pivô de período de série temporal" - -msgid "Time-series Scatter Plot" -msgstr "Gráfico de dispersão de séries temporais" - -msgid "Time-series Smooth Line" -msgstr "Linha suave de séries temporais" - -msgid "Time-series Stepped Line" -msgstr "Linha escalonada de série temporal" - -msgid "Timestamp format" -msgstr "Formato de carimbo de data/hora" - -msgid "Timezone selector" -msgstr "Seletor de fuso horário" - -msgid "Tiny" -msgstr "Minúsculo" - -msgid "Title Column" -msgstr "Coluna de título" - -msgid "Title is required" -msgstr "O título é obrigatório" - -msgid "Too many columns to filter" -msgstr "Muitas colunas para filtrar" - -msgid "Tools" -msgstr "Ferramentas" - -msgid "Tooltip sort by metric" -msgstr "Classificação da dica de ferramenta por métrica" - -msgid "Tooltip time format" -msgstr "Formato de hora da dica de ferramenta" - -msgid "Top" -msgstr "Topo" - -msgid "Top left" -msgstr "Superior esquerdo" - -msgid "Top right" -msgstr "Superior direito" - -msgid "Total value" -msgstr "Valor total" - -msgid "Tree Chart" -msgstr "Gráfico de árvore" - -msgid "Tree orientation" -msgstr "Orientação da árvore" - -msgid "Trend" -msgstr "Tendência" - -msgid "Truncate Metric" -msgstr "Truncar métrica" - -msgid "Truncate long cells to the \"min width\" set above" -msgstr "Truncar células longas para a \"min width\" definida acima" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:48 +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:38 +msgid "Time series columns" +msgstr "Colunas de séries temporais" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:110 +#: superset-frontend/src/explore/controlPanels/sections.tsx:182 msgid "Time shift" msgstr "Mudança de horário" +#: superset/charts/commands/exceptions.py:38 +#, python-format msgid "" "Time string is ambiguous. Please specify [%(human_readable)s ago] or " "[%(human_readable)s later]." @@ -11423,481 +17011,775 @@ msgstr "" "A cadeia de tempo é ambígua. Especifique [%(human_readable)s ago] ou " "[%(human_readable)s later]." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:76 +msgid "Time-series Area Chart" +msgstr "Gráfico de área de séries temporais" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:64 msgid "" "Time-series Area chart are similar to line chart in that they represent " -"variables with the same scale, but area charts stack the metrics on top of " -"each other. An area chart in Superset can be stream, stack, or expand." +"variables with the same scale, but area charts stack the metrics on top " +"of each other. An area chart in Superset can be stream, stack, or expand." msgstr "" -"O gráfico de área de série temporal é semelhante ao gráfico de linhas, pois " -"representa variáveis com a mesma escala, mas os gráficos de área empilham as " -"métricas umas sobre as outras. Um gráfico de área no Superset pode ser de " -"fluxo, empilhamento ou expansão." +"O gráfico de área de série temporal é semelhante ao gráfico de linhas, " +"pois representa variáveis com a mesma escala, mas os gráficos de área " +"empilham as métricas umas sobre as outras. Um gráfico de área no Superset" +" pode ser de fluxo, empilhamento ou expansão." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:82 +msgid "Time-series Bar Chart" +msgstr "Gráfico de barras de séries temporais" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:35 +msgid "Time-series Bar Chart (legacy)" +msgstr "Gráfico de barras de séries temporais (legado)" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:68 msgid "" -"Time-series Bar Charts are used to show the changes in a metric over time as " -"a series of bars." +"Time-series Bar Charts are used to show the changes in a metric over time" +" as a series of bars." msgstr "" "Os gráficos de barras de séries temporais são usados para mostrar as " "alterações em uma métrica ao longo do tempo como uma série de barras." -msgid "" -"Time-series Scatter Plot has time on the horizontal axis in linear units, " -"and the points are connected in order. It shows a statistical relationship " -"between two variables." -msgstr "" -"O gráfico de dispersão de séries temporais tem o tempo no eixo horizontal em " -"unidades lineares, e os pontos são conectados em ordem. Ele mostra uma " -"relação estatística entre duas variáveis." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:68 +msgid "Time-series Chart" +msgstr "Gráfico de séries temporais" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:81 +msgid "Time-series Line Chart" +msgstr "Gráfico de linhas de séries temporais" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:32 +msgid "Time-series Percent Change" +msgstr "Variação percentual da série temporal" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:28 +msgid "Time-series Period Pivot" +msgstr "Pivô de período de série temporal" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:80 +msgid "Time-series Scatter Plot" +msgstr "Gráfico de dispersão de séries temporais" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:68 msgid "" -"Time-series Smooth-line is a variation of the line chart. Without angles and " -"hard edges, Smooth-line sometimes looks smarter and more professional." +"Time-series Scatter Plot has time on the horizontal axis in linear units," +" and the points are connected in order. It shows a statistical " +"relationship between two variables." +msgstr "" +"O gráfico de dispersão de séries temporais tem o tempo no eixo horizontal" +" em unidades lineares, e os pontos são conectados em ordem. Ele mostra " +"uma relação estatística entre duas variáveis." + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:80 +msgid "Time-series Smooth Line" +msgstr "Linha suave de séries temporais" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:68 +msgid "" +"Time-series Smooth-line is a variation of the line chart. Without angles " +"and hard edges, Smooth-line sometimes looks smarter and more " +"professional." msgstr "" "A série temporal Smooth-line é uma variação do gráfico de linhas. Sem " -"ângulos e bordas rígidas, o Smooth-line às vezes parece mais inteligente e " -"profissional." +"ângulos e bordas rígidas, o Smooth-line às vezes parece mais inteligente " +"e profissional." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:71 +msgid "Time-series Stepped Line" +msgstr "Linha escalonada de série temporal" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:59 msgid "" -"Time-series Stepped-line graph (also called step chart) is a variation of " -"line chart but with the line forming a series of steps between data points. " -"A step chart can be useful when you want to show the changes that occur at " -"irregular intervals." +"Time-series Stepped-line graph (also called step chart) is a variation of" +" line chart but with the line forming a series of steps between data " +"points. A step chart can be useful when you want to show the changes that" +" occur at irregular intervals." msgstr "" "O Gráfico de linhas escalonadas de séries temporais (também chamado de " "gráfico de etapas) é uma variação do gráfico de linhas, mas com a linha " -"formando uma série de etapas entre os pontos de dados. Um gráfico de etapas " -"pode ser útil quando você deseja mostrar as alterações que ocorrem em " -"intervalos irregulares." +"formando uma série de etapas entre os pontos de dados. Um gráfico de " +"etapas pode ser útil quando você deseja mostrar as alterações que ocorrem" +" em intervalos irregulares." +#: superset-frontend/src/visualizations/TimeTable/index.ts:27 msgid "Time-series Table" msgstr "Tabela de séries temporais" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/index.ts:69 msgid "" -"Time-series line chart is used to visualize repeated measurements taken over " -"regular time intervals. Line chart is a type of chart which displays " -"information as a series of data points connected by straight line segments. " -"It is a basic type of chart common in many fields." +"Time-series line chart is used to visualize repeated measurements taken " +"over regular time intervals. Line chart is a type of chart which displays" +" information as a series of data points connected by straight line " +"segments. It is a basic type of chart common in many fields." msgstr "" "O gráfico de linhas de séries temporais é usado para visualizar medições " -"repetidas feitas em intervalos de tempo regulares. O gráfico de linhas é um " -"tipo de gráfico que exibe informações como uma série de pontos de dados " -"conectados por segmentos de linha reta. É um tipo básico de gráfico comum em " -"muitos campos." +"repetidas feitas em intervalos de tempo regulares. O gráfico de linhas é " +"um tipo de gráfico que exibe informações como uma série de pontos de " +"dados conectados por segmentos de linha reta. É um tipo básico de gráfico" +" comum em muitos campos." +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:98 msgid "Timeout error" msgstr "Erro de tempo limite" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:387 +msgid "Timestamp format" +msgstr "Formato de carimbo de data/hora" + +#: superset-frontend/src/components/ReportModal/index.tsx:325 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 msgid "Timezone" msgstr "Fuso horário" +#: superset/connectors/sqla/views.py:334 msgid "Timezone offset (in hours) for this datasource" msgstr "Deslocamento de fuso horário (em horas) para essa fonte de dados" +#: superset-frontend/src/components/TimezoneSelector/index.tsx:129 +msgid "Timezone selector" +msgstr "Seletor de fuso horário" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:35 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/sharedControls.ts:69 +msgid "Tiny" +msgstr "Minúsculo" + +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:186 +#: superset-frontend/src/components/DynamicEditableTitle/index.tsx:207 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:687 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:41 +#: superset-frontend/src/pages/DashboardList/index.tsx:308 +#: superset/views/dashboard/mixin.py:78 superset/views/dashboard/views.py:184 msgid "Title" msgstr "Título" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:574 +msgid "Title Column" +msgstr "Coluna de título" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:44 +msgid "Title is required" +msgstr "O título é obrigatório" + +#: superset/dashboards/filters.py:39 msgid "Title or Slug" msgstr "Título ou Slug" +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:347 msgid "To filter on a metric, use Custom SQL tab." msgstr "Para filtrar em uma métrica, use a aba SQL personalizado." +#: superset/views/dashboard/mixin.py:57 msgid "To get a readable URL for your dashboard" msgstr "Para obter um URL legível para seu painel" +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:27 +msgid "Tools" +msgstr "Ferramentas" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:213 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 msgid "Tooltip" msgstr "Dica" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:201 +msgid "Tooltip sort by metric" +msgstr "Classificação da dica de ferramenta por métrica" + +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:191 +msgid "Tooltip time format" +msgstr "Formato de hora da dica de ferramenta" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:29 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 +msgid "Top" +msgstr "Topo" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:183 +msgid "Top left" +msgstr "Superior esquerdo" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:184 +msgid "Top right" +msgstr "Superior direito" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:140 msgid "Top to Bottom" msgstr "De cima para baixo" +#: superset/charts/post_processing.py:73 +#, python-format msgid "Total (%(aggfunc)s)" msgstr "Total (%(aggfunc)s)" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 +#, python-format msgid "Total (%(aggregatorName)s)" msgstr "Total (%(aggregatorName)s)" +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:68 +msgid "Total value" +msgstr "Valor total" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/transformProps.ts:326 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/transformProps.ts:359 +#, python-format msgid "Total: %s" msgstr "Total: %s" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:619 msgid "Totals" msgstr "Totais" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:404 msgid "Track job" msgstr "Rastrear o trabalho" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/index.js:40 +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:48 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/index.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/index.ts:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/index.ts:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/index.ts:78 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/index.ts:75 msgid "Transformable" msgstr "Transformável" +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:25 msgid "Transparent" msgstr "Transparente" -msgid "Transpose Pivot" -msgstr "Transpor Pivô" - +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:238 msgid "Transpose pivot" msgstr "Transpor pivô" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:39 +msgid "Tree Chart" +msgstr "Gráfico de árvore" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:118 msgid "Tree layout" msgstr "Layout da árvore" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:135 +msgid "Tree orientation" +msgstr "Orientação da árvore" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:60 +#: superset/viz.py:925 msgid "Treemap" msgstr "Mapa da árvore" +#: superset-frontend/plugins/legacy-plugin-chart-treemap/src/index.js:40 msgid "Treemap (legacy)" msgstr "Mapa da árvore (legado)" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:39 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:53 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:40 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/index.ts:65 +#: superset-frontend/src/visualizations/TimeTable/index.ts:39 +msgid "Trend" +msgstr "Tendência" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:227 msgid "Triangle" msgstr "Triângulo" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:390 msgid "Trigger Alert If..." msgstr "Alerta de acionamento se..." +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:229 msgid "Truncate Axis" msgstr "Truncar eixo" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:136 msgid "Truncate Cells" msgstr "Truncar Células" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:350 +msgid "Truncate Metric" +msgstr "Truncar métrica" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:356 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:246 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:234 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:178 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:178 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:228 msgid "Truncate Y Axis" msgstr "Truncar Eixo Y" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:359 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:249 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:231 msgid "Truncate Y Axis. Can be overridden by specifying a min or max bound." msgstr "" -"Truncar Eixo Y. Pode ser substituído pela especificação de um limite mínimo " -"ou máximo." +"Truncar Eixo Y. Pode ser substituído pela especificação de um limite " +"mínimo ou máximo." -msgid "Truncate long cells to the \"min width\"set above" -msgstr "Truncar células longas para a \"min width\"definida acima" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:137 +msgid "Truncate long cells to the \"min width\" set above" +msgstr "Truncar células longas para a \"min width\" definida acima" -msgid "" -"Truncates the specified date to the accuracy specified by the date unit." +#: superset-frontend/src/explore/components/controls/DateFilterControl/components/DateFunctionTooltip.tsx:58 +msgid "Truncates the specified date to the accuracy specified by the date unit." msgstr "" -"Trunca a data especificada com a precisão especificada pela unidade de data." +"Trunca a data especificada com a precisão especificada pela unidade de " +"data." +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 msgid "Try applying different filters or ensuring your datasource has data" msgstr "" -"Tente aplicar filtros diferentes ou garantir que sua fonte de dados tenha " -"dados" +"Tente aplicar filtros diferentes ou garantir que sua fonte de dados tenha" +" dados" +#: superset-frontend/src/components/ListView/ListView.tsx:412 msgid "Try different criteria to display results." msgstr "Experimente critérios diferentes para exibir os resultados." +#: superset-frontend/src/features/datasets/AddDataset/LeftPanel/index.tsx:275 msgid "Try selecting a different schema" msgstr "Tente selecionar um esquema diferente" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:58 msgid "Tuesday" msgstr "Terça" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:95 +#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:47 msgid "Tukey" msgstr "Tukey (inglês)" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:65 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:272 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:276 +#: superset-frontend/src/pages/DatasetList/index.tsx:354 +#: superset-frontend/src/pages/DatasetList/index.tsx:563 +#: superset/connectors/sqla/views.py:163 superset/connectors/sqla/views.py:252 msgid "Type" msgstr "Tipo" +#: superset-frontend/src/components/DeleteModal/index.tsx:92 +#: superset-frontend/src/components/ImportModal/index.tsx:397 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1460 +#, python-format msgid "Type \"%s\" to confirm" msgstr "Digite \"%s\" para confirmar" +#: superset-frontend/src/components/ListView/Filters/Search.tsx:75 msgid "Type a value" msgstr "Digite um valor" -msgid "UI Configuration" -msgstr "Configuração da interface do usuário" - -msgid "URL Parameters" -msgstr "Parâmetros de URL" - -msgid "Type \"%s\"to confirm" -msgstr "Digite \"%s\"para confirmar" - +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:378 msgid "Type a value here" msgstr "Digite um valor aqui" +#: superset/reports/commands/exceptions.py:75 msgid "Type is required" msgstr "O tipo é obrigatório" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:72 msgid "Type of Google Sheets allowed" msgstr "Tipo de Planilhas Google permitido" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:216 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:273 msgid "Type of comparison, value difference or percentage" msgstr "Tipo de comparação, diferença de valor ou porcentagem" +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:407 +#, python-format msgid "Type or Select [%s]" msgstr "Digite ou Selecione [%s]" +#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:51 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:47 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:57 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:45 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:25 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:25 +msgid "UI Configuration" +msgstr "Configuração da interface do usuário" + +#: superset-frontend/src/visualizations/TimeTable/controlPanel.js:51 msgid "URL" msgstr "URL" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:88 +msgid "URL Parameters" +msgstr "Parâmetros de URL" + +#: superset-frontend/src/explore/controlPanels/sections.tsx:50 msgid "URL parameters" msgstr "Parâmetros de URL" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:696 msgid "URL slug" msgstr "Slug de URL" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:618 +msgid "Unable to add a new tab to the backend. Please contact your administrator." +msgstr "" +"Não é possível adicionar uma nova guia ao backend. Entre em contato com o" +" administrador." + +#: superset/db_engine_specs/presto.py:704 +#, python-format +msgid "Unable to connect to catalog named \"%(catalog_name)s\"." +msgstr "" +"Não foi possível conectar-se ao catálogo chamado \"%(nome_do_catálogo)s " +"\"." + +#: superset/db_engine_specs/mysql.py:165 +#: superset/db_engine_specs/postgres.py:147 +#: superset/db_engine_specs/starrocks.py:127 +#, python-format +msgid "Unable to connect to database \"%(database)s\"." +msgstr "Não é possível se conectar ao banco de dados \"%(banco de dados)s\"." + +#: superset/db_engine_specs/bigquery.py:178 msgid "" -"Unable to connect. Verify that the following roles are set on the service " -"account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery " -"Job User\" and the following permissions are set \"bigquery.readsessions." -"create\", \"bigquery.readsessions.getData\"" +"Unable to connect. Verify that the following roles are set on the service" +" account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " +"\"BigQuery Job User\" and the following permissions are set " +"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" msgstr "" "Não é possível se conectar. Verifique se as seguintes funções estão " "definidas na conta de serviço: \"Visualizador de dados do BigQuery\", " "\"Visualizador de metadados do BigQuery\", \"Usuário do trabalho do " -"BigQuery\" e as seguintes permissões estão definidas \"bigquery.readsessions." -"create\", \"bigquery.readsessions.getData\"" - -msgid "Unable to find such a holiday: [%(holiday)s]" -msgstr "Não foi possível encontrar esse feriado: [%(holiday)s]" - -msgid "" -"Unable to add a new tab to the backend. Please contact your administrator." -msgstr "" -"Não é possível adicionar uma nova guia ao backend. Entre em contato com o " -"administrador." - -msgid "Unable to connect to catalog named \"%(catalog_name)s\"." -msgstr "" -"Não foi possível conectar-se ao catálogo chamado \"%(nome_do_catálogo)s \"." - -msgid "Unable to connect to database \"%(database)s\"." -msgstr "Não é possível se conectar ao banco de dados \"%(banco de dados)s\"." - -msgid "" -"Unable to connect. Verify that the following roles are set on the service " -"account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", \"BigQuery " -"Job User\"and the following permissions are set \"bigquery.readsessions." -"create\", \"bigquery.readsessions.getData\"" -msgstr "" -"Não é possível se conectar. Verifique se as seguintes funções estão " -"definidas na conta de serviço: \"BigQuery Data Viewer\", \"BigQuery Metadata " -"Viewer\", \"BigQuery Job User\" e as seguintes permissões estão definidas " -"\"bigquery.readsessions.create \", \"bigquery.readsessions.getData \"" +"BigQuery\" e as seguintes permissões estão definidas " +"\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:216 msgid "Unable to create chart without a query id." msgstr "Não é possível criar um gráfico sem um ID de consulta." +#: superset/key_value/exceptions.py:66 +msgid "Unable to decode value" +msgstr "" + +#: superset/key_value/exceptions.py:62 +msgid "Unable to encode value" +msgstr "" + +#: superset/utils/date_parser.py:393 +#, python-format +msgid "Unable to find such a holiday: [%(holiday)s]" +msgstr "Não foi possível encontrar esse feriado: [%(holiday)s]" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:72 msgid "" "Unable to load columns for the selected table. Please select a different " "table." msgstr "" -"Não foi possível carregar colunas para a tabela selecionada. Selecione uma " -"tabela diferente." +"Não foi possível carregar colunas para a tabela selecionada. Selecione " +"uma tabela diferente." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:585 msgid "" -"Unable to migrate query editor state to backend. Superset will retry later. " -"Please contact your administrator if this problem persists." +"Unable to migrate query editor state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." msgstr "" -"Não foi possível migrar o estado do editor de consultas para o backend. O " -"Superset tentará novamente mais tarde. Entre em contato com o administrador se " -"o problema persistir." +"Não foi possível migrar o estado do editor de consultas para o backend. O" +" Superset tentará novamente mais tarde. Entre em contato com o " +"administrador se o problema persistir." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:539 msgid "" -"Unable to migrate query state to backend. Superset will retry later. Please " -"contact your administrator if this problem persists." +"Unable to migrate query state to backend. Superset will retry later. " +"Please contact your administrator if this problem persists." msgstr "" "Não foi possível migrar o estado da consulta para o backend. O Superset " "tentará novamente mais tarde. Entre em contato com o administrador se o " "problema persistir." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:521 msgid "" -"Unable to migrate table schema state to backend. Superset will retry later. " -"Please contact your administrator if this problem persists." +"Unable to migrate table schema state to backend. Superset will retry " +"later. Please contact your administrator if this problem persists." msgstr "" "Não foi possível migrar o estado do esquema da tabela para o backend. O " -"Superset tentará novamente mais tarde. Entre em contato com o administrador se " -"o problema persistir." +"Superset tentará novamente mais tarde. Entre em contato com o " +"administrador se o problema persistir." +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:126 msgid "Unable to retrieve dashboard colors" msgstr "Não foi possível recuperar as cores do painel" +#: superset/views/database/views.py:278 +#, python-format msgid "" -"Unable to upload CSV file \"%(filename)s\"to table \"%(table_name)s\"in " -"database \"%(db_name)s\". Error message: %(error_msg)s" +"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" +" database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -"Não foi possível fazer upload do arquivo CSV \"%(filename)s\"para a tabela " -"\"%(table_name)s\"no banco de dados \"%(db_name)s\". Mensagem de erro: " -"%(error_msg)s" +"Não foi possível fazer upload do arquivo CSV \"%(filename)s\" para a " +"tabela \"%(table_name)s\" no banco de dados \"%(db_name)s\". Mensagem de " +"erro: %(error_msg)s" +#: superset/views/database/views.py:556 +#, python-format msgid "" -"Unable to upload Excel file \"%(filename)s\"to table \"%(table_name)s\"in " -"database \"%(db_name)s\". Error message: %(error_msg)s" -msgstr "" -"Não foi possível fazer upload do arquivo Excel \"%(filename)s\"para a tabela " -"\"%(table_name)s\"no banco de dados \"%(db_name)s\". Mensagem de erro: " +"Unable to upload Columnar file \"%(filename)s\" to table " +"\"%(table_name)s\" in database \"%(db_name)s\". Error message: " "%(error_msg)s" - -msgid "" -"Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in " -"database \"%(db_name)s\". Error message: %(error_msg)s" -msgstr "" -"Não foi possível fazer upload do arquivo CSV \"%(filename)s\" para a tabela " -"\"%(table_name)s\" no banco de dados \"%(db_name)s\". Mensagem de erro: " -"%(error_msg)s" - -msgid "" -"Unable to upload Columnar file \"%(filename)s\" to table \"%(table_name)s\" " -"in database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" "Não foi possível fazer upload do arquivo colunar \"%(filename)s\" para a " "tabela \"%(table_name)s\" no banco de dados \"%(db_name)s\". Mensagem de " "erro: %(error_msg)s" +#: superset/views/database/views.py:415 +#, python-format msgid "" -"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" in " -"database \"%(db_name)s\". Error message: %(error_msg)s" +"Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " +"in database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -"Não foi possível fazer upload do arquivo do Excel \"%(filename)s\" para a " -"tabela \"%(table_name)s\" no banco de dados \"%(db_name)s\". Mensagem de " -"erro: %(error_msg)s" +"Não foi possível fazer upload do arquivo do Excel \"%(filename)s\" para a" +" tabela \"%(table_name)s\" no banco de dados \"%(db_name)s\". Mensagem de" +" erro: %(error_msg)s" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:92 +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 msgid "Undefined" msgstr "Indefinido" +#: superset/utils/pandas_postprocessing/rolling.py:67 msgid "Undefined window for rolling operation" msgstr "Janela indefinida para operação de rolagem" +#: superset-frontend/src/dashboard/components/Header/index.jsx:551 msgid "Undo the action" msgstr "Desfazer a ação" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:132 msgid "Undo?" msgstr "Desfazer?" +#: superset-frontend/src/components/ErrorBoundary/index.jsx:51 +#: superset-frontend/src/components/ErrorMessage/ErrorMessageWithStackTrace.tsx:25 msgid "Unexpected error" msgstr "Erro inesperado" +#: superset/databases/commands/exceptions.py:137 +#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1479 msgid "Unexpected error occurred, please check your logs for details" msgstr "" -"Ocorreu um erro inesperado, verifique os registros(logs) para obter detalhes" +"Ocorreu um erro inesperado, verifique os registros(logs) para obter " +"detalhes" -msgid "Unexpected error:" +#: superset-frontend/src/utils/getClientErrorObject.ts:75 +#, fuzzy +msgid "Unexpected error: " msgstr "Erro inesperado:" +#: superset/views/api.py:108 +#, python-format msgid "Unexpected time range: %s" msgstr "Intervalo de tempo inesperado: %s" +#: superset-frontend/src/features/home/ActivityTable.tsx:86 msgid "Unknown" msgstr "Desconhecido" +#: superset/db_engine_specs/mysql.py:155 +#, python-format msgid "Unknown MySQL server host \"%(hostname)s\"." msgstr "Host do servidor MySQL desconhecido \"%(hostname)s\"." +#: superset/db_engine_specs/presto.py:1342 msgid "Unknown Presto Error" msgstr "Erro desconhecido do Presto" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:175 msgid "Unknown Status" msgstr "Status Desconhecido" +#: superset/models/helpers.py:1582 +#, python-format msgid "Unknown column used in orderby: %(col)s" msgstr "Coluna desconhecida usada em orderby: %(col)s" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:398 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:476 msgid "Unknown error" msgstr "Erro desconhecido" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/utilities.js:842 msgid "Unknown input format" msgstr "Formato de entrada desconhecido" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/utils/index.ts:43 msgid "Unknown value" msgstr "Valor desconhecido" +#: superset/jinja_context.py:353 +#, python-format msgid "Unsafe return type for function %(func)s: %(value_type)s" msgstr "Tipo de retorno inseguro para a função %(func)s: %(value_ type)s" +#: superset/jinja_context.py:380 +#, python-format msgid "Unsafe template value for key %(key)s: %(value_type)s" msgstr "Valor de modelo não seguro para a chave %(key)s: %(value_ type)s" +#: superset/utils/core.py:1104 +#, python-format msgid "Unsupported clause type: %(clause)s" msgstr "Tipo de cláusula sem suporte: %(clause)s" +#: superset/common/query_object.py:440 +#, python-format msgid "Unsupported post processing operation: %(operation)s" msgstr "Operação de pós-processamento sem suporte: %(operation)s" +#: superset/jinja_context.py:364 +#, python-format msgid "Unsupported return value for method %(name)s" msgstr "Valor de retorno não suportado para o método %(name)s" +#: superset/jinja_context.py:391 +#, python-format msgid "Unsupported template value for key %(key)s" msgstr "Valor de modelo não suportado para a chave %(key)s" +#: superset/utils/pandas_postprocessing/prophet.py:117 +#, python-format msgid "Unsupported time grain: %(time_grain)s" msgstr "Grão de tempo não suportado: %(time_grain)s" +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:148 msgid "Untitled Dataset" msgstr "Conjunto de dados sem título" +#: superset/views/sql_lab/views.py:148 msgid "Untitled Query" msgstr "Consulta sem título" +#: superset-frontend/src/SqlLab/reducers/getInitialState.js:52 msgid "Untitled query" msgstr "Consulta sem título" +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:222 msgid "Update" msgstr "Atualização" +#: superset-frontend/src/explore/components/RunQueryButton/index.tsx:54 +#: superset-frontend/src/utils/getChartRequiredFieldsMissingMessage.ts:23 +msgid "Update chart" +msgstr "Atualizar Gráfico" + +#: superset-frontend/src/components/Chart/chartReducer.ts:84 msgid "Updating chart was stopped" msgstr "A atualização do gráfico foi interrompida" +#: superset/templates/superset/import_dashboards.html:63 msgid "Upload" msgstr "Carregar" +#: superset-frontend/src/pages/DatabaseList/index.tsx:213 msgid "Upload CSV" msgstr "Carregar CSV" +#: superset-frontend/src/features/home/RightMenu.tsx:189 msgid "Upload CSV to database" msgstr "Carregar CSV para o banco de dados" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:135 msgid "Upload Credentials" msgstr "Carregar credenciais" +#: superset/databases/filters.py:66 msgid "Upload Enabled" msgstr "Upload habilitado" +#: superset-frontend/src/pages/DatabaseList/index.tsx:227 msgid "Upload Excel file" msgstr "Carregar arquivo Excel" +#: superset-frontend/src/features/home/RightMenu.tsx:203 msgid "Upload Excel file to database" msgstr "Carregar arquivo do Excel para o banco de dados" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:101 msgid "Upload JSON file" msgstr "Carregar arquivo JSON" +#: superset-frontend/src/pages/DatabaseList/index.tsx:220 msgid "Upload columnar file" msgstr "Carregar arquivo colunar" +#: superset-frontend/src/features/home/RightMenu.tsx:196 msgid "Upload columnar file to database" msgstr "Carregar arquivo colunar no banco de dados" +#: superset-frontend/src/pages/DatabaseList/index.tsx:210 msgid "Upload file to database" msgstr "Carregar arquivo no banco de dados" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:52 msgid "Usage" msgstr "Uso" +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:802 +#, python-format msgid "Use \"%(menuName)s\" menu instead." msgstr "Em vez disso, use o menu \"%(menuName)s\"." +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 +#, python-format msgid "Use %s to open in a new tab." msgstr "Use %s para abrir em uma nova guia." +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:104 +#: superset-frontend/src/explore/controlUtils/controlUtils.test.tsx:113 +#: superset-frontend/src/explore/fixtures.tsx:43 msgid "Use Area Proportions" msgstr "Proporções de área de uso" +#: superset/views/database/forms.py:472 msgid "Use Columns" msgstr "Usar colunas" -msgid "Use \"%(menuName)s\"menu instead." -msgstr "Em vez disso, use o menu \"%(menuName)s\"." - +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:200 msgid "Use a log scale" msgstr "Use uma escala logarítmica" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:108 msgid "Use a log scale for the X-axis" msgstr "Use uma escala logarítmica para eixo X" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:250 msgid "Use a log scale for the Y-axis" msgstr "Use uma escala logarítmica para o eixo Y" +#: superset/db_engine_specs/base.py:1889 +#: superset/db_engine_specs/clickhouse.py:216 +#: superset/db_engine_specs/databricks.py:58 msgid "Use an encrypted connection to the database" msgstr "Use uma conexão criptografada com o banco de dados" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:455 +#, python-format msgid "" "Use another existing chart as a source for annotations and overlays.\n" " Your chart must be one of these visualization types: [%s]" @@ -11905,300 +17787,404 @@ msgstr "" "Use outro gráfico existente como fonte para anotações e sobreposições.\n" " Seu gráfico deve ser um destes tipos de visualização: [%s]" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:87 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 msgid "Use date formatting even when metric value is not a timestamp" msgstr "" -"Usar formatação de data mesmo quando o valor da métrica não for um carimbo " -"de data/hora" +"Usar formatação de data mesmo quando o valor da métrica não for um " +"carimbo de data/hora" +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 msgid "Use legacy datasource editor" msgstr "Usar o editor de fonte de dados herdado" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:122 msgid "Use metrics as a top level group for columns or for rows" msgstr "Use métricas como um grupo de nível superior para colunas ou linhas" +#: superset-frontend/src/filters/components/Range/controlPanel.ts:70 msgid "Use only a single value." msgstr "Use apenas um único valor." +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:117 msgid "Use the Advanced Analytics options below" msgstr "Use as opções de análise avançada abaixo" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/EncryptedField.tsx:137 msgid "" -"Use the JSON file you automatically downloaded when creating your service " -"account." +"Use the JSON file you automatically downloaded when creating your service" +" account." msgstr "" "Use o arquivo JSON que você baixou automaticamente ao criar sua conta de " "serviço." +#: superset/templates/superset/fab_overrides/list_with_checkboxes.html:82 msgid "Use the edit button to change this field" msgstr "Use o botão de edição para alterar esse campo" +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:40 +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:120 msgid "Use this section if you want a query that aggregates" msgstr "Use esta seção se quiser uma consulta que agregue" +#: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:54 msgid "Use this section if you want to query atomic rows" msgstr "Use esta seção se quiser consultar linhas atômicas" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:130 +#: superset-frontend/src/explore/controls.jsx:206 msgid "Use this to define a static color for all circles" msgstr "Use isso para definir uma cor estática para todos os círculos" +#: superset/views/dynamic_plugins.py:48 msgid "" -"Used internally to identify the plugin. Should be set to the package name " -"from the pluginʼs package.json" +"Used internally to identify the plugin. Should be set to the package name" +" from the pluginʼs package.json" msgstr "" -"Usado internamente para identificar o plug-in. Deve ser definido com o nome " -"do pacote do package.json do plugin" +"Usado internamente para identificar o plug-in. Deve ser definido com o " +"nome do pacote do package.json do plugin" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 msgid "" "Used to summarize a set of data by grouping together multiple statistics " -"along two axes. Examples: Sales numbers by region and month, tasks by status " -"and assignee, active users by age and location.\n" -"\n" -" This chart is being deprecated and we recommend checking out Pivot Table " -"V2 instead!" +"along two axes. Examples: Sales numbers by region and month, tasks by " +"status and assignee, active users by age and location. Not the most " +"visually stunning visualization, but highly informative and versatile." msgstr "" -"Usado para resumir um conjunto de dados, agrupando várias estatísticas ao " -"longo de dois eixos. Exemplos: Números de vendas por região e mês, tarefas " -"por status e responsável, usuários ativos por idade e local.\n" -"\n" -" Este gráfico está sendo descontinuado e recomendamos que você consulte a " -"Tabela dinâmica V2!" - -msgid "" -"Used to summarize a set of data by grouping together multiple statistics " -"along two axes. Examples: Sales numbers by region and month, tasks by status " -"and assignee, active users by age and location. Not the most visually " -"stunning visualization, but highly informative and versatile." -msgstr "" -"Usado para resumir um conjunto de dados, agrupando várias estatísticas ao " -"longo de dois eixos. Exemplos: Números de vendas por região e mês, tarefas " -"por status e responsável, usuários ativos por idade e local. Não é a " -"visualização mais impressionante visualmente, mas é altamente informativa e " -"versátil." +"Usado para resumir um conjunto de dados, agrupando várias estatísticas ao" +" longo de dois eixos. Exemplos: Números de vendas por região e mês, " +"tarefas por status e responsável, usuários ativos por idade e local. Não " +"é a visualização mais impressionante visualmente, mas é altamente " +"informativa e versátil." +#: superset-frontend/src/features/home/RightMenu.tsx:474 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:293 +#: superset-frontend/src/pages/QueryHistoryList/index.tsx:385 +#: superset/views/access_requests.py:44 superset/views/log/__init__.py:30 +#: superset/views/sql_lab/views.py:82 msgid "User" msgstr "Usuário" +#: superset/views/access_requests.py:45 msgid "User Roles" msgstr "Funções de usuário" +#: superset/errors.py:118 msgid "User doesn't have the proper permissions." msgstr "O usuário não tem as permissões adequadas." +#: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:75 +#: superset-frontend/src/filters/components/Range/controlPanel.ts:58 +#: superset-frontend/src/filters/components/Select/controlPanel.ts:93 +#: superset-frontend/src/filters/components/Time/controlPanel.ts:56 +#: superset-frontend/src/filters/components/TimeColumn/controlPanel.ts:36 +#: superset-frontend/src/filters/components/TimeGrain/controlPanel.ts:36 msgid "User must select a value before applying the filter" msgstr "O usuário deve selecionar um valor antes de aplicar o filtro" +#: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:253 msgid "User must select a value for this filter" msgstr "O usuário deve selecionar um valor para esso filtro" +#: superset-frontend/src/features/queries/QueryPreviewModal.tsx:156 msgid "User query" msgstr "Consulta do usuário" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:133 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 +#: superset/db_engine_specs/base.py:1868 +#: superset/db_engine_specs/clickhouse.py:201 msgid "Username" msgstr "Nome de usuário" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:27 msgid "" -"Uses a gauge to showcase progress of a metric towards a target. The position " -"of the dial represents the progress and the terminal value in the gauge " -"represents the target value." +"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" +" of data" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:45 +msgid "" +"Uses a gauge to showcase progress of a metric towards a target. The " +"position of the dial represents the progress and the terminal value in " +"the gauge represents the target value." msgstr "" "Usa um medidor para mostrar o progresso de uma métrica em direção a uma " -"meta. A posição do mostrador representa o progresso e o valor do terminal no " -"medidor representa o valor-alvo." +"meta. A posição do mostrador representa o progresso e o valor do terminal" +" no medidor representa o valor-alvo." +#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:28 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/index.ts:41 msgid "" "Uses circles to visualize the flow of data through different stages of a " -"system. Hover over individual paths in the visualization to understand the " -"stages a value took. Useful for multi-stage, multi-group visualizing funnels " -"and pipelines." +"system. Hover over individual paths in the visualization to understand " +"the stages a value took. Useful for multi-stage, multi-group visualizing " +"funnels and pipelines." msgstr "" -"Usa círculos para visualizar o fluxo de dados em diferentes estágios de um " -"sistema. Passe o mouse sobre caminhos individuais na visualização para " -"entender os estágios de um valor. Útil para funis e pipelines de " +"Usa círculos para visualizar o fluxo de dados em diferentes estágios de " +"um sistema. Passe o mouse sobre caminhos individuais na visualização para" +" entender os estágios de um valor. Útil para funis e pipelines de " "visualização de vários estágios e vários grupos." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:104 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:117 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:100 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:318 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:392 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:143 msgid "Value" msgstr "Valor" -msgid "Value Format" -msgstr "Formato do valor" - -msgid "Value format" -msgstr "Formato do valor" - -msgid "Value is required" -msgstr "O valor é necessário" - -msgid "Value must be greater than 0" -msgstr "O valor deve ser maior que 0" - -msgid "Values dependent on" -msgstr "Valores dependentes de" - +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:83 msgid "Value Domain" msgstr "Domínio de Valor" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:343 +msgid "Value Format" +msgstr "Formato do valor" + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:249 msgid "Value bounds" msgstr "Limites de valor" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:271 +msgid "Value format" +msgstr "Formato do valor" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DefaultValue.tsx:84 +msgid "Value is required" +msgstr "O valor é necessário" + +#: superset/reports/schemas.py:190 superset/reports/schemas.py:195 +#: superset/reports/schemas.py:200 superset/reports/schemas.py:291 +#: superset/reports/schemas.py:296 superset/reports/schemas.py:302 +msgid "Value must be greater than 0" +msgstr "O valor deve ser maior que 0" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:204 msgid "Values are dependent on other filters" msgstr "Os valores dependem de outros filtros" -msgid "" -"Values selected in other filters will affect the filter options to only show " -"relevant values" -msgstr "" -"Os valores selecionados em outros filtros afetarão as opções de filtro para " -"mostrar apenas os valores relevantes" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:211 +msgid "Values dependent on" +msgstr "Valores dependentes de" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DependencyList.tsx:207 +msgid "" +"Values selected in other filters will affect the filter options to only " +"show relevant values" +msgstr "" +"Os valores selecionados em outros filtros afetarão as opções de filtro " +"para mostrar apenas os valores relevantes" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:39 msgid "Vehicle Types" msgstr "Tipos de veículos" +#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:251 msgid "Verbose Name" msgstr "Nome detalhado" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:539 +#: superset-frontend/src/features/home/RightMenu.tsx:501 msgid "Version" msgstr "Versão" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:545 msgid "Version number" msgstr "Número da versão" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:42 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:54 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:281 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/index.ts:91 msgid "Vertical" msgstr "Vertical" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 msgid "Vertical (Left)" msgstr "Vertical (esquerda)" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:38 msgid "Video game consoles" msgstr "Consoles de videogame" +#: superset-frontend/src/SqlLab/components/QueryTable/index.tsx:243 +#: superset-frontend/src/pages/AlertReportList/index.tsx:385 msgid "View" msgstr "Ver" +#: superset-frontend/src/features/home/ChartTable.tsx:200 +#: superset-frontend/src/features/home/DashboardTable.tsx:203 +#: superset-frontend/src/features/home/SavedQueries.tsx:270 msgid "View All »" msgstr "Ver Todos »" +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/DatasetPanel.tsx:227 msgid "View Dataset" msgstr "Exibir conjunto de dados" +#: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:124 msgid "View all charts" msgstr "Exibir todos os gráficos" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 msgid "View as table" msgstr "Exibir como tabela" +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:313 +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:343 msgid "View in SQL Lab" msgstr "Exibir no SQL Lab" +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:196 +#, python-format msgid "View keys & indexes (%s)" msgstr "Exibir chaves e índices (%s)" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:424 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:426 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:394 +#: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:396 msgid "View query" msgstr "Ver consulta" +#: superset-frontend/src/features/home/ActivityTable.tsx:170 msgid "Viewed" msgstr "Visto" +#: superset-frontend/src/features/home/ActivityTable.tsx:115 +#, python-format msgid "Viewed %s" msgstr "Visualizado %s" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:273 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:293 +#: superset-frontend/src/explore/components/controls/ViewportControl.jsx:111 msgid "Viewport" msgstr "Porta de exibição" +#: superset-frontend/src/pages/DatasetList/index.tsx:353 +#: superset-frontend/src/pages/DatasetList/index.tsx:570 msgid "Virtual" msgstr "Virtual" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:151 msgid "Virtual (SQL)" msgstr "Virtual (SQL)" +#: superset-frontend/src/pages/DatasetList/index.tsx:292 msgid "Virtual dataset" msgstr "Conjunto de dados virtuais" +#: superset/connectors/sqla/models.py:921 superset/connectors/sqla/utils.py:110 +#: superset/models/helpers.py:1079 msgid "Virtual dataset query cannot be empty" msgstr "A consulta do conjunto de dados virtual não pode estar vazia" +#: superset/connectors/sqla/models.py:924 superset/models/helpers.py:1082 msgid "Virtual dataset query cannot consist of multiple statements" msgstr "" "A consulta de conjunto de dados virtual não pode consistir em várias " "instruções" +#: superset/connectors/sqla/models.py:889 superset/models/helpers.py:1105 msgid "Virtual dataset query must be read-only" msgstr "A consulta ao conjunto de dados virtual deve ser somente de leitura" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:204 msgid "Visual Tweaks" msgstr "Ajustes visuais" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:122 +#: superset/views/chart/mixin.py:87 msgid "Visualization Type" msgstr "Tipo de visualização" +#: superset-frontend/src/pages/ChartList/index.tsx:378 msgid "Visualization type" msgstr "Tipo de visualização" +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:56 msgid "" -"Visualize a parallel set of metrics across multiple groups. Each group is " -"visualized using its own line of points and each metric is represented as an " -"edge in the chart." +"Visualize a parallel set of metrics across multiple groups. Each group is" +" visualized using its own line of points and each metric is represented " +"as an edge in the chart." msgstr "" -"Visualize um conjunto paralelo de métricas em vários grupos. Cada grupo é " -"visualizado usando sua própria linha de pontos e cada métrica é representada " -"como uma borda no gráfico." +"Visualize um conjunto paralelo de métricas em vários grupos. Cada grupo é" +" visualizado usando sua própria linha de pontos e cada métrica é " +"representada como uma borda no gráfico." +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:30 msgid "" "Visualize a related metric across pairs of groups. Heatmaps excel at " -"showcasing the correlation or strength between two groups. Color is used to " -"emphasize the strength of the link between each pair of groups." +"showcasing the correlation or strength between two groups. Color is used " +"to emphasize the strength of the link between each pair of groups." msgstr "" -"Visualize uma métrica relacionada em pares de grupos. Os mapas de calor são " -"excelentes para mostrar a correlação ou a força entre dois grupos. A cor é " -"usada para enfatizar a força do vínculo entre cada par de grupos." +"Visualize uma métrica relacionada em pares de grupos. Os mapas de calor " +"são excelentes para mostrar a correlação ou a força entre dois grupos. A " +"cor é usada para enfatizar a força do vínculo entre cada par de grupos." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:27 msgid "" -"Visualize geospatial data like 3D buildings, landscapes, or objects in grid " -"view." +"Visualize geospatial data like 3D buildings, landscapes, or objects in " +"grid view." msgstr "" -"Visualize dados geoespaciais como edifícios, paisagens ou objetos em 3D na " -"visualização em grade." +"Visualize dados geoespaciais como edifícios, paisagens ou objetos em 3D " +"na visualização em grade." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:31 msgid "" -"Visualize how a metric changes over time using bars. Add a group by column " -"to visualize group level metrics and how they change over time." +"Visualize how a metric changes over time using bars. Add a group by " +"column to visualize group level metrics and how they change over time." msgstr "" -"Visualize como uma métrica muda ao longo do tempo usando barras. Adicione um " -"grupo por coluna para visualizar métricas de nível de grupo e como elas " -"mudam ao longo do tempo." +"Visualize como uma métrica muda ao longo do tempo usando barras. Adicione" +" um grupo por coluna para visualizar métricas de nível de grupo e como " +"elas mudam ao longo do tempo." +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/index.ts:35 msgid "" -"Visualize multiple levels of hierarchy using a familiar tree-like structure." +"Visualize multiple levels of hierarchy using a familiar tree-like " +"structure." msgstr "" "Visualize vários níveis de hierarquia usando uma estrutura familiar " "semelhante a uma árvore." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:65 msgid "" -"Visualize two different series using the same x-axis. Note that both series " -"can be visualized with a different chart type (e.g. 1 using bars and 1 using " -"a line)." +"Visualize two different series using the same x-axis. Note that both " +"series can be visualized with a different chart type (e.g. 1 using bars " +"and 1 using a line)." msgstr "" -"Visualize duas séries diferentes usando o mesmo eixo x. Observe que ambas as " -"séries podem ser visualizadas com um tipo de gráfico diferente (por exemplo, " -"uma usando barras e outra usando uma linha)." - -msgid "" -"Visualize two different time series using the same x-axis time range. This " -"chart is being deprecated and we recommend using the Mixed Timeseries Chart " -"instead!" -msgstr "" -"Visualize duas séries temporais diferentes usando o mesmo intervalo de tempo " -"do eixo x. Esse gráfico está sendo descontinuado e, em vez disso, " -"recomendamos o uso do gráfico de série temporal mista!" - -msgid "" -"Visualize two different time series using the same x-axis. Note that each " -"time series can be visualized differently (e.g. 1 using bars and 1 using a " -"line)." -msgstr "" -"Visualize duas séries temporais diferentes usando o mesmo eixo x. Observe " -"que cada série temporal pode ser visualizada de forma diferente (por " +"Visualize duas séries diferentes usando o mesmo eixo x. Observe que ambas" +" as séries podem ser visualizadas com um tipo de gráfico diferente (por " "exemplo, uma usando barras e outra usando uma linha)." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:28 +msgid "" +"Visualize two different time series using the same x-axis time range. " +"This chart is being deprecated and we recommend using the Mixed " +"Timeseries Chart instead!" +msgstr "" +"Visualize duas séries temporais diferentes usando o mesmo intervalo de " +"tempo do eixo x. Esse gráfico está sendo descontinuado e, em vez disso, " +"recomendamos o uso do gráfico de série temporal mista!" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/index.ts:68 +msgid "" +"Visualize two different time series using the same x-axis. Note that each" +" time series can be visualized differently (e.g. 1 using bars and 1 using" +" a line)." +msgstr "" +"Visualize duas séries temporais diferentes usando o mesmo eixo x. Observe" +" que cada série temporal pode ser visualizada de forma diferente (por " +"exemplo, uma usando barras e outra usando uma linha)." + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:28 msgid "" "Visualizes 2 metrics as line plots using the same x-axis. This chart is " "useful for comparing metrics across the same time range." @@ -12206,64 +18192,75 @@ msgstr "" "Visualiza 2 métricas como gráficos de linha usando o mesmo eixo x. Esse " "gráfico é útil para comparar métricas no mesmo intervalo de tempo." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:28 msgid "" "Visualizes a metric across three dimensions of data in a single chart (X " -"axis, Y axis, and bubble size). Bubbles from the same group can be showcased " -"using bubble color." +"axis, Y axis, and bubble size). Bubbles from the same group can be " +"showcased using bubble color." msgstr "" -"Visualiza uma métrica em três dimensões de dados em um único gráfico (eixo " -"X, eixo Y e tamanho da bolha). As bolhas do mesmo grupo podem ser exibidas " -"usando a cor da bolha." +"Visualiza uma métrica em três dimensões de dados em um único gráfico " +"(eixo X, eixo Y e tamanho da bolha). As bolhas do mesmo grupo podem ser " +"exibidas usando a cor da bolha." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:27 msgid "Visualizes connected points, which form a path, on a map." msgstr "Visualiza pontos conectados, que formam um caminho, em um mapa." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:27 msgid "" -"Visualizes geographic areas from your data as polygons on a Mapbox rendered " -"map. Polygons can be colored using a metric." +"Visualizes geographic areas from your data as polygons on a Mapbox " +"rendered map. Polygons can be colored using a metric." msgstr "" "Visualiza áreas geográficas de seus dados como polígonos em um mapa " -"renderizado do Mapbox. Os polígonos podem ser coloridos usando uma métrica." +"renderizado do Mapbox. Os polígonos podem ser coloridos usando uma " +"métrica." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:28 msgid "" -"Visualizes how a metric has changed over a time using a color scale and a " -"calendar view. Gray values are used to indicate missing values and the " +"Visualizes how a metric has changed over a time using a color scale and a" +" calendar view. Gray values are used to indicate missing values and the " "linear color scheme is used to encode the magnitude of each day's value." msgstr "" "Visualiza como uma métrica mudou ao longo do tempo usando uma escala de " -"cores e uma visualização de calendário. Os valores em cinza são usados para " -"indicar valores ausentes e o esquema de cores linear é usado para codificar " -"a magnitude do valor de cada dia." +"cores e uma visualização de calendário. Os valores em cinza são usados " +"para indicar valores ausentes e o esquema de cores linear é usado para " +"codificar a magnitude do valor de cada dia." +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:29 msgid "" "Visualizes how a single metric varies across a country's principal " "subdivisions (states, provinces, etc) on a choropleth map. Each " "subdivision's value is elevated when you hover over the corresponding " "geographic boundary." msgstr "" -"Visualiza como uma única métrica varia entre as principais subdivisões de um " -"país (estados, províncias etc.) em um mapa coroplético. O valor de cada " -"subdivisão é elevado quando você passa o mouse sobre o limite geográfico " -"correspondente." +"Visualiza como uma única métrica varia entre as principais subdivisões de" +" um país (estados, províncias etc.) em um mapa coroplético. O valor de " +"cada subdivisão é elevado quando você passa o mouse sobre o limite " +"geográfico correspondente." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:28 msgid "" -"Visualizes many different time-series objects in a single chart. This chart " -"is being deprecated and we recommend using the Time-series Chart instead." +"Visualizes many different time-series objects in a single chart. This " +"chart is being deprecated and we recommend using the Time-series Chart " +"instead." msgstr "" -"Visualiza muitos objetos de séries temporais diferentes em um único gráfico. " -"Esse gráfico está sendo descontinuado e, em vez dele, recomendamos o uso do " -"gráfico de série temporal." +"Visualiza muitos objetos de séries temporais diferentes em um único " +"gráfico. Esse gráfico está sendo descontinuado e, em vez dele, " +"recomendamos o uso do gráfico de série temporal." +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:29 msgid "" -"Visualizes the flow of different group's values through different stages of " -"a system. New stages in the pipeline are visualized as nodes or layers. The " -"thickness of the bars or edges represent the metric being visualized." +"Visualizes the flow of different group's values through different stages " +"of a system. New stages in the pipeline are visualized as nodes or " +"layers. The thickness of the bars or edges represent the metric being " +"visualized." msgstr "" "Visualiza o fluxo de valores de diferentes grupos por meio de diferentes " -"estágios de um sistema. Novos estágios no pipeline são visualizados como nós " -"ou camadas. A espessura das barras ou bordas representa a métrica que está " -"sendo visualizada." +"estágios de um sistema. Novos estágios no pipeline são visualizados como " +"nós ou camadas. A espessura das barras ou bordas representa a métrica que" +" está sendo visualizada." +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:35 msgid "" "Visualizes the words in a column that appear the most often. Bigger font " "corresponds to higher frequency." @@ -12271,594 +18268,865 @@ msgstr "" "Visualiza as palavras em uma coluna que aparecem com mais frequência. A " "fonte maior corresponde à maior frequência." +#: superset/viz.py:140 msgid "Viz is missing a datasource" msgstr "O Viz não tem uma fonte de dados" +#: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:265 msgid "Viz type" msgstr "Tipo de visualização" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:84 msgid "WED" msgstr "QUA" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1003 msgid "Want to add a new database?" msgstr "Deseja adicionar um novo banco de dados?" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1246 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:214 +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 msgid "Warning" msgstr "Advertência" +#: superset/connectors/sqla/views.py:257 msgid "Warning Message" msgstr "Mensagem de aviso" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 msgid "Warning!" msgstr "Atenção!" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:47 +msgid "" +"Warning! Changing the dataset may break the chart if the metadata does " +"not exist." +msgstr "" +"Atenção! Alterar o conjunto de dados pode quebrar o gráfico se os " +"metadados não existirem." + +#: superset/databases/commands/exceptions.py:157 +#: superset/databases/commands/exceptions.py:167 msgid "Was unable to check your query" msgstr "Não foi possível verificar sua consulta" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1523 msgid "" -"We are unable to connect to your database. Click \"See more\" for database-" -"provided information that may help troubleshoot the issue." +"We are unable to connect to your database. Click \"See more\" for " +"database-provided information that may help troubleshoot the issue." msgstr "" -"Não conseguimos nos conectar ao seu banco de dados. Clique em \"Ver mais\" " -"para obter informações fornecidas pelo banco de dados que podem ajudar a " -"solucionar o problema." +"Não conseguimos nos conectar ao seu banco de dados. Clique em \"Ver " +"mais\" para obter informações fornecidas pelo banco de dados que podem " +"ajudar a solucionar o problema." +#: superset/db_engine_specs/bigquery.py:198 +#, python-format msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." msgstr "We can't seem to resolve column \"%(column)s\" at line %(location)s." +#: superset/db_engine_specs/duckdb.py:56 superset/db_engine_specs/sqlite.py:65 +#, python-format msgid "We can't seem to resolve the column \"%(column_name)s\"" msgstr "Parece que não conseguimos resolver a coluna \"%(column_name)s\"" +#: superset/db_engine_specs/postgres.py:152 +#: superset/db_engine_specs/presto.py:657 +#, python-format msgid "" -"We can't seem to resolve the column \"%(column_name)s\" at line %(location)s." -msgstr "" -"Parece que não conseguimos resolver a coluna \"%(column_name)s\" na linha " +"We can't seem to resolve the column \"%(column_name)s\" at line " "%(location)s." - -msgid "" -"Warning! Changing the dataset may break the chart if the metadata does not " -"exist." msgstr "" -"Atenção! Alterar o conjunto de dados pode quebrar o gráfico se os metadados " -"não existirem." - -msgid "" -"We are unable to connect to your database. Click \"See more\"for database-" -"provided information that may help troubleshoot the issue." -msgstr "" -"Não conseguimos nos conectar ao seu banco de dados. Clique em \"See more \" " -"para obter informações fornecidas pelo banco de dados que podem ajudar a " -"solucionar o problema." - -msgid "" -"We can't seem to resolve the column \"%(column_name)s\"at line %(location)s." -msgstr "" -"Parece que não conseguimos resolver a coluna \"%(column_name)s\"na linha " -"%(location)s." +"Parece que não conseguimos resolver a coluna \"%(column_name)s\" na linha" +" %(location)s." +#: superset-frontend/src/visualizations/dashboardComponents/ExampleComponent/ExampleComponent.tsx:29 +#, python-format msgid "We have the following keys: %s" msgstr "Temos as seguintes chaves: %s" +#: superset-frontend/src/reports/actions/reports.js:136 msgid "We were unable to active or deactivate this report." msgstr "Não foi possível ativar ou desativar esse relatório." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:681 msgid "" -"We were unable to carry over any controls when switching to this new dataset." +"We were unable to carry over any controls when switching to this new " +"dataset." msgstr "" -"Não foi possível transferir nenhum controle ao mudar para esse novo conjunto " -"de dados." +"Não foi possível transferir nenhum controle ao mudar para esse novo " +"conjunto de dados." +#: superset/db_engine_specs/redshift.py:94 +#, python-format msgid "" -"We were unable to connect to your database named \"%(database)s\". Please " -"verify your database name and try again." +"We were unable to connect to your database named \"%(database)s\". Please" +" verify your database name and try again." msgstr "" -"Não foi possível conectar-se ao seu banco de dados chamado \"%(database)s\". " -"Verifique o nome do banco de dados e tente novamente." +"Não foi possível conectar-se ao seu banco de dados chamado " +"\"%(database)s\". Verifique o nome do banco de dados e tente novamente." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:67 msgid "Web" msgstr "Rede" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:59 msgid "Wednesday" msgstr "Quarta-feira" +#: superset/db_engine_specs/base.py:108 msgid "Week" msgstr "Semana" -msgid "Weekly Report" -msgstr "Relatório semanal" - -msgid "Weeks %s" -msgstr "Semanas %s" - -msgid "Weight" -msgstr "Peso" - -msgid "" -"We’re having trouble loading these results. Queries are set to timeout after " -"%s second." -msgstr "" -"Estamos tendo problemas para carregar esses resultados. As consultas estão " -"definidas para atingir o tempo limite após %s segundos." - -msgid "" -"We’re having trouble loading this visualization. Queries are set to timeout " -"after %s second." -msgstr "" -"Estamos tendo problemas para carregar essa visualização. As consultas estão " -"definidas para atingir o tempo limite após %s segundos." - +#: superset/db_engine_specs/base.py:114 msgid "Week ending Saturday" msgstr "Semana terminando no Sábado" -msgid "What should happen if the table already exists" -msgstr "O que deve acontecer se a tabela já existir" - +#: superset/db_engine_specs/base.py:113 msgid "Week starting Monday" msgstr "Semana começando na segunda-feira" +#: superset/db_engine_specs/base.py:112 msgid "Week starting Sunday" msgstr "Semana começando no domingo" +#: superset/db_engine_specs/base.py:115 msgid "Week_ending Sunday" msgstr "Domingo de fim de semana" +#: superset-frontend/src/components/ReportModal/index.tsx:122 +msgid "Weekly Report" +msgstr "Relatório semanal" + +#: superset-frontend/src/components/ReportModal/index.tsx:121 +#, python-format msgid "Weekly Report for %s" msgstr "Relatório semanal para %s" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:104 msgid "Weekly seasonality" msgstr "Sazonalidade semanal" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:66 +#, python-format +msgid "Weeks %s" +msgstr "Semanas %s" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:49 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:77 +msgid "Weight" +msgstr "Peso" + +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:52 +#, fuzzy, python-format +msgid "" +"We’re having trouble loading these results. Queries are set to timeout " +"after %s second." +msgid_plural "" +"We’re having trouble loading these results. Queries are set to timeout " +"after %s seconds." +msgstr[0] "" +"Estamos tendo problemas para carregar esses resultados. As consultas " +"estão definidas para atingir o tempo limite após %s segundos." +msgstr[1] "" + +#: superset-frontend/src/components/ErrorMessage/TimeoutErrorMessage.tsx:46 +#, fuzzy, python-format +msgid "" +"We’re having trouble loading this visualization. Queries are set to " +"timeout after %s second." +msgid_plural "" +"We’re having trouble loading this visualization. Queries are set to " +"timeout after %s seconds." +msgstr[0] "" +"Estamos tendo problemas para carregar essa visualização. As consultas " +"estão definidas para atingir o tempo limite após %s segundos." +msgstr[1] "" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:60 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:103 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:113 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:120 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:103 msgid "What should be shown on the label?" msgstr "O que deve constar no rótulo?" -msgid "" -"When `Calculation type` is set to \"Percentage change\", the Y Axis Format " -"is forced to `.1%`" -msgstr "" -"Quando `Calculation type` é definido como \"Percentage change\", o formato " -"do eixo Y é forçado a `.1%`" +#: superset/views/database/forms.py:175 +msgid "What should happen if the table already exists" +msgstr "O que deve acontecer se a tabela já existir" +#: superset-frontend/src/explore/controls.jsx:434 +msgid "" +"When `Calculation type` is set to \"Percentage change\", the Y Axis " +"Format is forced to `.1%`" +msgstr "" +"Quando `Calculation type` é definido como \"Percentage change\", o " +"formato do eixo Y é forçado a `.1%`" + +#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:182 msgid "When a secondary metric is provided, a linear color scale is used." msgstr "" "Quando uma métrica secundária é fornecida, uma escala de cores linear é " "usada." +#: superset/views/database/mixins.py:119 msgid "" "When allowing CREATE TABLE AS option in SQL Lab, this option forces the " "table to be created in this schema" msgstr "" -"Ao permitir a opção CREATE TABLE AS no SQL Lab, essa opção força a criação " -"da tabela nesse esquema" +"Ao permitir a opção CREATE TABLE AS no SQL Lab, essa opção força a " +"criação da tabela nesse esquema" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:100 msgid "When checked, the map will zoom to your data after each query" -msgstr "" -"Quando marcada, o mapa será ampliado para seus dados após cada consulta" +msgstr "Quando marcada, o mapa será ampliado para seus dados após cada consulta" +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 msgid "When enabled, users are able to visualize SQL Lab results in Explore." msgstr "" "Quando ativado, os usuários podem visualizar os resultados do SQL Lab no " "Explore." -msgid "" -"When only a primary metric is provided, a categorical color scale is used." +#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:172 +msgid "When only a primary metric is provided, a categorical color scale is used." msgstr "" -"Quando apenas uma métrica primária é fornecida, é usada uma escala de cores " -"categórica." +"Quando apenas uma métrica primária é fornecida, é usada uma escala de " +"cores categórica." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1089 msgid "" -"When specifying SQL, the datasource acts as a view. Superset will use this " -"statement as a subquery while grouping and filtering on the generated parent " -"queries." +"When specifying SQL, the datasource acts as a view. Superset will use " +"this statement as a subquery while grouping and filtering on the " +"generated parent queries." msgstr "" -"Ao especificar o SQL, a fonte de dados atua como uma visualização. O Superset " -"usará essa instrução como uma subconsulta ao agrupar e filtrar as consultas " -"pai geradas." +"Ao especificar o SQL, a fonte de dados atua como uma visualização. O " +"Superset usará essa instrução como uma subconsulta ao agrupar e filtrar " +"as consultas pai geradas." +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:888 msgid "" -"When using \"Autocomplete filters\", this can be used to improve performance " -"of the query fetching the values. Use this option to apply a predicate " -"(WHERE clause) to the query selecting the distinct values from the table. " -"Typically the intent would be to limit the scan by applying a relative time " -"filter on a partitioned or indexed time-related field." +"When using \"Autocomplete filters\", this can be used to improve " +"performance of the query fetching the values. Use this option to apply a " +"predicate (WHERE clause) to the query selecting the distinct values from " +"the table. Typically the intent would be to limit the scan by applying a " +"relative time filter on a partitioned or indexed time-related field." msgstr "" "Ao usar \"Autocomplete filters\", isso pode ser usado para melhorar o " -"desempenho da consulta que busca os valores. Use essa opção para aplicar um " -"predicado (cláusula WHERE) à consulta que seleciona os valores distintos da " -"tabela. Normalmente, a intenção seria limitar a varredura aplicando um " -"filtro de tempo relativo em um campo particionado ou indexado relacionado ao " -"tempo." +"desempenho da consulta que busca os valores. Use essa opção para aplicar " +"um predicado (cláusula WHERE) à consulta que seleciona os valores " +"distintos da tabela. Normalmente, a intenção seria limitar a varredura " +"aplicando um filtro de tempo relativo em um campo particionado ou " +"indexado relacionado ao tempo." +#: superset/viz.py:891 msgid "When using 'Group By' you are limited to use a single metric" msgstr "Ao usar 'Agrupar Por' você é limitado usar uma única métrica" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:74 msgid "When using other than adaptive formatting, labels may overlap" msgstr "" -"Ao usar uma formatação diferente da adaptativa, os rótulos podem se sobrepor" +"Ao usar uma formatação diferente da adaptativa, os rótulos podem se " +"sobrepor" +#: superset-frontend/src/filters/components/Select/controlPanel.ts:110 msgid "When using this option, default value can’t be set" msgstr "Ao usar essa opção, o valor padrão não pode ser definido" -msgid "" -"Whether the progress bar overlaps when there are multiple groups of data" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:254 +msgid "Whether the progress bar overlaps when there are multiple groups of data" msgstr "Se a barra de progresso se sobrepõe quando há vários grupos de dados" +#: superset/connectors/sqla/views.py:362 msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" msgstr "Se a tabela foi gerada pelo fluxo 'Visualizar' no SQL Lab" +#: superset/connectors/sqla/views.py:110 msgid "" -"Whether this column is exposed in the `Filters` section of the explore view." +"Whether this column is exposed in the `Filters` section of the explore " +"view." msgstr "" -"Se essa coluna está exposta na seção `Filtros` da visualização de exploração." +"Se essa coluna está exposta na seção `Filtros` da visualização de " +"exploração." +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:445 msgid "" -"Whether to align background charts with both positive and negative values at " -"0" -msgstr "" -"Se deve alinhar gráficos de fundo com valores positivos e negativos em 0" +"Whether to align background charts with both positive and negative values" +" at 0" +msgstr "Se deve alinhar gráficos de fundo com valores positivos e negativos em 0" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:117 msgid "Whether to align positive and negative values in cell bar chart at 0" msgstr "" -"Se os valores positivos e negativos no gráfico de barras de células devem " -"ser alinhados em 0" +"Se os valores positivos e negativos no gráfico de barras de células devem" +" ser alinhados em 0" +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:806 msgid "Whether to always show the annotation label" msgstr "Se deve sempre mostrar o rótulo da anotação" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:188 msgid "Whether to animate the progress and the value or just display them" msgstr "Se deseja animar o progresso e o valor ou apenas exibi-los" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:331 msgid "Whether to apply a normal distribution based on rank on the color scale" msgstr "" -"Se deve ser aplicada uma distribuição normal com base na classificação na " -"escala de cores" +"Se deve ser aplicada uma distribuição normal com base na classificação na" +" escala de cores" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:166 msgid "Whether to apply filter when items are clicked" msgstr "Se o filtro deve ser aplicado quando os itens são clicados" -msgid "Word Rotation" -msgstr "Rotação de palavras" - -msgid "Width of the confidence interval. Should be between 0 and 1" -msgstr "Largura do intervalo de confiança. Deve estar entre 0 e 1" - -msgid "White" -msgstr "Branco" - -msgid "Whether to sort descending or ascending if a series limit is present" -msgstr "" -"Se a classificação será decrescente ou crescente se houver um limite de série" - -msgid "Whether to truncate metrics" -msgstr "Se as métricas devem ser truncadas" - -msgid "Whether to sort ascending or descending on the base Axis." -msgstr "Se a classificação deve ser ascendente ou descendente no eixo base." - -msgid "Whether to make the grid 3D" -msgstr "Se a grade deve ser 3D" - -msgid "Whether to include the percentage in the tooltip" -msgstr "Se a porcentagem deve ser incluída na dica de ferramenta" - -msgid "Whether to include a client-side search box" -msgstr "Se deve incluir uma caixa de pesquisa no lado do cliente" - -msgid "Whether to fill the objects" -msgstr "Se os objetos devem ser preenchidos" - -msgid "Whether to display the stroke" -msgstr "Se o traço deve ser exibido" - -msgid "Whether to display the time range interactive selector" -msgstr "Se deve ser exibido o seletor interativo de intervalo de tempo" - +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:127 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:457 msgid "Whether to colorize numeric values by if they are positive or negative" msgstr "" -"Se os valores numéricos devem ser coloridos de acordo com o fato de serem " -"positivos ou negativos" +"Se os valores numéricos devem ser coloridos de acordo com o fato de serem" +" positivos ou negativos" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:109 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:431 msgid "Whether to display a bar chart background in table columns" -msgstr "" -"Se deve ser exibido um fundo de gráfico de barras nas colunas da tabela" +msgstr "Se deve ser exibido um fundo de gráfico de barras nas colunas da tabela" +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 msgid "Whether to display a legend for the chart" msgstr "Se deve ser exibida uma legenda para o gráfico" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:85 msgid "Whether to display bubbles on top of countries" msgstr "Se deseja exibir bolhas na parte superior dos países" +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:193 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:103 msgid "Whether to display the aggregate count" msgstr "Se deve ser exibida a contagem agregada" +#: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:50 msgid "Whether to display the interactive data table" msgstr "Se deseja exibir a tabela de dados interativa" +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:129 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:97 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:76 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:74 msgid "Whether to display the labels." msgstr "Se os rótulos devem ser exibidos." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:97 msgid "" -"Whether to display the labels. Note that the label only displays when the 5% " -"threshold." +"Whether to display the labels. Note that the label only displays when the" +" 5% threshold." msgstr "" "Se deseja exibir os rótulos. Observe que o rótulo só é exibido quando o " "limite é de 5%." +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:159 msgid "Whether to display the legend (toggles)" msgstr "Se a legenda deve ser exibida (alterna)" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 msgid "Whether to display the metric name as a title" msgstr "Se o nome da métrica deve ser exibido como um título" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:293 msgid "Whether to display the min and max values of the X-axis" msgstr "Se devem ser exibidos os valores mínimo e máximo do eixo X" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:101 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:112 msgid "Whether to display the min and max values of the Y-axis" msgstr "Se devem ser exibidos os valores mínimo e máximo do eixo Y" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:187 msgid "Whether to display the numerical values within the cells" msgstr "Se deseja exibir os valores numéricos dentro das células" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:261 +msgid "Whether to display the stroke" +msgstr "Se o traço deve ser exibido" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:148 +msgid "Whether to display the time range interactive selector" +msgstr "Se deve ser exibido o seletor interativo de intervalo de tempo" + +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:80 msgid "Whether to display the timestamp" msgstr "Se deve ser exibido o registro de data e hora" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:92 msgid "Whether to display the trend line" msgstr "Se a linha de tendência deve ser exibida" +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:280 msgid "Whether to enable changing graph position and scaling." msgstr "Se deve permitir a alteração da posição e da escala do gráfico." +#: superset-frontend/plugins/plugin-chart-echarts/src/Graph/controlPanel.tsx:145 msgid "Whether to enable node dragging in force layout mode." msgstr "Se deve permitir o arrastamento de nós no modo de layout forçado." +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:250 +msgid "Whether to fill the objects" +msgstr "Se os objetos devem ser preenchidos" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:89 msgid "Whether to ignore locations that are null" msgstr "Se devem ser ignorados os locais que são nulos" +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:421 +msgid "Whether to include a client-side search box" +msgstr "Se deve incluir uma caixa de pesquisa no lado do cliente" + +#: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:51 msgid "Whether to include a time filter" msgstr "Se deve incluir um filtro de tempo" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:303 +msgid "Whether to include the percentage in the tooltip" +msgstr "Se a porcentagem deve ser incluída na dica de ferramenta" + +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/includeTime.ts:28 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:337 msgid "Whether to include the time granularity as defined in the time section" msgstr "" -"Se deve incluir a granularidade de tempo conforme definido na seção de tempo" +"Se deve incluir a granularidade de tempo conforme definido na seção de " +"tempo" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:273 +msgid "Whether to make the grid 3D" +msgstr "Se a grade deve ser 3D" + +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:141 msgid "Whether to make the histogram cumulative" msgstr "Se o histograma deve ser cumulativo" +#: superset/connectors/sqla/views.py:105 msgid "" -"Whether to make this column available as a [Time Granularity] option, column " -"has to be DATETIME or DATETIME-like" +"Whether to make this column available as a [Time Granularity] option, " +"column has to be DATETIME or DATETIME-like" msgstr "" "Para tornar essa coluna disponível como uma opção [Time Granularity], a " "coluna deve ser DATETIME ou semelhante a DATETIME" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:129 msgid "Whether to normalize the histogram" msgstr "Se deve normalizar o histograma" +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:881 msgid "Whether to populate autocomplete filters options" -msgstr "" -"Se as opções de filtros de preenchimento automático devem ser preenchidas" +msgstr "Se as opções de filtros de preenchimento automático devem ser preenchidas" +#: superset/connectors/sqla/views.py:357 msgid "" "Whether to populate the filter's dropdown in the explore view's filter " -"section with a list of distinct values fetched from the backend on the fly" +"section with a list of distinct values fetched from the backend on the " +"fly" msgstr "" -"Se deve preencher o menu suspenso do filtro na seção de filtro da exibição " -"de exploração com uma lista de valores distintos obtidos do backend em tempo " -"real" +"Se deve preencher o menu suspenso do filtro na seção de filtro da " +"exibição de exploração com uma lista de valores distintos obtidos do " +"backend em tempo real" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:129 msgid "" -"Whether to show extra controls or not. Extra controls include things like " -"making mulitBar charts stacked or side by side." +"Whether to show extra controls or not. Extra controls include things like" +" making mulitBar charts stacked or side by side." msgstr "" -"Se deve ou não mostrar controles extras. Os controles extras incluem coisas " -"como a criação de gráficos mulitBar empilhados ou lado a lado." +"Se deve ou não mostrar controles extras. Os controles extras incluem " +"coisas como a criação de gráficos mulitBar empilhados ou lado a lado." +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:203 msgid "Whether to show minor ticks on the axis" msgstr "Se devem ser mostrados ticks menores no eixo" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:176 msgid "Whether to show the pointer" msgstr "Se o ponteiro deve ser exibido" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:242 msgid "Whether to show the progress of gauge chart" msgstr "Se deve mostrar o progresso do gráfico do medidor" +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:215 msgid "Whether to show the split lines on the axis" msgstr "Se devem ser mostradas as linhas divididas no eixo" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:143 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:174 +msgid "Whether to sort ascending or descending on the base Axis." +msgstr "Se a classificação deve ser ascendente ou descendente no eixo base." + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:258 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:100 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/orderBy.tsx:48 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:160 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:354 msgid "Whether to sort descending or ascending" msgstr "Se a classificação deve ser descendente ou ascendente" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:75 +msgid "Whether to sort descending or ascending if a series limit is present" +msgstr "" +"Se a classificação será decrescente ou crescente se houver um limite de " +"série" + +#: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:44 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:96 +#: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:60 +#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:45 +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:65 +#: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:64 +#: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:63 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/controlPanel.tsx:51 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:43 msgid "Whether to sort results by the selected metric in descending order." msgstr "" -"Se os resultados devem ser classificados pela métrica selecionada em ordem " -"decrescente." - -msgid "Whether to sort tooltip by the selected metric in descending order." -msgstr "" -"Se a dica de ferramenta deve ser classificada pela métrica selecionada em " +"Se os resultados devem ser classificados pela métrica selecionada em " "ordem decrescente." +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 +msgid "Whether to sort tooltip by the selected metric in descending order." +msgstr "" +"Se a dica de ferramenta deve ser classificada pela métrica selecionada em" +" ordem decrescente." + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:352 +msgid "Whether to truncate metrics" +msgstr "Se as métricas devem ser truncadas" + +#: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:44 msgid "Which country to plot the map for?" msgstr "Para qual país traçar o mapa?" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:198 msgid "Which relatives to highlight on hover" msgstr "Qual parentes para destaque sobre passe o mouse" +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:89 +#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:41 msgid "Whisker/outlier options" msgstr "Opções de Whisker/outlier" +#: superset-frontend/src/dashboard/util/backgroundStyleOptions.ts:30 +msgid "White" +msgstr "Branco" + +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:228 +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:234 msgid "Width" msgstr "Largura" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:73 +msgid "Width of the confidence interval. Should be between 0 and 1" +msgstr "Largura do intervalo de confiança. Deve estar entre 0 e 1" + +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:229 msgid "Width of the sparkline" msgstr "Largura do brilho" +#: superset/utils/pandas_postprocessing/rolling.py:69 msgid "Window must be > 0" msgstr "A janela deve ser > 0" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:35 msgid "With a subheader" msgstr "Com um subtítulo" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/legacyPlugin/index.ts:29 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:39 msgid "Word Cloud" msgstr "Nuvem de palavras" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:84 +msgid "Word Rotation" +msgstr "Rotação de palavras" + +#: superset-frontend/src/pages/AlertReportList/index.tsx:63 msgid "Working" msgstr "Trabalhando" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:399 msgid "Working timeout" msgstr "Tempo limite de trabalho" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 +#: superset/viz.py:2006 msgid "World Map" msgstr "Mapa do Mundo" +#: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:186 msgid "Write a description for your query" msgstr "Escreva uma descrição para sua consulta" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/index.ts:40 msgid "Write a handlebars template to render the data" msgstr "Escreva um modelo de guidão para renderizar os dados" -msgid "Write dataframe index as a column." -msgstr "Escreve o índice do dataframe como uma coluna." - +#: superset/views/database/forms.py:229 msgid "Write dataframe index as a column" msgstr "Escreve o índice do dataframe como uma coluna" +#: superset/views/database/forms.py:390 superset/views/database/forms.py:481 +msgid "Write dataframe index as a column." +msgstr "Escreve o índice do dataframe como uma coluna." + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:56 msgid "X AXIS TITLE BOTTOM MARGIN" msgstr "MARGEM INFERIOR DO TÍTULO DO EIXO X" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:213 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:74 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:69 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/controlPanel.ts:98 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:73 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:314 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:182 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:295 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:321 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:170 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:112 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:164 +#: superset-frontend/src/explore/controls.jsx:401 msgid "X Axis" msgstr "Eixo X" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:235 msgid "X Axis Format" msgstr "Formato do eixo X" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:93 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:182 msgid "X Axis Label" msgstr "Rótulo do Eixo X" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:42 msgid "X Axis Title" msgstr "Título do Eixo X" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:105 msgid "X Log Scale" msgstr "Escala X Log" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:216 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:116 +#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:58 msgid "X Tick Layout" msgstr "X Tick Layout" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:290 msgid "X bounds" msgstr "Limites X" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:141 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:172 msgid "X-Axis Sort Ascending" msgstr "Classificação do eixo X em ordem crescente" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:156 msgid "X-Axis Sort By" msgstr "Classificação do Eixo X Por" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:35 msgid "X-axis" msgstr "Eixo X" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:115 msgid "XScale Interval" msgstr "Intervalo XScale" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:109 msgid "Y 2 bounds" msgstr "Y 2 limites" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:84 msgid "Y AXIS TITLE MARGIN" msgstr "MARGEM DO TÍTULO DO EIXO Y" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:99 msgid "Y AXIS TITLE POSITION" msgstr "POSIÇÃO DO TÍTULO DO EIXO Y" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:64 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:220 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:83 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:79 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/controlPanel.ts:112 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/controlPanel.ts:116 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/controlPanel.ts:58 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/controlPanel.ts:84 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:110 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:243 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:338 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:215 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:297 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Bar/controlPanel.tsx:324 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:203 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:147 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:146 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:197 +#: superset-frontend/src/explore/controls.jsx:408 msgid "Y Axis" msgstr "Eixo Y" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/controlPanel.ts:40 msgid "Y Axis 1" msgstr "Eixo Y 1" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/controlPanel.ts:50 msgid "Y Axis 2" msgstr "Eixo Y 2" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:274 msgid "Y Axis 2 Bounds" msgstr "Eixo Y 2 Limites" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:258 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:260 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:248 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:192 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/SmoothLine/controlPanel.tsx:192 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Step/controlPanel.tsx:242 msgid "Y Axis Bounds" msgstr "Limites do Eixo Y" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:301 +#: superset-frontend/src/explore/controls.jsx:422 msgid "Y Axis Format" msgstr "Formato do eixo Y" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:104 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:353 msgid "Y Axis Label" msgstr "Rótulo do Eixo Y" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:88 msgid "Y Axis Left" msgstr "Eixo Y Esquerdo" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:123 msgid "Y Axis Right" msgstr "Eixo Y Direito" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:70 msgid "Y Axis Title" msgstr "Título do Eixo Y" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:247 msgid "Y Log Scale" msgstr "Escala logarítmica Y" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:98 msgid "Y bounds" msgstr "Limites Y" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:140 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:171 msgid "Y-Axis Sort Ascending" msgstr "Classificação do eixo Y em ordem crescente" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 msgid "Y-Axis Sort By" msgstr "Classificação do Eixo Y Por" -msgid "Y-axis bounds" -msgstr "Eixo Y limites" - -msgid "YScale Interval" -msgstr "Intervalo da escala Y" - -msgid "Year" -msgstr "Ano" - +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/mixins.tsx:34 msgid "Y-axis" msgstr "Eixo Y" +#: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:296 +msgid "Y-axis bounds" +msgstr "Eixo Y limites" + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:131 +msgid "YScale Interval" +msgstr "Intervalo da escala Y" + +#: superset/db_engine_specs/base.py:111 +msgid "Year" +msgstr "Ano" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:59 msgid "Year (freq=AS)" msgstr "Ano (freq=AS)" -msgid "Years %s" -msgstr "Anos %s" - +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:85 msgid "Yearly seasonality" msgstr "Sazonalidade anual" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:69 +#, python-format +msgid "Years %s" +msgstr "Anos %s" + +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:107 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:126 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:144 +#: superset-frontend/src/pages/ChartList/index.tsx:598 +#: superset-frontend/src/pages/ChartList/index.tsx:707 +#: superset-frontend/src/pages/DashboardList/index.tsx:506 +#: superset-frontend/src/pages/DashboardList/index.tsx:588 +#: superset-frontend/src/pages/DatabaseList/index.tsx:478 +#: superset-frontend/src/pages/DatabaseList/index.tsx:498 +#: superset-frontend/src/pages/DatasetList/index.tsx:583 msgid "Yes" msgstr "Sim" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/CancelConfirmationAlert.tsx:64 msgid "Yes, cancel" msgstr "Sim, cancelar" +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:154 +#: superset-frontend/src/dashboard/components/OverwriteConfirm/OverwriteConfirmModal.tsx:199 msgid "Yes, overwrite changes" msgstr "Sim, sobrescrever mudanças" -msgid "You can" -msgstr "É possível" - +#: superset-frontend/src/pages/ChartList/index.tsx:100 msgid "" -"You are importing one or more charts that already exist. Overwriting might " -"cause you to lose some of your work. Are you sure you want to overwrite?" +"You are importing one or more charts that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" -"Você está importando um ou mais gráficos que já existem. A substituição pode " -"fazer com que você perca parte do seu trabalho. Tem certeza de que deseja " -"substituir?" +"Você está importando um ou mais gráficos que já existem. A substituição " +"pode fazer com que você perca parte do seu trabalho. Tem certeza de que " +"deseja substituir?" +#: superset-frontend/src/pages/DashboardList/index.tsx:69 msgid "" "You are importing one or more dashboards that already exist. Overwriting " "might cause you to lose some of your work. Are you sure you want to " "overwrite?" msgstr "" -"Você está importando um ou mais painéis que já existem. A substituição pode " -"fazer com que você perca parte do seu trabalho. Tem certeza de que deseja " -"substituir?" +"Você está importando um ou mais painéis que já existem. A substituição " +"pode fazer com que você perca parte do seu trabalho. Tem certeza de que " +"deseja substituir?" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1449 msgid "" "You are importing one or more databases that already exist. Overwriting " "might cause you to lose some of your work. Are you sure you want to " @@ -12868,56 +19136,83 @@ msgstr "" "substituição pode fazer com que você perca parte do seu trabalho. Tem " "certeza de que deseja substituir?" +#: superset-frontend/src/features/datasets/constants.ts:30 msgid "" -"You are importing one or more datasets that already exist. Overwriting might " -"cause you to lose some of your work. Are you sure you want to overwrite?" +"You are importing one or more datasets that already exist. Overwriting " +"might cause you to lose some of your work. Are you sure you want to " +"overwrite?" msgstr "" "Você está importando um ou mais conjuntos de dados que já existem. A " "substituição pode fazer com que você perca parte do seu trabalho. Tem " "certeza de que deseja substituir?" +#: superset-frontend/src/pages/SavedQueryList/index.tsx:63 +#, fuzzy +msgid "" +"You are importing one or more saved queries that already exist. " +"Overwriting might cause you to lose some of your work. Are you sure you " +"want to overwrite?" +msgstr "" +"Você está importando um ou mais gráficos que já existem. A substituição " +"pode fazer com que você perca parte do seu trabalho. Tem certeza de que " +"deseja substituir?" + +#: superset/views/core.py:2213 msgid "" "You are not authorized to see this query. If you think this is an error, " "please reach out to your administrator." msgstr "" -"Você não está autorizado a ver esta consulta. Se achar que isso é um erro, " -"entre em contato com seu administrador." +"Você não está autorizado a ver esta consulta. Se achar que isso é um " +"erro, entre em contato com seu administrador." +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:192 +msgid "You can" +msgstr "É possível" + +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:204 msgid "You can add the components in the" msgstr "Você pode adicionar o componentes no" +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:240 msgid "You can add the components in the edit mode." msgstr "Você pode adicionar os componentes no modo de edição." +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:157 msgid "You can also just click on the chart to apply cross-filter." msgstr "" "Você também pode simplesmente clicar no gráfico para aplicar o filtro " "cruzado." +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:386 msgid "" "You can choose to display all charts that you have access to or only the " "ones you own.\n" -" Your filter selection will be saved and remain active until " -"you choose to change it." +" Your filter selection will be saved and remain active until" +" you choose to change it." msgstr "" -"Você pode optar por exibir todos os gráficos aos quais tem acesso ou apenas " -"os que possui.\n" -" Sua seleção de filtro será salva e permanecerá ativa até que você decida " -"alterá-la." +"Você pode optar por exibir todos os gráficos aos quais tem acesso ou " +"apenas os que possui.\n" +" Sua seleção de filtro será salva e permanecerá ativa até que você decida" +" alterá-la." +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:195 +#: superset-frontend/src/dashboard/components/DashboardGrid.jsx:218 msgid "" -"You can create a new chart or use existing ones from the panel on the right" -msgstr "" -"Você pode criar um novo gráfico ou usar os existentes no painel à direita" +"You can create a new chart or use existing ones from the panel on the " +"right" +msgstr "Você pode criar um novo gráfico ou usar os existentes no painel à direita" +#: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:183 msgid "You can preview the list of dashboards in the chart settings dropdown." msgstr "" -"Você pode visualizar a lista de painéis no menu suspenso de configurações do " -"gráfico." +"Você pode visualizar a lista de painéis no menu suspenso de configurações" +" do gráfico." +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:178 msgid "You can't apply cross-filter on this data point." msgstr "Não é possível aplicar filtro cruzado a esse ponto de dados." +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:501 msgid "" "You cannot delete the last temporal filter as it's used for time range " "filters in dashboards." @@ -12925,960 +19220,1448 @@ msgstr "" "Você não pode excluir o último filtro temporal, pois ele é usado para " "filtros de intervalo de tempo em painéis." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Vis.js:367 msgid "You cannot use 45° tick layout along with the time range filter" msgstr "" -"Não é possível usar o layout de ticks de 45° junto com o filtro de intervalo " -"de tempo" +"Não é possível usar o layout de ticks de 45° junto com o filtro de " +"intervalo de tempo" +#: superset/viz.py:748 +msgid "" +"You cannot use [Columns] in combination with [Group " +"By]/[Metrics]/[Percentage Metrics]. Please choose one or the other." +msgstr "" +"Você não pode usar [Columns] em combinação com [Group " +"By]/[Metrics]/[Percentage Metrics]. Escolha um ou outro." + +#: superset-frontend/src/utils/getClientErrorObject.ts:107 +#, python-format msgid "You do not have permission to edit this %s" msgstr "Você não tem permissão para editar este %s" -msgid "" -"You cannot use [Columns] in combination with [Group By]/[Metrics]/" -"[Percentage Metrics]. Please choose one or the other." -msgstr "" -"Você não pode usar [Columns] em combinação com [Group By]/[Metrics]/" -"[Percentage Metrics]. Escolha um ou outro." - -msgid "You don't have access to this chart." -msgstr "Você não tem acesso a esse gráfico." - -msgid "You don't have access to this dashboard." -msgstr "Você não tem acesso a esse painel." - -msgid "You don't have access to this dataset." -msgstr "Você não tem acesso a esse conjunto de dados." - -msgid "You don't have access to this embedded dashboard config." -msgstr "Você não tem acesso a essa configuração de painel incorporado." - +#: superset-frontend/src/explore/components/PropertiesModal/index.tsx:94 msgid "You do not have permission to edit this chart" msgstr "Você não tem permissão para editar este gráfico" +#: superset-frontend/src/components/Tags/utils.tsx:69 +#: superset-frontend/src/dashboard/actions/dashboardState.js:368 +#: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:134 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:40 msgid "You do not have permission to edit this dashboard" msgstr "Você não tem permissão para editar este painel" +#: superset/templates/superset/request_access.html:25 +#, python-format msgid "You do not have permissions to access the datasource(s): %(name)s." -msgstr "" -"Você não tem permissões para acessar o(s) recurso(s) de dados: %(name)s." +msgstr "Você não tem permissões para acessar o(s) recurso(s) de dados: %(name)s." +#: superset-frontend/src/dashboard/actions/dashboardState.js:160 msgid "You do not have permissions to edit this dashboard." msgstr "Você não tem permissão para editar esse painel." +#: superset/charts/commands/exceptions.py:131 +msgid "You don't have access to this chart." +msgstr "Você não tem acesso a esse gráfico." + +#: superset/dashboards/commands/exceptions.py:86 +msgid "You don't have access to this dashboard." +msgstr "Você não tem acesso a esse painel." + +#: superset/datasets/commands/exceptions.py:206 +msgid "You don't have access to this dataset." +msgstr "Você não tem acesso a esse conjunto de dados." + +#: superset/embedded_dashboard/commands/exceptions.py:34 +msgid "You don't have access to this embedded dashboard config." +msgstr "Você não tem acesso a essa configuração de painel incorporado." + +#: superset-frontend/src/features/home/EmptyState.tsx:170 msgid "You don't have any favorites yet!" msgstr "Você ainda não tem nenhum favorito!" -msgid "You don't have the rights to alter this title." -msgstr "Você não tem o direito de alterar esse título." - +#: superset/key_value/exceptions.py:54 +#: superset/temporary_cache/commands/exceptions.py:45 msgid "You don't have permission to modify the value." msgstr "Você não tem permissão para modificar o valor." +#: superset/security/manager.py:2262 +#, python-format msgid "You don't have the rights to alter %(resource)s" msgstr "Você não tem o direito de alterar %(resource)s" +#: superset/views/core.py:945 msgid "You don't have the rights to alter this chart" msgstr "Você não tem o direito de alterar esse gráfico" +#: superset/views/core.py:1119 msgid "You don't have the rights to alter this dashboard" msgstr "Você não tem o direito de alterar esse painel de controle" +#: superset-frontend/src/components/EditableTitle/index.tsx:213 +msgid "You don't have the rights to alter this title." +msgstr "Você não tem o direito de alterar esse título." + +#: superset/views/core.py:951 msgid "You don't have the rights to create a chart" msgstr "Você não tem o direito de criar um gráfico" +#: superset/views/core.py:1135 msgid "You don't have the rights to create a dashboard" msgstr "Você não tem direitos para criar um painel" +#: superset/views/core.py:649 msgid "You don't have the rights to download as csv" msgstr "Você não tem o direito de fazer o download como csv" +#: superset/views/core.py:425 msgid "You have no permission to approve this request" msgstr "Você não tem permissão para aprovar esta solicitação" +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/RemovedFilter.tsx:39 msgid "You have removed this filter." msgstr "Você removeu esse filtro." -msgid "" -"You updated the values in the control panel, but the chart was not updated " -"automatically. Run the query by clicking on the \"Update chart\" button or" -msgstr "" -"Você atualizou os valores no painel de controle, mas o gráfico não foi " -"atualizado automaticamente. Execute a consulta clicando no botão \"Atualizar " -"gráfico\" ou" - +#: superset-frontend/src/dashboard/components/Dashboard.jsx:87 msgid "You have unsaved changes." msgstr "Você tem alterações não salvas." +#: superset-frontend/src/dashboard/actions/dashboardState.js:650 +#, python-format msgid "" -"You have used all %(historyLength)s undo slots and will not be able to fully " -"undo subsequent actions. You may save your current state to reset the " -"history." +"You have used all %(historyLength)s undo slots and will not be able to " +"fully undo subsequent actions. You may save your current state to reset " +"the history." msgstr "" "Você usou todos os espaços de desfazer de %(historyLength) e não poderá " -"desfazer totalmente as ações subsequentes. Você pode salvar seu estado atual " -"para redefinir o histórico." +"desfazer totalmente as ações subsequentes. Você pode salvar seu estado " +"atual para redefinir o histórico." +#: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:300 +#: superset-frontend/src/pages/DatasetList/index.tsx:464 msgid "" -"You must be a dataset owner in order to edit. Please reach out to a dataset " -"owner to request modifications or edit access." +"You must be a dataset owner in order to edit. Please reach out to a " +"dataset owner to request modifications or edit access." msgstr "" "Você deve ser proprietário de um conjunto de dados para poder editá-lo. " "Entre em contato com o proprietário do conjunto de dados para solicitar " "modificações ou acesso de edição." +#: superset-frontend/src/dashboard/components/SaveModal.tsx:152 msgid "You must pick a name for the new dashboard" msgstr "Você deve escolher um nome para o novo painel" +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:519 msgid "You must run the query successfully first" msgstr "Primeiro, você deve executar a consulta com êxito" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/style.tsx:53 msgid "You need to configure HTML sanitization to use CSS" msgstr "Você precisa configurar a sanitização de HTML para usar CSS" +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 msgid "" -"You updated the values in the control panel, but the chart was not updated " -"automatically. Run the query by clicking on the \"Update chart\"button or" +"You updated the values in the control panel, but the chart was not " +"updated automatically. Run the query by clicking on the \"Update chart\" " +"button or" msgstr "" "Você atualizou os valores no painel de controle, mas o gráfico não foi " -"atualizado automaticamente. Execute a consulta clicando no botão \"Update " -"chart\" ou" +"atualizado automaticamente. Execute a consulta clicando no botão " +"\"Atualizar gráfico\" ou" +#: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:669 msgid "" "You've changed datasets. Any controls with data (columns, metrics) that " "match this new dataset have been retained." msgstr "" -"Você alterou os conjuntos de dados. Todos os controles com dados (colunas, " -"métricas) que correspondem a esse novo conjunto de dados foram mantidos." +"Você alterou os conjuntos de dados. Todos os controles com dados " +"(colunas, métricas) que correspondem a esse novo conjunto de dados foram " +"mantidos." +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 msgid "Your chart is not up to date" msgstr "Seu gráfico não está atualizado" +#: superset-frontend/src/components/Chart/Chart.jsx:283 msgid "Your chart is ready to go!" msgstr "Seu gráfico está pronto para ser usado!" +#: superset-frontend/src/dashboard/components/Header/index.jsx:409 msgid "Your dashboard is too large. Please reduce its size before saving it." msgstr "Seu painel é muito grande. Reduza o tamanho antes de salvá-lo." +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1028 msgid "Your query could not be saved" msgstr "Sua consulta não pôde ser salva" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:178 msgid "Your query could not be scheduled" msgstr "Sua consulta não pôde ser agendada" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1063 msgid "Your query could not be updated" msgstr "Sua consulta não pôde ser atualizada" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:171 msgid "" "Your query has been scheduled. To see details of your query, navigate to " "Saved queries" msgstr "" -"Sua consulta foi agendada. Para ver detalhes de sua consulta, navegue até " -"Consultas salvas" - -msgid "Your query was saved" -msgstr "Sua consulta foi salva" +"Sua consulta foi agendada. Para ver detalhes de sua consulta, navegue até" +" Consultas salvas" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 msgid "Your query was not properly saved" msgstr "Sua consulta não foi salva corretamente" +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1046 +msgid "Your query was saved" +msgstr "Sua consulta foi salva" + +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1059 msgid "Your query was updated" msgstr "Sua consulta foi atualizada" +#: superset-frontend/src/reports/actions/reports.js:154 msgid "Your report could not be deleted" msgstr "Não foi possível excluir seu relatório" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:185 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:259 msgid "Zero imputation" msgstr "Imputação zero" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:311 msgid "Zoom" msgstr "Ampliar" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:315 msgid "Zoom level of the map" msgstr "Nível de zoom do mapa" +#: superset-frontend/src/dashboard/actions/dashboardState.js:260 msgid "[ untitled dashboard ]" msgstr "[ painel sem título ]" +#: superset/viz.py:2323 msgid "[Longitude] and [Latitude] columns must be present in [Group By]" msgstr "" -"As colunas [Longitude] e [Latitude] devem estar presentes em [ Agrupar Por ]" +"As colunas [Longitude] e [Latitude] devem estar presentes em [ Agrupar " +"Por ]" +#: superset/viz.py:2273 msgid "[Longitude] and [Latitude] must be set" msgstr "[Longitude] e [Latitude] devem ser definidos" +#: superset/explore/commands/get.py:121 superset/views/core.py:892 msgid "[Missing Dataset]" msgstr "[Conjunto de dados ausente]" +#: superset/utils/core.py:908 +#, python-format msgid "[Superset] Access to the datasource %(name)s was granted" msgstr "[Superset] Acesso à fonte de dados %(name)s foi concedido" +#: superset-frontend/src/features/home/ActivityTable.tsx:85 msgid "[Untitled]" msgstr "[Sem título]" +#: superset/connectors/base/models.py:262 superset/models/sql_lab.py:216 msgid "[asc]" msgstr "[asc]" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:84 msgid "[copy]" msgstr "[cópia]" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:190 msgid "[dashboard name]" msgstr "[nome do painel]" +#: superset/connectors/base/models.py:265 superset/models/sql_lab.py:219 msgid "[desc]" msgstr "[desc]" +#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/controlPanel.ts:69 +#: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:165 +msgid "" +"[optional] this secondary metric is used to define the color as a ratio " +"against the primary metric. When omitted, the color is categorical and " +"based on labels" +msgstr "" +"[opcional] essa métrica secundária é usada para definir a cor como uma " +"proporção em relação à métrica primária. Quando omitida, a cor é " +"categórica e baseada em rótulos" + +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigModal.tsx:273 msgid "[untitled]" msgstr "[sem título]" -msgid "" -"[optional] this secondary metric is used to define the color as a ratio " -"against the primary metric. When omitted, the color is categorical and based " -"on labels" -msgstr "" -"[opcional] essa métrica secundária é usada para definir a cor como uma " -"proporção em relação à métrica primária. Quando omitida, a cor é categórica " -"e baseada em rótulos" - +#: superset/utils/pandas_postprocessing/compare.py:53 msgid "`compare_columns` must have the same length as `source_columns`." -msgstr "" -"` compare_columns ` deve ter o mesmo comprimento de ` source_columns `." +msgstr "` compare_columns ` deve ter o mesmo comprimento de ` source_columns `." +#: superset/utils/pandas_postprocessing/compare.py:57 msgid "`compare_type` must be `difference`, `percentage` or `ratio`" msgstr "`compare_type` deve ser `difference`, `percentage` ou `ratio`" +#: superset/charts/schemas.py:654 msgid "`confidence_interval` must be between 0 and 1 (exclusive)" msgstr "`confidence_interval` deve estar entre 0 e 1 (exclusivo)" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:166 msgid "" "`count` is COUNT(*) if a group by is used. Numerical columns will be " -"aggregated with the aggregator. Non-numerical columns will be used to label " -"points. Leave empty to get a count of points in each cluster." +"aggregated with the aggregator. Non-numerical columns will be used to " +"label points. Leave empty to get a count of points in each cluster." msgstr "" "`count` é COUNT(*) se for usado um grupo por. As colunas numéricas serão " "agregadas com o agregador. As colunas não numéricas serão usadas para " -"rotular os pontos. Deixe em branco para obter uma contagem de pontos em cada " -"cluster." +"rotular os pontos. Deixe em branco para obter uma contagem de pontos em " +"cada cluster." +#: superset/common/query_object.py:436 msgid "`operation` property of post processing object undefined" msgstr "Propriedade `operation` do objeto de pós-processamento indefinida" -msgid "`rename_columns` must have the same length as `columns`." -msgstr "`rename_columns` deve ter o mesmo comprimento que `columns`." - -msgid "`row_offset` must be greater than or equal to 0" -msgstr "`row_offset` deve ser maior ou igual a 0" - +#: superset/utils/pandas_postprocessing/prophet.py:61 msgid "`prophet` package not installed" msgstr "Pacote `prophet` não instalado" +#: superset/utils/pandas_postprocessing/contribution.py:69 +msgid "`rename_columns` must have the same length as `columns`." +msgstr "`rename_columns` deve ter o mesmo comprimento que `columns`." + +#: superset/charts/schemas.py:1284 msgid "`row_limit` must be greater than or equal to 0" msgstr "O `row_limit` deve ser maior ou igual a 0" +#: superset/charts/schemas.py:1291 +msgid "`row_offset` must be greater than or equal to 0" +msgstr "`row_offset` deve ser maior ou igual a 0" + +#: superset/charts/schemas.py:1108 msgid "`width` must be greater or equal to 0" msgstr "`largura` deve ser maior ou igual a 0" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:455 msgid "aggregate" msgstr "agregar" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 +#: superset-frontend/src/pages/AlertReportList/index.tsx:110 msgid "alert" msgstr "alerta" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 +#, fuzzy +msgid "alert dark" +msgstr "alerta" + +#: superset-frontend/src/pages/AlertReportList/index.tsx:111 msgid "alerts" msgstr "alertas" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:160 +#: superset-frontend/src/components/Chart/DrillDetail/DrillDetailMenuItems.tsx:205 +#: superset-frontend/src/explore/controls.jsx:254 msgid "all" msgstr "todos" +#: superset-frontend/src/dashboard/components/SaveModal.tsx:200 msgid "also copy (duplicate) charts" msgstr "também copiar (duplicar) gráficos" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:195 msgid "ancestor" msgstr "ancestral" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:47 msgid "and" msgstr "e" -msgid "auto" -msgstr "automático" - +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:106 +#: superset-frontend/src/pages/AnnotationList/index.tsx:78 msgid "annotation" msgstr "anotação" +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:104 msgid "annotation_layer" msgstr "camada de anotação" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:373 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:255 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:527 +#: superset-frontend/src/explore/controlPanels/sections.tsx:251 msgid "asfreq" msgstr "asfreq" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:48 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:50 msgid "at" msgstr "em" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:84 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:203 +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:228 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:78 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:196 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:218 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:118 +#: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:54 +#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:60 +msgid "auto" +msgstr "automático" + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:151 msgid "auto (Smooth)" msgstr "auto (Suave)" -msgid "basis" -msgstr "base" - +#: superset-frontend/src/dashboard/components/menu/BackgroundStyleDropdown.tsx:76 msgid "background" msgstr "fundo" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:124 +msgid "basis" +msgstr "base" + +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:69 msgid "below (example:" msgstr "abaixo (exemplo:" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:260 msgid "between {down} and {up} {name}" msgstr "entre {down} e {up} {name}" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:374 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:256 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:528 +#: superset-frontend/src/explore/controlPanels/sections.tsx:252 msgid "bfill" msgstr "bfill" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:74 +#: superset-frontend/src/explore/components/ControlHeader.tsx:122 msgid "bolt" msgstr "parafuso" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:63 msgid "boolean type icon" msgstr "ícone do tipo booleano" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:162 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:180 msgid "bottom" msgstr "fundo" +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:222 msgid "button (cmd + z) until you save your changes." msgstr "(cmd + z) até você salvar suas mudanças." +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:72 msgid "by using" msgstr "usando" +#: superset-frontend/packages/superset-ui-core/src/validator/validateNonEmpty.ts:29 msgid "cannot be empty" msgstr "não pode ser vazio" -msgid "chart" -msgstr "gráfico" - -msgid "CHART" -msgstr "GRÁFICO" - -msgid "CHARTS" -msgstr "GRÁFICOS" - -msgid "DASHBOARD" -msgstr "PAINEL" - -msgid "DASHBOARDS" -msgstr "PAINÉIS" - +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:125 msgid "cardinal" msgstr "cardeal" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:87 msgid "change" msgstr "mudança" +#: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:177 +#: superset-frontend/src/features/home/ChartTable.tsx:89 +#: superset-frontend/src/pages/ChartList/index.tsx:182 +#: superset-frontend/src/pages/ChartList/index.tsx:892 +msgid "chart" +msgstr "gráfico" + +#: superset-frontend/src/features/home/EmptyState.tsx:27 msgid "charts" msgstr "gráficos" -msgid "clear all filters" -msgstr "limpar todos os filtros" - -msgid "count" -msgstr "contagem" - -msgid "create" -msgstr "criar" - -msgid "create a new chart" -msgstr "criar um novo gráfico" - -msgid "cumulative" -msgstr "cumulativo" - -msgid "dashboards" -msgstr "painéis" - -msgid "dataset name" -msgstr "nome do conjunto de dados" - -msgid "deck.gl 3D Hexagon" -msgstr "deck.gl Hexágono 3D" - -msgid "deck.gl Arc" -msgstr "deck.gl Arc" - -msgid "deck.gl Geojson" -msgstr "deck.gl Geojson" - -msgid "deck.gl Grid" -msgstr "deck.gl Grid" - -msgid "deck.gl Multiple Layers" -msgstr "deck.gl Múltiplas camadas" - -msgid "deck.gl Path" -msgstr "deck.gl Path" - -msgid "deck.gl Polygon" -msgstr "deck.gl Polígono" - -msgid "deck.gl Scatterplot" -msgstr "deck.gl Gráfico de dispersão" - -msgid "deck.gl Screen Grid" -msgstr "deck.gl Grade de tela" - -msgid "deck.gl charts" -msgstr "gráficos do deck.gl" - -msgid "default" -msgstr "padrão" - -msgid "deviation" -msgstr "desvio" - -msgid "draft" -msgstr "rascunho" - -msgid "e.g., a \"user id\" column" -msgstr "por exemplo, uma coluna \"user id\"" - -msgid "edit mode" -msgstr "modo de edição" - -msgid "entries" -msgstr "entradas" - -msgid "error_message" -msgstr "mensagem de erro" - -msgid "expand" -msgstr "expandir" - -msgid "explore" -msgstr "explorar" - -msgid "failed" -msgstr "falhou" - -msgid "fetching" -msgstr "busca" - -msgid "flat" -msgstr "plano" - -msgid "for more information on how to structure your URI." -msgstr "para obter mais informações sobre como estruturar seu URI." - -msgid "heatmap" -msgstr "mapa de calor" - -msgid "here" -msgstr "aqui" - -msgid "id" -msgstr "id" - -msgid "label" -msgstr "rótulo" - -msgid "last day" -msgstr "último dia" - -msgid "last month" -msgstr "mês passado" - -msgid "last week" -msgstr "semana passada" - -msgid "last year" -msgstr "ano passado" - -msgid "left" -msgstr "esquerda" - -msgid "linear" -msgstr "linear" - -msgid "max" -msgstr "máximo" - -msgid "metric" -msgstr "métrica" - -msgid "min" -msgstr "min" - -msgid "minute(s)" -msgstr "minuto(s)" - -msgid "monotone" -msgstr "monótono" - -msgid "no SQL validator is configured" -msgstr "nenhum validador SQL está configurado" - -msgid "no SQL validator is configured for {}" -msgstr "nenhum validador SQL está configurado para {}" - -msgid "or" -msgstr "ou" - -msgid "pending" -msgstr "pendente" - -msgid "orderby column must be populated" -msgstr "a coluna orderby deve ser preenchida" - -msgid "permalink state not found" -msgstr "estado do permalink não encontrado" - -msgid "published" -msgstr "publicado" - -msgid "quarter" -msgstr "trimestre" - -msgid "queries" -msgstr "consultas" - -msgid "recent" -msgstr "recente" - -msgid "recents" -msgstr "recentes" - -msgid "red" -msgstr "vermelho" - -msgid "random" -msgstr "aleatório" - -msgid "right" -msgstr "direito" - -msgid "running" -msgstr "em execução" - -msgid "saved queries" -msgstr "consultas salvas" - -msgid "seconds" -msgstr "segundos" - -msgid "series" -msgstr "série" - -msgid "square" -msgstr "quadrado" - -msgid "stack" -msgstr "pilha" - -msgid "staggered" -msgstr "escalonado" - -msgid "step-after" -msgstr "etapa seguinte" - -msgid "stopped" -msgstr "interrompido" - -msgid "stream" -msgstr "fluxo" - -msgid "success" -msgstr "sucesso" - -msgid "to" -msgstr "para" - -msgid "top" -msgstr "superior" - -msgid "undo" -msgstr "desfazer" - -msgid "unknown type icon" -msgstr "ícone de tipo desconhecido" - -msgid "use latest_partition template" -msgstr "usar o modelo latest_partition" - -msgid "value ascending" -msgstr "valor crescente" - -msgid "value descending" -msgstr "valor decrescente" - -msgid "variance" -msgstr "variação" - -msgid "view instructions" -msgstr "exibir instruções" - -msgid "viz type" -msgstr "tipo de visualização" - +#: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:99 msgid "choose WHERE or HAVING..." msgstr "escolha WHERE ou HAVING..." +#: superset-frontend/src/components/ListView/ListView.tsx:415 +msgid "clear all filters" +msgstr "limpar todos os filtros" + +#: superset-frontend/src/components/Chart/Chart.jsx:290 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 msgid "click here" msgstr "clique aqui" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:46 msgid "code ISO 3166-1 alpha-2 (cca2)" msgstr "código ISO 3166-1 alpha-2 (cca2)" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:47 msgid "code ISO 3166-1 alpha-3 (cca3)" msgstr "código ISO 3166-1 alpha-3 (cca3)" +#: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:45 msgid "code International Olympic Committee (cioc)" msgstr "código Comitê Olímpico Internacional (cioc)" +#: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:444 msgid "column" msgstr "coluna" +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:152 +#, python-format msgid "connecting to %(dbModelName)s." msgstr "conectando ao %(dbModelName)s." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:117 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:79 +msgid "count" +msgstr "contagem" + +#: superset-frontend/src/explore/components/SaveModal.tsx:400 +msgid "create" +msgstr "criar" + +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:198 +msgid "create a new chart" +msgstr "criar um novo gráfico" + +#: superset-frontend/src/features/datasets/AddDataset/DatasetPanel/MessageContent.tsx:45 msgid "create dataset from SQL query" msgstr "criar um conjunto de dados a partir de uma consulta SQL" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:251 msgid "css" msgstr "css" +#: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:91 msgid "css_template" msgstr "css_template" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:257 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:139 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:406 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:186 +#: superset-frontend/src/explore/controlPanels/sections.tsx:138 msgid "cumsum" msgstr "cumsum" +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:121 +msgid "cumulative" +msgstr "cumulativo" + +#: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:115 +#: superset-frontend/src/features/home/DashboardTable.tsx:77 +#: superset-frontend/src/pages/DashboardList/index.tsx:127 +#: superset-frontend/src/pages/DashboardList/index.tsx:792 msgid "dashboard" msgstr "painel" +#: superset-frontend/src/features/home/EmptyState.tsx:28 +msgid "dashboards" +msgstr "painéis" + +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:543 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:729 +#: superset-frontend/src/pages/DatabaseList/index.tsx:102 msgid "database" msgstr "banco de dados" +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 +#: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 +#: superset-frontend/src/pages/DatasetList/index.tsx:159 +#: superset-frontend/src/pages/DatasetList/index.tsx:844 msgid "dataset" msgstr "dataset" +#: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:83 +msgid "dataset name" +msgstr "nome do conjunto de dados" + +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:303 msgid "date" msgstr "data" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 msgid "day" msgstr "dia" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:30 msgid "day of the month" msgstr "dia do mês" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:32 msgid "day of the week" msgstr "dia da semana" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:30 +msgid "deck.gl 3D Hexagon" +msgstr "deck.gl Hexágono 3D" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:30 +msgid "deck.gl Arc" +msgstr "deck.gl Arc" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:30 +msgid "deck.gl Geojson" +msgstr "deck.gl Geojson" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:30 +msgid "deck.gl Grid" +msgstr "deck.gl Grid" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:30 +#, fuzzy +msgid "deck.gl Heatmap" +msgstr "gráficos do deck.gl" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:28 +msgid "deck.gl Multiple Layers" +msgstr "deck.gl Múltiplas camadas" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:28 +msgid "deck.gl Path" +msgstr "deck.gl Path" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:30 +msgid "deck.gl Polygon" +msgstr "deck.gl Polígono" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:30 +msgid "deck.gl Scatterplot" +msgstr "deck.gl Gráfico de dispersão" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:30 +msgid "deck.gl Screen Grid" +msgstr "deck.gl Grade de tela" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:37 +msgid "deck.gl charts" +msgstr "gráficos do deck.gl" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:34 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:34 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:34 msgid "deckGL" msgstr "deckGL" +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:106 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/forecastInterval.tsx:125 +msgid "default" +msgstr "padrão" + +#: superset-frontend/src/components/DeleteModal/index.tsx:84 msgid "delete" msgstr "excluir" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:196 +#, fuzzy +msgid "descendant" +msgstr "Ordenação decrescente" + +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ControlHeader.tsx:64 +#: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:262 +#: superset-frontend/src/features/annotations/AnnotationModal.tsx:327 msgid "description" msgstr "descrição" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:81 +msgid "deviation" +msgstr "desvio" + +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:85 msgid "dialect+driver://username:password@host:port/database" msgstr "dialect+driver://username:password@host:port/database" +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:123 +msgid "draft" +msgstr "rascunho" + +#: superset/views/log/__init__.py:32 msgid "dttm" msgstr "dttm" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:153 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:174 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:202 msgid "e.g. ********" msgstr "por exemplo ********" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:45 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:75 msgid "e.g. 127.0.0.1" msgstr "por exemplo, 127.0.0.1" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:67 msgid "e.g. 5432" msgstr "por exemplo, 5432" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:36 msgid "e.g. AccountAdmin" msgstr "por exemplo , AccountAdmin" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:132 +#: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:107 +#, fuzzy +msgid "e.g. Analytics" +msgstr "Analytics avançado" + +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:32 msgid "e.g. compute_wh" msgstr "por exemplo , compute_wh" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:217 msgid "e.g. param1=value1¶m2=value2" msgstr "por exemplo, param1=value1¶m2=value2" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:90 msgid "e.g. sql/protocolv1/o/12345" msgstr "por exemplo , sql/protocolv1/o/12345" +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:112 +#: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:674 msgid "e.g. world_population" msgstr "por exemplo, world_population" +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:672 msgid "e.g. xy12345.us-east-2.aws" msgstr "por exemplo, xy12345.us-east-2.aws" +#: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:125 +msgid "e.g., a \"user id\" column" +msgstr "por exemplo, uma coluna \"user id\"" + +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:210 +msgid "edit mode" +msgstr "modo de edição" + +#: superset-frontend/plugins/plugin-chart-table/src/DataTable/components/SelectPageSize.tsx:58 +msgid "entries" +msgstr "entradas" + +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +#, fuzzy +msgid "error" +msgstr "Erro" + +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 +msgid "error dark" +msgstr "" + +#: superset/models/helpers.py:1803 +msgid "error_message" +msgstr "mensagem de erro" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:27 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:35 msgid "every" msgstr "todos" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:29 msgid "every day of the month" msgstr "todos os dias do mês" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:31 msgid "every day of the week" msgstr "todos os dias da semana" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:33 msgid "every hour" msgstr "a cada hora" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:34 +#, fuzzy +msgid "every minute" +msgstr "a cada mês" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:28 msgid "every month" msgstr "a cada mês" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:57 +#: superset-frontend/src/explore/fixtures.tsx:63 +msgid "expand" +msgstr "expandir" + +#: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:89 +#: superset-frontend/src/SqlLab/components/ExploreResultsButton/index.tsx:47 +msgid "explore" +msgstr "explorar" + +#: superset-frontend/src/SqlLab/constants.ts:33 +#: superset-frontend/src/SqlLab/constants.ts:51 +msgid "failed" +msgstr "falhou" + +#: superset-frontend/src/SqlLab/constants.ts:35 +msgid "fetching" +msgstr "busca" + +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:375 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:257 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:529 +#: superset-frontend/src/explore/controlPanels/sections.tsx:253 msgid "ffill" msgstr "ffill" +#: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:86 msgid "" "filter_box will be deprecated in a future version of Superset. Please " "replace filter_box by dashboard filter components." msgstr "" -"filter_box será descontinuado em uma versão futura do Superset. Substitua " -"filter_box por componentes de filtro do painel." +"filter_box será descontinuado em uma versão futura do Superset. Substitua" +" filter_box por componentes de filtro do painel." +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:219 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:119 +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:87 +#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:61 +msgid "flat" +msgstr "plano" + +#: superset-frontend/src/features/databases/DatabaseModal/SqlAlchemyForm.tsx:100 +msgid "for more information on how to structure your URI." +msgstr "para obter mais informações sobre como estruturar seu URI." + +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:57 msgid "function type icon" msgstr "ícone de tipo de função" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:352 msgid "geohash (square)" msgstr "geohash (quadrado)" -msgid "green" -msgstr "verde" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:168 +msgid "heatmap" +msgstr "mapa de calor" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:184 msgid "heatmap: values are normalized across the entire heatmap" msgstr "heatmap: os valores são normalizados em todo o heatmap" +#: superset-frontend/src/components/EmptyState/index.tsx:231 +#: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 +#: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:125 +#: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1856 +msgid "here" +msgstr "aqui" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 msgid "hour" msgstr "hora" +#: superset-frontend/src/profile/components/UserInfo.tsx:76 +msgid "id" +msgstr "id" + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:154 msgid "" "image-rendering CSS attribute of the canvas object that defines how the " "browser scales up the image" msgstr "" -"atributo CSS de renderização de imagem do objeto canvas que define como o " -"navegador dimensiona a imagem" +"atributo CSS de renderização de imagem do objeto canvas que define como o" +" navegador dimensiona a imagem" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:44 msgid "in" msgstr "em" +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:145 msgid "in modal" msgstr "no modal" +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateNumber.ts:28 +#: superset-frontend/packages/superset-ui-core/src/validator/validateNumber.ts:32 msgid "is expected to be a number" msgstr "espera-se que seja um número" +#: superset-frontend/packages/superset-ui-core/src/validator/legacyValidateInteger.ts:31 +#: superset-frontend/packages/superset-ui-core/src/validator/validateInteger.ts:32 msgid "is expected to be an integer" msgstr "espera-se que seja um inteiro" +#: superset-frontend/src/profile/components/UserInfo.tsx:64 msgid "joined" msgstr "juntou-se" +#: superset/views/base.py:596 msgid "json isn't valid" msgstr "json não é válido" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:298 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:326 msgid "key a-z" msgstr "chave a-z" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:299 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:327 msgid "key z-a" msgstr "chave z-a" +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:164 +msgid "label" +msgstr "rótulo" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:39 +msgid "last day" +msgstr "último dia" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:41 +msgid "last month" +msgstr "mês passado" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:42 msgid "last quarter" msgstr "último trimestre" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:40 +msgid "last week" +msgstr "semana passada" + +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:43 +msgid "last year" +msgstr "ano passado" + +#: superset-frontend/src/SqlLab/components/TableElement/index.tsx:153 msgid "latest partition:" msgstr "partição mais recente:" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:159 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:177 +msgid "left" +msgstr "esquerda" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:259 msgid "less than {min} {name}" msgstr "menos que {min} {name}" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:123 +msgid "linear" +msgstr "linear" + +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:66 msgid "log" msgstr "log" +#: superset/charts/schemas.py:735 msgid "" "lower percentile must be greater than 0 and less than 100. Must be lower " "than upper percentile." msgstr "" -"o percentil inferior deve ser maior que 0 e menor que 100. Deve ser menor " -"que o percentil superior." +"o percentil inferior deve ser maior que 0 e menor que 100. Deve ser menor" +" que o percentil superior." +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:189 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 +#: superset-frontend/src/filters/components/Range/buildQuery.ts:69 +msgid "max" +msgstr "máximo" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:187 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:254 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:136 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:119 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:403 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:531 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:183 +#: superset-frontend/src/explore/controlPanels/sections.tsx:135 +#: superset-frontend/src/explore/controlPanels/sections.tsx:255 msgid "mean" msgstr "média" +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:376 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:258 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:78 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:530 +#: superset-frontend/src/explore/controlPanels/sections.tsx:254 msgid "median" msgstr "mediana" +#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:62 +#: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 +msgid "metric" +msgstr "métrica" + +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:188 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 +#: superset-frontend/src/filters/components/Range/buildQuery.ts:58 +msgid "min" +msgstr "min" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:41 msgid "minute" msgstr "minuto" +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:51 +msgid "minute(s)" +msgstr "minuto(s)" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:126 +msgid "monotone" +msgstr "monótono" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 +#: superset-frontend/src/explore/controls.jsx:267 msgid "month" msgstr "mês" +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/vendor/cal-heatmap.js:261 msgid "more than {max} {name}" msgstr "mais de {max} {name}" +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:53 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:77 +#: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:116 msgid "must have a value" msgstr "deve ter um valor" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/Polygon.jsx:63 +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:73 +#, fuzzy +msgid "name" +msgstr "Nome" + +#: superset/databases/commands/exceptions.py:147 +msgid "no SQL validator is configured" +msgstr "nenhum validador SQL está configurado" + +#: superset/databases/commands/validate_sql.py:101 +msgid "no SQL validator is configured for {}" +msgstr "nenhum validador SQL está configurado para {}" + +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:61 msgid "numeric type icon" msgstr "ícone de tipo numérico" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:54 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:46 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:41 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Compare/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DistBar/index.js:55 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:36 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 msgid "nvd3" msgstr "nvd3" +#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:388 msgid "of parent" msgstr "do pai" +#: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/Sunburst.js:386 msgid "of total" msgstr "do total" +#: superset-frontend/src/SqlLab/constants.ts:32 +#: superset-frontend/src/SqlLab/constants.ts:53 +#, fuzzy +msgid "offline" +msgstr "Offline" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:45 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:46 msgid "on" msgstr "em" +#: superset-frontend/src/pages/ChartCreation/index.tsx:353 +msgid "or" +msgstr "ou" + +#: superset-frontend/src/dashboard/components/gridComponents/Tab.jsx:200 msgid "or use existing ones from the panel on the right" msgstr "ou use os existentes no painel à direita" +#: superset/charts/schemas.py:1313 +msgid "orderby column must be populated" +msgstr "a coluna orderby deve ser preenchida" + +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:86 msgid "overall" msgstr "geral" +#: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:77 msgid "p-value precision" msgstr "precisão do valor-p" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:82 msgid "p1" msgstr "p1" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:83 msgid "p5" msgstr "p5" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:84 msgid "p95" msgstr "p95" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:85 msgid "p99" msgstr "p99" +#: superset-frontend/plugins/plugin-chart-handlebars/src/consts.ts:24 +#: superset-frontend/plugins/plugin-chart-table/src/consts.ts:26 msgid "page_size.all" msgstr "page_size.all" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:198 msgid "page_size.entries" msgstr "page_ size.entries" +#: superset-frontend/plugins/plugin-chart-table/src/TableChart.tsx:178 msgid "page_size.show" msgstr "page_ size.show" +#: superset-frontend/src/SqlLab/constants.ts:34 +#: superset-frontend/src/SqlLab/constants.ts:54 +msgid "pending" +msgstr "pendente" + +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:125 msgid "percentile (exclusive)" msgstr "percentil (exclusivo)" +#: superset/utils/pandas_postprocessing/boxplot.py:88 msgid "" -"percentiles must be a list or tuple with two numeric values, of which the " -"first is lower than the second value" +"percentiles must be a list or tuple with two numeric values, of which the" +" first is lower than the second value" msgstr "" -"os percentis devem ser uma lista ou tupla com dois valores numéricos, dos " -"quais o primeiro é menor que o segundo valor" +"os percentis devem ser uma lista ou tupla com dois valores numéricos, dos" +" quais o primeiro é menor que o segundo valor" +#: superset/views/core.py:1958 +msgid "permalink state not found" +msgstr "estado do permalink não encontrado" + +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:150 msgid "pixelated (Sharp)" msgstr "pixelado (nítido)" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:53 msgid "previous calendar month" msgstr "mês anterior do calendário" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:50 msgid "previous calendar week" msgstr "semana anterior do calendário" +#: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:55 msgid "previous calendar year" msgstr "ano-calendário anterior" +#: superset-frontend/src/features/dashboards/DashboardCard.tsx:123 +msgid "published" +msgstr "publicado" + +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:174 +#: superset-frontend/src/explore/controls.jsx:268 +msgid "quarter" +msgstr "trimestre" + +#: superset-frontend/src/pages/SavedQueryList/index.tsx:577 +msgid "queries" +msgstr "consultas" + +#: superset-frontend/src/features/home/SavedQueries.tsx:131 msgid "query" msgstr "consulta" +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:86 +msgid "random" +msgstr "aleatório" + +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:42 msgid "reboot" msgstr "reiniciar" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:76 +msgid "recent" +msgstr "recente" + +#: superset-frontend/src/features/home/EmptyState.tsx:29 +msgid "recents" +msgstr "recentes" + +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:566 +#: superset-frontend/src/pages/AlertReportList/index.tsx:110 msgid "report" msgstr "relatório" +#: superset-frontend/src/pages/AlertReportList/index.tsx:111 +#: superset-frontend/src/pages/AlertReportList/index.tsx:138 +#: superset-frontend/src/pages/AlertReportList/index.tsx:147 +#: superset-frontend/src/pages/ExecutionLogList/index.tsx:75 msgid "reports" msgstr "relatórios" +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:522 msgid "restore zoom" msgstr "restaurar zoom" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:161 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:179 +msgid "right" +msgstr "direito" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:139 +#, fuzzy +msgid "rowlevelsecurity" +msgstr "Segurança em nível de linha" + +#: superset-frontend/src/SqlLab/constants.ts:36 +#: superset-frontend/src/SqlLab/constants.ts:52 +msgid "running" +msgstr "em execução" + +#: superset-frontend/src/features/home/EmptyState.tsx:30 +msgid "saved queries" +msgstr "consultas salvas" + +#: superset-frontend/src/pages/AllEntities/index.tsx:79 msgid "search by tags" msgstr "pesquisa por tags" -msgid "" -"series: Treat each series independently; overall: All series use the same " -"scale; change: Show changes compared to the first data point in each series" -msgstr "" -"séries: Tratar cada série de forma independente; geral: Todas as séries usam " -"a mesma escala; alteração: Mostrar alterações em comparação com o primeiro " -"ponto de dados em cada série" +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:401 +msgid "seconds" +msgstr "segundos" +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:85 +msgid "series" +msgstr "série" + +#: superset-frontend/plugins/legacy-plugin-chart-horizon/src/controlPanel.ts:90 +msgid "" +"series: Treat each series independently; overall: All series use the same" +" scale; change: Show changes compared to the first data point in each " +"series" +msgstr "" +"séries: Tratar cada série de forma independente; geral: Todas as séries " +"usam a mesma escala; alteração: Mostrar alterações em comparação com o " +"primeiro ponto de dados em cada série" + +#: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:88 +msgid "square" +msgstr "quadrado" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:55 +#: superset-frontend/src/explore/fixtures.tsx:61 +msgid "stack" +msgstr "pilha" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:221 +#: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:122 +#: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:63 +msgid "staggered" +msgstr "escalonado" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:190 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:138 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:405 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:185 +#: superset-frontend/src/explore/controlPanels/sections.tsx:137 msgid "std" msgstr "std" +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:128 +msgid "step-after" +msgstr "etapa seguinte" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:127 msgid "step-before" msgstr "passo-anteerior" +#: superset-frontend/src/SqlLab/constants.ts:37 +msgid "stopped" +msgstr "interrompido" + +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:56 +#: superset-frontend/src/explore/fixtures.tsx:62 +msgid "stream" +msgstr "fluxo" + +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:59 msgid "string type icon" msgstr "ícone do tipo string" +#: superset-frontend/src/SqlLab/constants.ts:38 +#: superset-frontend/src/SqlLab/constants.ts:50 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 +msgid "success" +msgstr "sucesso" + +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +#, fuzzy +msgid "success dark" +msgstr "sucesso" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:186 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:255 +#: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:378 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 +#: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:260 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 +#: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:532 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:184 +#: superset-frontend/src/explore/controlPanels/sections.tsx:136 +#: superset-frontend/src/explore/controlPanels/sections.tsx:256 msgid "sum" msgstr "soma" +#: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:80 msgid "syntax." msgstr "sintaxe." +#: superset-frontend/src/pages/Tags/index.tsx:76 msgid "tag" msgstr "marca" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:65 msgid "temporal type icon" msgstr "ícone de tipo temporal" +#: superset-frontend/src/explore/components/controls/TextAreaControl.jsx:115 msgid "textarea" msgstr "área de texto" -msgid "" -"upper percentile must be greater than 0 and less than 100. Must be higher " -"than lower percentile." -msgstr "" -"o percentil superior deve ser maior que 0 e menor que 100. Deve ser maior " -"que o percentil inferior." +#: superset-frontend/plugins/legacy-plugin-chart-histogram/src/Histogram.jsx:114 +msgid "to" +msgstr "para" +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:160 +#: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:178 +msgid "top" +msgstr "superior" + +#: superset-frontend/src/dashboard/components/gridComponents/Tabs.jsx:221 +msgid "undo" +msgstr "desfazer" + +#: superset-frontend/packages/superset-ui-chart-controls/src/components/ColumnTypeLabel/ColumnTypeLabel.tsx:53 +msgid "unknown type icon" +msgstr "ícone de tipo desconhecido" + +#: superset/charts/schemas.py:750 +msgid "" +"upper percentile must be greater than 0 and less than 100. Must be higher" +" than lower percentile." +msgstr "" +"o percentil superior deve ser maior que 0 e menor que 100. Deve ser maior" +" que o percentil inferior." + +#: superset-frontend/src/explore/constants.ts:85 +msgid "use latest_partition template" +msgstr "usar o modelo latest_partition" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:300 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:328 +msgid "value ascending" +msgstr "valor crescente" + +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:301 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:329 +msgid "value descending" +msgstr "valor decrescente" + +#: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 msgid "var" msgstr "var" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:80 +msgid "variance" +msgstr "variação" + +#: superset-frontend/src/pages/ChartCreation/index.tsx:347 +msgid "view instructions" +msgstr "exibir instruções" + +#: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1048 msgid "virtual" msgstr "virtual" +#: superset-frontend/src/dashboard/components/SliceAdder.jsx:74 +msgid "viz type" +msgstr "tipo de visualização" + +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:451 msgid "was created" msgstr "foi criado" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 +#: superset-frontend/src/explore/controls.jsx:264 msgid "week" msgstr "semana" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:172 +#: superset-frontend/src/explore/controls.jsx:266 msgid "week ending Saturday" msgstr "semana que termina no sábado" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:171 +#: superset-frontend/src/explore/controls.jsx:265 msgid "week starting Sunday" msgstr "semana que começa no domingo" -msgid "Update chart" -msgstr "Atualizar Gráfico" - +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:169 msgid "x" msgstr "x" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:181 msgid "x: values are normalized within each column" msgstr "x: os valores são normalizados dentro de cada coluna" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:170 msgid "y" msgstr "y" +#: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:182 msgid "y: values are normalized within each row" msgstr "y: os valores são normalizados dentro de cada linha" +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 +#: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 +#: superset-frontend/src/explore/controls.jsx:269 msgid "year" msgstr "ano" -msgid "yellow" -msgstr "amarelo" - +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:521 msgid "zoom area" msgstr "área de zoom" diff --git a/superset/translations/ru/LC_MESSAGES/messages.json b/superset/translations/ru/LC_MESSAGES/messages.json index f23a209147..f1f408364b 100644 --- a/superset/translations/ru/LC_MESSAGES/messages.json +++ b/superset/translations/ru/LC_MESSAGES/messages.json @@ -202,6 +202,9 @@ "A database with the same name already exists.": [ "База данных с таким же именем уже существует" ], + "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ + "" + ], "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ "Полный URL, указывающий на местоположение плагина (например, ссылка на CDN)" ], @@ -319,6 +322,7 @@ "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ "Добавьте новые столбцы формата дата/время в датасет в настройках датасета" ], + "Add custom scoping": [""], "Add delivery method": ["Добавить способ оповещения"], "Add extra connection information.": [ "Дополнительная информация по подключению" @@ -435,6 +439,7 @@ "All": ["Все"], "All Text": ["Весь текст"], "All charts": ["Все графики"], + "All charts/global scoping": [""], "All filters": ["Все фильтры"], "All filters (%(filterCount)d)": ["Все фильтры (%(filterCount)d)"], "All panels": ["Все панели"], @@ -1106,7 +1111,6 @@ "Choose a source": ["Выберите источник"], "Choose a source and a target": ["Выберите источник и цель"], "Choose a target": ["Выберите цель"], - "Choose a unique name": [""], "Choose chart type": ["Выберите тип графика"], "Choose one of the available databases from the panel on the left.": [ "Выберите одну из доступных баз данных из панели слева." @@ -1164,9 +1168,6 @@ ], "Click to cancel sorting": ["Нажмите для отмены сортировки"], "Click to edit": ["Нажмите для редактирования"], - "Click to edit %s in a new tab": [ - "Нажмите для редактирования «%s» в новой вкладке" - ], "Click to edit %s.": ["Нажмите для редактирования %s."], "Click to edit chart.": ["Нажмите для редактирования графика."], "Click to edit label": ["Нажмите для редактирования метки"], @@ -1265,7 +1266,6 @@ ], "Columns to group by on the rows": ["Столбцы для группировки по строкам"], "Columns to show": ["Столбцы для отображения"], - "Combine Metrics": ["Объединить меры"], "Combine metrics": ["Объединить меры"], "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ "Номера цветов, разделенные запятой, например, 1,2,4. Целые числа задают цвета из выбранной цветовой схемы и начинаются с 1 (не с нуля). Длина должна соответствовать границам интервала." @@ -1401,6 +1401,7 @@ "Could not load database driver: {}": [ "Не удалось загрузить драйвер базы данных: {}" ], + "Could not resolve hostname: \"%(host)s\".": [""], "Count": ["Количество"], "Count Unique Values": ["Количество уникальных значений"], "Count as Fraction of Columns": ["Количество, как доля от столбцов"], @@ -1621,6 +1622,7 @@ "Deactivate": ["Выключить"], "December": ["Декабрь"], "Decides which column to sort the base axis by.": [""], + "Decides which measure to sort the base axis by.": [""], "Decimal Character": ["Десятичный разделитель"], "Deck.gl - 3D Grid": ["Deck.gl - 3D сетка"], "Deck.gl - Arc": ["Deck.gl - Дуга"], @@ -1794,7 +1796,6 @@ ], "Display row level total": ["Отображать общий итог по строке"], "Display settings": ["Настройки отображения"], - "Display total row/column": ["Отобразить общую строку/столбец"], "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ "" ], @@ -1856,22 +1857,7 @@ "Drop a temporal column here or click": [ "Перетащите столбец формата дата/время сюда" ], - "Drop column here": [ - "Перетащите столбец сюда", - "Перетащите столбцы сюда", - "Перетащите столбцы сюда" - ], - "Drop column or metric here": [ - "Перетащите столбец или меру сюда", - "Перетащите столбцы или меры сюда", - "Перетащите столбцы или меры сюда" - ], - "Drop columns here": ["Перетащите столбцы сюда"], - "Drop columns or metrics here": ["Перетащите столбцы или меры сюда"], "Drop columns/metrics here or click": ["Перетащите столбцы/меры сюда"], - "Drop temporal column here": [ - "Перетащите столбец формата дата/время сюда" - ], "Duplicate": ["Дублировать"], "Duplicate column name(s): %(columns)s": [ "Повторяющееся имя столбца(ов): %(columns)s" @@ -2152,6 +2138,7 @@ "Failed to execute %(query)s": [""], "Failed to load chart data": ["Не удалось загрузить данные графика"], "Failed to load chart data.": ["Не удалось загрузить данные графика."], + "Failed to load dimensions for drill by": [""], "Failed to retrieve advanced type": [ "Не удалось получить расширенный тип" ], @@ -2188,7 +2175,6 @@ "Filter List": ["Список фильтров"], "Filter Settings": ["Настройки фильтра"], "Filter Type": ["Тип фильтра"], - "Filter box": ["Фильтр-виджет"], "Filter configuration": ["Настройки фильтра"], "Filter configuration for the filter box": [ "Настройки фильтра для \"Фильтр-виджета\"" @@ -2330,9 +2316,6 @@ "Grid Size": ["Размер сетки"], "Group By": ["Группировать по"], "Group By filter plugin": [""], - "Group By' and 'Columns' can't overlap": [ - "Измерения и Столбцы не могут повторяться" - ], "Group By, Metrics or Percentage Metrics must have a value": [ "Измерения, Меры или Процентные меры должны иметь значение" ], @@ -2460,6 +2443,10 @@ ], "Instant filtering": ["Мгновенная Фильтрация"], "Intensity": ["Насыщенность"], + "Intensity Radius is the radius at which the weight is distributed": [""], + "Intensity is the value multiplied by the weight to obtain the final weight": [ + "" + ], "Interpret Datetime Format Automatically": [ "Автоматически интерпретировать формат дата/время" ], @@ -2508,6 +2495,7 @@ "Недопустимые настройки для %(rolling_type)s: %(options)s" ], "Invalid permalink key": [""], + "Invalid reference to column: \"%(column)s\"": [""], "Invalid result type: %(result_type)s": [ "Недопустимый тип ответа: %(result_type)s" ], @@ -2932,7 +2920,6 @@ "Нет баз данных, удовлетворяющих вашему поиску" ], "No description available.": ["Описание отсутствует."], - "No dimensions available for drill by": [""], "No favorite charts yet, go click on stars!": [ "Пока нет избранных графиков, для добавления в избранное нажмите на звездочку рядом с графиком" ], @@ -3146,7 +3133,6 @@ "Optional warning about use of this metric": [ "Необязательное предупреждение об использовании этой меры" ], - "Optionally add a detailed description": [""], "Options": ["Опции"], "Or choose from a list of other databases we support:": [ "Или выберите из списка других поддерживаемых баз данных:" @@ -3278,9 +3264,7 @@ "Pie Chart": ["Круговая диаграмма"], "Pie shape": ["Форма круговой диаграммы"], "Pin": ["Закрепить"], - "Pivot Options": ["Параметры сводной таблицы"], "Pivot Table": ["Сводная таблица"], - "Pivot Table (legacy)": ["Сводная таблица (устарело)"], "Pivot operation must include at least one aggregate": [""], "Pivot operation requires at least one index": [""], "Pivoted": ["Сводные данные"], @@ -3303,10 +3287,6 @@ "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ "Пожалуйста, проверьте параметры вашего шаблона на наличие синтаксических ошибок и убедитесь, что они совпадают с вашим SQL-запросом и заданными параметрами. Затем попробуйте выполнить свой запрос еще раз." ], - "Please choose at least one 'Group by' field": [ - "Выберите хотя бы одно поле \"Группировать по\"" - ], - "Please choose at least one metric": ["Выберите хотя бы одну меру"], "Please choose different metrics on left and right axis": [ "Выберите разные меры для левой и правой осей" ], @@ -3362,6 +3342,7 @@ "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ "Порт %(port)s хоста \"%(hostname)s\" отказал в подключении." ], + "Port out of range 0-65535": [""], "Position of child node label on tree": [ "Расположение метки дочерней вершины на дереве" ], @@ -3648,6 +3629,7 @@ "Rows subtotal position": ["Расположение строк подытогов"], "Rows to Read": ["Строки для чтения"], "Rule": ["Правило"], + "Rule added": [""], "Run": ["Выполнить"], "Run a query to display query history": [ "Выполните запрос для отображения истории" @@ -3869,6 +3851,12 @@ "Select the Annotation Layer you would like to use.": [ "Выбрать слой аннотации, который вы хотите использовать." ], + "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" + ], + "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" + ], "Select the geojson column": ["Выберите geojson столбец"], "Select the number of bins for the histogram": [ "Выберите количество столбцов для гистограммы" @@ -4204,7 +4192,6 @@ ], "Supported databases": ["Поддерживаемые базы данных"], "Survey Responses": [""], - "Swap Groups and Columns": ["Поменять местами группы и столбцы"], "Swap dataset": ["Сменить датасет"], "Swap rows and columns": ["Поменять местами строки и столбцы"], "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ @@ -4217,6 +4204,9 @@ "Symbol of two ends of edge line": [""], "Sync columns from source": ["Синхронизировать столбцы из источника"], "Syntax": [""], + "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ + "" + ], "TABLES": ["ТАБЛИЦЫ"], "THU": ["ЧТ"], "TUE": ["ВТ"], @@ -4569,6 +4559,9 @@ "The user seems to have been deleted": [ "Пользователь, похоже, был удален" ], + "The user/password combination is not valid (Incorrect password for user).": [ + "" + ], "The username \"%(username)s\" does not exist.": [ "Пользователь \"%(username)s\" не существует." ], @@ -4717,7 +4710,7 @@ "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ "Это может быть как IP адрес (например, 127.0.0.1), так и доменное имя (например, моябазаданных.рф)." ], - "This chart emits/applies cross-filters to other charts that use the same dataset": [ + "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ "" ], "This chart has been moved to a different filter scope.": [ @@ -4953,7 +4946,6 @@ "To get a readable URL for your dashboard": [ "Для получения читаемого URL-адреса дашборда" ], - "Too many columns to filter": ["Слишком много столбцов для фильтрации"], "Tools": ["Инструменты"], "Tooltip": ["Всплывающая подсказка"], "Tooltip sort by metric": ["Сортировка данных подсказки по мере"], @@ -4969,7 +4961,6 @@ "Track job": ["Отслеживать работу"], "Transformable": ["Трансформируемый"], "Transparent": ["Прозрачный"], - "Transpose Pivot": ["Транспонировать таблицу"], "Transpose pivot": ["Транспонировать таблицу"], "Tree Chart": ["Древовидная диаграмма"], "Tree layout": ["Оформление дерева"], @@ -5023,6 +5014,8 @@ "" ], "Unable to create chart without a query id.": [""], + "Unable to decode value": [""], + "Unable to encode value": [""], "Unable to find such a holiday: [%(holiday)s]": [ "Не удалось найти такой праздник: [%(holiday)s]" ], @@ -5156,9 +5149,6 @@ "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ "" ], - "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location.\n\n This chart is being deprecated and we recommend checking out Pivot Table V2 instead!": [ - "Используется для обобщения набора данных путем группировки нескольких показателей по двум осям. Примеры: показатели продаж по регионам и месяцам, задачи по статусу и назначенному лицу, активные пользователи по возрасту и местоположению.\n Этот график устарел, рекомендуется использовать график Сводная Таблица 2." - ], "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ "Используется для обобщения набора данных путем группировки нескольких показателей по двум осям. Примеры: показатели продаж по регионам и месяцам, задачи по статусу и назначенному лицу, активные пользователи по возрасту и местоположению." ], @@ -5175,6 +5165,9 @@ ], "User query": ["Пользовательский запрос"], "Username": ["Имя пользователя"], + "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ + "" + ], "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ "Использует индикатор для демонстрации прогресса показателя в достижении цели. Положение циферблата показывает ход выполнения, а конечное значение на индикаторе представляет целевое значение." ], @@ -5819,6 +5812,7 @@ "например, столбец \"идентификатор пользователя\"" ], "edit mode": ["режиме редактирования"], + "error dark": [""], "every": ["каждые"], "every day of the month": ["каждый день месяца"], "every day of the week": ["каждый день недели"], @@ -5837,7 +5831,6 @@ ], "function type icon": [""], "geohash (square)": [""], - "green": ["Зеленая"], "heatmap": ["тепловая карта"], "heatmap: values are normalized across the entire heatmap": [ "тепловая карта: значения нормализованы внутри всей карты" @@ -5915,7 +5908,6 @@ "reboot": ["обновить"], "recent": ["недавние"], "recents": ["недавние(их)"], - "red": ["Красная"], "report": ["рассылка"], "reports": ["рассылки"], "restore zoom": ["восстановить масштабирование"], @@ -5962,7 +5954,6 @@ "y: значения нормализованы внутри каждой строки" ], "year": ["год"], - "yellow": ["Желтая"], "zoom area": [""] } } diff --git a/superset/translations/ru/LC_MESSAGES/messages.po b/superset/translations/ru/LC_MESSAGES/messages.po index ca7b22af23..59c74741c2 100644 --- a/superset/translations/ru/LC_MESSAGES/messages.po +++ b/superset/translations/ru/LC_MESSAGES/messages.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-04-07 19:09+0200\n" +"POT-Creation-Date: 2023-05-23 16:30-0300\n" "PO-Revision-Date: 2023-01-09 14:32+0300\n" "Last-Translator: Artem Shumeiko\n" "Language: ru\n" @@ -42,7 +42,7 @@ msgstr "" " Он не будет сохранен при сохранении графика.\n" " " -#: superset/reports/notifications/email.py:88 +#: superset/reports/notifications/email.py:89 #, python-format msgid "" "\n" @@ -66,11 +66,11 @@ msgstr "" " Установите прозрачность 0, если вы не хотите переписывать цвет, " "указанный в GeoJSON" -#: superset-frontend/src/explore/components/SaveModal.tsx:364 +#: superset-frontend/src/explore/components/SaveModal.tsx:399 msgid " a dashboard OR " msgstr " дашборд или " -#: superset-frontend/src/explore/components/SaveModal.tsx:366 +#: superset-frontend/src/explore/components/SaveModal.tsx:401 msgid " a new one" msgstr " новый" @@ -108,7 +108,7 @@ msgstr "" "будут использованы необязательные значения по умолчанию на уровне имен " "для каждой базы данных/столбца с помощью дополнительного параметра." -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:334 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:340 msgid " to add calculated columns" msgstr " для добавления вычисляемых столбцов" @@ -120,8 +120,8 @@ msgstr " для добавления мер" msgid " to edit or add columns and metrics." msgstr " для редактирования или добавления столбцов и мер." -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:323 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:358 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:364 msgid " to mark a column as a time column" msgstr ", чтобы пометить столбец как столбец даты/времени" @@ -129,7 +129,7 @@ msgstr ", чтобы пометить столбец как столбец да msgid " to open SQL Lab. From there you can save the query as a dataset." msgstr " в Лаборатории SQL. Там вы сможете сохранить запрос как датасет." -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:333 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 msgid " to visualize your data." msgstr " для визуализации ваших данных." @@ -137,7 +137,7 @@ msgstr " для визуализации ваших данных." msgid "!= (Is not equal)" msgstr "!= (не равно)" -#: superset/security/analytics_db_safety.py:44 +#: superset/security/analytics_db_safety.py:48 #, python-format msgid "%(dialect)s cannot be used as a data source for security reasons." msgstr "" @@ -155,7 +155,7 @@ msgstr "" "Возможные причины: \n" "%(issues)s" -#: superset/reports/notifications/email.py:168 +#: superset/reports/notifications/email.py:171 #, python-format msgid "%(name)s.csv" msgstr "%(name)s.csv" @@ -185,14 +185,14 @@ msgstr "%(other)s %(tableName)s появятся здесь после доба msgid "%(other)s saved queries will appear here" msgstr "%(other)s %(tableName)s появятся здесь после добавления" -#: superset/reports/notifications/email.py:177 +#: superset/reports/notifications/email.py:180 #, python-format msgid "%(prefix)s %(title)s" msgstr "%(prefix)s %(title)s" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:345 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:363 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:377 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:338 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:356 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:370 #, python-format msgid "%(rows)d rows returned" msgstr "Получено строк: %(rows)d" @@ -222,7 +222,7 @@ msgstr[2] "" "%(firstSuggestions)s или %(lastSuggestion)s вместо " "\"%(undefinedParameter)s\"?" -#: superset/views/core.py:384 +#: superset/views/core.py:385 #, python-format msgid "" "%(user)s was granted the role %(role)s that gives access to the " @@ -231,12 +231,12 @@ msgstr "" "%(user)s была назначена роль %(role)s, которая дает доступ к " "%(datasource)s" -#: superset/views/core.py:2672 +#: superset/views/core.py:2709 #, python-format msgid "%(user)s's profile" msgstr "%(user)s - профиль" -#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2327 +#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2369 #, python-format msgid "" "%(validator)s was unable to check your query.\n" @@ -253,25 +253,25 @@ msgid "%s Error" msgstr "%s Ошибка" #: superset-frontend/src/components/ImportModal/index.tsx:298 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1300 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1355 #, python-format msgid "%s PASSWORD" msgstr "%s ПАРОЛЬ" #: superset-frontend/src/components/ImportModal/index.tsx:318 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1318 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1373 #, python-format msgid "%s SSH TUNNEL PASSWORD" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:341 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1336 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1391 #, python-format msgid "%s SSH TUNNEL PRIVATE KEY" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:363 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1356 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1411 #, fuzzy, python-format msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" msgstr "Пароль приватного ключа" @@ -281,17 +281,17 @@ msgstr "Пароль приватного ключа" msgid "%s Selected" msgstr "%s Выбрано" -#: superset-frontend/src/pages/DatasetList/index.tsx:808 +#: superset-frontend/src/pages/DatasetList/index.tsx:830 #, python-format msgid "%s Selected (%s Physical, %s Virtual)" msgstr "%s Выбрано (%s Физические, %s Виртуальные)" -#: superset-frontend/src/pages/DatasetList/index.tsx:801 +#: superset-frontend/src/pages/DatasetList/index.tsx:823 #, python-format msgid "%s Selected (Physical)" msgstr "%s Выбрано (Физические)" -#: superset-frontend/src/pages/DatasetList/index.tsx:794 +#: superset-frontend/src/pages/DatasetList/index.tsx:816 #, python-format msgid "%s Selected (Virtual)" msgstr "%s Выбрано (Виртуальные)" @@ -301,8 +301,8 @@ msgstr "%s Выбрано (Виртуальные)" msgid "%s aggregates(s)" msgstr "Агрегатных функций: %s" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:274 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:371 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:280 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:377 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:346 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 #, python-format @@ -343,8 +343,8 @@ msgstr[2] "%s строк" msgid "%s saved metric(s)" msgstr "Сохраненная мер: %s" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:636 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:652 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:639 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:655 #, python-format msgid "%s updated" msgstr "Обновлено: %s" @@ -361,7 +361,7 @@ msgstr "%s%s" msgid "%s-%s of %s" msgstr "%s-%s из %s" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:115 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:116 msgid "(Removed)" msgstr "(Удалено)" @@ -426,11 +426,11 @@ msgstr "" msgid "+ %s more" msgstr "+ еще %s" -#: superset/views/database/forms.py:153 +#: superset/views/database/forms.py:163 msgid "," msgstr "," -#: superset-frontend/src/SqlLab/actions/sqlLab.js:656 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:652 msgid "" "-- Note: Unless you save your query, these tabs will NOT persist if you " "clear your cookies or change browsers.\n" @@ -440,11 +440,11 @@ msgstr "" "сохранены, если вы очистите куки или смените браузер.\n" "\n" -#: superset/views/database/forms.py:154 +#: superset/views/database/forms.py:164 msgid "." msgstr "." -#: superset-frontend/src/pages/DatasetList/index.tsx:791 +#: superset-frontend/src/pages/DatasetList/index.tsx:813 msgid "0 Selected" msgstr "0 выбрано" @@ -536,7 +536,7 @@ msgstr "Годовая частота (конец года)" msgid "1 year start frequency" msgstr "Годовая частота (начало года)" -#: superset/db_engine_specs/base.py:101 +#: superset/db_engine_specs/base.py:102 msgid "10 minute" msgstr "10 минут" @@ -551,7 +551,7 @@ msgstr "104 недели" msgid "104 weeks ago" msgstr "104 недели назад" -#: superset/db_engine_specs/base.py:102 +#: superset/db_engine_specs/base.py:103 msgid "15 minute" msgstr "15 минут" @@ -666,7 +666,7 @@ msgstr "30 дней" msgid "30 days ago" msgstr "30 дней назад" -#: superset/db_engine_specs/base.py:103 +#: superset/db_engine_specs/base.py:104 msgid "30 minute" msgstr "30 минут" @@ -675,7 +675,7 @@ msgstr "30 минут" msgid "30 minutes" msgstr "30 минут" -#: superset/db_engine_specs/base.py:98 +#: superset/db_engine_specs/base.py:99 msgid "30 second" msgstr "30 секунд" @@ -695,7 +695,7 @@ msgstr "3D карты" msgid "4 weeks (freq=4W-MON)" msgstr "4 недели (част=4W-MON)" -#: superset/db_engine_specs/base.py:100 +#: superset/db_engine_specs/base.py:101 msgid "5 minute" msgstr "5 минут" @@ -704,7 +704,7 @@ msgstr "5 минут" msgid "5 minutes" msgstr "5 минут" -#: superset/db_engine_specs/base.py:97 +#: superset/db_engine_specs/base.py:98 msgid "5 second" msgstr "5 секунд" @@ -730,7 +730,7 @@ msgstr "52 недели с началом в Понедельник (част=52 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 #: superset-frontend/src/explore/controls.jsx:261 -#: superset/db_engine_specs/base.py:105 +#: superset/db_engine_specs/base.py:106 msgid "6 hour" msgstr "6 часов" @@ -813,19 +813,19 @@ msgstr ">= (больше или равно)" msgid "A Big Number" msgstr "Карточка" -#: superset/views/database/forms.py:184 +#: superset/views/database/forms.py:194 msgid "A comma separated list of columns that should be parsed as dates" msgstr "" "Разделённый запятыми список столбцов, которые должны быть " "интерпретированы как даты." -#: superset/views/database/forms.py:367 +#: superset/views/database/forms.py:377 msgid "A comma separated list of columns that should be parsed as dates." msgstr "" "Разделённый запятыми список столбцов, которые должны быть " "интерпретированы как даты." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:433 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 msgid "A comma-separated list of schemas that files are allowed to upload to." msgstr "Разделённый запятыми список схем, в которые можно загружать файлы." @@ -833,6 +833,12 @@ msgstr "Разделённый запятыми список схем, в кот msgid "A database with the same name already exists." msgstr "База данных с таким же именем уже существует" +#: superset/views/database/forms.py:145 +msgid "" +"A dictionary with column names and their data types if you need to change" +" the defaults. Example: {\"user_id\":\"integer\"}" +msgstr "" + #: superset/views/dynamic_plugins.py:52 msgid "" "A full URL pointing to the location of the built plugin (could be hosted " @@ -903,16 +909,16 @@ msgstr "" msgid "A report named \"%(name)s\" already exists" msgstr "Рассылка с именем \"%(name)s\" уже существует" -#: superset-frontend/src/explore/components/SaveModal.tsx:333 +#: superset-frontend/src/explore/components/SaveModal.tsx:368 msgid "A reusable dataset will be saved with your chart." msgstr "Переиспользуемый датасет будет сохранен с вашим графиком." -#: superset-frontend/src/components/ReportModal/index.tsx:309 +#: superset-frontend/src/components/ReportModal/index.tsx:308 msgid "A screenshot of the dashboard will be sent to your email at" msgstr "Скриншот дашборда будет отправлен на ваш электронный адрес" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 -#: superset/connectors/sqla/views.py:458 +#: superset/connectors/sqla/views.py:365 msgid "" "A set of parameters that become available in the query using Jinja " "templating syntax" @@ -961,8 +967,8 @@ msgstr "ПРИМЕНИТЬ" msgid "APR" msgstr "АПР" -#: superset-frontend/src/pages/DatabaseList/index.tsx:312 -#: superset-frontend/src/pages/DatabaseList/index.tsx:478 +#: superset-frontend/src/pages/DatabaseList/index.tsx:323 +#: superset-frontend/src/pages/DatabaseList/index.tsx:489 msgid "AQE" msgstr "Асинхронные запросы" @@ -989,7 +995,7 @@ msgstr "О программе" msgid "Access" msgstr "Доступ" -#: superset/initialization/__init__.py:431 +#: superset/initialization/__init__.py:425 msgid "Access requests" msgstr "Запросы доступа" @@ -1001,7 +1007,7 @@ msgstr "Запрещен доступ к истории действий пол msgid "Access token" msgstr "Токен доступа" -#: superset/views/core.py:317 +#: superset/views/core.py:318 msgid "Access was requested" msgstr "Доступ запрошен" @@ -1009,7 +1015,7 @@ msgstr "Доступ запрошен" msgid "Action" msgstr "Действие" -#: superset/initialization/__init__.py:393 +#: superset/initialization/__init__.py:387 msgid "Action Log" msgstr "Журнал действий" @@ -1020,9 +1026,10 @@ msgstr "Журнал действий" #: superset-frontend/src/pages/ChartList/index.tsx:569 #: superset-frontend/src/pages/CssTemplateList/index.tsx:229 #: superset-frontend/src/pages/DashboardList/index.tsx:477 -#: superset-frontend/src/pages/DatabaseList/index.tsx:448 -#: superset-frontend/src/pages/DatasetList/index.tsx:488 +#: superset-frontend/src/pages/DatabaseList/index.tsx:459 +#: superset-frontend/src/pages/DatasetList/index.tsx:499 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:327 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:216 #: superset-frontend/src/pages/SavedQueryList/index.tsx:437 #: superset-frontend/src/pages/Tags/index.tsx:171 msgid "Actions" @@ -1052,18 +1059,19 @@ msgstr "Фактическое значение" msgid "Actual values" msgstr "Фактические значения" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:35 -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 #: superset-frontend/src/explore/controls.jsx:78 #: superset-frontend/src/explore/controls.jsx:101 msgid "Adaptive formatting" msgstr "Адаптивное форматирование" -#: superset-frontend/src/components/ReportModal/index.tsx:229 +#: superset-frontend/src/components/ReportModal/index.tsx:228 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 #: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 #: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 msgid "Add" msgstr "Добавить" @@ -1083,7 +1091,7 @@ msgstr "Добавить CSS шаблоны" msgid "Add Chart" msgstr "Добавить график" -#: superset/connectors/sqla/views.py:74 +#: superset/connectors/sqla/views.py:73 msgid "Add Column" msgstr "Добавить столбец" @@ -1099,7 +1107,7 @@ msgstr "Добавить базу данных" msgid "Add Log" msgstr "Добавить запись" -#: superset/connectors/sqla/views.py:209 +#: superset/connectors/sqla/views.py:208 msgid "Add Metric" msgstr "Добавить меру" @@ -1107,10 +1115,10 @@ msgstr "Добавить меру" msgid "Add Report" msgstr "Добавить рассылку" -#: superset/connectors/sqla/views.py:292 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 #, fuzzy -msgid "Add Row level security filter" -msgstr "Безопасность на уровне строк" +msgid "Add Rule" +msgstr "Неверная формула." #: superset/views/sql_lab/views.py:54 msgid "Add Saved Query" @@ -1124,11 +1132,11 @@ msgstr "Добавить плагин" msgid "Add a dataset" msgstr "Добавить датасет" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:262 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:272 msgid "Add a new tab" msgstr "Новая вкладка" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:286 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:296 msgid "Add a new tab to create SQL Query" msgstr "Откройте новую вкладку для создания SQL запроса" @@ -1158,24 +1166,28 @@ msgstr "Добавить аннотацию" msgid "Add annotation layer" msgstr "Добавить слой аннотации" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:300 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:306 msgid "Add calculated columns to dataset in \"Edit datasource\" modal" msgstr "Добавьте новые вычисляемые столбцы в датасет в настройках датасета" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:297 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:303 msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" msgstr "Добавьте новые столбцы формата дата/время в датасет в настройках датасета" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:167 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:197 #, fuzzy msgid "Add cross-filter" msgstr "Задать область действия кросс-фильтра" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 +msgid "Add custom scoping" +msgstr "" + #: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 msgid "Add delivery method" msgstr "Добавить способ оповещения" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:330 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 msgid "Add extra connection information." msgstr "Дополнительная информация по подключению" @@ -1245,7 +1257,7 @@ msgstr "Задайте имя графика" msgid "Add the name of the dashboard" msgstr "Задайте имя дашборда" -#: superset-frontend/src/explore/components/SaveModal.tsx:351 +#: superset-frontend/src/explore/components/SaveModal.tsx:386 msgid "Add to dashboard" msgstr "Добавить в дашборд" @@ -1271,7 +1283,7 @@ msgstr[2] "Добавлено в %s дашбордов" msgid "Additional Parameters" msgstr "Дополнительные параметры" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1787 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1843 msgid "Additional fields may be required" msgstr "" @@ -1283,16 +1295,16 @@ msgstr "Дополнительная информация" msgid "Additional metadata" msgstr "Дополнительные метаданные" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:54 msgid "Additional padding for legend." msgstr "Дополнительный отступ для легенды" -#: superset/db_engine_specs/base.py:1847 -#: superset/db_engine_specs/clickhouse.py:214 +#: superset/db_engine_specs/base.py:1885 +#: superset/db_engine_specs/clickhouse.py:221 msgid "Additional parameters" msgstr "Дополнительные параметры" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:444 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 msgid "Additional settings." msgstr "Дополнительная настройка" @@ -1307,17 +1319,18 @@ msgstr "Дополнительный текст перед значением, msgid "Additive" msgstr "Смешанный" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:75 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 msgid "Adjust how this database will interact with SQL Lab." msgstr "Настройка взаимодействия базы данных с Лабораторией SQL" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:221 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:231 msgid "Adjust performance settings of this database." msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:132 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:91 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:127 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:93 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 @@ -1326,7 +1339,7 @@ msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:939 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:771 #: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1811 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 msgid "Advanced" msgstr "Продвинутая настройка" @@ -1424,7 +1437,6 @@ msgstr "" "Агрегатная функция, применяемая для списка точек в каждом кластере для " "создания метки кластера." -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:63 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:202 msgid "" "Aggregate function to apply when pivoting and computing the total rows " @@ -1439,12 +1451,15 @@ msgid "" " values to a dynamic color scale" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +#, fuzzy +msgid "Aggregation" +msgstr "агрегатная функция" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 msgid "Aggregation function" msgstr "Функция агрегирования" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:593 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:162 #, fuzzy msgid "Alert" @@ -1524,7 +1539,7 @@ msgstr "Неверная конфигурация валидатора опов msgid "Alerts" msgstr "Оповещения" -#: superset/initialization/__init__.py:410 +#: superset/initialization/__init__.py:404 msgid "Alerts & Reports" msgstr "Оповещения и отчеты" @@ -1550,8 +1565,8 @@ msgstr "Выровнять +/-" #: superset-frontend/src/pages/DashboardList/index.tsx:528 #: superset-frontend/src/pages/DashboardList/index.tsx:550 #: superset-frontend/src/pages/DashboardList/index.tsx:600 -#: superset-frontend/src/pages/DatabaseList/index.tsx:465 -#: superset-frontend/src/pages/DatabaseList/index.tsx:485 +#: superset-frontend/src/pages/DatabaseList/index.tsx:476 +#: superset-frontend/src/pages/DatabaseList/index.tsx:496 #: superset-frontend/src/pages/Home/index.tsx:205 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:354 #: superset-frontend/src/pages/SavedQueryList/index.tsx:453 @@ -1560,7 +1575,7 @@ msgid "All" msgstr "Все" #: superset-frontend/src/pages/AllEntities/index.tsx:76 -#: superset/initialization/__init__.py:376 +#: superset/initialization/__init__.py:370 #, fuzzy msgid "All Entities" msgstr "категории" @@ -1572,13 +1587,18 @@ msgstr "категории" msgid "All Text" msgstr "Весь текст" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 #: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:69 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 #: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:85 #: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:128 msgid "All charts" msgstr "Все графики" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 +msgid "All charts/global scoping" +msgstr "" + #: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 msgid "All filters" msgstr "Все фильтры" @@ -1588,7 +1608,7 @@ msgstr "Все фильтры" msgid "All filters (%(filterCount)d)" msgstr "Все фильтры (%(filterCount)d)" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:49 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 msgid "All panels" msgstr "Все панели" @@ -1596,7 +1616,7 @@ msgstr "Все панели" msgid "All panels with this column will be affected by this filter" msgstr "Фильтр будет применён ко всем панелям с этим столбцом" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:107 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 #: superset/views/database/mixins.py:184 msgid "Allow CREATE TABLE AS" msgstr "Разрешить CREATE TABLE AS" @@ -1605,7 +1625,7 @@ msgstr "Разрешить CREATE TABLE AS" msgid "Allow CREATE TABLE AS option in SQL Lab" msgstr "Разрешить CREATE TABLE AS в Лаборатории SQL" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:121 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 #: superset/views/database/mixins.py:185 msgid "Allow CREATE VIEW AS" msgstr "Разрешить CREATE VIEW AS" @@ -1618,7 +1638,7 @@ msgstr "Разрешить CREATE VIEW AS в Лаборатории SQL" msgid "Allow Csv Upload" msgstr "Разрешить загрузку CSV" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 #: superset/views/database/mixins.py:186 msgid "Allow DML" msgstr "Разрешить DML" @@ -1627,15 +1647,15 @@ msgstr "Разрешить DML" msgid "Allow columns to be rearranged" msgstr "Разрешить смену столбцов местами" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:110 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 msgid "Allow creation of new tables based on queries" msgstr "Разрешить создание новых таблиц на основе запросов" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:124 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 msgid "Allow creation of new views based on queries" msgstr "Разрешить создание новых представлений на основе запросов" -#: superset-frontend/src/pages/DatabaseList/index.tsx:329 +#: superset-frontend/src/pages/DatabaseList/index.tsx:340 msgid "Allow data manipulation language" msgstr "Разрешить операции вставки, обновления и удаления данных" @@ -1648,11 +1668,11 @@ msgstr "" "заголовки. Заметьте, такие изменения будут нейтрализованы при следующем " "обращении к дашборду." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:411 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:421 msgid "Allow file uploads to database" msgstr "Разрешить загрузку файлов в базу данных" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:157 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 msgid "" "Allow manipulation of the database using non-SELECT statements such as " "UPDATE, DELETE, CREATE, etc." @@ -1672,11 +1692,11 @@ msgstr "Разрешить выбор вершин" msgid "Allow sending multiple polygons as a filter event" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:186 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 msgid "Allow this database to be explored" msgstr "Разрешить изучение этой базы данных" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:91 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 msgid "Allow this database to be queried in SQL Lab" msgstr "Разрешить запросы к этой базе данных в Лаборатории SQL" @@ -1719,7 +1739,7 @@ msgstr "Произошла ошибка" msgid "An alert named \"%(name)s\" already exists" msgstr "Оповещение с именем \"%(name)s\" уже существует" -#: superset/common/query_context_processor.py:326 superset/viz.py:1447 +#: superset/common/query_context_processor.py:326 superset/viz.py:1352 msgid "" "An enclosed time range (both start and end) must be specified when using " "a Time Comparison." @@ -1727,14 +1747,14 @@ msgstr "" "При использовании сравнения времени необходимо указать закрытый временной" " интервал (как начало, так и конец)." -#: superset/databases/schemas.py:285 +#: superset/databases/schemas.py:289 msgid "" "An engine must be specified when passing individual parameters to a " "database." msgstr "Движок должен быть указан при передаче индивидуальных параметров к базе." #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:791 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:141 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:183 #: superset-frontend/src/components/Tags/utils.tsx:67 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:127 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:109 @@ -1749,7 +1769,7 @@ msgstr "Произошла ошибка" msgid "An error occurred" msgstr "Произошла ошибка" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:317 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:323 msgid "An error occurred saving dataset" msgstr "Произошла ошибка при сохранении датасета" @@ -1760,7 +1780,7 @@ msgstr "Произошла ошибка при сохранении датасе msgid "An error occurred while accessing the value." msgstr "Произошла ошибка при доступе к значению" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1368 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1360 msgid "" "An error occurred while collapsing the table schema. Please contact your " "administrator." @@ -1768,13 +1788,13 @@ msgstr "" "Произошла ошибка при сворачивании схемы. Пожалуйста, свяжитесь с " "администратором." -#: superset-frontend/src/views/CRUD/hooks.ts:304 +#: superset-frontend/src/views/CRUD/hooks.ts:308 #, python-format msgid "An error occurred while creating %ss: %s" msgstr "Произошла ошибка при создании %sов: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1529 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1551 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1530 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1552 msgid "An error occurred while creating the data source" msgstr "Произошла ошибка при создании источника данных" @@ -1790,7 +1810,7 @@ msgstr "Произошла ошибка при создании значения msgid "An error occurred while deleting the value." msgstr "Произошла ошибка при удалении значения" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1344 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1336 msgid "" "An error occurred while expanding the table schema. Please contact your " "administrator." @@ -1804,8 +1824,8 @@ msgid "An error occurred while fetching %s info: %s" msgstr "Произошла ошибка при получении информации о %s: %s" #: superset-frontend/src/views/CRUD/hooks.ts:174 -#: superset-frontend/src/views/CRUD/hooks.ts:261 -#: superset-frontend/src/views/CRUD/hooks.ts:349 +#: superset-frontend/src/views/CRUD/hooks.ts:265 +#: superset-frontend/src/views/CRUD/hooks.ts:353 #, python-format msgid "An error occurred while fetching %ss: %s" msgstr "Произошла ошибка при получении: %s: %s" @@ -1849,7 +1869,7 @@ msgstr "Произошла ошибка при получении дашборд msgid "An error occurred while fetching dashboards: %s" msgstr "Произошла ошибка при получении дашбордов: %s" -#: superset-frontend/src/pages/DatabaseList/index.tsx:145 +#: superset-frontend/src/pages/DatabaseList/index.tsx:156 #, python-format msgid "An error occurred while fetching database related data: %s" msgstr "Произошла ошибка при получении данных о базе данных: %s" @@ -1866,26 +1886,26 @@ msgstr "Произошла ошибка при получении значени msgid "An error occurred while fetching dataset datasource values: %s" msgstr "Произошла ошибка при получении значений датасета: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:510 +#: superset-frontend/src/pages/DatasetList/index.tsx:521 #, python-format msgid "An error occurred while fetching dataset owner values: %s" msgstr "Произошла ошибка при получении владельца датасета: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:222 +#: superset-frontend/src/pages/DatasetList/index.tsx:233 msgid "An error occurred while fetching dataset related data" msgstr "Произошла ошибка при получении метаданных датасета" -#: superset-frontend/src/pages/DatasetList/index.tsx:242 +#: superset-frontend/src/pages/DatasetList/index.tsx:253 #, python-format msgid "An error occurred while fetching dataset related data: %s" msgstr "Произошла ошибка при получении данных о датасете: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:530 +#: superset-frontend/src/pages/DatasetList/index.tsx:541 #, python-format msgid "An error occurred while fetching datasets: %s" msgstr "Произошла ошибка при получении датасетов: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1581 +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx:120 msgid "An error occurred while fetching function names." msgstr "Произошла ошибка при получении имен функций" @@ -1894,23 +1914,23 @@ msgstr "Произошла ошибка при получении имен фу msgid "An error occurred while fetching owners values: %s" msgstr "Произошла ошибка при получении владельцев графика: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:546 +#: superset-frontend/src/pages/DatasetList/index.tsx:557 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:378 #: superset-frontend/src/pages/SavedQueryList/index.tsx:480 #, python-format msgid "An error occurred while fetching schema values: %s" msgstr "Произошла ошибка при извлечении значений схемы: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:799 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:795 msgid "An error occurred while fetching tab state" msgstr "Произошла ошибка при получении данных вкладки" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1199 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1224 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1191 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1216 msgid "An error occurred while fetching table metadata" msgstr "Произошла ошибка при получении метаданных из таблицы" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1296 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1288 msgid "" "An error occurred while fetching table metadata. Please contact your " "administrator." @@ -1928,7 +1948,7 @@ msgstr "Произошла ошибка при построении график msgid "An error occurred while fetching user values: %s" msgstr "Произошла ошибка при извлечении пользовательских значений: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:835 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:831 msgid "" "An error occurred while hiding the left bar. Please contact your " "administrator." @@ -1936,17 +1956,22 @@ msgstr "" "Произошла ошибка при сворачивании левой панели. Пожалуйста, свяжитесь с " "администратором." -#: superset-frontend/src/views/CRUD/hooks.ts:502 -#: superset-frontend/src/views/CRUD/hooks.ts:518 +#: superset-frontend/src/views/CRUD/hooks.ts:506 +#: superset-frontend/src/views/CRUD/hooks.ts:522 #, python-format msgid "An error occurred while importing %s: %s" msgstr "Произошла ошибка при попытке импортировать %s: %s" +#: superset-frontend/src/explore/components/SaveModal.tsx:135 +#, fuzzy +msgid "An error occurred while loading dashboard information." +msgstr "Произошла ошибка при получении дашбордов" + #: superset-frontend/src/components/Chart/chartAction.js:579 msgid "An error occurred while loading the SQL" msgstr "Произошла ошибка при загрузке SQL" -#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:332 +#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:325 msgid "An error occurred while opening Explore" msgstr "Произошла ошибка при открытии режима исследования" @@ -1958,19 +1983,19 @@ msgstr "Произошла ошибка при парсинге ключа." msgid "An error occurred while pruning logs " msgstr "Произошла ошибка при удалении журналов " -#: superset-frontend/src/SqlLab/actions/sqlLab.js:892 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:888 msgid "An error occurred while removing query. Please contact your administrator." msgstr "" "Произошла ошибка при удалении запроса. Пожалуйста, свяжитесь с " "администратором." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:857 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:853 msgid "An error occurred while removing tab. Please contact your administrator." msgstr "" "Произошла ошибка при удалении вкладки. Пожалуйста, свяжитесь с " "администратором." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1396 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1388 msgid "" "An error occurred while removing the table schema. Please contact your " "administrator." @@ -1983,7 +2008,7 @@ msgstr "" msgid "An error occurred while rendering the visualization: %s" msgstr "Произошла ошибка при построении графика: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:710 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:706 msgid "" "An error occurred while setting the active tab. Please contact your " "administrator." @@ -1991,7 +2016,7 @@ msgstr "" "Произошла ошибка при установке активной вкладки. Пожалуйста, свяжитесь с " "администратором." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:975 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:967 msgid "" "An error occurred while setting the tab autorun. Please contact your " "administrator." @@ -1999,7 +2024,7 @@ msgstr "" "Произошла ошибка при настройке автозапуска вкладки. Пожалуйста, свяжитесь" " с администратором." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:915 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:911 msgid "" "An error occurred while setting the tab database ID. Please contact your " "administrator." @@ -2007,8 +2032,8 @@ msgstr "" "Произошла ошибка при установке ID базы данных для вкладки. Пожалуйста, " "свяжитесь с администратором." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1004 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1128 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:996 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1120 msgid "" "An error occurred while setting the tab name. Please contact your " "administrator." @@ -2016,7 +2041,7 @@ msgstr "" "Произошла ошибка при настройке заголовка вкладки. Пожалуйста, свяжитесь с" " администратором." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:946 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:942 msgid "" "An error occurred while setting the tab schema. Please contact your " "administrator." @@ -2024,7 +2049,7 @@ msgstr "" "Произошла ошибка при настройке схемы. Пожалуйста, свяжитесь с " "администратором." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1154 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1146 msgid "" "An error occurred while setting the tab template parameters. Please " "contact your administrator." @@ -2036,8 +2061,8 @@ msgstr "" msgid "An error occurred while starring this chart" msgstr "Произошла ошибка при добавлении графика в избранное" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:251 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:297 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:255 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:301 msgid "" "An error occurred while storing the latest query id in the backend. " "Please contact your administrator if this problem persists." @@ -2045,7 +2070,7 @@ msgstr "" "Возникла ошибка при попытке сохранения ID последнего запроса на сервере. " "Пожалуйста, обратитесь к вашему администратору, если проблема останется." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1095 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1087 msgid "" "An error occurred while storing your query in the backend. To avoid " "losing your changes, please save your query using the \"Save Query\" " @@ -2068,7 +2093,7 @@ msgstr "Произошла ошибка при вставке значения." msgid "An unexpected error occurred" msgstr "Произошла неожиданная ошибка" -#: superset/views/core.py:734 +#: superset/views/core.py:745 msgid "An unknown error occurred. Please contact your Superset administrator" msgstr "Произошла неизвестная ошибка. Пожалуйста, свяжитесь с администратором." @@ -2100,7 +2125,7 @@ msgstr "Слой аннотаций %s" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:127 -#: superset/initialization/__init__.py:420 +#: superset/initialization/__init__.py:414 msgid "Annotation Layers" msgstr "Слои аннотаций" @@ -2250,7 +2275,8 @@ msgstr "Не удалось удалить аннотации." #: superset-frontend/src/pages/DashboardList/index.tsx:504 #: superset-frontend/src/pages/DashboardList/index.tsx:572 #: superset-frontend/src/pages/DashboardList/index.tsx:586 -#: superset-frontend/src/pages/DatasetList/index.tsx:570 +#: superset-frontend/src/pages/DatasetList/index.tsx:581 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:260 msgid "Any" msgstr "Любой" @@ -2267,13 +2293,13 @@ msgstr "" "Любая палитра, выбранная здесь, будет перезаписывать цвета, применённые к" " отдельным графикам этого дашборда" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:953 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1008 msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " msgstr "" "Любые базы данных, подключаемые через SQL Alchemy URI, могут быть " "добавлены. " -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:967 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1022 msgid "" "Any databases that allow connections via SQL Alchemy URIs can be added. " "Learn about how to connect a database driver " @@ -2281,8 +2307,8 @@ msgstr "" "Любые базы данных, подключаемые через SQL Alchemy URI, могут быть " "добавлены. Узнайте больше о том, как подключить драйвер базы данных " -#: superset/views/database/forms.py:169 superset/views/database/forms.py:326 -#: superset/views/database/forms.py:457 +#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 +#: superset/views/database/forms.py:467 msgid "Append" msgstr "Добавить" @@ -2301,7 +2327,7 @@ msgstr "Применено фильтров: (%d)" msgid "Applied filters: %s" msgstr "Применены фильтры: %s" -#: superset/viz.py:246 +#: superset/viz.py:250 msgid "" "Applied rolling window did not return any data. Please make sure the " "source query satisfies the minimum periods defined in the rolling window." @@ -2312,11 +2338,16 @@ msgstr "" #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:856 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:228 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:476 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:479 msgid "Apply" msgstr "Применить" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:100 +#, fuzzy +msgid "Apply conditional color formatting to metric" +msgstr "Применить условное цветовое форматирование к мерам" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:386 msgid "Apply conditional color formatting to metrics" msgstr "Применить условное цветовое форматирование к мерам" @@ -2363,6 +2394,7 @@ msgstr "Вы уверены, что хотите отменить?" #: superset-frontend/src/pages/ChartList/index.tsx:509 #: superset-frontend/src/pages/DashboardList/index.tsx:418 #: superset-frontend/src/pages/DashboardList/index.tsx:739 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:173 #: superset-frontend/src/pages/Tags/index.tsx:144 msgid "Are you sure you want to delete" msgstr "Вы уверены, что хотите удалить" @@ -2389,7 +2421,7 @@ msgstr "Вы уверены, что хотите удалить выбранны msgid "Are you sure you want to delete the selected dashboards?" msgstr "Вы уверены, что хотите удалить выбранные дашборды?" -#: superset-frontend/src/pages/DatasetList/index.tsx:741 +#: superset-frontend/src/pages/DatasetList/index.tsx:763 msgid "Are you sure you want to delete the selected datasets?" msgstr "Вы уверены, что хотите удалить выбранные датасеты?" @@ -2401,6 +2433,11 @@ msgstr "Вы уверены, что хотите удалить выбранны msgid "Are you sure you want to delete the selected queries?" msgstr "Вы уверены, что хотите удалить выбранные запросы?" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:305 +#, fuzzy +msgid "Are you sure you want to delete the selected rules?" +msgstr "Вы уверены, что хотите удалить выбранные слои?" + #: superset-frontend/src/pages/Tags/index.tsx:282 #, fuzzy msgid "Are you sure you want to delete the selected tags?" @@ -2410,7 +2447,7 @@ msgstr "Вы уверены, что хотите удалить выбранны msgid "Are you sure you want to delete the selected templates?" msgstr "Вы уверены, что хотите удалить выбранные шаблоны?" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:426 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:434 msgid "Are you sure you want to overwrite this dataset?" msgstr "Вы уверены, что хотите перезаписать этот датасет?" @@ -2418,7 +2455,7 @@ msgstr "Вы уверены, что хотите перезаписать это msgid "Are you sure you want to proceed?" msgstr "Вы уверены, что хотите продолжить?" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:174 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:216 msgid "Are you sure you want to save and apply changes?" msgstr "Вы уверены, что хотите сохранить и применить изменения?" @@ -2460,7 +2497,7 @@ msgstr "Стрела" msgid "Assign a set of parameters as" msgstr "Задайте набор параметров в формате" -#: superset/connectors/sqla/views.py:476 +#: superset/connectors/sqla/views.py:383 msgid "Associated Charts" msgstr "Связанные графики" @@ -2468,9 +2505,9 @@ msgstr "Связанные графики" msgid "Async Execution" msgstr "Асинхронное выполнение" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:295 -#: superset-frontend/src/pages/DatabaseList/index.tsx:309 -#: superset-frontend/src/pages/DatabaseList/index.tsx:475 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:305 +#: superset-frontend/src/pages/DatabaseList/index.tsx:320 +#: superset-frontend/src/pages/DatabaseList/index.tsx:486 msgid "Asynchronous query execution" msgstr "Асинхронное выполнение запросов" @@ -2487,7 +2524,7 @@ msgstr "Автоматически" msgid "Auto Zoom" msgstr "Авто масштабирование" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:530 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 msgid "Autocomplete" msgstr "Автозаполнение" @@ -2512,7 +2549,7 @@ msgstr "Доступные режимы сортировки:" msgid "Average" msgstr "Среднее" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:233 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 #, fuzzy msgid "Average value" msgstr "Целевое значение" @@ -2546,10 +2583,10 @@ msgstr "Ось по убыванию" msgid "BOOLEAN" msgstr "Булевый (BOOLEAN)" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:366 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1051 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1068 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1088 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:373 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1123 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1143 msgid "Back" msgstr "Назад" @@ -2559,7 +2596,7 @@ msgstr "Назад" msgid "Back to all" msgstr "Вернуться ко всем" -#: superset-frontend/src/pages/DatabaseList/index.tsx:300 +#: superset-frontend/src/pages/DatabaseList/index.tsx:311 #: superset/views/database/mixins.py:200 msgid "Backend" msgstr "Драйвер" @@ -2573,7 +2610,7 @@ msgstr "Предыдущие значения" msgid "Bad formula." msgstr "Неверная формула." -#: superset/viz.py:2509 superset/viz.py:2545 +#: superset/viz.py:2452 superset/viz.py:2492 msgid "Bad spatial key" msgstr "Неподходящий пространственный ключ" @@ -2608,6 +2645,12 @@ msgstr "Значения столбцов" msgid "Bar orientation" msgstr "Направление столбцов" +#: superset-frontend/src/features/rls/constants.ts:28 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:263 +#, fuzzy +msgid "Base" +msgstr "база данных" + #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:239 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 msgid "Base layer map style" @@ -2623,12 +2666,12 @@ msgstr "" "Основываясь на группировке времени, количество периодов времени для " "сравнения" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:228 msgid "Based on what should series be ordered on the chart and legend" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:854 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1723 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1779 msgid "Basic" msgstr "Базовая настройка" @@ -2659,7 +2702,7 @@ msgid "Before" msgstr "До" #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:37 -#: superset/viz.py:1286 +#: superset/viz.py:1186 msgid "Big Number" msgstr "Карточка" @@ -2668,11 +2711,11 @@ msgid "Big Number Font Size" msgstr "Размер шрифта числа" #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:36 -#: superset/viz.py:1252 +#: superset/viz.py:1150 msgid "Big Number with Trendline" msgstr "Карточка с трендовой линией" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 msgid "Bottom" msgstr "Снизу" @@ -2701,7 +2744,6 @@ msgstr "Снизу вверх" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:261 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:277 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:263 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:251 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:195 @@ -2728,6 +2770,34 @@ msgstr "" "Обратите внимание, что эта функция только расширит диапазон осей. Она не " "изменит размер графика." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 +#, fuzzy +msgid "" +"Bounds for the primary Y-axis. When left empty, the bounds are " +"dynamically defined based on the min/max of the data. Note that this " +"feature will only expand the axis range. It won't narrow the data's " +"extent." +msgstr "" +"Границы для оси Y. Если оставить поле пустым, границы динамически " +"определяются на основе минимального/максимального значения данных. " +"Обратите внимание, что эта функция только расширит диапазон осей. Она не " +"изменит размер графика." + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:411 +#, fuzzy +msgid "" +"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" +" bounds are enabled. When left empty, the bounds are " +"dynamically defined\n" +" based on the min/max of the data. Note that this feature " +"will only expand\n" +" the axis range. It won't narrow the data's extent." +msgstr "" +"Границы для оси Y. Если оставить поле пустым, границы динамически " +"определяются на основе минимального/максимального значения данных. " +"Обратите внимание, что эта функция только расширит диапазон осей. Она не " +"изменит размер графика." + #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:58 #: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/createMetadata.ts:27 @@ -2740,7 +2810,7 @@ msgid "Breakdowns" msgstr "Дата создания" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:32 -#: superset/viz.py:1171 +#: superset/viz.py:1065 msgid "Bubble Chart" msgstr "Пузырьковая диаграмма" @@ -2771,14 +2841,15 @@ msgstr "Сборка" #: superset-frontend/src/pages/ChartList/index.tsx:789 #: superset-frontend/src/pages/CssTemplateList/index.tsx:262 #: superset-frontend/src/pages/DashboardList/index.tsx:662 -#: superset-frontend/src/pages/DatasetList/index.tsx:596 +#: superset-frontend/src/pages/DatasetList/index.tsx:607 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 #: superset-frontend/src/pages/SavedQueryList/index.tsx:177 #: superset-frontend/src/pages/Tags/index.tsx:267 msgid "Bulk select" msgstr "Множественный выбор" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 -#: superset/viz.py:1222 +#: superset/viz.py:1118 msgid "Bullet Chart" msgstr "Диаграмма-шкала" @@ -2794,7 +2865,7 @@ msgstr "Диаграмма-шкала" msgid "Business" msgstr "Бизнес" -#: superset/connectors/sqla/views.py:165 +#: superset/connectors/sqla/views.py:164 msgid "Business Data Type" msgstr "Тип данных бизнеса" @@ -2830,15 +2901,15 @@ msgstr "По значению: использовать значения мер msgid "CANCEL" msgstr "ОТМЕНА" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1520 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1575 msgid "CREATE DATASET" msgstr "СОЗДАТЬ ДАТАСЕТ" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:585 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:579 msgid "CREATE TABLE AS" msgstr "CREATE TABLE AS" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:596 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:590 msgid "CREATE VIEW AS" msgstr "CREATE VIEW AS" @@ -2863,7 +2934,7 @@ msgstr "CSS" msgid "CSS Styles" msgstr "CSS стили" -#: superset/initialization/__init__.py:286 superset/views/css_templates.py:38 +#: superset/initialization/__init__.py:288 superset/views/css_templates.py:38 msgid "CSS Templates" msgstr "CSS шаблоны" @@ -2896,7 +2967,7 @@ msgstr "CSS шаблоны" msgid "CSV Upload" msgstr "Загрузка CSV" -#: superset/views/database/views.py:287 +#: superset/views/database/views.py:290 #, python-format msgid "" "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " @@ -2905,19 +2976,19 @@ msgstr "" "CSV файл \"%(csv_filename)s\" загружен в таблицу \"%(table_name)s\" в " "базе данных \"%(db_name)s\"" -#: superset/views/database/views.py:160 +#: superset/views/database/views.py:161 msgid "CSV to Database configuration" msgstr "Конфигурация CSV файла для импорта в базу данных" -#: superset-frontend/src/pages/DatabaseList/index.tsx:344 +#: superset-frontend/src/pages/DatabaseList/index.tsx:355 msgid "CSV upload" msgstr "Загрузка CSV" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:130 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 msgid "CTAS & CVAS SCHEMA" msgstr "СХЕМА CTAS & CVAS" -#: superset/sql_lab.py:440 +#: superset/sql_lab.py:432 msgid "" "CTAS (create table as select) can only be run with a query where the last" " statement is a SELECT. Please make sure your query has a SELECT as its " @@ -2931,7 +3002,7 @@ msgstr "" msgid "CTAS Schema" msgstr "Схема CTAS" -#: superset/sql_lab.py:457 +#: superset/sql_lab.py:449 msgid "" "CVAS (create view as select) can only be run with a query with a single " "SELECT statement. Please make sure your query has only a SELECT " @@ -2949,7 +3020,7 @@ msgstr "CVAS (CREATE VIEW AS SELECT) запрос содержит больше msgid "CVAS (create view as select) query is not a SELECT statement." msgstr "CVAS (CREATE VIEW AS SELECT) запрос не является SELECT запросом." -#: superset/connectors/sqla/views.py:486 superset/views/chart/mixin.py:76 +#: superset/connectors/sqla/views.py:393 superset/views/chart/mixin.py:76 msgid "Cache Timeout" msgstr "Время жизни кэша" @@ -2967,16 +3038,16 @@ msgstr "Время жизни кэша" msgid "Cached" msgstr "Добавлено в кэш" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:349 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:351 #, python-format msgid "Cached %s" msgstr "Добавлено в кэш %s" -#: superset/viz.py:562 +#: superset/viz.py:578 msgid "Cached value not found" msgstr "Кэшированное значение не найдено" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:53 msgid "Calculate contribution per series or row" msgstr "" "Вычислить вклад в общую сумму (долю) по категории или строке. " @@ -3000,7 +3071,7 @@ msgid "Calculation type" msgstr "Тип расчёта" #: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 -#: superset/viz.py:1080 +#: superset/viz.py:972 msgid "Calendar Heatmap" msgstr "Календарная тепловая карта" @@ -3013,17 +3084,17 @@ msgstr "Невозможно перенести вкладку верхнего msgid "Can select multiple values" msgstr "Можно выбрать несколько значений" -#: superset/viz.py:1810 +#: superset/viz.py:1727 msgid "Can't have overlap between Series and Breakdowns" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:206 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:759 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:263 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:185 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 -#: superset-frontend/src/components/Modal/Modal.tsx:262 -#: superset-frontend/src/components/ReportModal/index.tsx:220 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:205 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:753 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:227 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:268 +#: superset-frontend/src/components/Modal/Modal.tsx:269 +#: superset-frontend/src/components/ReportModal/index.tsx:219 #: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:72 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:649 #: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 @@ -3031,14 +3102,14 @@ msgstr "" #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:76 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 -#: superset-frontend/src/explore/components/SaveModal.tsx:379 +#: superset-frontend/src/explore/components/SaveModal.tsx:413 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:843 #: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 #: superset/templates/superset/request_access.html:34 msgid "Cancel" msgstr "Отмена" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:314 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 msgid "Cancel query on window unload event" msgstr "Отменять запрос при закрытии вкладки" @@ -3054,7 +3125,7 @@ msgstr "Невозможно удалить базу данных с подкл msgid "Cannot have multiple credentials for the SSH Tunnel" msgstr "" -#: superset/views/core.py:723 +#: superset/views/core.py:734 #, python-format msgid "" "Cannot import dashboard: %(db_error)s.\n" @@ -3120,7 +3191,7 @@ msgstr "Категория и процентная доля" msgid "Category and Value" msgstr "Категория и значение" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:229 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:67 #, fuzzy msgid "Category name" msgstr "Имя категории" @@ -3135,15 +3206,15 @@ msgstr "Категория целевых вершин" msgid "Category, Value and Percentage" msgstr "Категория, значение и процентная доля" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:103 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 msgid "Cell Padding" msgstr "Расстояние между ячейками" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:117 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 msgid "Cell Radius" msgstr "Радиус ячейки" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 msgid "Cell Size" msgstr "Размер ячейки" @@ -3151,7 +3222,7 @@ msgstr "Размер ячейки" msgid "Cell bars" msgstr "Гистограммы в ячейках" -#: superset-frontend/src/components/FilterableTable/index.tsx:431 +#: superset-frontend/src/components/FilterableTable/index.tsx:303 msgid "Cell content" msgstr "Содержимое ячейки" @@ -3163,6 +3234,7 @@ msgstr "Лимит ячеек" msgid "Center" msgstr "По центру" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:33 msgid "Centroid (Longitude and Latitude): " msgstr "Центроид (Долгота и Широта): " @@ -3184,7 +3256,7 @@ msgstr "Детали утверждения" #: superset-frontend/src/pages/ChartList/index.tsx:699 #: superset-frontend/src/pages/DashboardList/index.tsx:580 -#: superset-frontend/src/pages/DatasetList/index.tsx:564 +#: superset-frontend/src/pages/DatasetList/index.tsx:575 msgid "Certified" msgstr "Утверждено" @@ -3215,7 +3287,7 @@ msgstr "Сменить порядок столбцов." msgid "Change order of rows." msgstr "Сменить порядок строк." -#: superset/connectors/sqla/views.py:478 +#: superset/connectors/sqla/views.py:385 msgid "Changed By" msgstr "Кем изменено" @@ -3267,7 +3339,7 @@ msgstr "Запрещено изменять этот график" msgid "Changing this control takes effect instantly" msgstr "Изменение этого элемента применяется сразу" -#: superset/datasets/commands/exceptions.py:181 +#: superset/datasets/commands/exceptions.py:198 msgid "Changing this dataset is forbidden" msgstr "Запрещено изменять этот датасет" @@ -3284,14 +3356,15 @@ msgstr "Запрещено изменять этот источник данны msgid "Changing this report is forbidden" msgstr "Запрещено изменять эту рассылку" -#: superset/views/database/forms.py:196 +#: superset/views/database/forms.py:206 msgid "Character to interpret as decimal point" msgstr "Символ десятичного разделителя" -#: superset/views/database/forms.py:375 +#: superset/views/database/forms.py:385 msgid "Character to interpret as decimal point." msgstr "Символ десятичного разделителя" +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:51 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:449 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:405 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:69 @@ -3299,11 +3372,11 @@ msgstr "Символ десятичного разделителя" #: superset-frontend/src/features/home/RightMenu.tsx:219 #: superset-frontend/src/pages/ChartList/index.tsx:369 #: superset-frontend/src/pages/ChartList/index.tsx:799 -#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:90 +#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 msgid "Chart" msgstr "График" -#: superset/views/core.py:1727 +#: superset/views/core.py:1762 #, python-format msgid "Chart %(id)s not found" msgstr "График %(id)s не найден" @@ -3312,7 +3385,7 @@ msgstr "График %(id)s не найден" msgid "Chart Cache Timeout" msgstr "Время жизни кэша графика" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:437 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:442 #, python-format msgid "Chart Data: %s" msgstr "Данные графика: %s" @@ -3322,7 +3395,7 @@ msgstr "Данные графика: %s" msgid "Chart ID" msgstr "ID графика" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:53 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:55 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:61 @@ -3344,7 +3417,7 @@ msgstr "ID графика" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:59 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:131 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:107 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:74 @@ -3390,34 +3463,34 @@ msgstr "Источник графика" msgid "Chart Title" msgstr "Название графика" -#: superset-frontend/src/explore/actions/saveModalActions.js:127 +#: superset-frontend/src/explore/actions/saveModalActions.js:121 #, python-format msgid "Chart [%s] has been overwritten" msgstr "График [%s] перезаписан" -#: superset-frontend/src/explore/actions/saveModalActions.js:124 +#: superset-frontend/src/explore/actions/saveModalActions.js:118 #, python-format msgid "Chart [%s] has been saved" msgstr "График [%s] сохранен" -#: superset-frontend/src/explore/actions/saveModalActions.js:145 +#: superset-frontend/src/explore/actions/saveModalActions.js:139 #, python-format msgid "Chart [%s] was added to dashboard [%s]" msgstr "График [%s] добавлен в дашборд [%s]" -#: superset/views/core.py:1077 +#: superset/views/core.py:1099 msgid "Chart [{}] has been overwritten" msgstr "График [{}] перезаписан" -#: superset/views/core.py:1073 +#: superset/views/core.py:1095 msgid "Chart [{}] has been saved" msgstr "График [{}] сохранен" -#: superset/views/core.py:1102 +#: superset/views/core.py:1124 msgid "Chart [{}] was added to dashboard [{}]" msgstr "График [{}] добавлен в дашборд [{}]" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:228 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:238 msgid "Chart cache timeout" msgstr "Время жизни кэша графика" @@ -3477,7 +3550,7 @@ msgstr "Последнее изменение" msgid "Chart last modified by" msgstr "Автор изменений %s" -#: superset-frontend/src/explore/components/SaveModal.tsx:320 +#: superset-frontend/src/explore/components/SaveModal.tsx:355 msgid "Chart name" msgstr "Имя графика" @@ -3507,7 +3580,7 @@ msgstr "Название графика" msgid "Chart type" msgstr "Тип графика" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:315 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 msgid "Chart type requires a dataset" msgstr "Для данного типа графика необходим датасет" @@ -3522,7 +3595,7 @@ msgstr "Ширина графика" #: superset-frontend/src/pages/Home/index.tsx:399 #: superset-frontend/src/profile/components/CreatedContent.tsx:104 #: superset-frontend/src/profile/components/Favorites.tsx:102 -#: superset/initialization/__init__.py:257 superset/views/chart/mixin.py:25 +#: superset/initialization/__init__.py:259 superset/views/chart/mixin.py:25 #: superset/views/dashboard/mixin.py:80 msgid "Charts" msgstr "Графики" @@ -3554,7 +3627,7 @@ msgstr "" msgid "Check out this chart in dashboard:" msgstr "Посмотреть этот график в дашборде:" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:474 msgid "Check out this chart: " msgstr "Посмотреть график: " @@ -3586,11 +3659,11 @@ msgstr "" msgid "Child label position" msgstr "Положение метки дочернего элемента" -#: superset/viz.py:2370 +#: superset/viz.py:2307 msgid "Choice of [Label] must be present in [Group By]" msgstr "[Метка] должна присутствовать в [Группировать по]" -#: superset/viz.py:2378 +#: superset/viz.py:2315 msgid "Choice of [Point Radius] must be present in [Group By]" msgstr "[Радиус точки] должен присутствовать в [Группировать по]" @@ -3603,7 +3676,7 @@ msgstr "Выберите файл" msgid "Choose a chart or dashboard not both" msgstr "Выберите график или дашборд, не обоих" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:924 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:979 msgid "Choose a database..." msgstr "Выберите базу данных..." @@ -3638,15 +3711,11 @@ msgstr "Выберите источник и цель" msgid "Choose a target" msgstr "Выберите цель" -#: superset/connectors/sqla/views.py:327 -msgid "Choose a unique name" -msgstr "" - #: superset-frontend/src/pages/ChartCreation/index.tsx:404 msgid "Choose chart type" msgstr "Выберите тип графика" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:745 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:739 msgid "Choose one of the available databases from the panel on the left." msgstr "Выберите одну из доступных баз данных из панели слева." @@ -3724,7 +3793,8 @@ msgstr "" "Классическое представление таблицы. Используйте таблицы для демонстрации " "отображения исходных или агрегированных данных." -#: superset/connectors/sqla/views.py:365 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:454 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:144 msgid "Clause" msgstr "Оператор" @@ -3736,7 +3806,7 @@ msgstr "Очистить" msgid "Clear all" msgstr "Сбросить фильтры" -#: superset-frontend/src/components/Table/index.tsx:206 +#: superset-frontend/src/components/Table/index.tsx:210 msgid "Clear all data" msgstr "Очистить все данные" @@ -3764,7 +3834,7 @@ msgstr "Нажмите на замок для внесения изменени msgid "Click the lock to prevent further changes." msgstr "Нажмите на замок для запрета на внос изменений." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1955 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2012 msgid "" "Click this link to switch to an alternate form that allows you to input " "the SQLAlchemy URL for this database manually." @@ -3772,7 +3842,7 @@ msgstr "" "Нажмите для переключения на альтернативную форму подключения, которая " "позволит вам вручную ввести SQLAlchemy URL для данной базы данных." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1771 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1827 msgid "" "Click this link to switch to an alternate form that exposes only the " "required fields needed to connect this database." @@ -3781,7 +3851,7 @@ msgstr "" "позволит вам ввести все данные в соответствующую форму для данной базы " "данных." -#: superset-frontend/src/components/Table/index.tsx:213 +#: superset-frontend/src/components/Table/index.tsx:217 msgid "Click to cancel sorting" msgstr "Нажмите для отмены сортировки" @@ -3791,16 +3861,10 @@ msgstr "Нажмите для редактирования" #: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 #, python-format -msgid "Click to edit %s in a new tab" -msgstr "Нажмите для редактирования «%s» в новой вкладке" - -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:32 -#, python-format msgid "Click to edit %s." msgstr "Нажмите для редактирования %s." #: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:33 msgid "Click to edit chart." msgstr "Нажмите для редактирования графика." @@ -3821,25 +3885,25 @@ msgstr "Нажмите для принудительного обновлени msgid "Click to see difference" msgstr "Нажмите для просмотра изменений" -#: superset-frontend/src/components/Table/index.tsx:212 +#: superset-frontend/src/components/Table/index.tsx:216 msgid "Click to sort ascending" msgstr "Нажмите для сортировки по возрастанию" -#: superset-frontend/src/components/Table/index.tsx:211 +#: superset-frontend/src/components/Table/index.tsx:215 msgid "Click to sort descending" msgstr "Нажмите для сортировки по убыванию" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:83 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:132 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:52 #: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:209 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:219 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:224 #: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:786 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:408 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:414 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:339 #: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:36 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1109 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1164 msgid "Close" msgstr "Закрыть" @@ -3872,15 +3936,15 @@ msgstr "Свернуть всё" msgid "Collapse data panel" msgstr "Свернуть панель управления" -#: superset-frontend/src/components/Table/index.tsx:210 +#: superset-frontend/src/components/Table/index.tsx:214 msgid "Collapse row" msgstr "Свернуть строку" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:598 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:599 msgid "Collapse tab content" msgstr "Свернуть содержимое вкладки" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:197 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 msgid "Collapse table preview" msgstr "Свернуть предпросмотр таблицы" @@ -3902,7 +3966,7 @@ msgstr "Цвет меры" msgid "Color Scheme" msgstr "Цветовая схема" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:129 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 msgid "Color Steps" msgstr "Количество цветов" @@ -3923,8 +3987,8 @@ msgid "Color of the target location" msgstr "Цвет целевого местоположения" #: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:214 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:218 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 #: superset-frontend/src/explore/controlPanels/sections.tsx:60 #: superset-frontend/src/explore/controls.jsx:460 msgid "Color scheme" @@ -3944,8 +4008,8 @@ msgstr "Цвета" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 #: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:204 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:250 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:256 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:137 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:140 #: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 @@ -3953,7 +4017,7 @@ msgstr "Цвета" #: superset-frontend/src/filters/components/Range/controlPanel.ts:39 #: superset-frontend/src/filters/components/Select/controlPanel.ts:49 #: superset-frontend/src/filters/components/Time/controlPanel.ts:37 -#: superset/connectors/sqla/views.py:155 +#: superset/connectors/sqla/views.py:154 msgid "Column" msgstr "Столбец" @@ -3970,12 +4034,17 @@ msgstr "" msgid "Column Configuration" msgstr "Свойства столбца" +#: superset/views/database/forms.py:144 +#, fuzzy +msgid "Column Data Types" +msgstr "Расширенный тип данных" + #: superset-frontend/src/explore/components/DataTableControl/index.tsx:194 msgid "Column Formatting" msgstr "Форматирование столбца(ов)" -#: superset/views/database/forms.py:222 superset/views/database/forms.py:383 -#: superset/views/database/forms.py:474 +#: superset/views/database/forms.py:232 superset/views/database/forms.py:393 +#: superset/views/database/forms.py:484 msgid "Column Label(s)" msgstr "Метка(и) столбца(ов)" @@ -3995,6 +4064,11 @@ msgstr "Столбец, содержащий данные о широте" msgid "Column containing longitude data" msgstr "Столбец, содержащий данные о долготе" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:69 +#, fuzzy +msgid "Column datatype" +msgstr "Имя столбца" + #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 msgid "Column header tooltip" msgstr "Всплывающая подсказка заголовка столбца" @@ -4003,7 +4077,7 @@ msgstr "Всплывающая подсказка заголовка столб msgid "Column is required" msgstr "Столбец обязателен" -#: superset/views/database/forms.py:384 superset/views/database/forms.py:475 +#: superset/views/database/forms.py:394 superset/views/database/forms.py:485 msgid "" "Column label for index column(s). If None is given and Dataframe Index is" " True, Index Names are used." @@ -4011,7 +4085,7 @@ msgstr "" "Метка для индексного(ых) столбца(ов). Если не задано и задан индекс " "датафрейма, будут использованы имена индексов." -#: superset/views/database/forms.py:223 +#: superset/views/database/forms.py:233 msgid "" "Column label for index column(s). If None is given and Dataframe Index is" " checked, Index Names are used" @@ -4019,7 +4093,7 @@ msgstr "" "Метка для индексного(ых) столбца(ов). Если не задано и задан индекс " "датафрейма, будут использованы имена индексов." -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:77 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:90 msgid "Column name" msgstr "Имя столбца" @@ -4037,7 +4111,7 @@ msgstr "Столбец, на который ссылается агрегат, msgid "Column select" msgstr "Выбор столбца" -#: superset/views/database/forms.py:211 +#: superset/views/database/forms.py:221 msgid "" "Column to use as the row labels of the dataframe. Leave empty if no index" " column" @@ -4045,7 +4119,7 @@ msgstr "" "Столбец для использования в качестве метки для строки датафрейма. " "Оставьте пустым, если индексный столбец отсутствует." -#: superset/views/database/forms.py:342 +#: superset/views/database/forms.py:352 msgid "" "Column to use as the row labels of the dataframe. Leave empty if no index" " column." @@ -4053,11 +4127,11 @@ msgstr "" "Столбец для использования в качестве метки для строки датафрейма. " "Оставьте пустым, если индексный столбец отсутствует." -#: superset/views/database/forms.py:414 +#: superset/views/database/forms.py:424 msgid "Columnar File" msgstr "Файл столбчатого формата" -#: superset/views/database/views.py:565 +#: superset/views/database/views.py:568 #, python-format msgid "" "Columnar file \"%(columnar_filename)s\" uploaded to table " @@ -4066,7 +4140,7 @@ msgstr "" "Файл столбчатого формата \"%(columnar_filename)s\" загружен в таблицу " "\"%(table_name)s\" в базу данных \"%(db_name)s\"" -#: superset/views/database/views.py:440 +#: superset/views/database/views.py:443 msgid "Columnar to Database configuration" msgstr "Конфигурация столбчатого файла для импорта в базу данных" @@ -4082,15 +4156,15 @@ msgstr "Конфигурация столбчатого файла для имп #: superset-frontend/src/explore/controls.jsx:244 #: superset-frontend/src/explore/fixtures.tsx:97 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 -#: superset/connectors/sqla/views.py:72 +#: superset/connectors/sqla/views.py:71 msgid "Columns" msgstr "Столбцы" -#: superset/views/database/forms.py:183 +#: superset/views/database/forms.py:193 msgid "Columns To Be Parsed as Dates" msgstr "Список столбцов, которые должны быть интерпретированы как даты." -#: superset/views/database/forms.py:231 +#: superset/views/database/forms.py:241 msgid "Columns To Read" msgstr "Столбцы для чтения" @@ -4099,7 +4173,7 @@ msgstr "Столбцы для чтения" msgid "Columns missing in dataset: %(invalid_columns)s" msgstr "Столбцы отсутствуют в датасете: %(invalid_columns)s" -#: superset/viz.py:577 +#: superset/viz.py:593 #, python-format msgid "Columns missing in datasource: %(invalid_columns)s" msgstr "Столбцы отсутствуют в источнике данных: %(invalid_columns)s" @@ -4138,10 +4212,6 @@ msgstr "Столбцы для группировки по строкам" msgid "Columns to show" msgstr "Столбцы для отображения" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:85 -msgid "Combine Metrics" -msgstr "Объединить меры" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:250 msgid "Combine metrics" msgstr "Объединить меры" @@ -4206,6 +4276,7 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:35 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:35 @@ -4252,6 +4323,11 @@ msgstr "Вычислить вклад в общую сумму (долю)" msgid "Condition" msgstr "Условие" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 +#, fuzzy +msgid "Conditional Formatting" +msgstr "Условное форматирование" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:385 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:504 msgid "Conditional formatting" @@ -4305,15 +4381,15 @@ msgstr "Настройка отображения слоя аннотации п msgid "Confirm overwrite" msgstr "Подтвердить перезапись" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:180 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:222 msgid "Confirm save" msgstr "Подтвердить сохранение" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1059 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1097 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1656 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1695 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1857 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1152 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1712 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 msgid "Connect" msgstr "Подключить" @@ -4325,9 +4401,9 @@ msgstr "Подключить Google Таблицы" msgid "Connect Google Sheets as tables to this database" msgstr "Подключить Google Таблицы как таблицы для этой базы данных" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1660 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1700 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1861 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1716 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1918 msgid "Connect a database" msgstr "Подключиться к базе данных" @@ -4335,24 +4411,24 @@ msgstr "Подключиться к базе данных" msgid "Connect database" msgstr "Подключиться к базе данных" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1768 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 msgid "Connect this database using the dynamic form instead" msgstr "Подключиться к этой базе, используя динамичную форму" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1950 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2007 msgid "Connect this database with a SQLAlchemy URI string instead" msgstr "Подключиться к этой базе через SQLAlchemy URI" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:225 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 msgid "Connection" msgstr "База данных" #: superset/databases/commands/exceptions.py:107 -#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1430 +#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1471 msgid "Connection failed, please check your connection settings" msgstr "Сбой подключения, пожалуйста, проверьте настройки вашего подключения" -#: superset-frontend/src/views/CRUD/hooks.ts:697 +#: superset-frontend/src/views/CRUD/hooks.ts:701 msgid "Connection looks good!" msgstr "Соединение в порядке!" @@ -4376,7 +4452,7 @@ msgstr "Непрерывный" msgid "Contribution" msgstr "Режим относительных значений" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:42 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 msgid "Contribution Mode" msgstr "Режим относительных значений" @@ -4428,8 +4504,8 @@ msgstr "Скопировать ссылку" msgid "Copy message" msgstr "Скопировать сообщение" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:683 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1469 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:679 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1461 #: superset-frontend/src/SqlLab/reducers/sqlLab.js:107 #, python-format msgid "Copy of %s" @@ -4440,7 +4516,7 @@ msgid "Copy partition query to clipboard" msgstr "Скопировать часть запроса в буфер обмена" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:329 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:468 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:340 msgid "Copy permalink to clipboard" msgstr "Скопировать ссылку в буфер обмена" @@ -4466,7 +4542,7 @@ msgstr "Скопировать имя HTTP пути вашего кластер msgid "Copy the name of the database you are trying to connect to." msgstr "Впишите имя базы данных, к которой вы пытаетесь подключиться" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:273 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:271 msgid "Copy to Clipboard" msgstr "Скопировать в буфер обмена" @@ -4486,7 +4562,12 @@ msgstr "Корреляция" msgid "Cost estimate" msgstr "Прогноз затрат" -#: superset/views/utils.py:498 +#: superset/db_engine_specs/ocient.py:259 +#, fuzzy, python-format +msgid "Could not connect to database: \"%(database)s\"" +msgstr "Невозможно подключиться к базе данных \"%(database)s\"." + +#: superset/views/utils.py:496 msgid "Could not determine datasource type" msgstr "Не удалось определить тип источника данных" @@ -4495,7 +4576,7 @@ msgstr "Не удалось определить тип источника да msgid "Could not fetch all saved charts" msgstr "Не удалось получить все сохраненные графики" -#: superset/views/utils.py:514 +#: superset/views/utils.py:512 msgid "Could not find viz object" msgstr "Не удалось найти объект визуализации" @@ -4503,7 +4584,7 @@ msgstr "Не удалось найти объект визуализации" msgid "Could not load database driver" msgstr "Не удалось загрузить драйвер базы данных" -#: superset/views/core.py:1413 +#: superset/views/core.py:1454 #, python-format msgid "Could not load database driver: %(driver_name)s" msgstr "Не удалось загрузить драйвер базы данных: %(driver_name)s" @@ -4512,6 +4593,11 @@ msgstr "Не удалось загрузить драйвер базы данн msgid "Could not load database driver: {}" msgstr "Не удалось загрузить драйвер базы данных: {}" +#: superset/db_engine_specs/ocient.py:264 +#, python-format +msgid "Could not resolve hostname: \"%(host)s\"." +msgstr "" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 msgid "Count" msgstr "Количество" @@ -4551,12 +4637,12 @@ msgid "Country Field Type" msgstr "Тип поля страны" #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 -#: superset/viz.py:2044 +#: superset/viz.py:1969 msgid "Country Map" msgstr "Карта Стран" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:767 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:761 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:770 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:96 msgid "Create" msgstr "Создать" @@ -4566,10 +4652,10 @@ msgid "Create Chart" msgstr "Создать график" #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:331 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:321 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:332 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:356 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:327 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:338 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:362 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 msgid "Create a dataset" msgstr "Создать датасет" @@ -4616,7 +4702,7 @@ msgstr "Создать новый график" msgid "Create new filter set" msgstr "Создать новый набор фильтров" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 msgid "Create or select schema..." msgstr "Создать или выбрать схему..." @@ -4639,7 +4725,7 @@ msgstr "Дата создания" #: superset-frontend/src/pages/CssTemplateList/index.tsx:273 #: superset-frontend/src/pages/DashboardList/index.tsx:358 #: superset-frontend/src/pages/DashboardList/index.tsx:545 -#: superset-frontend/src/pages/DatabaseList/index.tsx:365 +#: superset-frontend/src/pages/DatabaseList/index.tsx:376 #: superset-frontend/src/pages/Tags/index.tsx:128 #: superset-frontend/src/pages/Tags/index.tsx:183 msgid "Created by" @@ -4668,9 +4754,8 @@ msgstr "Не удалось создать SSH туннель по неизве msgid "Creating a data source and creating a new tab" msgstr "Создание источника данных и добавление новой вкладки..." -#: superset/connectors/sqla/views.py:366 superset/views/chart/mixin.py:77 -#: superset/views/dashboard/mixin.py:84 superset/views/dashboard/views.py:185 -#: superset/views/database/mixins.py:189 +#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 +#: superset/views/dashboard/views.py:185 superset/views/database/mixins.py:189 msgid "Creator" msgstr "Автор" @@ -4678,15 +4763,27 @@ msgstr "Автор" msgid "Crimson" msgstr "Малиновый" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:122 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:152 msgid "Cross-filter will be applied to all of the charts that use this dataset." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:134 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:164 #, fuzzy msgid "Cross-filtering is not enabled for this dashboard." msgstr "Не применено ни одного фильтра к данному дашборду." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 +#, fuzzy +msgid "Cross-filtering is not enabled in this dashboard" +msgstr "Не применено ни одного фильтра к данному дашборду." + +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:414 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 +#, fuzzy +msgid "Cross-filtering scoping" +msgstr "Задать область действия кросс-фильтра" + #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 #, fuzzy msgid "Cross-filters" @@ -4713,7 +4810,7 @@ msgstr "Пользовательский плагин" msgid "Custom Plugins" msgstr "Пользовательские плагины" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:385 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:391 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 @@ -4724,8 +4821,7 @@ msgstr "Через SQL" msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" msgstr "Пользовательские ad-hoc меры SQL не разрешены для этого датасета" -#: superset/connectors/sqla/utils.py:194 superset/errors.py:145 -#: superset/models/helpers.py:129 superset/models/helpers.py:864 +#: superset/errors.py:145 superset/models/helpers.py:138 msgid "Custom SQL fields cannot contain sub-queries." msgstr "Пользовательские поля SQL не могут содержать подзапросы." @@ -4749,7 +4845,7 @@ msgstr "Настроить столбцы" msgid "Cyclic dependency detected" msgstr "Обнаружена циклическая зависимость" -#: superset/connectors/sqla/views.py:256 +#: superset/connectors/sqla/views.py:255 msgid "D3 Format" msgstr "Формат даты/времени" @@ -4759,7 +4855,7 @@ msgstr "Формат даты/времени" msgid "D3 format" msgstr "Формат даты/времени" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:22 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:146 msgid "D3 format syntax: https://github.com/d3/d3-format" msgstr "Формат D3: https://github.com/d3/d3-format." @@ -4778,7 +4874,7 @@ msgstr "" msgid "D3 time format for datetime columns" msgstr "Формат времени D3 для столбцов типа дата/время" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:53 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 msgid "D3 time format syntax: https://github.com/d3/d3-time-format" msgstr "Формат времени D3: https://github.com/d3/d3-time-format." @@ -4800,7 +4896,7 @@ msgstr "ДЕК" msgid "DELETE" msgstr "УДАЛИТЬ" -#: superset-frontend/src/pages/DatabaseList/index.tsx:332 +#: superset-frontend/src/pages/DatabaseList/index.tsx:343 msgid "DML" msgstr "DML" @@ -4829,12 +4925,12 @@ msgstr "Темная тема" msgid "Dashboard" msgstr "Дашборд" -#: superset-frontend/src/explore/actions/saveModalActions.js:135 +#: superset-frontend/src/explore/actions/saveModalActions.js:129 #, python-format msgid "Dashboard [%s] just got created and chart [%s] was added to it" msgstr "Дашборд [%s] был только что создан и график [%s] был добавлен в него" -#: superset/views/core.py:1122 +#: superset/views/core.py:1144 msgid "Dashboard [{}] just got created and chart [{}] was added to it" msgstr "Дашборд [{}] был только что создан и график [{}] был добавлен в него" @@ -4897,7 +4993,7 @@ msgstr "дашборды(ов)" #: superset-frontend/src/pages/Home/index.tsx:385 #: superset-frontend/src/profile/components/CreatedContent.tsx:101 #: superset-frontend/src/profile/components/Favorites.tsx:99 -#: superset/initialization/__init__.py:249 superset/views/chart/mixin.py:78 +#: superset/initialization/__init__.py:251 superset/views/chart/mixin.py:78 #: superset/views/dashboard/mixin.py:24 msgid "Dashboards" msgstr "Дашборды" @@ -4921,7 +5017,7 @@ msgstr "Штрих" #: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:708 #: superset-frontend/src/features/home/RightMenu.tsx:169 -#: superset/initialization/__init__.py:244 +#: superset/initialization/__init__.py:246 msgid "Data" msgstr "Данные" @@ -4929,7 +5025,7 @@ msgstr "Данные" msgid "Data Table" msgstr "Таблица" -#: superset/datasets/commands/exceptions.py:197 +#: superset/datasets/commands/exceptions.py:214 msgid "Data URI is not allowed." msgstr "" @@ -4943,7 +5039,7 @@ msgstr "" msgid "Data Zoom" msgstr "Масштабирование графика" -#: superset/sqllab/commands/results.py:116 superset/views/core.py:2195 +#: superset/sqllab/commands/results.py:116 superset/views/core.py:2231 msgid "" "Data could not be deserialized from the results backend. The storage " "format might have changed, rendering the old data stake. You need to re-" @@ -4953,7 +5049,7 @@ msgstr "" " что привело к потере старых данных. Вам нужно повторно запустить " "исходный запрос." -#: superset/sqllab/commands/results.py:75 superset/views/core.py:2148 +#: superset/sqllab/commands/results.py:75 superset/views/core.py:2184 msgid "" "Data could not be retrieved from the results backend. You need to re-run " "the original query." @@ -4969,7 +5065,7 @@ msgstr "" msgid "Data preview" msgstr "Предпросмотр данных" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:283 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:278 msgid "Data refreshed" msgstr "Данные обновлены" @@ -4988,25 +5084,25 @@ msgstr "" msgid "DataFrame must include temporal column" msgstr "Датафрейм должен включать временной столбец" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:275 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:274 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -#: superset-frontend/src/pages/DatabaseList/index.tsx:267 -#: superset-frontend/src/pages/DatabaseList/index.tsx:296 -#: superset-frontend/src/pages/DatasetList/index.tsx:349 -#: superset-frontend/src/pages/DatasetList/index.tsx:520 +#: superset-frontend/src/pages/DatabaseList/index.tsx:278 +#: superset-frontend/src/pages/DatabaseList/index.tsx:307 +#: superset-frontend/src/pages/DatasetList/index.tsx:360 +#: superset-frontend/src/pages/DatasetList/index.tsx:531 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:241 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:349 #: superset-frontend/src/pages/SavedQueryList/index.tsx:287 #: superset-frontend/src/pages/SavedQueryList/index.tsx:448 -#: superset/connectors/sqla/views.py:479 superset/connectors/sqla/views.py:480 +#: superset/connectors/sqla/views.py:386 superset/connectors/sqla/views.py:387 #: superset/templates/superset/import_dashboards.html:53 -#: superset/views/database/forms.py:137 superset/views/database/forms.py:305 -#: superset/views/database/forms.py:436 superset/views/database/mixins.py:188 +#: superset/views/database/forms.py:137 superset/views/database/forms.py:315 +#: superset/views/database/forms.py:446 superset/views/database/mixins.py:188 #: superset/views/sql_lab/views.py:83 msgid "Database" msgstr "База данных" -#: superset/views/database/views.py:478 +#: superset/views/database/views.py:481 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " @@ -5016,7 +5112,7 @@ msgstr "" "предназначена для загрузки файлов столбчатого формата. Пожалуйста, " "свяжитесь с администратором." -#: superset/views/database/views.py:179 +#: superset/views/database/views.py:180 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " @@ -5026,7 +5122,7 @@ msgstr "" "предназначена для загрузки CSV файлов. Пожалуйста, свяжитесь с " "администратором." -#: superset/views/database/views.py:318 +#: superset/views/database/views.py:321 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " @@ -5036,11 +5132,11 @@ msgstr "" "предназначена для загрузки Excel файлов. Пожалуйста, свяжитесь с " "администратором." -#: superset/initialization/__init__.py:241 +#: superset/initialization/__init__.py:243 msgid "Database Connections" msgstr "Базы данных" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1467 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1522 msgid "Database Creation Error" msgstr "Ошибка создания базы данных" @@ -5049,9 +5145,9 @@ msgid "Database URL" msgstr "URL базы данных" #: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:827 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:849 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1150 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:882 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:904 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1205 msgid "Database connected" msgstr "Соединение с базой данных установлено" @@ -5077,7 +5173,7 @@ msgstr "База данных не позволяет изменять свои msgid "Database does not exist" msgstr "База данных не существует" -#: superset/connectors/sqla/models.py:1793 superset/models/helpers.py:1966 +#: superset/models/helpers.py:2063 msgid "Database does not support subqueries" msgstr "База данных не поддерживает подзапросы" @@ -5089,7 +5185,7 @@ msgstr "" "Драйвер базы данных для импорта может быть не установлен. Изучите " "документацию Суперсета для инструкций по установке: " -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:429 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 msgid "Database error" msgstr "Ошибка базы данных" @@ -5102,8 +5198,8 @@ msgid "Database is required for alerts" msgstr "Для оповещений требуется база данных" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:113 -#: superset/db_engine_specs/base.py:1845 -#: superset/db_engine_specs/clickhouse.py:209 +#: superset/db_engine_specs/base.py:1880 +#: superset/db_engine_specs/clickhouse.py:212 msgid "Database name" msgstr "Имя базы данных" @@ -5115,7 +5211,7 @@ msgstr "База данных недоступна для изменений" msgid "Database not found." msgstr "База данных не найдена." -#: superset/views/core.py:1179 +#: superset/views/core.py:1201 #, python-format msgid "Database not found: %(id)s" msgstr "База данных не найдена: %(id)s" @@ -5128,24 +5224,24 @@ msgstr "Параметры базы данных недействительны. msgid "Database passwords" msgstr "Пароли базы данных" -#: superset/db_engine_specs/base.py:1842 -#: superset/db_engine_specs/clickhouse.py:206 +#: superset/db_engine_specs/base.py:1876 +#: superset/db_engine_specs/clickhouse.py:208 #: superset/db_engine_specs/databricks.py:52 msgid "Database port" msgstr "Порт базы данных" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:811 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:853 msgid "Database settings updated" msgstr "Обновлены настройки базы данных" -#: superset-frontend/src/pages/DatabaseList/index.tsx:258 +#: superset-frontend/src/pages/DatabaseList/index.tsx:269 #: superset-frontend/src/profile/components/Security.tsx:47 #: superset/views/database/mixins.py:33 msgid "Databases" msgstr "Базы данных" -#: superset/views/database/forms.py:219 superset/views/database/forms.py:380 -#: superset/views/database/forms.py:471 +#: superset/views/database/forms.py:229 superset/views/database/forms.py:390 +#: superset/views/database/forms.py:481 msgid "Dataframe Index" msgstr "Индекс датафрейма" @@ -5157,7 +5253,7 @@ msgstr "Индекс датафрейма" #: superset-frontend/src/pages/ChartCreation/index.tsx:390 #: superset-frontend/src/pages/ChartList/index.tsx:391 #: superset-frontend/src/pages/ChartList/index.tsx:678 -#: superset-frontend/src/pages/DatasetList/index.tsx:606 +#: superset-frontend/src/pages/DatasetList/index.tsx:617 msgid "Dataset" msgstr "Датасет" @@ -5166,7 +5262,7 @@ msgstr "Датасет" msgid "Dataset %(name)s already exists" msgstr "Датасет %(name)s уже существует" -#: superset-frontend/src/explore/components/SaveModal.tsx:331 +#: superset-frontend/src/explore/components/SaveModal.tsx:366 msgid "Dataset Name" msgstr "Имя датасета" @@ -5178,28 +5274,28 @@ msgstr "Не удалось удалить столбец датасета" msgid "Dataset column not found." msgstr "Столбец датасета не найден" -#: superset/datasets/commands/exceptions.py:157 +#: superset/datasets/commands/exceptions.py:174 msgid "Dataset could not be created." msgstr "Не удалось создать датасет" -#: superset/datasets/commands/exceptions.py:165 +#: superset/datasets/commands/exceptions.py:182 msgid "Dataset could not be deleted." msgstr "Не удалось удалить датасет" -#: superset/datasets/commands/exceptions.py:193 +#: superset/datasets/commands/exceptions.py:210 msgid "Dataset could not be duplicated." msgstr "Датасет не может быть дублирован." -#: superset/datasets/commands/exceptions.py:161 -#: superset/datasets/commands/exceptions.py:173 +#: superset/datasets/commands/exceptions.py:178 +#: superset/datasets/commands/exceptions.py:190 msgid "Dataset could not be updated." msgstr "Не удалось обновить датасет" -#: superset/datasets/commands/exceptions.py:149 +#: superset/datasets/commands/exceptions.py:166 msgid "Dataset does not exist" msgstr "Датасет не существует" -#: superset-frontend/src/pages/DatasetList/index.tsx:185 +#: superset-frontend/src/pages/DatasetList/index.tsx:196 msgid "Dataset imported" msgstr "Импортирован датасет" @@ -5220,22 +5316,22 @@ msgstr "Мера датасета не найдена." msgid "Dataset name" msgstr "Имя датасета" -#: superset/datasets/commands/exceptions.py:153 +#: superset/datasets/commands/exceptions.py:170 msgid "Dataset parameters are invalid." msgstr "Параметры датасета неверны." -#: superset/dashboards/api.py:430 +#: superset/dashboards/api.py:415 #, python-format msgid "Dataset schema is invalid, caused by: %(error)s" msgstr "Схема датасета невалидна, причина: %(error)s" -#: superset/datasets/commands/exceptions.py:169 +#: superset/datasets/commands/exceptions.py:186 msgid "Dataset(s) could not be bulk deleted." msgstr "Датасет(ы) не могут быть массово удалены." -#: superset-frontend/src/pages/DatasetList/index.tsx:589 +#: superset-frontend/src/pages/DatasetList/index.tsx:600 #: superset-frontend/src/profile/components/Security.tsx:61 -#: superset/initialization/__init__.py:265 +#: superset/initialization/__init__.py:267 msgid "Datasets" msgstr "Датасеты" @@ -5260,11 +5356,11 @@ msgstr "Источник данных" msgid "Datasource & Chart Type" msgstr "Источник данных и Тип графика" -#: superset/commands/exceptions.py:131 +#: superset/commands/exceptions.py:135 msgid "Datasource does not exist" msgstr "Источник данных не существует" -#: superset/commands/exceptions.py:123 +#: superset/commands/exceptions.py:127 msgid "Datasource type is invalid" msgstr "Тип источниках данных неверный" @@ -5283,8 +5379,7 @@ msgstr "Формат даты и времени" msgid "Date filter" msgstr "Временной фильтр" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:71 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:151 #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:135 @@ -5304,11 +5399,11 @@ msgstr "Формат временной строки" msgid "Date/Time" msgstr "Дата/Время" -#: superset/connectors/sqla/views.py:163 +#: superset/connectors/sqla/views.py:162 msgid "Datetime Format" msgstr "Формат даты и времени" -#: superset/connectors/sqla/models.py:1237 superset/models/helpers.py:1427 +#: superset/models/helpers.py:1502 msgid "" "Datetime column not provided as part table configuration and is required " "by this type of chart" @@ -5320,7 +5415,7 @@ msgstr "" msgid "Datetime format" msgstr "Формат даты/времени" -#: superset/db_engine_specs/base.py:106 +#: superset/db_engine_specs/base.py:107 msgid "Day" msgstr "День" @@ -5333,7 +5428,7 @@ msgstr "День (част=D)" msgid "Days %s" msgstr "Дней %s" -#: superset/connectors/sqla/models.py:1936 superset/models/helpers.py:988 +#: superset/connectors/sqla/models.py:1222 superset/models/helpers.py:1024 msgid "Db engine did not return all queried columns" msgstr "драйвер базы данных вернул не все запрошенные столбцы" @@ -5345,49 +5440,58 @@ msgstr "Выключить" msgid "December" msgstr "Декабрь" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:70 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:89 msgid "Decides which column to sort the base axis by." msgstr "" -#: superset/views/database/forms.py:194 superset/views/database/forms.py:373 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:160 +msgid "Decides which measure to sort the base axis by." +msgstr "" + +#: superset/views/database/forms.py:204 superset/views/database/forms.py:383 msgid "Decimal Character" msgstr "Десятичный разделитель" -#: superset/viz.py:2743 +#: superset/viz.py:2700 msgid "Deck.gl - 3D Grid" msgstr "Deck.gl - 3D сетка" -#: superset/viz.py:2859 +#: superset/viz.py:2825 #, fuzzy msgid "Deck.gl - 3D HEX" msgstr "Deck.gl - 3D HEX" -#: superset/viz.py:2899 +#: superset/viz.py:2890 msgid "Deck.gl - Arc" msgstr "Deck.gl - Дуга" -#: superset/viz.py:2880 +#: superset/viz.py:2869 msgid "Deck.gl - GeoJSON" msgstr "Deck.gl - GeoJSON" -#: superset/viz.py:2468 +#: superset/viz.py:2848 +#, fuzzy +msgid "Deck.gl - Heatmap" +msgstr "Deck.gl - Paths" + +#: superset/viz.py:2406 msgid "Deck.gl - Multiple Layers" msgstr "Deck.gl - Многослойный" -#: superset/viz.py:2775 +#: superset/viz.py:2735 #, fuzzy msgid "Deck.gl - Paths" msgstr "Deck.gl - Paths" -#: superset/viz.py:2826 +#: superset/viz.py:2789 msgid "Deck.gl - Polygon" msgstr "Deck.gl - Полигон" -#: superset/viz.py:2662 +#: superset/viz.py:2612 msgid "Deck.gl - Scatter plot" msgstr "Deck.gl - Точечная диаграмма" -#: superset/viz.py:2714 +#: superset/viz.py:2668 #, fuzzy msgid "Deck.gl - Screen Grid" msgstr "Deck.gl - Screen Grid" @@ -5396,7 +5500,7 @@ msgstr "Deck.gl - Screen Grid" msgid "Default" msgstr "По умолчанию" -#: superset/connectors/sqla/views.py:484 +#: superset/connectors/sqla/views.py:391 msgid "Default Endpoint" msgstr "Эндпоинт по умолчанию" @@ -5550,11 +5654,13 @@ msgstr "" #: superset-frontend/src/pages/CssTemplateList/index.tsx:338 #: superset-frontend/src/pages/DashboardList/index.tsx:427 #: superset-frontend/src/pages/DashboardList/index.tsx:712 -#: superset-frontend/src/pages/DatasetList/index.tsx:418 -#: superset-frontend/src/pages/DatasetList/index.tsx:751 +#: superset-frontend/src/pages/DatasetList/index.tsx:429 +#: superset-frontend/src/pages/DatasetList/index.tsx:773 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:182 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:313 #: superset-frontend/src/pages/SavedQueryList/index.tsx:542 #: superset-frontend/src/pages/Tags/index.tsx:153 -#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:663 +#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:664 msgid "Delete" msgstr "Удалить" @@ -5567,11 +5673,11 @@ msgstr "Удалить %s?" msgid "Delete Annotation?" msgstr "Удалить аннотацию?" -#: superset-frontend/src/pages/DatabaseList/index.tsx:529 +#: superset-frontend/src/pages/DatabaseList/index.tsx:551 msgid "Delete Database?" msgstr "Удалить базу данных?" -#: superset-frontend/src/pages/DatasetList/index.tsx:723 +#: superset-frontend/src/pages/DatasetList/index.tsx:745 msgid "Delete Dataset?" msgstr "Удалить датасет?" @@ -5592,7 +5698,7 @@ msgstr "Удалить рассылку?" msgid "Delete Template?" msgstr "Удалить шаблон?" -#: superset/views/base.py:663 +#: superset/views/base.py:664 msgid "Delete all Really?" msgstr "Действительно удалить все?" @@ -5604,7 +5710,7 @@ msgstr "Удалить аннотацию" msgid "Delete dashboard tab?" msgstr "Удалить вкладку дашборда?" -#: superset-frontend/src/pages/DatabaseList/index.tsx:405 +#: superset-frontend/src/pages/DatabaseList/index.tsx:416 msgid "Delete database" msgstr "Удалить базу данных" @@ -5626,6 +5732,11 @@ msgstr "Удалить шаблон" msgid "Delete this container and save to remove this message." msgstr "Удалите этот контейнер и сохраните изменения, чтобы убрать это сообщение." +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:108 +#, fuzzy +msgid "Deleted" +msgstr "удалить" + #: superset/annotation_layers/annotations/api.py:504 #, python-format msgid "Deleted %(num)d annotation" @@ -5642,7 +5753,7 @@ msgstr[0] "Удалален %(num)d слой аннотаций" msgstr[1] "Удалалены %(num)d слоя аннотаций" msgstr[2] "Удалалено %(num)d слоев аннотаций" -#: superset/charts/api.py:524 +#: superset/charts/api.py:521 #, python-format msgid "Deleted %(num)d chart" msgid_plural "Deleted %(num)d charts" @@ -5658,7 +5769,7 @@ msgstr[0] "Удален %(num)d CSS шаблон" msgstr[1] "Удалены %(num)d CSS шаблона" msgstr[2] "Удалено %(num)d CSS шаблонов" -#: superset/dashboards/api.py:760 +#: superset/dashboards/api.py:745 #, python-format msgid "Deleted %(num)d dashboard" msgid_plural "Deleted %(num)d dashboards" @@ -5666,7 +5777,7 @@ msgstr[0] "Удален %(num)d дашборд" msgstr[1] "Удалены %(num)d дашборда" msgstr[2] "Удалено %(num)d дашбордов" -#: superset/datasets/api.py:783 +#: superset/datasets/api.py:789 #, python-format msgid "Deleted %(num)d dataset" msgid_plural "Deleted %(num)d datasets" @@ -5682,6 +5793,14 @@ msgstr[0] "Удалено %(num)d расписание рассылок" msgstr[1] "Удалены %(num)d расписания рассылок" msgstr[2] "Удалено %(num)d расписаний рассылок" +#: superset/row_level_security/api.py:349 +#, fuzzy, python-format +msgid "Deleted %(num)d rules" +msgid_plural "Deleted %(num)d rules" +msgstr[0] "Удален %(num)d график" +msgstr[1] "Удалены %(num)d графика" +msgstr[2] "Удалено %(num)d графиков" + #: superset/queries/saved_queries/api.py:222 #, python-format msgid "Deleted %(num)d saved query" @@ -5690,13 +5809,18 @@ msgstr[0] "Удален %(num)d сохраненный запрос" msgstr[1] "Удалены %(num)d сохраненных запроса" msgstr[2] "Удалено %(num)d сохраненных запросов" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:94 +#, fuzzy, python-format +msgid "Deleted %s" +msgstr "Удалено: %s" + #: superset-frontend/src/features/home/SavedQueries.tsx:172 #: superset-frontend/src/pages/AlertReportList/index.tsx:183 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 #: superset-frontend/src/pages/AnnotationList/index.tsx:117 #: superset-frontend/src/pages/CssTemplateList/index.tsx:93 -#: superset-frontend/src/pages/DatabaseList/index.tsx:158 -#: superset-frontend/src/pages/DatasetList/index.tsx:653 +#: superset-frontend/src/pages/DatabaseList/index.tsx:169 +#: superset-frontend/src/pages/DatasetList/index.tsx:664 #: superset-frontend/src/pages/SavedQueryList/index.tsx:242 #: superset-frontend/src/reports/actions/reports.js:158 #: superset-frontend/src/views/CRUD/utils.tsx:272 @@ -5717,7 +5841,7 @@ msgstr "" msgid "Delimited long & lat single column" msgstr "Долгота и широта в одном столбце" -#: superset/views/database/forms.py:150 +#: superset/views/database/forms.py:160 msgid "Delimiter" msgstr "Разделитель" @@ -5744,32 +5868,34 @@ msgstr "Зависит от" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:40 +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 msgid "Deprecated" msgstr "Устарело" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:83 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:114 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:96 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:127 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:55 #: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:157 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:156 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:265 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1206 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1210 -#: superset-frontend/src/components/ReportModal/index.tsx:294 +#: superset-frontend/src/components/ReportModal/index.tsx:293 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1158 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:465 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 #: superset-frontend/src/pages/AnnotationList/index.tsx:161 -#: superset/connectors/sqla/views.py:157 superset/connectors/sqla/views.py:251 -#: superset/connectors/sqla/views.py:362 superset/connectors/sqla/views.py:491 -#: superset/views/chart/mixin.py:80 superset/views/sql_lab/views.py:84 +#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:398 superset/views/chart/mixin.py:80 +#: superset/views/sql_lab/views.py:84 msgid "Description" msgstr "Описание" @@ -5782,7 +5908,7 @@ msgstr "Описание (будет видно в списке)" msgid "Description Columns" msgstr "Описательные столбцы" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:50 msgid "Description text that shows up below your Big Number" msgstr "Описание, отображаемое под Карточкой" @@ -5848,7 +5974,7 @@ msgstr "Измерение для использования на оси Y" msgid "Dimensions" msgstr "Измерения" -#: superset/viz.py:2005 +#: superset/viz.py:1928 msgid "Directed Force Layout" msgstr "" @@ -5858,11 +5984,11 @@ msgstr "" msgid "Directional" msgstr "Направленный" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:202 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 msgid "Disable SQL Lab data preview queries" msgstr "Отключить предпросмотр данных в Лаборатории SQL" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:205 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 msgid "" "Disable data preview when fetching table metadata in SQL Lab. Useful to " "avoid browser performance issues when using databases with very wide " @@ -5904,7 +6030,6 @@ msgstr "Отображать общий итог по столбцу" msgid "Display configuration" msgstr "Настройки отображения" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:87 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:252 msgid "" "Display metrics side by side within each column, as opposed to each " @@ -5917,14 +6042,10 @@ msgstr "" msgid "Display row level total" msgstr "Отображать общий итог по строке" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:39 msgid "Display settings" msgstr "Настройки отображения" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:78 -msgid "Display total row/column" -msgstr "Отобразить общую строку/столбец" - #: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:35 msgid "" "Displays connections between entities in a graph structure. Useful for " @@ -5945,7 +6066,7 @@ msgstr "Выполнить выбранный запрос" msgid "Distribution" msgstr "Распределение" -#: superset/viz.py:1801 +#: superset/viz.py:1717 msgid "Distribution - Bar Chart" msgstr "Распределение - Столбчатая диаграмма" @@ -5963,7 +6084,7 @@ msgstr "Круговая/кольцевая диаграмма" msgid "Documentation" msgstr "Документация" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:40 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 msgid "Domain" msgstr "Блок" @@ -5976,18 +6097,18 @@ msgstr "Кольцевая диаграмма" msgid "Dotted" msgstr "Пунктир" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:480 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:482 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:292 msgid "Download" msgstr "Сохранить" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:317 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:504 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:512 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:329 msgid "Download as image" msgstr "Сохранить как изображение" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:264 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:262 msgid "Download to CSV" msgstr "Сохранить в CSV" @@ -6039,20 +6160,20 @@ msgstr "Рисует разделительные линии для неболь msgid "Draw split lines for minor y-axis ticks" msgstr "Рисует разделительные линии для небольших отметок оси Y" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:181 -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:191 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 msgid "Drill by" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:172 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 msgid "Drill by is not available for this data point" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:170 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 msgid "Drill by is not yet supported for this chart type" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:154 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:420 #, fuzzy, python-format msgid "Drill by: %s" msgstr "Сорт. по %s" @@ -6081,65 +6202,39 @@ msgstr "" msgid "Drill to detail: %s" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:206 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:184 msgid "Drop a column here or click" msgid_plural "Drop columns here or click" msgstr[0] "Перетащите столбец сюда" msgstr[1] "Перетащите столбцы сюда" msgstr[2] "Перетащите столбцы сюда" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:335 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:330 msgid "Drop a column/metric here or click" msgid_plural "Drop columns/metrics here or click" msgstr[0] "Перетащите столбец/меру сюда" msgstr[1] "Перетащите столбцы/меры сюда" msgstr[2] "Перетащите столбцы/меры сюда" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:248 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 msgid "Drop a temporal column here or click" msgstr "Перетащите столбец формата дата/время сюда" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:216 -msgid "Drop column here" -msgid_plural "Drop columns here" -msgstr[0] "Перетащите столбец сюда" -msgstr[1] "Перетащите столбцы сюда" -msgstr[2] "Перетащите столбцы сюда" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:340 -msgid "Drop column or metric here" -msgid_plural "Drop columns or metrics here" -msgstr[0] "Перетащите столбец или меру сюда" -msgstr[1] "Перетащите столбцы или меры сюда" -msgstr[2] "Перетащите столбцы или меры сюда" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndSelectLabel.tsx:83 -msgid "Drop columns here" -msgstr "Перетащите столбцы сюда" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:402 -msgid "Drop columns or metrics here" -msgstr "Перетащите столбцы или меры сюда" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:401 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:405 msgid "Drop columns/metrics here or click" msgstr "Перетащите столбцы/меры сюда" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 -msgid "Drop temporal column here" -msgstr "Перетащите столбец формата дата/время сюда" - #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:32 #, fuzzy msgid "Dual Line Chart" msgstr "Bullet Chart" #: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 -#: superset-frontend/src/pages/DatasetList/index.tsx:472 +#: superset-frontend/src/pages/DatasetList/index.tsx:483 msgid "Duplicate" msgstr "Дублировать" -#: superset/views/datasource/views.py:122 +#: superset/views/datasource/views.py:124 #, python-format msgid "Duplicate column name(s): %(columns)s" msgstr "Повторяющееся имя столбца(ов): %(columns)s" @@ -6166,7 +6261,7 @@ msgstr "Дублировать вкладку" msgid "Duration" msgstr "Продолжительность" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:239 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:249 #, fuzzy msgid "" "Duration (in seconds) of the caching timeout for charts of this database." @@ -6209,7 +6304,7 @@ msgstr "" "внимание, что если значение не задано, применяется значение таймаута " "датасета." -#: superset/connectors/sqla/views.py:462 +#: superset/connectors/sqla/views.py:369 msgid "" "Duration (in seconds) of the caching timeout for this table. A timeout of" " 0 indicates that the cache never expires. Note this defaults to the " @@ -6218,7 +6313,7 @@ msgstr "" "Продолжительность (в секундах) таймаута кэша для этой таблицы. Обратите " "внимание, что если значение не задано, применяется значение базы данных." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:261 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:271 msgid "" "Duration (in seconds) of the metadata caching timeout for schemas of this" " database. If left unset, the cache never expires." @@ -6226,7 +6321,7 @@ msgstr "" "Продолжительность (в секундах) таймаута кэша для схем этой базы данных. " "Обратите внимание, что если значение не задано, кэш никогда не очистится." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:282 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:292 msgid "" "Duration (in seconds) of the metadata caching timeout for tables of this " "database. If left unset, the cache never expires. " @@ -6235,7 +6330,7 @@ msgstr "" " Обратите внимание, что если значение не задано, кэш никогда не " "очистится." -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:50 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" msgstr "Продолжительность в мс (1.40008 => 1ms 400µs 80ns)" @@ -6243,7 +6338,7 @@ msgstr "Продолжительность в мс (1.40008 => 1ms 400µs 80ns)" msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" msgstr "Продолжительность в мс (100.40008 => 100ms 400µs 80ns)" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:49 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 #: superset-frontend/src/explore/controls.jsx:89 msgid "Duration in ms (66000 => 1m 6s)" msgstr "Продолжительность в мс (66000 => 1m 6s)" @@ -6281,7 +6376,7 @@ msgstr "Динамически искать все значения фильтр msgid "ECharts" msgstr "Графики Apache" -#: superset/reports/notifications/email.py:130 +#: superset/reports/notifications/email.py:133 #, fuzzy msgid "EMAIL_REPORTS_CTA" msgstr "Включить рассылки" @@ -6292,11 +6387,11 @@ msgstr "Включить рассылки" msgid "END (EXCLUSIVE)" msgstr "КОНЕЦ (НЕ ВКЛЮЧИТЕЛЬНО)" -#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:171 +#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 msgid "ERROR" msgstr "ОШИБКА" -#: superset-frontend/src/views/CRUD/hooks.ts:700 +#: superset-frontend/src/views/CRUD/hooks.ts:704 #, python-format msgid "ERROR: %s" msgstr "ОШИБКА: %s" @@ -6327,8 +6422,9 @@ msgstr "Толщина ребра" #: superset-frontend/src/pages/AlertReportList/index.tsx:385 #: superset-frontend/src/pages/ChartList/index.tsx:553 #: superset-frontend/src/pages/DashboardList/index.tsx:461 -#: superset-frontend/src/pages/DatabaseList/index.tsx:431 -#: superset-frontend/src/pages/DatasetList/index.tsx:452 +#: superset-frontend/src/pages/DatabaseList/index.tsx:442 +#: superset-frontend/src/pages/DatasetList/index.tsx:463 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:200 msgid "Edit" msgstr "Редактировать" @@ -6356,7 +6452,7 @@ msgstr "Редактировать график" msgid "Edit Chart Properties" msgstr "Редактировать свойства графика" -#: superset/connectors/sqla/views.py:75 +#: superset/connectors/sqla/views.py:74 msgid "Edit Column" msgstr "Редактировать столбец" @@ -6368,7 +6464,7 @@ msgstr "Редактировать дашборд" msgid "Edit Database" msgstr "Редактировать Базу Данных" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:199 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:241 msgid "Edit Dataset " msgstr "Редактировать датасет " @@ -6376,7 +6472,7 @@ msgstr "Редактировать датасет " msgid "Edit Log" msgstr "Редактировать запись" -#: superset/connectors/sqla/views.py:210 +#: superset/connectors/sqla/views.py:209 msgid "Edit Metric" msgstr "Редактировать меру" @@ -6388,16 +6484,16 @@ msgstr "Редактировать плагин" msgid "Edit Report" msgstr "Редактировать отчет" -#: superset/connectors/sqla/views.py:293 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 #, fuzzy -msgid "Edit Row level security filter" -msgstr "Безопасность на уровне строк" +msgid "Edit Rule" +msgstr "режиме редактирования" #: superset/views/sql_lab/views.py:55 msgid "Edit Saved Query" msgstr "Редактировать сохраненный запрос" -#: superset/connectors/sqla/views.py:387 +#: superset/connectors/sqla/views.py:294 msgid "Edit Table" msgstr "Редактировать таблицу" @@ -6414,9 +6510,9 @@ msgstr "Редактировать слой аннотации" msgid "Edit annotation layer properties" msgstr "Редактировать свойства слоя аннотаций" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:74 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:122 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:44 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:212 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:217 #: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:405 msgid "Edit chart" msgstr "Редактировать график" @@ -6430,7 +6526,7 @@ msgstr "Редактировать свойства графика" msgid "Edit dashboard" msgstr "Редактировать дашборд" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1700 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 msgid "Edit database" msgstr "Редактировать Базу Данных" @@ -6440,7 +6536,7 @@ msgstr "Редактировать датасет" #: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:243 #: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:264 -#: superset-frontend/src/components/ReportModal/index.tsx:212 +#: superset-frontend/src/components/ReportModal/index.tsx:211 msgid "Edit email report" msgstr "Редактировать рассылку" @@ -6466,7 +6562,7 @@ msgstr "Редактировать шаблон" msgid "Edit template parameters" msgstr "Редактировать параметры шаблонизации Jinja" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:717 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:718 #: superset-frontend/src/dashboard/components/DashboardGrid.jsx:242 msgid "Edit the dashboard" msgstr "Редактировать дашборд" @@ -6491,8 +6587,9 @@ msgstr "Редактирование набора фильтров:" msgid "Either the database is spelled incorrectly or does not exist." msgstr "Неверное или несуществующее имя базы данных." -#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:654 -#: superset/db_engine_specs/redshift.py:67 +#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:681 +#: superset/db_engine_specs/redshift.py:71 +#: superset/db_engine_specs/starrocks.py:122 #, python-format msgid "Either the username \"%(username)s\" or the password is incorrect." msgstr "Неверное имя пользователя \"%(username)s\" или пароль." @@ -6563,11 +6660,11 @@ msgstr "Пустая коллекция" msgid "Empty column" msgstr "Показывать пустые столбцы" -#: superset/charts/data/api.py:363 +#: superset/charts/data/api.py:366 msgid "Empty query result" msgstr "Пустой ответ запроса" -#: superset/connectors/sqla/models.py:1243 superset/models/helpers.py:1433 +#: superset/models/helpers.py:1508 msgid "Empty query?" msgstr "Пустой запрос?" @@ -6582,12 +6679,12 @@ msgstr "" "Включите \"Разрешить загрузку файлов в базу данных\" в настройках любой " "базы данных" -#: superset/connectors/sqla/views.py:482 +#: superset/connectors/sqla/views.py:389 #, fuzzy msgid "Enable Filter Select" msgstr "Настроить области действия фильтра" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:139 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 #, fuzzy msgid "Enable cross-filtering" msgstr "Задать область действия кросс-фильтра" @@ -6623,7 +6720,7 @@ msgstr "Включить перемещение по графику" msgid "Enable node dragging" msgstr "Разрешить перемещение вершин" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:170 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 msgid "Enable query cost estimation" msgstr "Разрешить оценку стоимости запроса" @@ -6632,7 +6729,7 @@ msgstr "Разрешить оценку стоимости запроса" msgid "Enable server side pagination of results (experimental feature)" msgstr "Включить серверную пагинацию результатов (экспериментально)" -#: superset/viz.py:2567 +#: superset/viz.py:2514 msgid "" "Encountered invalid NULL spatial entry," " please consider filtering those " @@ -6680,18 +6777,18 @@ msgstr "Конечная дата должна быть после началь msgid "Engine \"%(engine)s\" cannot be configured through parameters." msgstr "Не удается настроить драйвер \"%(engine)s\" при данных параметрах." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:476 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:512 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:516 msgid "Engine Parameters" msgstr "Параметры драйвера" -#: superset/databases/schemas.py:298 +#: superset/databases/schemas.py:302 msgid "" "Engine spec \"InvalidEngine\" does not support being configured via " "individual parameters." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:366 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:376 msgid "Enter CA_BUNDLE" msgstr "Введите CA_BUNDLE" @@ -6699,7 +6796,7 @@ msgstr "Введите CA_BUNDLE" msgid "Enter Primary Credentials" msgstr "Введите основные учетные данные" -#: superset/views/database/forms.py:151 +#: superset/views/database/forms.py:161 msgid "Enter a delimiter for this data" msgstr "Введите разделитель этих данных" @@ -6711,14 +6808,14 @@ msgstr "Введите название для этого листа" msgid "Enter a new title for the tab" msgstr "Введите новое название для вкладки" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:234 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:255 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:276 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:244 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:286 msgid "Enter duration in seconds" msgstr "Введите время в секундах" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:265 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:367 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:369 msgid "Enter fullscreen" msgstr "Полноэкранный режим" @@ -6745,7 +6842,7 @@ msgstr "Одинаковые размеры дат" msgid "Equal to (=)" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:140 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:182 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:139 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:298 #: superset-frontend/src/explore/components/EmbedCodeContent.jsx:57 @@ -6754,22 +6851,22 @@ msgstr "" msgid "Error" msgstr "Ошибка" -#: superset/connectors/sqla/models.py:1650 superset/models/helpers.py:1843 +#: superset/models/helpers.py:1919 #, python-format msgid "Error in jinja expression in HAVING clause: %(msg)s" msgstr "Ошибка в jinja выражении в операторе HAVING: %(msg)s" -#: superset/connectors/sqla/models.py:1145 +#: superset/connectors/sqla/models.py:1105 superset/models/helpers.py:835 #, python-format msgid "Error in jinja expression in RLS filters: %(msg)s" msgstr "Ошибка в jinja выражении в RLS фильтрах: %(msg)s" -#: superset/connectors/sqla/models.py:1633 superset/models/helpers.py:1831 +#: superset/models/helpers.py:1901 #, python-format msgid "Error in jinja expression in WHERE clause: %(msg)s" msgstr "Ошибка в jinja выражении в операторе WHERE: %(msg)s" -#: superset/connectors/sqla/models.py:826 +#: superset/connectors/sqla/models.py:789 #, python-format msgid "Error in jinja expression in fetch values predicate: %(msg)s" msgstr "Ошибка в jinja выражении в предикате выборки значений: %(msg)s" @@ -6795,7 +6892,7 @@ msgstr "Возникла ошибка при получении графиков msgid "Error while fetching data: %s" msgstr "Возникла ошибка при получении данных: %s" -#: superset/connectors/sqla/models.py:953 superset/models/helpers.py:1029 +#: superset/connectors/sqla/models.py:914 superset/models/helpers.py:1072 #, python-format msgid "Error while rendering virtual dataset query: %(msg)s" msgstr "Произошла ошибка при выполнении запроса виртуального датасета: %(msg)s" @@ -6805,12 +6902,12 @@ msgstr "Произошла ошибка при выполнении запрос msgid "Error: %(error)s" msgstr "Ошибка: %(error)s" -#: superset/views/core.py:820 superset/views/core.py:1918 +#: superset/views/core.py:842 superset/views/core.py:1955 #, python-format msgid "Error: %(msg)s" msgstr "Ошибка: %(msg)s" -#: superset/views/core.py:817 +#: superset/views/core.py:839 msgid "Error: permalink state not found" msgstr "" @@ -6822,7 +6919,7 @@ msgstr "Оценить стоимость запроса" msgid "Estimate selected query cost" msgstr "Оценить стоимость выбранного запроса" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:621 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:615 msgid "Estimate the cost before running a query" msgstr "Спрогнозировать стоимость до выполнения запроса" @@ -6844,7 +6941,7 @@ msgstr "Имена событий" msgid "Event definition" msgstr "Определение события" -#: superset/viz.py:2933 +#: superset/viz.py:2927 #, fuzzy msgid "Event flow" msgstr "Event flow" @@ -6892,11 +6989,11 @@ msgstr "Пример" msgid "Examples" msgstr "Примеры" -#: superset/views/database/forms.py:278 +#: superset/views/database/forms.py:288 msgid "Excel File" msgstr "Excel Файл" -#: superset/views/database/views.py:424 +#: superset/views/database/views.py:427 #, python-format msgid "" "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" @@ -6905,7 +7002,7 @@ msgstr "" "Excel файл \"%(excel_filename)s\" загружен в таблицу \"%(table_name)s\" в" " базе данных \"%(db_name)s\"" -#: superset/views/database/views.py:303 +#: superset/views/database/views.py:306 msgid "Excel to Database configuration" msgstr "Конфигурация Excel файла для импорта в базу данных" @@ -6913,6 +7010,11 @@ msgstr "Конфигурация Excel файла для импорта в ба msgid "Exclude selected values" msgstr "Исключить выбранные значения" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:405 +#, fuzzy +msgid "Excluded roles" +msgstr " (исключено)" + #: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 msgid "Executed SQL" msgstr "Исполненный SQL" @@ -6929,16 +7031,16 @@ msgstr "ID исполнения" msgid "Execution log" msgstr "Журнал Действий" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:411 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:419 msgid "Existing dataset" msgstr "Существующий датасет" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:264 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:366 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:368 msgid "Exit fullscreen" msgstr "Выйти из полноэкранного режима" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 msgid "Expand" msgstr "Расширить" @@ -6950,11 +7052,11 @@ msgstr "Расширить все" msgid "Expand data panel" msgstr "Расширить панель данных" -#: superset-frontend/src/components/Table/index.tsx:209 +#: superset-frontend/src/components/Table/index.tsx:213 msgid "Expand row" msgstr "Развернуть строку" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:197 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 msgid "Expand table preview" msgstr "Расширить предпросмотр таблицы" @@ -6973,6 +7075,7 @@ msgstr "" "(Unix-время). Для рассчета используется mathjs. Например: '2x+5'" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:38 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:37 @@ -6987,11 +7090,11 @@ msgid "Experimental" msgstr "Экспериментальный" #: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 -#: superset/views/core.py:987 +#: superset/views/core.py:1009 msgid "Explore" msgstr "Исследовать" -#: superset/views/core.py:985 +#: superset/views/core.py:1007 #, python-format msgid "Explore - %(table)s" msgstr "Исследовать - %(table)s" @@ -7007,9 +7110,9 @@ msgstr "Создать новый график на основе этих дан #: superset-frontend/src/pages/ChartList/index.tsx:854 #: superset-frontend/src/pages/DashboardList/index.tsx:445 #: superset-frontend/src/pages/DashboardList/index.tsx:720 -#: superset-frontend/src/pages/DatabaseList/index.tsx:415 -#: superset-frontend/src/pages/DatasetList/index.tsx:434 -#: superset-frontend/src/pages/DatasetList/index.tsx:759 +#: superset-frontend/src/pages/DatabaseList/index.tsx:426 +#: superset-frontend/src/pages/DatasetList/index.tsx:445 +#: superset-frontend/src/pages/DatasetList/index.tsx:781 #: superset-frontend/src/pages/SavedQueryList/index.tsx:550 #: superset/views/dashboard/views.py:65 msgid "Export" @@ -7023,7 +7126,7 @@ msgstr "Экспортировать дашборды?" msgid "Export query" msgstr "Экспорт запроса" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:485 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:487 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:316 msgid "Export to .CSV" msgstr "Экспорт в .CSV" @@ -7032,20 +7135,21 @@ msgstr "Экспорт в .CSV" msgid "Export to .JSON" msgstr "Экспорт в .JSON" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:335 #, fuzzy msgid "Export to Excel" msgstr "Экспорт в YAML" -#: superset/views/base.py:606 +#: superset/views/base.py:607 msgid "Export to YAML" msgstr "Экспорт в YAML" -#: superset/views/base.py:606 +#: superset/views/base.py:607 msgid "Export to YAML?" msgstr "Экспортировать в YAML?" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:496 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:498 msgid "Export to full .CSV" msgstr "Экспорт в целый .CSV" @@ -7057,12 +7161,12 @@ msgstr "Экспорт исходных данных в .CSV" msgid "Export to pivoted .CSV" msgstr "Экспорт сводной таблицы в .CSV" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:88 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 msgid "Expose database in SQL Lab" msgstr "Предоставить доступ к базе в Лаборатории SQL" -#: superset-frontend/src/pages/DatabaseList/index.tsx:354 -#: superset-frontend/src/pages/DatabaseList/index.tsx:460 +#: superset-frontend/src/pages/DatabaseList/index.tsx:365 +#: superset-frontend/src/pages/DatabaseList/index.tsx:471 #: superset/views/database/mixins.py:183 msgid "Expose in SQL Lab" msgstr "Доступен в SQL редакторе" @@ -7071,12 +7175,12 @@ msgstr "Доступен в SQL редакторе" msgid "Expose this DB in SQL Lab" msgstr "Предоставить доступ к базе в Лаборатории SQL" -#: superset/connectors/sqla/views.py:161 +#: superset/connectors/sqla/views.py:160 msgid "Expression" msgstr "Выражение" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:908 -#: superset/connectors/sqla/views.py:257 superset/connectors/sqla/views.py:494 +#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:401 #: superset/views/database/mixins.py:193 msgid "Extra" msgstr "Дополнительные параметры" @@ -7147,8 +7251,8 @@ msgstr "" msgid "Factor to multiply the metric by" msgstr "Число, на которое умножается мера" -#: superset/views/database/forms.py:167 superset/views/database/forms.py:324 -#: superset/views/database/forms.py:455 +#: superset/views/database/forms.py:177 superset/views/database/forms.py:334 +#: superset/views/database/forms.py:465 msgid "Fail" msgstr "Ошибка" @@ -7159,16 +7263,16 @@ msgid "Failed" msgstr "Ошибка" #: superset-frontend/src/SqlLab/actions/sqlLab.js:210 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:346 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:350 msgid "Failed at retrieving results" msgstr "Невозможно выполнить запрос" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:500 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:496 #, python-format msgid "Failed at stopping query. %s" msgstr "Не удалось остановить запрос. %s" -#: superset-frontend/src/components/ReportModal/index.tsx:343 +#: superset-frontend/src/components/ReportModal/index.tsx:342 msgid "Failed to create report" msgstr "Не удалось создать рассылку" @@ -7177,23 +7281,38 @@ msgstr "Не удалось создать рассылку" msgid "Failed to execute %(query)s" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:97 +#, fuzzy +msgid "Failed to generate chart edit URL" +msgstr "Не удалось загрузить данные графика" + #: superset-frontend/src/pages/Chart/index.tsx:57 msgid "Failed to load chart data" msgstr "Не удалось загрузить данные графика" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:402 #: superset-frontend/src/pages/Chart/index.tsx:69 msgid "Failed to load chart data." msgstr "Не удалось загрузить данные графика." +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 +msgid "Failed to load dimensions for drill by" +msgstr "" + #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 msgid "Failed to retrieve advanced type" msgstr "Не удалось получить расширенный тип" +#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +#, fuzzy +msgid "Failed to save cross-filter scoping" +msgstr "Задать область действия кросс-фильтра" + #: superset/errors.py:143 superset/sqllab/sql_json_executer.py:189 msgid "Failed to start remote query on a worker." msgstr "Не удалось запустить удаленный запрос на сервере." -#: superset-frontend/src/components/ReportModal/index.tsx:342 +#: superset-frontend/src/components/ReportModal/index.tsx:341 msgid "Failed to update report" msgstr "Не удалось обновить отчет" @@ -7217,15 +7336,15 @@ msgstr "Избранное" msgid "February" msgstr "Февраль" -#: superset/connectors/sqla/views.py:488 +#: superset/connectors/sqla/views.py:395 msgid "Fetch Values Predicate" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:538 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:531 msgid "Fetch data preview" msgstr "Получить данные для просмотра" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:352 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:354 #, python-format msgid "Fetched %s" msgstr "Получено %s" @@ -7289,12 +7408,18 @@ msgid "Filter Settings" msgstr "Настройки фильтра" #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:825 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:362 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:373 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:134 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:255 msgid "Filter Type" msgstr "Тип фильтра" #: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:28 -msgid "Filter box" -msgstr "Фильтр-виджет" +#, fuzzy +msgid "Filter box (deprecated)" +msgstr "Не выбраны фильтры." #: superset-frontend/src/dashboard/components/SliceAdder.jsx:351 #, fuzzy @@ -7313,7 +7438,7 @@ msgstr "Настройки фильтра для \"Фильтр-виджета\" msgid "Filter has default value" msgstr "Фильтр имеет значение по умолчанию" -#: superset-frontend/src/components/Table/index.tsx:197 +#: superset-frontend/src/components/Table/index.tsx:201 #, fuzzy msgid "Filter menu" msgstr "Имя фильтра" @@ -7332,7 +7457,7 @@ msgstr "" "Фильтр предлагает только те значения, которые отобраны выбранными " "фильтрами" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:289 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:283 msgid "Filter results" msgstr "Фильтровать результаты" @@ -7368,7 +7493,7 @@ msgstr "Фильтровать значения (зависит от регис msgid "Filter value is required" msgstr "Требуется значение фильтра" -#: superset/connectors/sqla/models.py:1549 superset/models/helpers.py:1754 +#: superset/models/helpers.py:1815 msgid "Filter value list cannot be empty" msgstr "Список для фильтрации не может быть пуст" @@ -7376,7 +7501,7 @@ msgstr "Список для фильтрации не может быть пус msgid "Filter your charts" msgstr "Поиск" -#: superset/connectors/sqla/views.py:159 +#: superset/connectors/sqla/views.py:158 msgid "Filterable" msgstr "Фильтруемый" @@ -7384,7 +7509,7 @@ msgstr "Фильтруемый" #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 #: superset-frontend/src/explore/controls.jsx:446 #: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:35 -#: superset/viz.py:2142 +#: superset/viz.py:2071 msgid "Filters" msgstr "Фильтры" @@ -7410,7 +7535,7 @@ msgstr "Конфигурация фильтров" msgid "Filters out of scope (%d)" msgstr "Фильтры вне рамок дашборда (%d)" -#: superset/connectors/sqla/views.py:342 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:435 msgid "" "Filters with the same group key will be ORed together within the group, " "while different filter groups will be ANDed together. Undefined group " @@ -7422,9 +7547,9 @@ msgid "" " 'Europe')." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1077 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1125 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1857 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1132 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1180 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 msgid "Finish" msgstr "Завершить" @@ -7485,7 +7610,7 @@ msgstr "Размер шрифта для наибольшего значения msgid "Font size for the smallest value in the list" msgstr "Размер шрифта для наименьшего значения в списке" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:173 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 msgid "" "For Bigquery, Presto and Postgres, shows a button to compute cost before " "running a query." @@ -7503,7 +7628,7 @@ msgid "" "function, refer to the" msgstr "" -#: superset/connectors/sqla/views.py:336 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:408 msgid "" "For regular filters, these are the roles this filter will be applied to. " "For base filters, these are the roles that the filter DOES NOT apply to, " @@ -7514,7 +7639,7 @@ msgstr "" msgid "Force" msgstr "Силовой алгоритм" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:141 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 msgid "" "Force all tables and views to be created in this schema when clicking " "CTAS or CVAS in SQL Lab." @@ -7522,20 +7647,20 @@ msgstr "" "Принудить создание новых таблиц через CTAS или CVAS в Лаборатории SQL в " "этой схеме при нажатии соответствующих кнопок" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:84 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 msgid "Force date format" msgstr "Принудительный перевод к формату дата/время" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:381 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 msgid "Force refresh" msgstr "Обновить" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:292 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:291 msgid "Force refresh schema list" msgstr "Принудительно обновить список схем" -#: superset-frontend/src/components/TableSelector/index.tsx:317 +#: superset-frontend/src/components/TableSelector/index.tsx:307 msgid "Force refresh table list" msgstr "Принудительно обновить список таблиц" @@ -7551,11 +7676,11 @@ msgstr "Внешний ключ" msgid "Forest Green" msgstr "Лесной зеленый" -#: superset/explore/commands/get.py:87 superset/views/core.py:834 +#: superset/explore/commands/get.py:87 superset/views/core.py:856 msgid "Form data not found in cache, reverting to chart metadata." msgstr "Данные формы не найдены в кэше, возвращение к метаданным графика." -#: superset/explore/commands/get.py:95 superset/views/core.py:840 +#: superset/explore/commands/get.py:95 superset/views/core.py:862 msgid "Form data not found in cache, reverting to dataset metadata." msgstr "Данные формы не найдены в кэше, возвращение к метаданным датасета." @@ -7565,7 +7690,7 @@ msgstr "Данные формы не найдены в кэше, возвращ msgid "Formattable" msgstr "Форматируемый" -#: superset-frontend/src/components/ReportModal/index.tsx:255 +#: superset-frontend/src/components/ReportModal/index.tsx:254 msgid "Formatted CSV attached in email" msgstr "Форматированный CSV, прикрепленный к письму" @@ -7616,7 +7741,7 @@ msgstr "Сила трения между вершинами" msgid "Friday" msgstr "Пятница" -#: superset/utils/date_parser.py:267 superset/viz.py:392 +#: superset/utils/date_parser.py:267 superset/viz.py:403 msgid "From date cannot be larger than to date" msgstr "Дата начала не может быть позже даты конца" @@ -7686,7 +7811,7 @@ msgstr "" msgid "Get the specify date for the holiday" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:713 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:714 msgid "Go to the edit mode to configure the dashboard and add charts" msgstr "Перейдите в режим редактирования для изменения дашборда и добавьте графики" @@ -7741,20 +7866,23 @@ msgstr "Группировать по" msgid "Group By filter plugin" msgstr "" -#: superset/viz.py:927 -msgid "Group By' and 'Columns' can't overlap" -msgstr "Измерения и Столбцы не могут повторяться" - #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:84 msgid "Group By, Metrics or Percentage Metrics must have a value" msgstr "Измерения, Меры или Процентные меры должны иметь значение" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:433 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:139 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:267 +#, fuzzy +msgid "Group Key" +msgstr "Группировать по" + #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 msgid "Group by" msgstr "Группировать по" -#: superset/connectors/sqla/views.py:158 +#: superset/connectors/sqla/views.py:157 msgid "Groupable" msgstr "Группируемый" @@ -7780,12 +7908,12 @@ msgstr "Создан(а)" msgid "Header" msgstr "Заголовок" -#: superset/views/database/forms.py:244 superset/views/database/forms.py:331 +#: superset/views/database/forms.py:254 superset/views/database/forms.py:341 msgid "Header Row" msgstr "Строка заголовка" #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 -#: superset/viz.py:2249 +#: superset/viz.py:2183 msgid "Heatmap" msgstr "Тепловая карта" @@ -7809,7 +7937,7 @@ msgstr "Высота спарклайна" msgid "Hide Line" msgstr "Скрыть линию" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:394 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:396 msgid "Hide chart description" msgstr "Скрыть описание графика" @@ -7835,12 +7963,12 @@ msgid "Hierarchy" msgstr "Иерархия" #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 -#: superset/viz.py:1743 +#: superset/viz.py:1656 msgid "Histogram" msgstr "Гистограмма" #: superset-frontend/src/pages/Home/index.tsx:333 -#: superset/initialization/__init__.py:233 +#: superset/initialization/__init__.py:235 msgid "Home" msgstr "Главная" @@ -7849,7 +7977,7 @@ msgstr "Главная" msgid "Horizon Chart" msgstr "Horizon Charts" -#: superset/viz.py:2310 +#: superset/viz.py:2246 #, fuzzy msgid "Horizon Charts" msgstr "Horizon Charts" @@ -7858,7 +7986,7 @@ msgstr "Horizon Charts" msgid "Horizontal" msgstr "Горизонтально" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:166 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 msgid "Horizontal (Top)" msgstr "Горизонтально (сверху)" @@ -7870,12 +7998,12 @@ msgstr "Выравнивание по горизонтали" msgid "Host" msgstr "Хост" -#: superset/db_engine_specs/base.py:1839 -#: superset/db_engine_specs/clickhouse.py:203 +#: superset/db_engine_specs/base.py:1872 +#: superset/db_engine_specs/clickhouse.py:204 msgid "Hostname or IP address" msgstr "Имя хоста или IP адрес" -#: superset/db_engine_specs/base.py:104 +#: superset/db_engine_specs/base.py:105 msgid "Hour" msgstr "Час" @@ -7935,7 +8063,7 @@ msgstr "ID" msgid "Id of root node of the tree." msgstr "Id корневой вершины дерева." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:391 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:401 msgid "" "If Presto or Trino, all the queries in SQL Lab are going to be executed " "as the currently logged on user who must have permission to run them. If " @@ -7965,7 +8093,7 @@ msgstr "" "учетную запись, но имперсонировать зарегистрированного пользователя можно" " через свойство hive.server2.proxy.user." -#: superset/views/database/forms.py:164 +#: superset/views/database/forms.py:174 msgid "If Table Already Exists" msgstr "Если таблица уже существует" @@ -7973,7 +8101,7 @@ msgstr "Если таблица уже существует" msgid "If a metric is specified, sorting will be done based on the metric value" msgstr "Если мера задана, сортировка будет произведена на основании значений меры" -#: superset/views/database/forms.py:238 +#: superset/views/database/forms.py:248 msgid "" "If duplicate columns are not overridden, they will be presented as \"X.1," " X.2 ...X.x\"" @@ -7987,7 +8115,7 @@ msgstr "" "Если установлено, выберите схемы, в которые разрешена загрузка CSV на " "вкладке \"Дополнительно\"." -#: superset/views/database/forms.py:318 superset/views/database/forms.py:449 +#: superset/views/database/forms.py:328 superset/views/database/forms.py:459 msgid "" "If table exists do one of the following: Fail (do nothing), Replace (drop" " and recreate table) or Append (insert data)." @@ -8008,7 +8136,7 @@ msgstr "Игнорировать пустые локации" msgid "Ignore time" msgstr "Игнорировать время" -#: superset-frontend/src/components/ReportModal/index.tsx:252 +#: superset-frontend/src/components/ReportModal/index.tsx:251 msgid "Image (PNG) embedded in email" msgstr "Изображение (PNG), встроенное в email" @@ -8016,7 +8144,7 @@ msgstr "Изображение (PNG), встроенное в email" msgid "Image download failed, please refresh and try again." msgstr "Ошибка скачивания изображения, пожалуйста, обновите и попробуйте заново." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:386 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:396 msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" msgstr "" "Имперсонировать пользователя (Presto, Trino, Drill, Hive, и Google " @@ -8039,11 +8167,11 @@ msgstr "Импортировать %s" msgid "Import Dashboard(s)" msgstr "Импортировать дашборд(ы)" -#: superset/initialization/__init__.py:337 +#: superset/initialization/__init__.py:331 msgid "Import Dashboards" msgstr "Импортировать дашборды" -#: superset/connectors/sqla/views.py:386 +#: superset/connectors/sqla/views.py:293 msgid "Import a table definition" msgstr "" @@ -8068,15 +8196,15 @@ msgstr "Импортировать дашборды" msgid "Import database failed for an unknown reason" msgstr "Не удалось импортировать базу данных по неизвестной причине" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1912 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1969 msgid "Import database from file" msgstr "Импортировать базу данных из файла" -#: superset/datasets/commands/exceptions.py:185 +#: superset/datasets/commands/exceptions.py:202 msgid "Import dataset failed for an unknown reason" msgstr "Не удалось импортировать датасет по неизвестной причине" -#: superset-frontend/src/pages/DatasetList/index.tsx:620 +#: superset-frontend/src/pages/DatasetList/index.tsx:631 msgid "Import datasets" msgstr "Импортировать датасеты" @@ -8103,7 +8231,7 @@ msgstr "в" msgid "Include Series" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:295 +#: superset-frontend/src/components/ReportModal/index.tsx:294 msgid "Include a description that will be sent with your report" msgstr "Описание, которое будет отправлено вместе с вашим отчетом" @@ -8120,7 +8248,7 @@ msgstr "Включить время" msgid "Index" msgstr "Индекс" -#: superset/views/database/forms.py:210 superset/views/database/forms.py:341 +#: superset/views/database/forms.py:220 superset/views/database/forms.py:351 msgid "Index Column" msgstr "Индесный столбец" @@ -8159,11 +8287,24 @@ msgstr "Мгновенная Фильтрация" msgid "Intensity" msgstr "Насыщенность" -#: superset/views/database/forms.py:190 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:85 +#, fuzzy +msgid "Intensity Radius" +msgstr "Радиус маркера" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:86 +msgid "Intensity Radius is the radius at which the weight is distributed" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:69 +msgid "Intensity is the value multiplied by the weight to obtain the final weight" +msgstr "" + +#: superset/views/database/forms.py:200 msgid "Interpret Datetime Format Automatically" msgstr "Автоматически интерпретировать формат дата/время" -#: superset/views/database/forms.py:191 +#: superset/views/database/forms.py:201 msgid "Interpret the datetime format automatically" msgstr "Автоматически интерпретировать формат дата/время" @@ -8192,6 +8333,20 @@ msgstr "Столбец с началом интервала" msgid "Intervals" msgstr "Интервалы" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:68 +#, fuzzy +msgid "Intesity" +msgstr "Насыщенность" + +#: superset/db_engine_specs/ocient.py:274 +#, fuzzy +msgid "" +"Invalid Connection String: Expecting String of the form " +"'ocient://user:pass@host:port/database'." +msgstr "" +"Недопустимая строка для подключения, валидная строка соответствует " +"шаблону: драйвер://имя-пользователя:пароль@хост/имя-базы-данных" + #: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 msgid "Invalid JSON" msgstr "Недопустимый формат JSON" @@ -8205,7 +8360,7 @@ msgstr "Невалидный расширенный тип данных: %(advan msgid "Invalid certificate" msgstr "Неверный сертификат" -#: superset/views/core.py:1422 +#: superset/views/core.py:1463 msgid "" "Invalid connection string, a valid string usually follows:\n" "'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" @@ -8241,15 +8396,15 @@ msgstr "Недопустимое CRON выражение" msgid "Invalid cumulative operator: %(operator)s" msgstr "" -#: superset/connectors/sqla/views.py:181 superset/datasets/schemas.py:44 +#: superset/connectors/sqla/views.py:180 superset/datasets/schemas.py:44 msgid "Invalid date/timestamp format" msgstr "Недопустимый формат дата/время" -#: superset/viz.py:2160 +#: superset/viz.py:2091 msgid "Invalid filter configuration, please select a column" msgstr "Неверная конфигурация фильтра, пожалуйста, выберите столбец" -#: superset/connectors/sqla/models.py:1623 superset/models/helpers.py:1820 +#: superset/models/helpers.py:1891 #, python-format msgid "Invalid filter operation type: %(op)s" msgstr "" @@ -8274,7 +8429,7 @@ msgstr "Неверная конфигурация широты и долготы msgid "Invalid longitude/latitude" msgstr "Недопустимые долгота/широта" -#: superset/utils/core.py:1364 +#: superset/utils/core.py:1373 #, python-format msgid "Invalid metric object: %(metric)s" msgstr "" @@ -8293,7 +8448,12 @@ msgstr "Недопустимые настройки для %(rolling_type)s: %(o msgid "Invalid permalink key" msgstr "" -#: superset/common/query_actions.py:228 +#: superset/db_engine_specs/ocient.py:292 +#, python-format +msgid "Invalid reference to column: \"%(column)s\"" +msgstr "" + +#: superset/common/query_actions.py:227 #, python-format msgid "Invalid result type: %(result_type)s" msgstr "Недопустимый тип ответа: %(result_type)s" @@ -8303,7 +8463,7 @@ msgstr "Недопустимый тип ответа: %(result_type)s" msgid "Invalid rolling_type: %(type)s" msgstr "" -#: superset/viz.py:2530 +#: superset/viz.py:2474 #, python-format msgid "Invalid spatial point encountered: %s" msgstr "" @@ -8313,7 +8473,7 @@ msgstr "" msgid "Invalid state." msgstr "" -#: superset/reports/commands/create.py:144 +#: superset/reports/commands/create.py:142 #, python-format msgid "Invalid tab ids: %s(tab_ids)" msgstr "" @@ -8322,7 +8482,7 @@ msgstr "" msgid "Inverse selection" msgstr "Выбрать противоположные значения" -#: superset-frontend/src/components/Table/index.tsx:205 +#: superset-frontend/src/components/Table/index.tsx:209 msgid "Invert current page" msgstr "" @@ -8341,7 +8501,7 @@ msgstr "Является измерением" msgid "Is false" msgstr "Отключено" -#: superset/views/base_api.py:143 +#: superset/views/base_api.py:149 msgid "Is favorite" msgstr "В избранном" @@ -8360,14 +8520,14 @@ msgstr "Не пусто" msgid "Is null" msgstr "Не пусто" -#: superset/views/base_api.py:171 +#: superset/views/base_api.py:177 #, fuzzy msgid "Is tagged" msgstr "Запущен" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:362 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 -#: superset/connectors/sqla/views.py:162 +#: superset/connectors/sqla/views.py:161 msgid "Is temporal" msgstr "Содержит дату/время" @@ -8411,7 +8571,7 @@ msgstr "JSON метаданные" msgid "JSON metadata is invalid!" msgstr "JSON метаданные не валидны!" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 msgid "" "JSON string containing additional connection configuration. This is used " "to provide connection information for systems like Hive, Presto and " @@ -8454,11 +8614,11 @@ msgstr "Javascript генератор всплывающих подсказок" msgid "Jinja templating" msgstr "Шаблонизацию Jinja." -#: superset/views/database/forms.py:233 +#: superset/views/database/forms.py:243 msgid "Json list of the column names that should be read" msgstr "Список столбцов в формате JSON из файла, которые будут использованы." -#: superset/views/database/forms.py:464 +#: superset/views/database/forms.py:474 msgid "" "Json list of the column names that should be read. If not None, only " "these columns will be read from the file." @@ -8468,7 +8628,7 @@ msgstr "" "указаны названия столбцов, из файла будут загружены только указанные " "столбцы." -#: superset/views/database/forms.py:203 +#: superset/views/database/forms.py:213 msgid "" "Json list of the values that should be treated as null. Examples: [\"\"] " "for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " @@ -8478,7 +8638,7 @@ msgstr "" " [\"\"] для пустых строк, [\"None\", \"N/A\"], [\"nan\", \"null\"]. " "Предупреждение: База данных Hive поддерживает только одно значение." -#: superset/views/database/forms.py:394 +#: superset/views/database/forms.py:404 msgid "" "Json list of the values that should be treated as null. Examples: [\"\"]," " [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " @@ -8530,8 +8690,8 @@ msgstr "Километры" msgid "LIMIT" msgstr "ОГРАНИЧЕНИЕ" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:80 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:109 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:93 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:122 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:251 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:255 @@ -8608,7 +8768,7 @@ msgstr "Большой" msgid "Last" msgstr "Последний" -#: superset/connectors/sqla/views.py:481 superset/views/database/mixins.py:190 +#: superset/connectors/sqla/views.py:388 superset/views/database/mixins.py:190 msgid "Last Changed" msgstr "Дата изменения" @@ -8635,7 +8795,7 @@ msgstr "Последнее доступное значение: %s" #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:177 #: superset-frontend/src/pages/ChartList/index.tsx:445 #: superset-frontend/src/pages/CssTemplateList/index.tsx:158 -#: superset-frontend/src/pages/DatabaseList/index.tsx:380 +#: superset-frontend/src/pages/DatabaseList/index.tsx:391 msgid "Last modified" msgstr "Последнее изменение" @@ -8693,7 +8853,7 @@ msgstr "Измененные давно" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:28 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:90 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:371 msgid "Left" msgstr "Слева" @@ -8725,7 +8885,7 @@ msgstr "Левый отступ (в пикселях), дает больше п msgid "Left to Right" msgstr "Слева направо" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:144 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 msgid "Left value" msgstr "Левое значение" @@ -8738,7 +8898,6 @@ msgstr "Левое значение" #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:33 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 #: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 #: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 @@ -8754,15 +8913,16 @@ msgstr "Левое значение" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:35 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 #: superset-frontend/src/visualizations/TimeTable/index.ts:35 msgid "Legacy" msgstr "Устарел" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:154 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:289 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:115 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:99 msgid "Legend" msgstr "Легенда" @@ -8770,7 +8930,7 @@ msgstr "Легенда" msgid "Legend Format" msgstr "Формат легенды" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:95 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:92 msgid "Legend Orientation" msgstr "Ориентация легенды" @@ -8778,7 +8938,7 @@ msgstr "Ориентация легенды" msgid "Legend Position" msgstr "Расположение легенды" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:72 msgid "Legend type" msgstr "Тип легенды" @@ -8928,7 +9088,7 @@ msgid "Lines encoding" msgstr "Направление сортировки" #: superset-frontend/src/pages/SavedQueryList/index.tsx:226 -#: superset-frontend/src/views/CRUD/hooks.ts:673 +#: superset-frontend/src/views/CRUD/hooks.ts:677 msgid "Link Copied!" msgstr "Ссылка скопирована" @@ -8961,7 +9121,7 @@ msgstr "" "Список числовых значений для отображения в виде треугольников на графике." " Например, 10,20,30" -#: superset-frontend/src/components/TableSelector/index.tsx:187 +#: superset-frontend/src/components/TableSelector/index.tsx:184 msgid "List updated" msgstr "Список обновлен" @@ -8990,8 +9150,8 @@ msgid "Loading" msgstr "Загрузка" #: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:495 -#: superset-frontend/src/components/Select/Select.tsx:470 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:496 +#: superset-frontend/src/components/Select/Select.tsx:477 #: superset-frontend/src/components/Select/utils.tsx:152 #: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 #: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 @@ -9020,13 +9180,13 @@ msgstr "Логарифмическая ось" msgid "Logarithmic scale on primary y-axis" msgstr "Логарифмическая шкала для главной оси Y" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:432 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:449 msgid "Logarithmic scale on secondary y-axis" msgstr "Логарифмическая шкала для вторичной оси Y" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:396 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:420 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:429 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:437 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:446 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:222 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:225 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:210 @@ -9095,11 +9255,11 @@ msgstr "МАЙ" msgid "MON" msgstr "ПН" -#: superset/connectors/sqla/views.py:490 +#: superset/connectors/sqla/views.py:397 msgid "Main Datetime Column" msgstr "Основной столбец с временем" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:283 +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:292 msgid "" "Make sure that the controls are configured properly and the datasource " "contains data for the selected time range" @@ -9107,17 +9267,17 @@ msgstr "" "Убедитесь, что настройки графика верно сконфигурированы и источник данных" " содержит данные для выбранного временного интервала." -#: superset/views/core.py:1717 +#: superset/views/core.py:1752 msgid "" "Malformed request. slice_id or table_name and db_name arguments are " "expected" msgstr "Некорректный запрос. Ожидаются аргументы slice_id или table_name и db_name" -#: superset/initialization/__init__.py:277 -#: superset/initialization/__init__.py:289 -#: superset/initialization/__init__.py:341 -#: superset/initialization/__init__.py:412 -#: superset/initialization/__init__.py:425 +#: superset/initialization/__init__.py:279 +#: superset/initialization/__init__.py:291 +#: superset/initialization/__init__.py:335 +#: superset/initialization/__init__.py:406 +#: superset/initialization/__init__.py:419 msgid "Manage" msgstr "Управление" @@ -9135,7 +9295,7 @@ msgstr "Управляйте своими базами данных" msgid "Mandatory" msgstr "Обязательно" -#: superset/views/database/forms.py:350 +#: superset/views/database/forms.py:360 msgid "Mangle Duplicate Columns" msgstr "Управление повторяющимися столбцами" @@ -9154,6 +9314,8 @@ msgstr "Вручную задать мин./макс. значения для о #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:67 @@ -9176,7 +9338,7 @@ msgstr "Стиль карты" msgid "MapBox" msgstr "Mapbox" -#: superset/viz.py:2322 +#: superset/viz.py:2258 msgid "Mapbox" msgstr "Mapbox" @@ -9184,11 +9346,11 @@ msgstr "Mapbox" msgid "March" msgstr "Март" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:50 msgid "Margin" msgstr "Отступ" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:348 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:354 msgid "Mark a column as temporal in \"Edit datasource\" modal" msgstr "Присвойте столбцу формат даты/времени в настройках датасета" @@ -9271,7 +9433,7 @@ msgstr "" " масштабирования это гарантирует, что окружность соответствует этому " "максимальному радиусу" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:232 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 #, fuzzy msgid "Maximum value" msgstr "Суммарные значения" @@ -9326,7 +9488,7 @@ msgstr "Средний" msgid "Menu actions trigger" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:237 +#: superset-frontend/src/components/ReportModal/index.tsx:236 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 msgid "Message content" msgstr "Содержимое сообщения" @@ -9335,8 +9497,8 @@ msgstr "Содержимое сообщения" msgid "Metadata" msgstr "Метаданные" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:450 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:454 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:486 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:490 msgid "Metadata Parameters" msgstr "Параметры метаданных" @@ -9361,13 +9523,12 @@ msgstr "Метод" #: superset-frontend/src/explore/controls.jsx:167 #: superset-frontend/src/explore/controls.jsx:168 #: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 -#: superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:249 msgid "Metric" msgstr "Мера" -#: superset/connectors/sqla/models.py:1264 -#: superset/connectors/sqla/models.py:1847 superset/models/helpers.py:1192 -#: superset/models/helpers.py:1448 +#: superset/connectors/sqla/models.py:1133 superset/models/helpers.py:1236 +#: superset/models/helpers.py:1529 #, python-format msgid "Metric '%(metric)s' does not exist" msgstr "Мера '%(metric)s' не существует" @@ -9402,7 +9563,7 @@ msgstr "" msgid "Metric for node values" msgstr "Мера для значений вершин" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:106 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:119 msgid "Metric name" msgstr "Имя меры" @@ -9427,6 +9588,7 @@ msgstr "Мера для отображения нижнего заголовка msgid "Metric to sort the results by" msgstr "Показатель, по которому сортировать результаты" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:139 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:78 msgid "Metric used as a weight for the grid's coloring" msgstr "Мера, используемая как вес для раскрашивания сетки" @@ -9471,7 +9633,7 @@ msgstr "" #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 #: superset-frontend/src/explore/controls.jsx:152 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 -#: superset/connectors/sqla/views.py:207 +#: superset/connectors/sqla/views.py:206 msgid "Metrics" msgstr "Меры" @@ -9556,11 +9718,11 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:85 #: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:152 msgid "Minimum threshold in percentage points for showing labels." msgstr "Минимальный порог в процентных пунктах для отображения меток" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:231 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:69 #, fuzzy msgid "Minimum value" msgstr "Суммарные значения" @@ -9583,7 +9745,7 @@ msgstr "Минимальное значение индикатора" msgid "Minor Split Line" msgstr "Разметка полотна линиями" -#: superset/db_engine_specs/base.py:99 +#: superset/db_engine_specs/base.py:100 msgid "Minute" msgstr "Минута" @@ -9613,12 +9775,13 @@ msgstr "Смешанная диаграмма временных рядов" #: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:278 #: superset-frontend/src/pages/AlertReportList/index.tsx:335 #: superset-frontend/src/pages/DashboardList/index.tsx:347 -#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:375 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:152 #: superset-frontend/src/pages/SavedQueryList/index.tsx:369 #: superset-frontend/src/pages/Tags/index.tsx:118 -#: superset/connectors/sqla/views.py:367 superset/connectors/sqla/views.py:495 -#: superset/views/dashboard/mixin.py:85 superset/views/dashboard/views.py:186 -#: superset/views/database/mixins.py:199 superset/views/sql_lab/views.py:85 +#: superset/connectors/sqla/views.py:402 superset/views/dashboard/mixin.py:85 +#: superset/views/dashboard/views.py:186 superset/views/database/mixins.py:199 +#: superset/views/sql_lab/views.py:85 msgid "Modified" msgstr "Изменено" @@ -9633,7 +9796,7 @@ msgstr "Изменено %s" #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 #: superset-frontend/src/pages/ChartList/index.tsx:431 #: superset-frontend/src/pages/DashboardList/index.tsx:326 -#: superset-frontend/src/pages/DatasetList/index.tsx:374 +#: superset-frontend/src/pages/DatasetList/index.tsx:385 msgid "Modified by" msgstr "Кем изменено" @@ -9646,7 +9809,7 @@ msgstr "Изменённые столбцы: %s" msgid "Monday" msgstr "Понедельник" -#: superset/db_engine_specs/base.py:108 +#: superset/db_engine_specs/base.py:109 msgid "Month" msgstr "Месяц" @@ -9711,7 +9874,7 @@ msgstr "Несколько" msgid "Multiple Line Charts" msgstr "Несколько линейных диаграмм" -#: superset/views/database/views.py:465 +#: superset/views/database/views.py:468 msgid "" "Multiple file extensions are not allowed for columnar uploads. Please " "make sure all files are of the same extension." @@ -9749,11 +9912,11 @@ msgstr "Должно быть уникальным" msgid "Must choose either a chart or a dashboard" msgstr "Выберите график или дашборд" -#: superset/viz.py:2346 +#: superset/viz.py:2283 msgid "Must have a [Group By] column to have 'count' as the [Label]" msgstr "" -#: superset/viz.py:1752 +#: superset/viz.py:1666 msgid "Must have at least one numeric column specified" msgstr "Должен быть указан хотя бы один числовой столбец" @@ -9761,7 +9924,7 @@ msgstr "Должен быть указан хотя бы один числово msgid "Must provide credentials for the SSH Tunnel" msgstr "" -#: superset/connectors/sqla/models.py:1582 superset/models/helpers.py:1780 +#: superset/models/helpers.py:1848 msgid "Must specify a value for filters with comparison operators" msgstr "Необходимо указать значение для фильтров с операторами сравнения" @@ -9800,19 +9963,21 @@ msgid "NUMERIC" msgstr "Числовой (NUMERIC/DECIMAL)" #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:149 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:782 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:212 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:148 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:789 #: superset-frontend/src/pages/AlertReportList/index.tsx:272 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 #: superset-frontend/src/pages/CssTemplateList/index.tsx:131 -#: superset-frontend/src/pages/DatasetList/index.tsx:334 +#: superset-frontend/src/pages/DatasetList/index.tsx:345 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:130 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:248 #: superset-frontend/src/pages/SavedQueryList/index.tsx:283 #: superset-frontend/src/pages/Tags/index.tsx:109 -#: superset/connectors/sqla/views.py:361 superset/views/chart/mixin.py:85 +#: superset/views/chart/mixin.py:85 msgid "Name" msgstr "Имя" @@ -9825,11 +9990,11 @@ msgstr "Имя обязательно" msgid "Name must be unique" msgstr "Имя должно быть уникальным" -#: superset/views/database/forms.py:406 +#: superset/views/database/forms.py:416 msgid "Name of table to be created from columnar data." msgstr "Имя таблицы, созданной из файла столбчатого формата." -#: superset/views/database/forms.py:270 +#: superset/views/database/forms.py:280 msgid "Name of table to be created from excel data." msgstr "Имя таблицы, созданной из Excel файла." @@ -9849,7 +10014,7 @@ msgstr "Имя столбца id" msgid "Name of the source nodes" msgstr "Имя исходных вершин" -#: superset/connectors/sqla/views.py:428 +#: superset/connectors/sqla/views.py:335 msgid "Name of the table that exists in the source database" msgstr "Имя таблицы, которая существует в базе данных" @@ -9904,17 +10069,17 @@ msgstr "Новый набор фильтров" msgid "New header" msgstr "Подзаголовок" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:329 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:331 msgid "New tab" msgstr "Новая вкладка" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:268 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:310 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:278 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:320 msgid "New tab (Ctrl + q)" msgstr "Новая вкладка (CTRL + Q)" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:269 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:311 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:279 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:321 msgid "New tab (Ctrl + t)" msgstr "Новая вкладка (CTRL + T)" @@ -9936,9 +10101,9 @@ msgstr "Диаграмма Найтингейл" #: superset-frontend/src/pages/ChartList/index.tsx:708 #: superset-frontend/src/pages/DashboardList/index.tsx:507 #: superset-frontend/src/pages/DashboardList/index.tsx:589 -#: superset-frontend/src/pages/DatabaseList/index.tsx:468 -#: superset-frontend/src/pages/DatabaseList/index.tsx:488 -#: superset-frontend/src/pages/DatasetList/index.tsx:573 +#: superset-frontend/src/pages/DatabaseList/index.tsx:479 +#: superset-frontend/src/pages/DatabaseList/index.tsx:499 +#: superset-frontend/src/pages/DatasetList/index.tsx:584 msgid "No" msgstr "Нет" @@ -9960,6 +10125,11 @@ msgstr "Нет данных" msgid "No Results" msgstr "Нет результатов" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:235 +#, fuzzy +msgid "No Rules yet" +msgstr "недавние(их)" + #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:116 msgid "No annotation layers" msgstr "Нет слоев аннотаций" @@ -9994,7 +10164,7 @@ msgstr "Нет графиков" msgid "No columns" msgstr "Нет столбцов" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:242 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 #, fuzzy msgid "No columns found" msgstr "Столбцы формата дата/время не найдены" @@ -10008,7 +10178,7 @@ msgstr "Не найдено подходящих столбцов" msgid "No compatible datasets found" msgstr "Не найдено подходящих столбцов" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 #, fuzzy msgid "No compatible schema found" msgstr "Не найдено подходящих столбцов" @@ -10022,14 +10192,14 @@ msgstr "Нет дашбордов" msgid "No dashboards yet" msgstr "Нет дашбордов" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:133 -#: superset-frontend/src/components/Table/index.tsx:203 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 +#: superset-frontend/src/components/Table/index.tsx:207 #: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:225 #: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 msgid "No data" msgstr "Нет данных" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 msgid "No data after filtering or data is NULL for the latest time record" msgstr "" "Нет данных после фильтрации или данные отсутствуют за последний отрезок " @@ -10051,10 +10221,6 @@ msgstr "Нет баз данных, удовлетворяющих вашему msgid "No description available." msgstr "Описание отсутствует." -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:174 -msgid "No dimensions available for drill by" -msgstr "" - #: superset-frontend/src/profile/components/Favorites.tsx:61 msgid "No favorite charts yet, go click on stars!" msgstr "" @@ -10077,7 +10243,7 @@ msgstr "Без фильтрации" msgid "No filter is selected." msgstr "Не выбраны фильтры." -#: superset-frontend/src/components/Table/index.tsx:200 +#: superset-frontend/src/components/Table/index.tsx:204 msgid "No filters" msgstr "Нет фильтров" @@ -10119,7 +10285,7 @@ msgid "No results" msgstr "Нет результатов" #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:425 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:428 msgid "No results found" msgstr "Записи не найдены" @@ -10127,7 +10293,7 @@ msgstr "Записи не найдены" msgid "No results match your filter criteria" msgstr "Не найдено результатов по вашим критериям" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:280 +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:289 #: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 msgid "No results were returned for this query" msgstr "Не было получено данных по этому запросу" @@ -10150,8 +10316,8 @@ msgstr "Не было получено данных для этого датас msgid "No samples were returned for this dataset" msgstr "Не было получено данных для этого датасета" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:293 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:311 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:299 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:317 msgid "No saved expressions found" msgstr "Не найдено сохраненных выражений" @@ -10180,9 +10346,9 @@ msgstr "" msgid "No table columns" msgstr "Нет столбцов формата дата/время" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:292 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:310 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:345 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:298 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:316 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:351 msgid "No temporal columns found" msgstr "Столбцы формата дата/время не найдены" @@ -10211,7 +10377,7 @@ msgid "Node size" msgstr "Размер вершины" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:45 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:187 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:270 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:286 @@ -10221,12 +10387,12 @@ msgstr "Размер вершины" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:402 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:182 #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:124 #: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 #: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:196 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:576 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:48 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:51 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:138 #: superset-frontend/src/explore/controlPanels/sections.tsx:134 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:127 @@ -10308,7 +10474,7 @@ msgstr "Ноябрь" msgid "Now" msgstr "Сейчас" -#: superset/views/database/forms.py:201 +#: superset/views/database/forms.py:211 msgid "Null Values" msgstr "Пустые значения" @@ -10321,11 +10487,11 @@ msgstr "Пустые значения" msgid "Null or Empty" msgstr "Null или Пусто" -#: superset/views/database/forms.py:392 +#: superset/views/database/forms.py:402 msgid "Null values" msgstr "Пустые значения" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:191 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 msgid "Number Format" msgstr "Числовой формат" @@ -10340,11 +10506,10 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:60 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:65 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:144 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:117 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:67 #: superset-frontend/plugins/legacy-plugin-chart-treemap/src/controlPanel.ts:67 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:97 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:137 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:276 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:137 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:113 @@ -10385,19 +10550,19 @@ msgstr "Количество периодов для сравнения" msgid "Number of periods to ratio against" msgstr "Количество периодов для сравнения" -#: superset/views/database/forms.py:255 +#: superset/views/database/forms.py:265 msgid "Number of rows of file to read" msgstr "Количество строк файла для чтения" -#: superset/views/database/forms.py:361 +#: superset/views/database/forms.py:371 msgid "Number of rows of file to read." msgstr "Количество строк файла для чтения." -#: superset/views/database/forms.py:261 +#: superset/views/database/forms.py:271 msgid "Number of rows to skip at start of file" msgstr "Количество строк для пропуска в начале файла" -#: superset/views/database/forms.py:355 +#: superset/views/database/forms.py:365 msgid "Number of rows to skip at start of file." msgstr "Количество строк для пропуска в начале файла." @@ -10421,15 +10586,15 @@ msgstr "Числовой диапазон" msgid "OCT" msgstr "ОКТ" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:184 -#: superset-frontend/src/components/Modal/Modal.tsx:231 -#: superset-frontend/src/components/Table/index.tsx:198 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 +#: superset-frontend/src/components/Modal/Modal.tsx:238 +#: superset-frontend/src/components/Table/index.tsx:202 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:865 msgid "OK" msgstr "ОК" #: superset-frontend/src/components/ImportModal/index.tsx:267 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1379 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1434 msgid "OVERWRITE" msgstr "ПЕРЕЗАПИСАТЬ" @@ -10442,7 +10607,7 @@ msgstr "Октябрь" msgid "Offline" msgstr "Оффлайн" -#: superset/connectors/sqla/views.py:485 +#: superset/connectors/sqla/views.py:392 msgid "Offset" msgstr "Смещение" @@ -10495,27 +10660,27 @@ msgstr "" msgid "One or many metrics to display" msgstr "Выберите одну или несколько мер для отображения" -#: superset/datasets/commands/exceptions.py:90 +#: superset/datasets/commands/exceptions.py:107 msgid "One or more columns already exist" msgstr "Один или несколько столбцов уже существуют" -#: superset/datasets/commands/exceptions.py:80 +#: superset/datasets/commands/exceptions.py:97 msgid "One or more columns are duplicated" msgstr "Один или несколько столбцов дублируются" -#: superset/datasets/commands/exceptions.py:70 +#: superset/datasets/commands/exceptions.py:87 msgid "One or more columns do not exist" msgstr "Один или несколько столбцов не существуют" -#: superset/datasets/commands/exceptions.py:119 +#: superset/datasets/commands/exceptions.py:136 msgid "One or more metrics already exist" msgstr "Одна или несколько мер уже существуют" -#: superset/datasets/commands/exceptions.py:109 +#: superset/datasets/commands/exceptions.py:126 msgid "One or more metrics are duplicated" msgstr "Одна или несколько мер дублируются" -#: superset/datasets/commands/exceptions.py:99 +#: superset/datasets/commands/exceptions.py:116 msgid "One or more metrics do not exist" msgstr "Одна или несколько мер не существуют" @@ -10535,7 +10700,7 @@ msgstr "" msgid "One or more parameters specified in the query are missing." msgstr "Один или несколько параметров, указанных в запросе, отсутствуют" -#: superset/views/core.py:1992 +#: superset/views/core.py:2029 msgid "" "One or more required fields are missing in the request. Please try again," " and if the problem persists contact your administrator." @@ -10545,23 +10710,23 @@ msgstr "" msgid "One ore more annotation layers failed loading." msgstr "Один или несколько слоев аннотации не удалось загрузить." -#: superset/sql_lab.py:230 +#: superset/sql_lab.py:228 msgid "Only SELECT statements are allowed against this database." msgstr "Только SELECT запросы доступны для этой базы данных." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:133 msgid "Only Total" msgstr "Только общий итог" -#: superset/connectors/sqla/utils.py:123 +#: superset/connectors/sqla/utils.py:122 msgid "Only `SELECT` statements are allowed" msgstr "Доступны только SELECT запросы" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:29 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 msgid "Only applies when \"Label Type\" is not set to a percentage." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:26 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 msgid "Only applies when \"Label Type\" is set to show values." msgstr "" @@ -10569,7 +10734,7 @@ msgstr "" msgid "Only selected panels will be affected by this filter" msgstr "Фильтр будет применён только к выбранным панелям" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:139 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 msgid "" "Only show the total value on the stacked chart, and not show on the " "selected category" @@ -10577,12 +10742,12 @@ msgstr "" "Показывать только общий итог для столбцов с накоплением, и не показывать " "промежуточные итоги для каждой категории внутри столбца." -#: superset/connectors/sqla/utils.py:132 +#: superset/connectors/sqla/utils.py:131 msgid "Only single queries supported" msgstr "Поддерживаются только одиночные запросы" -#: superset/views/database/forms.py:119 superset/views/database/forms.py:288 -#: superset/views/database/forms.py:426 +#: superset/views/database/forms.py:119 superset/views/database/forms.py:298 +#: superset/views/database/forms.py:436 #, python-format msgid "Only the following file extensions are allowed: %(allowed_extensions)s" msgstr "Доступные расширения файлов: %(allowed_extensions)s" @@ -10630,7 +10795,7 @@ msgstr "Открыть в SQL редакторе" msgid "Open query in SQL Lab" msgstr "Открыть в SQL редакторе" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:298 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 #: superset/views/database/mixins.py:104 msgid "" "Operate the database in asynchronous mode, meaning that the queries are " @@ -10643,8 +10808,8 @@ msgstr "" "подразумевает, что у вас есть установка с воркерами Celery. Обратитесь к " "документации по настройке за дополнительной информацией." -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:126 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:130 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 msgid "Operator" msgstr "Оператор" @@ -10653,7 +10818,7 @@ msgstr "Оператор" msgid "Operator undefined for aggregator: %(name)s" msgstr "Оператор не определен для агрегатора: %(name)s" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:381 msgid "" "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" " certain database engines." @@ -10677,13 +10842,8 @@ msgstr "Необязательное имя столбца данныхэ" msgid "Optional warning about use of this metric" msgstr "Необязательное предупреждение об использовании этой меры" -#: superset/connectors/sqla/views.py:328 -msgid "Optionally add a detailed description" -msgstr "" - #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:39 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:68 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:108 #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:74 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:45 #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:70 @@ -10696,7 +10856,7 @@ msgstr "" msgid "Options" msgstr "Опции" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:918 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:973 msgid "Or choose from a list of other databases we support:" msgstr "Или выберите из списка других поддерживаемых баз данных:" @@ -10714,7 +10874,7 @@ msgstr "Упорядочить результаты по выбранным ст msgid "Ordering" msgstr "Упорядочивание" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:83 msgid "Orientation" msgstr "Ориентация" @@ -10722,7 +10882,7 @@ msgstr "Ориентация" msgid "Orientation of bar chart" msgstr "Ориентация диаграммы" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:158 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 #, fuzzy msgid "Orientation of filter bar" msgstr "Ориентация дерева" @@ -10739,7 +10899,7 @@ msgstr "Исходные данные" msgid "Original table column order" msgstr "Расположение столбцов как в исходной таблице" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 #: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 #: superset-frontend/src/explore/controls.jsx:79 @@ -10753,10 +10913,10 @@ msgstr "Перпендикулярно" # здесь идет речь про прочие категории графиков, помимо основных категорий #: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:126 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:938 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:479 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:993 #: superset-frontend/src/features/home/EmptyState.tsx:112 -#: superset/views/database/forms.py:155 superset/views/database/forms.py:161 +#: superset/views/database/forms.py:165 superset/views/database/forms.py:171 msgid "Other" msgstr "Прочее" @@ -10815,15 +10975,15 @@ msgstr "Переопределить временной интервал" #: superset-frontend/src/components/ImportModal/index.tsx:426 #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:493 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:459 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:463 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:464 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:148 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 msgid "Overwrite" msgstr "Перезаписать" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:249 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:192 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:247 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 msgid "Overwrite & Explore" msgstr "Перезаписать и исследовать" @@ -10832,11 +10992,11 @@ msgstr "Перезаписать и исследовать" msgid "Overwrite Dashboard [%s]" msgstr "Перезаписать дашборд [%s]" -#: superset/views/database/forms.py:237 +#: superset/views/database/forms.py:247 msgid "Overwrite Duplicate Columns" msgstr "Перезаписать повторяющиеся столбцы" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:404 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:412 msgid "Overwrite existing" msgstr "Перезаписать существующий" @@ -10851,11 +11011,11 @@ msgstr "" #: superset-frontend/src/pages/AlertReportList/index.tsx:452 #: superset-frontend/src/pages/ChartList/index.tsx:608 #: superset-frontend/src/pages/DashboardList/index.tsx:523 -#: superset-frontend/src/pages/DatasetList/index.tsx:500 +#: superset-frontend/src/pages/DatasetList/index.tsx:511 msgid "Owner" msgstr "Владелец" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:235 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:93 #: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:408 @@ -10870,14 +11030,14 @@ msgstr "Владелец" #: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 #: superset-frontend/src/pages/AlertReportList/index.tsx:324 #: superset-frontend/src/pages/DashboardList/index.tsx:369 -#: superset-frontend/src/pages/DatasetList/index.tsx:389 -#: superset/connectors/sqla/views.py:489 superset/views/chart/mixin.py:82 +#: superset-frontend/src/pages/DatasetList/index.tsx:400 +#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:82 #: superset/views/dashboard/mixin.py:81 msgid "Owners" msgstr "Владельцы" -#: superset/commands/exceptions.py:108 -#: superset/datasets/commands/exceptions.py:144 +#: superset/commands/exceptions.py:112 +#: superset/datasets/commands/exceptions.py:161 msgid "Owners are invalid" msgstr "Неверный список владельцев" @@ -10921,7 +11081,7 @@ msgid "Pandas resample rule" msgstr "Правило ресемплирования данных библиотеки Pandas" #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 -#: superset/viz.py:2219 +#: superset/viz.py:2152 msgid "Parallel Coordinates" msgstr "" @@ -10946,7 +11106,7 @@ msgstr "" msgid "Parent" msgstr "Родитель" -#: superset/views/database/forms.py:366 +#: superset/views/database/forms.py:376 msgid "Parse Dates" msgstr "Парсинг дат" @@ -10965,7 +11125,7 @@ msgstr "Покомпонентное сравнение" msgid "Partition Chart" msgstr "Partition Diagram" -#: superset/viz.py:3071 +#: superset/viz.py:3069 #, fuzzy msgid "Partition Diagram" msgstr "Partition Diagram" @@ -10986,7 +11146,7 @@ msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:154 #: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 -#: superset/db_engine_specs/base.py:1838 +#: superset/db_engine_specs/base.py:1870 #: superset/db_engine_specs/clickhouse.py:202 msgid "Password" msgstr "Пароль" @@ -11038,7 +11198,7 @@ msgstr "Процентные меры" #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:81 #: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:148 msgid "Percentage threshold" msgstr "Процентный порог" @@ -11056,7 +11216,7 @@ msgstr "Процентный порог" msgid "Percentages" msgstr "Проценты" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:219 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:229 msgid "Performance" msgstr "Производительность" @@ -11091,8 +11251,8 @@ msgid "Person or group that has certified this metric" msgstr "Лицо или группа, которые утвердили этот показатель" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1114 -#: superset-frontend/src/pages/DatasetList/index.tsx:342 -#: superset-frontend/src/pages/DatasetList/index.tsx:560 +#: superset-frontend/src/pages/DatasetList/index.tsx:353 +#: superset-frontend/src/pages/DatasetList/index.tsx:571 msgid "Physical" msgstr "Физический" @@ -11100,7 +11260,7 @@ msgstr "Физический" msgid "Physical (table or view)" msgstr "Физический (таблица или представление)" -#: superset-frontend/src/pages/DatasetList/index.tsx:273 +#: superset-frontend/src/pages/DatasetList/index.tsx:284 msgid "Physical dataset" msgstr "Физический датасет" @@ -11109,29 +11269,29 @@ msgstr "Физический датасет" msgid "Pick a dimension from which categorical colors are defined" msgstr "Выберите измерение, на основе которого определяются категориальные цвета" -#: superset/viz.py:769 +#: superset/viz.py:795 msgid "Pick a granularity in the Time section or uncheck 'Include Time'" msgstr "" "Выберите степень детализации в разделе Время или снимите флажок " "\"Включить время\"." -#: superset/viz.py:1605 +#: superset/viz.py:1514 msgid "Pick a metric for left axis!" msgstr "Выберите меру для левой оси" -#: superset/viz.py:1607 +#: superset/viz.py:1516 msgid "Pick a metric for right axis!" msgstr "Выберите меру для правой оси" -#: superset/viz.py:1195 +#: superset/viz.py:1090 msgid "Pick a metric for x, y and size" msgstr "Выберите меру для x, y и размера" -#: superset/viz.py:1234 +#: superset/viz.py:1131 msgid "Pick a metric to display" msgstr "Выберите меру для отображения" -#: superset/viz.py:1260 superset/viz.py:1294 +#: superset/viz.py:1159 superset/viz.py:1195 msgid "Pick a metric!" msgstr "Выберите меру!" @@ -11147,7 +11307,7 @@ msgstr "Выберите имя для базы данных, которое б msgid "Pick a set of deck.gl charts to layer on top of one another" msgstr "" -#: superset/viz.py:1390 superset/viz.py:1653 +#: superset/viz.py:1294 superset/viz.py:1564 msgid "Pick a time granularity for your time series" msgstr "Выберите временную детализацию для вашего временного ряда" @@ -11155,15 +11315,15 @@ msgstr "Выберите временную детализацию для ваш msgid "Pick a title for you annotation." msgstr "Выберите название для вашей аннотации" -#: superset/viz.py:1815 +#: superset/viz.py:1732 msgid "Pick at least one field for [Series]" msgstr "" -#: superset/viz.py:857 superset/viz.py:1813 +#: superset/viz.py:887 superset/viz.py:1730 msgid "Pick at least one metric" msgstr "Выберите хотя бы одну меру" -#: superset/viz.py:1943 +#: superset/viz.py:1863 msgid "Pick exactly 2 columns as [Source / Target]" msgstr "" @@ -11192,19 +11352,10 @@ msgstr "Форма круговой диаграммы" msgid "Pin" msgstr "Закрепить" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:45 -msgid "Pivot Options" -msgstr "Параметры сводной таблицы" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 -#: superset/viz.py:894 msgid "Pivot Table" msgstr "Сводная таблица" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:32 -msgid "Pivot Table (legacy)" -msgstr "Сводная таблица (устарело)" - #: superset/utils/pandas_postprocessing/pivot.py:70 msgid "Pivot operation must include at least one aggregate" msgstr "" @@ -11225,7 +11376,7 @@ msgstr "Высота каждого ряда (в пикселях)" msgid "Pixels" msgstr "Пиксели" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 msgid "Plain" msgstr "Отобразить все" @@ -11237,7 +11388,7 @@ msgstr "" msgid "Please apply filter changes" msgstr "Пожалуйста, примените изменения фильтров" -#: superset/sqllab/query_render.py:120 +#: superset/sqllab/query_render.py:118 msgid "" "Please check your query and confirm that all template parameters are " "surround by double braces, for example, \"{{ ds }}\". Then, try running " @@ -11248,8 +11399,8 @@ msgstr "" "Затем попробуйте повторно выполнить запрос." #: superset/db_engine_specs/athena.py:56 -#: superset/db_engine_specs/bigquery.py:210 -#: superset/db_engine_specs/postgres.py:161 +#: superset/db_engine_specs/bigquery.py:211 +#: superset/db_engine_specs/postgres.py:160 #: superset/db_engine_specs/snowflake.py:117 #, python-format msgid "" @@ -11259,7 +11410,7 @@ msgstr "" "Пожалуйста, проверьте ваш запрос на синтаксические ошибки возле символа " "\"%(syntax_error)s\". Затем выполните запрос заново." -#: superset/db_engine_specs/gsheets.py:80 superset/db_engine_specs/mysql.py:170 +#: superset/db_engine_specs/gsheets.py:82 superset/db_engine_specs/mysql.py:170 #, python-format msgid "" "Please check your query for syntax errors near \"%(server_error)s\". " @@ -11278,20 +11429,12 @@ msgstr "" "ошибок и убедитесь, что они совпадают с вашим SQL-запросом и заданными " "параметрами. Затем попробуйте выполнить свой запрос еще раз." -#: superset/viz.py:911 -msgid "Please choose at least one 'Group by' field" -msgstr "Выберите хотя бы одно поле \"Группировать по\"" - -#: superset/viz.py:3229 +#: superset/viz.py:3234 #, fuzzy msgid "Please choose at least one groupby" msgstr "Выберите хотя бы одно поле \"Группировать по\"" -#: superset/viz.py:923 -msgid "Please choose at least one metric" -msgstr "Выберите хотя бы одну меру" - -#: superset/viz.py:1610 +#: superset/viz.py:1519 msgid "Please choose different metrics on left and right axis" msgstr "Выберите разные меры для левой и правой осей" @@ -11307,18 +11450,20 @@ msgstr "Выберите разные меры для левой и правой #: superset-frontend/src/pages/DashboardList/index.tsx:415 #: superset-frontend/src/pages/DashboardList/index.tsx:701 #: superset-frontend/src/pages/DashboardList/index.tsx:756 -#: superset-frontend/src/pages/DatasetList/index.tsx:740 +#: superset-frontend/src/pages/DatasetList/index.tsx:762 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:170 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:304 #: superset-frontend/src/pages/SavedQueryList/index.tsx:533 #: superset-frontend/src/pages/Tags/index.tsx:141 #: superset-frontend/src/pages/Tags/index.tsx:281 msgid "Please confirm" msgstr "Пожалуйста, подтвердите действие" -#: superset-frontend/src/dashboard/actions/dashboardState.js:442 +#: superset-frontend/src/dashboard/actions/dashboardState.js:447 msgid "Please confirm the overwrite values." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:624 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:641 msgid "Please enter a SQLAlchemy URI to test" msgstr "Введите SQLAlchemy URI для тестирования" @@ -11326,11 +11471,11 @@ msgstr "Введите SQLAlchemy URI для тестирования" msgid "Please filter set name" msgstr "Введите имя набора фильтров" -#: superset/db_engine_specs/postgres.py:125 +#: superset/db_engine_specs/postgres.py:124 msgid "Please re-enter the password." msgstr "Пожалуйста, введите пароль еще раз" -#: superset-frontend/src/views/CRUD/hooks.ts:435 +#: superset-frontend/src/views/CRUD/hooks.ts:439 msgid "Please re-export your file and try importing again" msgstr "" @@ -11362,7 +11507,7 @@ msgstr "" msgid "Please select both a Dataset and a Chart type to proceed" msgstr "Пожалуйста, для продолжения выберите и датасет, и тип графика" -#: superset/viz.py:1193 +#: superset/viz.py:1088 msgid "Please use 3 different metric labels" msgstr "" @@ -11377,7 +11522,7 @@ msgid "" "multiple metrics across all of the samples or rows in the data." msgstr "" -#: superset/initialization/__init__.py:275 +#: superset/initialization/__init__.py:277 msgid "Plugins" msgstr "Плагины" @@ -11473,13 +11618,17 @@ msgid "Port" msgstr "Порт" #: superset/db_engine_specs/mssql.py:98 -#: superset/db_engine_specs/postgres.py:135 -#: superset/db_engine_specs/presto.py:672 -#: superset/db_engine_specs/redshift.py:77 +#: superset/db_engine_specs/postgres.py:134 +#: superset/db_engine_specs/presto.py:699 +#: superset/db_engine_specs/redshift.py:81 #, python-format msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." msgstr "Порт %(port)s хоста \"%(hostname)s\" отказал в подключении." +#: superset/db_engine_specs/ocient.py:269 +msgid "Port out of range 0-65535" +msgstr "" + #: superset/views/dashboard/mixin.py:86 #, fuzzy msgid "Position JSON" @@ -11518,7 +11667,7 @@ msgstr "Предварительно выбрать доступные знач msgid "Pre-filter is required" msgstr "Предварительная фильтрация обязательна" -#: superset/connectors/sqla/views.py:440 +#: superset/connectors/sqla/views.py:347 msgid "" "Predicate applied when fetching distinct value to populate the filter " "control component. Supports jinja template syntax. Applies only when " @@ -11560,7 +11709,7 @@ msgstr "Предпросмотр «%s»" msgid "Previous" msgstr "Предыдущий" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:346 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:348 msgid "Previous Line" msgstr "Предыдущая строка" @@ -11581,6 +11730,11 @@ msgstr "Первичный ключ" msgid "Primary or secondary y-axis" msgstr "Первичная или вторичная ось Y" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 +#, fuzzy +msgid "Primary y-axis Bounds" +msgstr "Формат первичной оси Y" + #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:387 msgid "Primary y-axis format" msgstr "Формат первичной оси Y" @@ -11597,7 +11751,7 @@ msgstr "Приватный ключ и пароль" msgid "Private Key Password" msgstr "Пароль приватного ключа" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:269 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 msgid "Proceed" msgstr "Продолжить" @@ -11676,11 +11830,11 @@ msgstr "Введите произвольный текст в формате htm msgid "Python datetime string pattern" msgstr "Шаблон строки даты и времени Python" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1530 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1585 msgid "QUERY DATA IN SQL LAB" msgstr "" -#: superset/db_engine_specs/base.py:109 +#: superset/db_engine_specs/base.py:110 msgid "Quarter" msgstr "Квартал" @@ -11694,9 +11848,9 @@ msgstr "Кварталов %s" msgid "Queries" msgstr "запросы" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:51 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:43 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:53 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:30 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:33 #: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:90 @@ -11707,7 +11861,6 @@ msgstr "запросы" #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:36 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:32 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:34 #: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:30 @@ -11718,6 +11871,7 @@ msgstr "запросы" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:44 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:55 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:43 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:41 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:60 @@ -11731,7 +11885,7 @@ msgstr "запросы" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:361 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:34 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:35 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:44 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:43 @@ -11747,7 +11901,7 @@ msgstr "запросы" #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:152 #: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:30 #: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:26 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1479 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1471 #: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 #: superset-frontend/src/explore/controlPanels/sections.tsx:94 #: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:34 @@ -11759,7 +11913,7 @@ msgstr "запросы" msgid "Query" msgstr "Запрос" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:361 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:363 #, python-format msgid "Query %s: %s" msgstr "Запрос %s: %s" @@ -11774,11 +11928,11 @@ msgstr "Запрос А" msgid "Query B" msgstr "Запрос Б" -#: superset/initialization/__init__.py:366 +#: superset/initialization/__init__.py:360 msgid "Query History" msgstr "История запросов" -#: superset/commands/exceptions.py:138 +#: superset/commands/exceptions.py:142 msgid "Query does not exist" msgstr "Запрос не существует" @@ -11792,7 +11946,7 @@ msgstr "История запросов" msgid "Query imported" msgstr "Запрос импортирован" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:465 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 msgid "Query in a new tab" msgstr "Запрос в отдельной вкладке" @@ -11817,11 +11971,11 @@ msgstr "Имя запроса" msgid "Query preview" msgstr "Предпросмотр запроса" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:415 msgid "Query was stopped" msgstr "Запрос прерван" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:498 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:494 msgid "Query was stopped." msgstr "Запрос прерван" @@ -11834,6 +11988,16 @@ msgstr "ТИП ИНТЕРВАЛА" msgid "RGB Color" msgstr "Цвет RGB" +#: superset/row_level_security/commands/exceptions.py:29 +#, fuzzy +msgid "RLS Rule could not be deleted." +msgstr "Не удалось удалить графики." + +#: superset/row_level_security/commands/exceptions.py:25 +#, fuzzy +msgid "RLS Rule not found." +msgstr "Расписание отчета не найдено" + #: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:159 msgid "Radar" msgstr "Радар" @@ -11967,7 +12131,7 @@ msgstr "Кол-во записей" msgid "Rectangle" msgstr "Прямоугольник" -#: superset/connectors/sqla/views.py:446 +#: superset/connectors/sqla/views.py:353 msgid "Redirects to this endpoint when clicking on the table from the table list" msgstr "" @@ -11997,7 +12161,7 @@ msgstr "Обратитесь к" msgid "Referenced columns not available in DataFrame." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:549 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:542 msgid "Refetch results" msgstr "Выполнить запрос повторно" @@ -12047,11 +12211,17 @@ msgstr "Обновление столбцов" msgid "Regex" msgstr "Зеленая" -#: superset/connectors/sqla/views.py:329 +#: superset-frontend/src/features/rls/constants.ts:24 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:262 +#, fuzzy +msgid "Regular" +msgstr "Круглая форма" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:364 #, fuzzy msgid "" "Regular filters add where clauses to queries if a user belongs to a role " -"referenced in the filter. Base filters apply filters to all queries " +"referenced in the filter, base filters apply filters to all queries " "except the roles defined in the filter, and can be used to define what " "users can see if no RLS filters within a filter group apply to them." msgstr "" @@ -12101,7 +12271,7 @@ msgstr "Напомните мне через 24 часа" msgid "Remove" msgstr "Удалить" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:164 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:194 #, fuzzy msgid "Remove cross-filter" msgstr "Задать область действия кросс-фильтра" @@ -12135,8 +12305,8 @@ msgstr "Переименовать вкладку" msgid "Rendering" msgstr "Отрисовка" -#: superset/views/database/forms.py:168 superset/views/database/forms.py:325 -#: superset/views/database/forms.py:456 +#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 +#: superset/views/database/forms.py:466 msgid "Replace" msgstr "Заменить" @@ -12150,12 +12320,11 @@ msgstr "Заменить" #: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:593 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:163 msgid "Report" msgstr "Отчет" -#: superset-frontend/src/components/ReportModal/index.tsx:282 +#: superset-frontend/src/components/ReportModal/index.tsx:281 msgid "Report Name" msgstr "Имя отчета" @@ -12272,7 +12441,7 @@ msgid "Request Permissions" msgstr "" #: superset/charts/data/api.py:153 superset/charts/data/api.py:243 -#: superset/charts/data/api.py:309 +#: superset/charts/data/api.py:312 #, python-format msgid "Request is incorrect: %(error)s" msgstr "Неверный запрос: %(error)s" @@ -12281,7 +12450,7 @@ msgstr "Неверный запрос: %(error)s" msgid "Request is not JSON" msgstr "Запрос не является JSON" -#: superset/views/datasource/views.py:75 +#: superset/views/datasource/views.py:77 msgid "Request missing data field." msgstr "В запросе отсутствует поле с данными." @@ -12289,14 +12458,14 @@ msgstr "В запросе отсутствует поле с данными." msgid "Request timed out" msgstr "Вышло время запроса" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:94 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:98 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:105 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:252 msgid "Required" msgstr "Обязательно" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:342 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 msgid "Required control values have been removed" msgstr "Обязательные значения были удалены" @@ -12317,11 +12486,11 @@ msgstr "" msgid "Resample operation requires DatetimeIndex" msgstr "Для ресемплирования требуется индекс формата дата/время" -#: superset-frontend/src/components/Table/index.tsx:199 +#: superset-frontend/src/components/Table/index.tsx:203 msgid "Reset" msgstr "Сбросить" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:293 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:280 msgid "Reset state" msgstr "Сбросить текущее состояние" @@ -12344,14 +12513,15 @@ msgstr "Восстановить фильтр" msgid "Results" msgstr "Результаты" +#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 #: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:212 #: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 #, python-format msgid "Results %s" msgstr "Результаты %s" -#: superset/sql_lab.py:410 superset/sqllab/commands/results.py:59 -#: superset/views/core.py:2133 +#: superset/sql_lab.py:402 superset/sqllab/commands/results.py:59 +#: superset/views/core.py:2169 msgid "Results backend is not configured." msgstr "Results backend не нестроен" @@ -12377,12 +12547,12 @@ msgstr "Поменять местами широту и долготу" msgid "Rich Tooltip" msgstr "Расширенная всплывающая подсказка" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:178 msgid "Rich tooltip" msgstr "Расширенная всплывающая подсказка" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:372 msgid "Right" msgstr "Справа" @@ -12407,7 +12577,7 @@ msgstr "Мера для правой оси" msgid "Right to Left" msgstr "Справа налево" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:157 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 msgid "Right value" msgstr "Правое значение" @@ -12419,7 +12589,7 @@ msgstr "" msgid "Role" msgstr "Роль" -#: superset/views/core.py:407 +#: superset/views/core.py:408 #, python-format msgid "Role %(r)s was extended to provide the access to the datasource %(ds)s" msgstr "" @@ -12430,8 +12600,10 @@ msgstr "" #: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:389 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:551 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:406 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:415 #: superset-frontend/src/profile/components/Security.tsx:35 -#: superset/connectors/sqla/views.py:364 superset/views/dashboard/mixin.py:82 +#: superset/views/dashboard/mixin.py:82 msgid "Roles" msgstr "Роли" @@ -12485,7 +12657,7 @@ msgstr "Скользящая средняя" msgid "Rolling window" msgstr "Скользящее окно" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 #: superset/views/database/mixins.py:195 msgid "Root certificate" msgstr "Корневой сертификат" @@ -12515,16 +12687,18 @@ msgstr "Вращение для применения к словам в обла msgid "Round cap" msgstr "Закругление на концах" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 #: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 msgid "Row" msgstr "Строка" -#: superset/initialization/__init__.py:295 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:70 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:302 +#: superset/initialization/__init__.py:436 msgid "Row Level Security" msgstr "Безопасность на уровне строк" -#: superset/views/database/forms.py:245 +#: superset/views/database/forms.py:255 msgid "" "Row containing the headers to use as column names (0 is first line of " "data). Leave empty if there is no header row" @@ -12533,7 +12707,7 @@ msgstr "" "(0, если первая строка в данных). Оставьте пустым, если заголовки " "отсутствуют" -#: superset/views/database/forms.py:332 +#: superset/views/database/forms.py:342 msgid "" "Row containing the headers to use as column names (0 is first line of " "data). Leave empty if there is no header row." @@ -12542,11 +12716,6 @@ msgstr "" "(0, если первая строка в данных). Оставьте пустым, если заголовки " "отсутствуют." -#: superset/connectors/sqla/views.py:290 -#, fuzzy -msgid "Row level security filter" -msgstr "Безопасность на уровне строк" - #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:247 #: superset-frontend/src/explore/controls.jsx:340 msgid "Row limit" @@ -12569,7 +12738,7 @@ msgstr "Строчек на странице, 0 означает все стро msgid "Rows subtotal position" msgstr "Расположение строк подытогов" -#: superset/views/database/forms.py:254 superset/views/database/forms.py:360 +#: superset/views/database/forms.py:264 superset/views/database/forms.py:370 msgid "Rows to Read" msgstr "Строки для чтения" @@ -12579,10 +12748,20 @@ msgstr "Строки для чтения" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:504 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:233 #: superset-frontend/src/explore/controlPanels/sections.tsx:230 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:286 msgid "Rule" msgstr "Правило" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:54 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:355 +#, fuzzy +msgid "Rule Name" +msgstr "Полное имя" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:253 +msgid "Rule added" +msgstr "" + +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:53 msgid "Run" msgstr "Выполнить" @@ -12599,12 +12778,12 @@ msgstr "Выполните запрос для отображения резул msgid "Run in SQL Lab" msgstr "Открыть в SQL редакторе" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:309 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:319 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:311 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:321 msgid "Run query" msgstr "Выполнить запрос" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:131 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:132 msgid "Run query (Ctrl + Return)" msgstr "Выполнить запрос (Ctrl + Enter)" @@ -12612,7 +12791,7 @@ msgstr "Выполнить запрос (Ctrl + Enter)" msgid "Run query in a new tab" msgstr "Выполнить запрос на новой вкладке" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:52 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:51 msgid "Run selection" msgstr "Выполнить выбранное" @@ -12621,7 +12800,7 @@ msgstr "Выполнить выбранное" msgid "Running" msgstr "Выполняется" -#: superset/sql_lab.py:488 +#: superset/sql_lab.py:480 #, python-format msgid "Running statement %(statement_num)s out of %(statement_count)s" msgstr "" @@ -12643,8 +12822,8 @@ msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 #: superset-frontend/src/features/home/commonMenuData.ts:22 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:312 -#: superset/initialization/__init__.py:354 -#: superset/initialization/__init__.py:362 +#: superset/initialization/__init__.py:348 +#: superset/initialization/__init__.py:356 msgid "SQL" msgstr "SQL" @@ -12652,17 +12831,17 @@ msgstr "SQL" msgid "SQL Copied!" msgstr "SQL запрос скопирован!" -#: superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:253 msgid "SQL Expression" msgstr "SQL выражение" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:73 -#: superset/initialization/__init__.py:349 -#: superset/initialization/__init__.py:371 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 +#: superset/initialization/__init__.py:343 +#: superset/initialization/__init__.py:365 msgid "SQL Lab" msgstr "Лаборатория SQL" -#: superset/connectors/sqla/views.py:492 +#: superset/connectors/sqla/views.py:399 msgid "SQL Lab View" msgstr "" @@ -12788,7 +12967,7 @@ msgstr "Дисперсия" msgid "Samples" msgstr "Примеры данных" -#: superset/datasets/commands/exceptions.py:177 +#: superset/datasets/commands/exceptions.py:194 msgid "Samples for dataset could not be retrieved." msgstr "Не удалось получить примеры записей датасета." @@ -12796,7 +12975,7 @@ msgstr "Не удалось получить примеры записей да msgid "Samples for datasource could not be retrieved." msgstr "Не удалось получить примеры записей для источника данных." -#: superset/viz.py:1935 +#: superset/viz.py:1854 msgid "Sankey" msgstr "Санкей" @@ -12824,25 +13003,26 @@ msgstr "Суббота" #: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 #: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:199 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:214 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:246 -#: superset-frontend/src/components/ReportModal/index.tsx:229 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:288 +#: superset-frontend/src/components/ReportModal/index.tsx:228 #: superset-frontend/src/dashboard/components/Header/index.jsx:607 #: superset-frontend/src/dashboard/components/Header/index.jsx:609 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 #: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 #: superset-frontend/src/dashboard/components/SaveModal.tsx:211 #: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:794 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:156 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:492 #: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:268 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:458 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:462 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 -#: superset-frontend/src/explore/components/SaveModal.tsx:415 +#: superset-frontend/src/explore/components/SaveModal.tsx:449 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:418 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:424 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:147 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 @@ -12852,29 +13032,30 @@ msgstr "Суббота" #: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 #: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1695 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 #: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 msgid "Save" msgstr "Сохранить" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:246 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:190 msgid "Save & Explore" msgstr "Сохранить и исследовать" -#: superset-frontend/src/explore/components/SaveModal.tsx:396 +#: superset-frontend/src/explore/components/SaveModal.tsx:430 msgid "Save & go to dashboard" msgstr "Сохранить и перейти к дашборду" -#: superset-frontend/src/explore/components/SaveModal.tsx:395 +#: superset-frontend/src/explore/components/SaveModal.tsx:429 msgid "Save & go to new dashboard" msgstr "Сохранить и перейти к дашборду" -#: superset-frontend/src/explore/components/SaveModal.tsx:308 +#: superset-frontend/src/explore/components/SaveModal.tsx:343 msgid "Save (Overwrite)" msgstr "Сохранить (Перезаписать)" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:199 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:306 msgid "Save as" msgstr "Сохранить как" @@ -12887,16 +13068,16 @@ msgstr "Сохранить как датасет" msgid "Save as dataset" msgstr "Сохранить как датасет" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:394 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:214 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:402 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 msgid "Save as new" msgstr "Сохранить как новый" -#: superset-frontend/src/explore/components/SaveModal.tsx:412 +#: superset-frontend/src/explore/components/SaveModal.tsx:446 msgid "Save as new chart" msgstr "Сохранить как новый график" -#: superset-frontend/src/explore/components/SaveModal.tsx:316 +#: superset-frontend/src/explore/components/SaveModal.tsx:351 msgid "Save as..." msgstr "Сохранить как..." @@ -12908,7 +13089,7 @@ msgstr "Сохранить как:" msgid "Save changes" msgstr "Сохранить изменения" -#: superset-frontend/src/explore/components/SaveModal.tsx:432 +#: superset-frontend/src/explore/components/SaveModal.tsx:466 msgid "Save chart" msgstr "Сохранить график" @@ -12916,7 +13097,7 @@ msgstr "Сохранить график" msgid "Save dashboard" msgstr "Сохранить дашборд" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:106 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:105 msgid "Save dataset" msgstr "Сохранить датасет" @@ -12924,11 +13105,11 @@ msgstr "Сохранить датасет" msgid "Save for this session" msgstr "Сохранить на время текущей сессии" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:350 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:356 msgid "Save or Overwrite Dataset" msgstr "Сохранить или перезаписать датасет" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:202 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:201 msgid "Save query" msgstr "Сохранить запрос" @@ -12936,27 +13117,27 @@ msgstr "Сохранить запрос" msgid "Save the query to enable this feature" msgstr "Сохраните запрос для включения этой опции" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:250 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:465 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:149 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 msgid "Save this query as a virtual dataset to continue exploring" msgstr "Сохраните данный запрос как виртуальный датасет для создания графика" -#: superset-frontend/src/explore/components/SaveModal.tsx:414 +#: superset-frontend/src/explore/components/SaveModal.tsx:448 msgid "Save to new dashboard" msgstr "Сохранить в новый дашборд" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:265 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:271 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 msgid "Saved" msgstr "Сохранено" -#: superset/initialization/__init__.py:358 +#: superset/initialization/__init__.py:352 msgid "Saved Queries" msgstr "Сохраненные запросы" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:249 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:255 msgid "Saved expressions" msgstr "Сохраненные выражения" @@ -13015,12 +13196,12 @@ msgid "" msgstr "" #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 -#: superset-frontend/src/components/ReportModal/index.tsx:306 +#: superset-frontend/src/components/ReportModal/index.tsx:305 #: superset-frontend/src/pages/AlertReportList/index.tsx:276 msgid "Schedule" msgstr "Расписание" -#: superset-frontend/src/components/ReportModal/index.tsx:212 +#: superset-frontend/src/components/ReportModal/index.tsx:211 msgid "Schedule a new email report" msgstr "Запланировать новую рассылку по почте" @@ -13036,7 +13217,7 @@ msgstr "Сохранить запрос" msgid "Schedule settings" msgstr "Настройки расписания" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:518 msgid "Schedule the query periodically" msgstr "Запланировать периодическое выполнение запроса" @@ -13054,31 +13235,31 @@ msgstr "Запланировано на (часовой пояс UTC)" msgid "Scheduled task executor not found" msgstr "Исполнитель регулярных отчетов не найден" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:299 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:221 -#: superset-frontend/src/pages/DatasetList/index.tsx:354 -#: superset-frontend/src/pages/DatasetList/index.tsx:536 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:298 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 +#: superset-frontend/src/pages/DatasetList/index.tsx:365 +#: superset-frontend/src/pages/DatasetList/index.tsx:547 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:250 #: superset-frontend/src/pages/SavedQueryList/index.tsx:297 #: superset-frontend/src/pages/SavedQueryList/index.tsx:469 -#: superset/connectors/sqla/views.py:483 superset/views/database/forms.py:144 -#: superset/views/database/forms.py:311 superset/views/database/forms.py:442 +#: superset/connectors/sqla/views.py:390 superset/views/database/forms.py:154 +#: superset/views/database/forms.py:321 superset/views/database/forms.py:452 msgid "Schema" msgstr "Схема" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:247 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:257 msgid "Schema cache timeout" msgstr "Время жизни кэша схемы" -#: superset/views/core.py:1164 +#: superset/views/core.py:1186 msgid "Schema undefined" msgstr "Схема не определена" -#: superset/connectors/sqla/views.py:429 +#: superset/connectors/sqla/views.py:336 msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:419 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:429 msgid "Schemas allowed for File upload" msgstr "Схемы, в которые разрешена загрузка файлов" @@ -13090,7 +13271,7 @@ msgstr "Область" msgid "Scoping" msgstr "Область применения" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 msgid "Scroll" msgstr "Прокрутка" @@ -13106,15 +13287,15 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:724 #: superset-frontend/src/pages/CssTemplateList/index.tsx:293 #: superset-frontend/src/pages/DashboardList/index.tsx:516 -#: superset-frontend/src/pages/DatabaseList/index.tsx:492 -#: superset-frontend/src/pages/DatasetList/index.tsx:577 +#: superset-frontend/src/pages/DatabaseList/index.tsx:503 +#: superset-frontend/src/pages/DatasetList/index.tsx:588 #: superset-frontend/src/pages/SavedQueryList/index.tsx:494 #: superset-frontend/src/pages/Tags/index.tsx:204 #: superset/templates/appbuilder/general/widgets/search.html:40 msgid "Search" msgstr "Поиск" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:294 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 msgid "Search / Filter" msgstr "Поиск / Фильтр" @@ -13138,12 +13319,12 @@ msgstr "Строка поиска" msgid "Search by query text" msgstr "Поиск по тексту запроса" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:207 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 #, fuzzy msgid "Search columns" msgstr "Используемые столбцы" -#: superset-frontend/src/components/Table/index.tsx:202 +#: superset-frontend/src/components/Table/index.tsx:206 #, fuzzy msgid "Search in filters" msgstr "Поиск / Фильтр" @@ -13157,7 +13338,7 @@ msgstr "Показать в виде таблицы" msgid "Search..." msgstr "Поиск..." -#: superset/db_engine_specs/base.py:96 +#: superset/db_engine_specs/base.py:97 msgid "Second" msgstr "Секунда" @@ -13171,10 +13352,15 @@ msgid "Secondary Metric" msgstr "Вторичная мера" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:408 +#, fuzzy +msgid "Secondary y-axis Bounds" +msgstr "Формат вторичной оси Y" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:425 msgid "Secondary y-axis format" msgstr "Формат вторичной оси Y" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:417 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:434 msgid "Secondary y-axis title" msgstr "Название вторичной оси Y" @@ -13187,15 +13373,15 @@ msgstr "Секунд %s" msgid "Secure Extra" msgstr "Доп. безопасность" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:336 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:341 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:346 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 msgid "Secure extra" msgstr "Безопасность" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:329 -#: superset/initialization/__init__.py:297 -#: superset/initialization/__init__.py:395 -#: superset/initialization/__init__.py:433 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:339 +#: superset/initialization/__init__.py:389 +#: superset/initialization/__init__.py:427 +#: superset/initialization/__init__.py:438 msgid "Security" msgstr "Безопасность" @@ -13218,24 +13404,24 @@ msgstr "Скрыть подробности" msgid "See more" msgstr "Подробнее" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:412 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:405 msgid "See query details" msgstr "Показать детали запроса" -#: superset-frontend/src/components/TableSelector/index.tsx:288 +#: superset-frontend/src/components/TableSelector/index.tsx:277 msgid "See table schema" msgstr "Таблица" -#: superset-frontend/src/explore/components/SaveModal.tsx:363 +#: superset-frontend/src/explore/components/SaveModal.tsx:398 #: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 msgid "Select" msgstr "Выбрать" #: superset-frontend/src/components/AsyncSelect/index.jsx:41 #: superset-frontend/src/components/Select/AsyncSelect.tsx:123 -#: superset-frontend/src/components/Select/Select.tsx:103 +#: superset-frontend/src/components/Select/Select.tsx:104 #: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 -#: superset-frontend/src/explore/components/controls/SelectControl.jsx:230 +#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 msgid "Select ..." msgstr "Выбрать ..." @@ -13247,11 +13433,11 @@ msgstr "Выберите способ оповещения" msgid "Select Viz Type" msgstr "Выберите тип визуализации" -#: superset/views/database/forms.py:415 +#: superset/views/database/forms.py:425 msgid "Select a Columnar file to be uploaded to a database." msgstr "Выберите файл столбчатого формата, который будет загружен в базу данных." -#: superset/views/database/forms.py:279 +#: superset/views/database/forms.py:289 msgid "Select a Excel file to be uploaded to a database." msgstr "Выберите Excel файл для загрузки в базу данных" @@ -13259,7 +13445,7 @@ msgstr "Выберите Excel файл для загрузки в базу да msgid "Select a column" msgstr "Выберите столбец" -#: superset-frontend/src/explore/components/SaveModal.tsx:357 +#: superset-frontend/src/explore/components/SaveModal.tsx:392 msgid "Select a dashboard" msgstr "Выбрать дашборд" @@ -13279,7 +13465,7 @@ msgstr "Выберите базу данных для подключения" msgid "Select a database to upload the file to" msgstr "Выберите базу данных для загрузки файла" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:744 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:738 msgid "Select a database to write a query" msgstr "Выберите базу данных для написания запроса" @@ -13291,7 +13477,7 @@ msgstr "Выберете измерение" msgid "Select a file to be uploaded to the database" msgstr "Выберите файл для загрузки в базу данных." -#: superset/views/database/forms.py:145 +#: superset/views/database/forms.py:155 msgid "Select a schema if the database supports this" msgstr "Укажите схему, если она поддерживается базой данных" @@ -13303,11 +13489,11 @@ msgstr "Выберите тип визуализации" msgid "Select aggregate options" msgstr "Выберите настройки агрегации" -#: superset-frontend/src/components/Table/index.tsx:207 +#: superset-frontend/src/components/Table/index.tsx:211 msgid "Select all data" msgstr "Выбрать все данные" -#: superset-frontend/src/components/Table/index.tsx:201 +#: superset-frontend/src/components/Table/index.tsx:205 msgid "Select all items" msgstr "Выбрать все записи" @@ -13315,6 +13501,11 @@ msgstr "Выбрать все записи" msgid "Select any columns for metadata inspection" msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +#, fuzzy +msgid "Select chart" +msgstr "Выберите графики" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:45 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:103 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:138 @@ -13325,13 +13516,13 @@ msgstr "Выберите графики" msgid "Select color scheme" msgstr "Выберите цветовую схему" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:208 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 msgid "Select column" msgstr "Выберите столбец" -#: superset-frontend/src/components/Table/index.tsx:204 +#: superset-frontend/src/components/Table/index.tsx:208 msgid "Select current page" msgstr "Выбрать текущую страницу" @@ -13339,8 +13530,8 @@ msgstr "Выбрать текущую страницу" msgid "Select database & schema" msgstr "Выберите базу данных и схему" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:272 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:280 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:271 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:279 #, fuzzy msgid "Select database or type to search databases" msgstr "Выберите базу данных или введите ее имя" @@ -13349,7 +13540,7 @@ msgstr "Выберите базу данных или введите ее имя msgid "Select database table" msgstr "Выберите таблицу из базы данных" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1791 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1847 msgid "" "Select databases require additional fields to be completed in the " "Advanced tab to successfully connect the database. Learn what " @@ -13389,7 +13580,7 @@ msgstr "Выбрать оператор" msgid "Select or type a value" msgstr "Выберите значение" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:410 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:418 msgid "Select or type dataset name" msgstr "Выберите/введите имя датасета" @@ -13401,8 +13592,8 @@ msgstr "Выбрать владельцев" msgid "Select saved metrics" msgstr "Выберите сохраненные меры" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:297 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:304 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:296 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 #, fuzzy msgid "Select schema or type to search schemas" msgstr "Выберите схему или введите ее имя" @@ -13411,7 +13602,7 @@ msgstr "Выберите схему или введите ее имя" msgid "Select scheme" msgstr "Выберите схему" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:304 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:307 msgid "Select start and end date" msgstr "Выберите дату начала" @@ -13419,8 +13610,8 @@ msgstr "Выберите дату начала" msgid "Select subject" msgstr "" +#: superset-frontend/src/components/TableSelector/index.tsx:284 #: superset-frontend/src/components/TableSelector/index.tsx:295 -#: superset-frontend/src/components/TableSelector/index.tsx:306 #, fuzzy msgid "Select table or type to search tables" msgstr "Выберите таблицу или введите ее имя" @@ -13429,6 +13620,23 @@ msgstr "Выберите таблицу или введите ее имя" msgid "Select the Annotation Layer you would like to use." msgstr "Выбрать слой аннотации, который вы хотите использовать." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +msgid "" +"Select the charts to which you want to apply cross-filters in this " +"dashboard. Deselecting a chart will exclude it from being filtered when " +"applying cross-filters from any chart on the dashboard. You can select " +"\"All charts\" to apply cross-filters to all charts that use the same " +"dataset or contain the same column name in the dashboard." +msgstr "" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +msgid "" +"Select the charts to which you want to apply cross-filters when " +"interacting with this chart. You can select \"All charts\" to apply " +"filters to all charts that use the same dataset or contain the same " +"column name in the dashboard." +msgstr "" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:392 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:37 msgid "Select the geojson column" @@ -13476,7 +13684,7 @@ msgstr "Сентябрь" msgid "Sequential" msgstr "Последовательность" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 msgid "Series" msgstr "Ряд" @@ -13493,7 +13701,7 @@ msgstr "Сортировка категорий по" msgid "Series Limit Sort Descending" msgstr "Сортировать" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:255 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:246 #, fuzzy msgid "Series Order" msgstr "категории" @@ -13567,13 +13775,13 @@ msgid "Settings for time series" msgstr "Настройки временных рядов" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:325 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:464 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:467 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 #: superset-frontend/src/features/home/SavedQueries.tsx:211 msgid "Share" msgstr "Поделиться" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:469 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:472 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:343 msgid "Share chart by email" msgstr "Поделиться графиком по email" @@ -13582,7 +13790,7 @@ msgstr "Поделиться графиком по email" msgid "Share permalink by email" msgstr "Поделиться ссылкой по email" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1429 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1421 msgid "Shared query" msgstr "Общедоступный запрос" @@ -13590,7 +13798,7 @@ msgstr "Общедоступный запрос" msgid "Shared query fields" msgstr "Поля общедоступного запроса" -#: superset/views/database/forms.py:298 +#: superset/views/database/forms.py:308 msgid "Sheet Name" msgstr "Имя листа" @@ -13647,7 +13855,7 @@ msgstr "Показать CSS шаблон" msgid "Show Chart" msgstr "Показать график" -#: superset/connectors/sqla/views.py:73 +#: superset/connectors/sqla/views.py:72 msgid "Show Column" msgstr "Показать столбец" @@ -13681,11 +13889,11 @@ msgstr "Показать запись" msgid "Show Markers" msgstr "Показать маркеры" -#: superset/connectors/sqla/views.py:208 +#: superset/connectors/sqla/views.py:207 msgid "Show Metric" msgstr "Показатель меру" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:178 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 msgid "Show Metric Names" msgstr "Показать имена мер" @@ -13693,16 +13901,11 @@ msgstr "Показать имена мер" msgid "Show Range Filter" msgstr "Показать фильтр Диапазон" -#: superset/connectors/sqla/views.py:291 -#, fuzzy -msgid "Show Row level security filter" -msgstr "Безопасность на уровне строк" - #: superset/views/sql_lab/views.py:53 msgid "Show Saved Query" msgstr "Показать сохраненный запрос" -#: superset/connectors/sqla/views.py:385 +#: superset/connectors/sqla/views.py:292 msgid "Show Table" msgstr "Показать таблицу" @@ -13723,11 +13926,11 @@ msgstr "Показать трендовую линию" msgid "Show Upper Labels" msgstr "Показать верхние метки" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:110 msgid "Show Value" msgstr "Показать значение" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:164 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:315 #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:184 msgid "Show Values" @@ -13760,7 +13963,7 @@ msgstr "Показывать деления на оси" msgid "Show cell bars" msgstr "Наложить гистограммы на ячейки" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:395 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 msgid "Show chart description" msgstr "Показать описание графика" @@ -13798,7 +14001,7 @@ msgstr "Показывать метку" msgid "Show labels when the node has children." msgstr "Показывать метки, когда у вершины есть дочерние элементы." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:39 msgid "Show legend" msgstr "Показывать легенду" @@ -13834,7 +14037,7 @@ msgstr "Показывать прогресс" msgid "Show rows total" msgstr "Показать общий итог по строкам" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 msgid "Show series values on the chart" msgstr "Показать значения категорий на графике" @@ -13864,7 +14067,6 @@ msgstr "" "Показать общие итоговые значения выбранных показателей. Обратите " "внимание, что ограничение количества строк не применяется к результату." -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:76 #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:365 msgid "Show totals" @@ -13919,7 +14121,7 @@ msgstr "" msgid "Showing %s of %s" msgstr "Отображено %s из %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:184 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 msgid "Shows a list of all series available at that point in time" msgstr "Показывает список всех данных, доступных в определенный момент времени" @@ -13939,7 +14141,7 @@ msgstr "" msgid "Significance Level" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:341 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 @@ -13988,23 +14190,23 @@ msgstr "Размер маркера. Также применяется к про msgid "Sizes of vehicles" msgstr "" -#: superset/views/database/forms.py:177 +#: superset/views/database/forms.py:187 msgid "Skip Blank Lines" msgstr "Пропуск пустых строк" -#: superset/views/database/forms.py:174 +#: superset/views/database/forms.py:184 msgid "Skip Initial Space" msgstr "Пропуск начального пробела" -#: superset/views/database/forms.py:260 superset/views/database/forms.py:354 +#: superset/views/database/forms.py:270 superset/views/database/forms.py:364 msgid "Skip Rows" msgstr "Пропуск строк" -#: superset/views/database/forms.py:178 +#: superset/views/database/forms.py:188 msgid "Skip blank lines rather than interpreting them as Not A Number values" msgstr "Пропускать пустые строки, вместо их перевода в пустые строки (NaN)" -#: superset/views/database/forms.py:174 +#: superset/views/database/forms.py:184 msgid "Skip spaces after delimiter" msgstr "Пропускать пробелы после разделителя" @@ -14040,7 +14242,7 @@ msgstr "" msgid "Solid" msgstr "Сплошной" -#: superset/commands/exceptions.py:115 +#: superset/commands/exceptions.py:119 msgid "Some roles do not exist" msgstr "Некоторые роли не существуют" @@ -14048,7 +14250,7 @@ msgstr "Некоторые роли не существуют" msgid "Something went wrong." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:864 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:919 #, python-format msgid "Sorry there was an error fetching database information: %s" msgstr "К сожалению, произошла ошибка при получении информации о базе данных: %s" @@ -14066,7 +14268,7 @@ msgstr "Извините, произошла ошибка" msgid "Sorry, an error occurred" msgstr "Извините, произошла ошибка" -#: superset-frontend/src/dashboard/actions/dashboardState.js:357 +#: superset-frontend/src/dashboard/actions/dashboardState.js:359 msgid "Sorry, an unknown error occurred" msgstr "Извините, произошла неизвестная ошибка" @@ -14095,14 +14297,14 @@ msgstr "Извините, похоже, что данные отсутствую msgid "Sorry, there was an error saving this %s: %s" msgstr "Извините, произошла ошибка при сохранении дашборда: %s" -#: superset-frontend/src/dashboard/actions/dashboardState.js:360 +#: superset-frontend/src/dashboard/actions/dashboardState.js:362 #, python-format msgid "Sorry, there was an error saving this dashboard: %s" msgstr "Извините, произошла ошибка при сохранении дашборда: %s" #: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 #: superset-frontend/src/pages/SavedQueryList/index.tsx:229 -#: superset-frontend/src/views/CRUD/hooks.ts:676 +#: superset-frontend/src/views/CRUD/hooks.ts:680 msgid "Sorry, your browser does not support copying." msgstr "" "Извините, Ваш браузер не поддерживание копирование. Используйте сочетание" @@ -14116,7 +14318,7 @@ msgstr "" #: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 #: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 -#: superset-frontend/src/components/Table/index.tsx:208 +#: superset-frontend/src/components/Table/index.tsx:212 msgid "Sort" msgstr "Сортировка" @@ -14134,12 +14336,12 @@ msgstr "Сортировать по убыванию" msgid "Sort Metric" msgstr "Мера для сортировки" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:247 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:238 #, fuzzy msgid "Sort Series Ascending" msgstr "Сортировать по возрастанию" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:227 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:224 #, fuzzy msgid "Sort Series By" msgstr "Сортировка строк по" @@ -14215,7 +14417,7 @@ msgstr "Показатель для сортировки" msgid "Sort rows by" msgstr "Сортировка строк по" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:250 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:241 msgid "Sort series in ascending order" msgstr "" @@ -14246,6 +14448,7 @@ msgstr "Исходная категория" msgid "Sparkline" msgstr "Спарклайн" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:978 msgid "Spatial" msgstr "" @@ -14254,23 +14457,23 @@ msgstr "" msgid "Specific Date/Time" msgstr "Конкретная дата/время" -#: superset/views/database/forms.py:312 superset/views/database/forms.py:443 +#: superset/views/database/forms.py:322 superset/views/database/forms.py:453 msgid "Specify a schema (if database flavor supports this)." msgstr "Укажите схему (если она поддерживается базой данных)." -#: superset/views/database/forms.py:351 +#: superset/views/database/forms.py:361 msgid "Specify duplicate columns as \"X.0, X.1\"." msgstr "Обозначить повторяющиеся столбцы как \"X.0, X.1\"." -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:711 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:705 msgid "Specify name to CREATE TABLE AS schema in: public" msgstr "Укажите имя новой таблицы для CREATE TABLE AS" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:710 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:704 msgid "Specify name to CREATE VIEW AS schema in: public" msgstr "Укажите имя нового представления для CREATE VIEW AS" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:515 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:551 msgid "" "Specify the database version. This should be used with Presto in order to" " enable query cost estimation." @@ -14294,7 +14497,7 @@ msgstr "Квадратные метры" msgid "Square miles" msgstr "Квадратные мили" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 msgid "Stack" msgstr "" @@ -14308,7 +14511,7 @@ msgstr "Использовать накопление" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:161 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:115 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:128 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:125 msgid "Stack series on top of each other" msgstr "Совместить столбцы в один с накоплением" @@ -14328,7 +14531,7 @@ msgstr "Столбцы с накоплением" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:124 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:121 #: superset-frontend/src/explore/fixtures.tsx:58 msgid "Stacked Style" msgstr "" @@ -14401,7 +14604,7 @@ msgstr "Запущен" msgid "State" msgstr "Состояние" -#: superset/sql_lab.py:511 +#: superset/sql_lab.py:503 #, python-format msgid "Statement %(statement_num)s out of %(statement_count)s" msgstr "" @@ -14453,20 +14656,20 @@ msgid "" "irregular intervals." msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:47 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:46 #: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 msgid "Stop" msgstr "Стоп" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:337 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:339 msgid "Stop query" msgstr "Остановить запрос" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:116 msgid "Stop running (Ctrl + e)" msgstr "Остановить выполнение (CTRL + X)" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:114 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 msgid "Stop running (Ctrl + x)" msgstr "Остановить выполнение (CTRL + X)" @@ -14474,7 +14677,7 @@ msgstr "Остановить выполнение (CTRL + X)" msgid "Stopped an unsafe database connection" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 #, fuzzy msgid "Stream" msgstr "поток" @@ -14492,7 +14695,7 @@ msgstr "Сила притяжения вершин к центру" msgid "Stretched style" msgstr "" -#: superset/views/database/forms.py:299 +#: superset/views/database/forms.py:309 msgid "Strings used for sheet names (default is the first sheet)." msgstr "Имя листа (по умолчанию первый лист)" @@ -14521,11 +14724,11 @@ msgstr "Стиль" msgid "Style the ends of the progress bar with a round cap" msgstr "Оформление концов индикатора круглыми заглушками" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:56 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 msgid "Subdomain" msgstr "Подблок" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 msgid "Subheader" msgstr "Подзаголовок" @@ -14537,8 +14740,8 @@ msgstr "Размер шрифта подзаголовка" msgid "Submit" msgstr "Отправить" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:472 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:678 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 #: superset/charts/post_processing.py:161 #: superset/charts/post_processing.py:178 msgid "Subtotal" @@ -14550,7 +14753,7 @@ msgstr "Подытог" msgid "Success" msgstr "Успешно" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:193 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 msgid "Successfully changed dataset!" msgstr "" @@ -14583,7 +14786,7 @@ msgstr "Сумма значений за обозначенный период" msgid "Sum values" msgstr "Суммарные значения" -#: superset/viz.py:1888 +#: superset/viz.py:1805 msgid "Sunburst" msgstr "Диаграмма Солнечные лучи" @@ -14609,7 +14812,7 @@ msgid "Superset Embedded SDK documentation." msgstr "" #: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:470 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:473 msgid "Superset chart" msgstr "График Superset" @@ -14625,7 +14828,7 @@ msgstr "Суперсет столкнулся с ошибкой во время msgid "Superset encountered an unexpected error." msgstr "Суперсет столкнулся с неожиданной ошибкой." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:920 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 msgid "Supported databases" msgstr "Поддерживаемые базы данных" @@ -14633,11 +14836,7 @@ msgstr "Поддерживаемые базы данных" msgid "Survey Responses" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:101 -msgid "Swap Groups and Columns" -msgstr "Поменять местами группы и столбцы" - -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:254 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:311 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:435 msgid "Swap dataset" @@ -14686,6 +14885,11 @@ msgstr "Синхронизировать столбцы из источника" msgid "Syntax" msgstr "" +#: superset/db_engine_specs/ocient.py:282 +#, python-format +msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +msgstr "" + #: superset-frontend/src/pages/QueryHistoryList/index.tsx:268 #: superset-frontend/src/pages/SavedQueryList/index.tsx:315 msgid "TABLES" @@ -14719,37 +14923,37 @@ msgstr "Имя вкладки" msgid "Tab title" msgstr "Имя вкладки" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:26 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 -#: superset-frontend/src/components/TableSelector/index.tsx:290 +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 +#: superset-frontend/src/components/TableSelector/index.tsx:279 #: superset-frontend/src/visualizations/TimeTable/index.ts:26 -#: superset/connectors/sqla/views.py:160 superset/connectors/sqla/views.py:255 -#: superset/connectors/sqla/views.py:477 superset/views/chart/mixin.py:86 +#: superset/connectors/sqla/views.py:159 superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:384 superset/views/chart/mixin.py:86 msgid "Table" msgstr "Таблица" -#: superset/views/core.py:1740 +#: superset/views/core.py:1775 #, python-format msgid "Table %(table)s wasn't found in the database %(db)s" msgstr "" -#: superset/views/database/forms.py:317 superset/views/database/forms.py:448 +#: superset/views/database/forms.py:327 superset/views/database/forms.py:458 msgid "Table Exists" msgstr "Таблица существует" -#: superset/connectors/sqla/views.py:487 superset/views/database/forms.py:128 -#: superset/views/database/forms.py:269 superset/views/database/forms.py:405 +#: superset/connectors/sqla/views.py:394 superset/views/database/forms.py:128 +#: superset/views/database/forms.py:279 superset/views/database/forms.py:415 msgid "Table Name" msgstr "Имя таблицы" -#: superset/viz.py:698 +#: superset/viz.py:722 #, fuzzy msgid "Table View" msgstr "Убрать предпросмотр таблицы" -#: superset/datasets/commands/exceptions.py:130 +#: superset/datasets/commands/exceptions.py:147 #, python-format msgid "" "Table [%(table_name)s] could not be found, please double check your " @@ -14766,7 +14970,7 @@ msgstr "" "Не удается найти таблицу \"%(table)s\", пожалуйста, проверьте ваше " "соединение с базой данных, схему и имя таблицы, ошибка: {}" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:268 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:278 msgid "Table cache timeout" msgstr "Время жизни кэша таблицы" @@ -14779,8 +14983,8 @@ msgstr "Столбцы таблицы" msgid "Table loading" msgstr "Загрузка таблицы" -#: superset/views/database/forms.py:132 superset/views/database/forms.py:273 -#: superset/views/database/forms.py:409 +#: superset/views/database/forms.py:132 superset/views/database/forms.py:283 +#: superset/views/database/forms.py:419 msgid "Table name cannot contain a schema" msgstr "Имя таблицы не может содержать схему" @@ -14788,6 +14992,11 @@ msgstr "Имя таблицы не может содержать схему" msgid "Table name undefined" msgstr "Имя таблицы не определено" +#: superset/db_engine_specs/ocient.py:287 +#, fuzzy, python-format +msgid "Table or View \"%(table)s\" does not exist." +msgstr "Пользователь \"%(username)s\" не существует." + #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 msgid "" "Table that visualizes paired t-tests, which are used to understand " @@ -14796,9 +15005,11 @@ msgstr "" "Таблица, визуализирующая парные t-тесты, которые используются для " "нахождения статистических различий между группами." +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:384 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:393 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:287 #: superset-frontend/src/pages/SavedQueryList/index.tsx:334 -#: superset/connectors/sqla/views.py:363 superset/connectors/sqla/views.py:384 +#: superset/connectors/sqla/views.py:291 msgid "Tables" msgstr "Таблицы" @@ -14849,7 +15060,7 @@ msgstr "Не удалось удалить датасет" #: superset-frontend/src/pages/SavedQueryList/index.tsx:382 #: superset-frontend/src/pages/SavedQueryList/index.tsx:487 #: superset-frontend/src/pages/Tags/index.tsx:279 -#: superset/initialization/__init__.py:384 +#: superset/initialization/__init__.py:378 msgid "Tags" msgstr "Теги" @@ -14876,7 +15087,7 @@ msgstr "" msgid "Target category" msgstr "Целевая категория" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:173 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 msgid "Target value" msgstr "Целевое значение" @@ -14886,7 +15097,7 @@ msgstr "Имя шаблона" #: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:962 -#: superset/connectors/sqla/views.py:493 +#: superset/connectors/sqla/views.py:400 msgid "Template parameters" msgstr "Параметры шаблона" @@ -14898,7 +15109,7 @@ msgstr "" "Шаблонная ссылка, можно включить {{ metric }} или другие значения, " "поступающие из элементов управления." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:317 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:327 msgid "" "Terminate running queries when browser window closed or navigated to " "another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " @@ -14925,7 +15136,7 @@ msgstr "Текст" msgid "Text align" msgstr "Выравнивание текста" -#: superset-frontend/src/components/ReportModal/index.tsx:248 +#: superset-frontend/src/components/ReportModal/index.tsx:247 msgid "Text embedded in email" msgstr "Текст, включенный в email" @@ -14975,7 +15186,7 @@ msgid "" " the filters list?" msgstr "" -#: superset/views/core.py:372 +#: superset/views/core.py:373 msgid "The access requests seem to have been deleted" msgstr "" @@ -14995,11 +15206,11 @@ msgstr "" "Категория исходных вершин предназначена для задания цветов. Если вершина " "связана более, чем с одной категорией, только первая будет использована." -#: superset/common/query_context_processor.py:586 +#: superset/common/query_context_processor.py:585 msgid "The chart datasource does not exist" msgstr "Источник данных графика не существует" -#: superset/common/query_context_processor.py:584 +#: superset/common/query_context_processor.py:583 msgid "The chart does not exist" msgstr "График не существует" @@ -15053,14 +15264,14 @@ msgstr "Дашборд сохранен" msgid "The data source seems to have been deleted" msgstr "Источник данных, похоже, был удален" -#: superset/connectors/sqla/views.py:115 +#: superset/connectors/sqla/views.py:114 msgid "" "The data type that was inferred by the database. It may be necessary to " "input a type manually for expression-defined columns in some cases. In " "most case users should not need to alter this." msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:515 +#: superset-frontend/src/pages/DatabaseList/index.tsx:529 #, python-format msgid "" "The database %s is linked to %s charts that appear on %s dashboards and " @@ -15107,11 +15318,11 @@ msgstr "База данных вернула неожиданную ошибку msgid "The database was deleted." msgstr "База данных была удалена" -#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2002 +#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2039 msgid "The database was not found." msgstr "Не удалось найти базу данных" -#: superset-frontend/src/pages/DatasetList/index.tsx:710 +#: superset-frontend/src/pages/DatasetList/index.tsx:724 #, python-format msgid "" "The dataset %s is linked to %s charts that appear on %s dashboards. Are " @@ -15123,11 +15334,11 @@ msgstr "" "приведёт к неработоспособности этих объектов." #: superset-frontend/src/components/Chart/Chart.jsx:88 -#: superset/views/utils.py:274 +#: superset/views/utils.py:272 msgid "The dataset associated with this chart no longer exists" msgstr "Датасет, связанный с этим графиком, больше не существует" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:168 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:210 msgid "" "The dataset configuration exposed here\n" " affects all the charts using this dataset.\n" @@ -15141,7 +15352,7 @@ msgstr "" " может иметь неожиданный эффект\n" " на другие графики." -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:129 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:164 #: superset-frontend/src/pages/ChartCreation/index.tsx:261 msgid "The dataset has been saved" msgstr "Датасет сохранен" @@ -15150,7 +15361,7 @@ msgstr "Датасет сохранен" msgid "The dataset linked to this chart may have been deleted." msgstr "Датасет, связанный с этим графиком, похоже, был удален." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1496 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1488 msgid "The datasource couldn't be loaded" msgstr "Невозможно загрузить источник данных" @@ -15166,7 +15377,7 @@ msgstr "" "Описание может быть отображено как заголовок графика в дашборде. " "Поддерживает markdown-разметку" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:104 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 msgid "The distance between cells, in pixels" msgstr "Расстояние между ячейками (в пикселях)" @@ -15182,7 +15393,7 @@ msgstr "Количество секунд до истечения срока д msgid "The encoding format of the lines" msgstr "Показатель, по которому сортировать результаты" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:495 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:531 msgid "" "The engine_params object gets unpacked into the sqlalchemy.create_engine " "call." @@ -15195,6 +15406,7 @@ msgid "" "%(columns)s. " msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:111 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:67 msgid "The function to use when aggregating points into groups" msgstr "" @@ -15205,9 +15417,9 @@ msgid "The host \"%(hostname)s\" might be down and can't be reached." msgstr "Хост \"%(hostname)s\" возможно, отключен, и с ним невозможно связаться" #: superset/db_engine_specs/mssql.py:103 -#: superset/db_engine_specs/postgres.py:140 -#: superset/db_engine_specs/presto.py:664 -#: superset/db_engine_specs/redshift.py:82 +#: superset/db_engine_specs/postgres.py:139 +#: superset/db_engine_specs/presto.py:691 +#: superset/db_engine_specs/redshift.py:86 #, python-format msgid "" "The host \"%(hostname)s\" might be down, and can't be reached on port " @@ -15221,9 +15433,9 @@ msgid "The host might be down, and can't be reached on the provided port." msgstr "Хост возможно, отключен, и с ним невозможно связаться по заданному порту." #: superset/db_engine_specs/mssql.py:93 -#: superset/db_engine_specs/postgres.py:130 -#: superset/db_engine_specs/presto.py:659 -#: superset/db_engine_specs/redshift.py:72 +#: superset/db_engine_specs/postgres.py:129 +#: superset/db_engine_specs/presto.py:686 +#: superset/db_engine_specs/redshift.py:76 #, python-format msgid "The hostname \"%(hostname)s\" cannot be resolved." msgstr "Не удалось обнаружить хост \"%(hostname)s\"" @@ -15237,7 +15449,7 @@ msgstr "Не удалось обнаружить хост." msgid "The id of the active chart" msgstr "Идентификатор активного графика" -#: superset/connectors/sqla/views.py:418 +#: superset/connectors/sqla/views.py:325 msgid "" "The list of charts associated with this table. By altering this " "datasource, you may change how these associated charts behave. Also note " @@ -15276,7 +15488,7 @@ msgid "" "%{key}s is invalid." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:469 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:505 msgid "" "The metadata_params object gets unpacked into the sqlalchemy.MetaData " "call." @@ -15300,7 +15512,7 @@ msgstr "" "можете указать, чтобы \"Минимальный период\" был равен 7, так что все " "показанные точки данных представляют собой общее количество 7 периодов." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:130 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 msgid "The number color \"steps\"" msgstr "Количество цветов в цветовой схеме" @@ -15313,7 +15525,7 @@ msgstr "" "формата дата/время. Это может быть использовано для приведения часового " "пояса UTC к местному времени." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:308 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:301 #, python-format msgid "" "The number of results displayed is limited to %(rows)d by the " @@ -15324,7 +15536,7 @@ msgstr "" "DISPLAY_MAX_ROWS. Пожалуйста, добавьте дополнительные ограничения/фильтры" " или загрузите в csv, чтобы увидеть больше строк до предела %(limit)d." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:314 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:307 #, python-format msgid "" "The number of results displayed is limited to %(rows)d. Please add " @@ -15335,22 +15547,22 @@ msgstr "" "добавьте дополнительные ограничения/фильтры или загрузите в csv, чтобы " "увидеть больше строк до предела %(limit)d.\"" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:365 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:358 #, fuzzy, python-format msgid "The number of rows displayed is limited to %(rows)d by the dropdown." msgstr "Количество отображаемых строк ограничено: не более %(rows)d." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:334 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." msgstr "Количество отображаемых строк ограничено: не более %(rows)d." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:326 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:319 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the query" msgstr "Количество отображаемых строк ограничено: не более %(rows)d." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:339 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:332 #, python-format msgid "" "The number of rows displayed is limited to %(rows)d by the query and " @@ -15366,7 +15578,7 @@ msgstr "Количество секунд до истечения срока д msgid "The object does not exist in the given database." msgstr "Объект не существует в этой базе данных." -#: superset/sqllab/query_render.py:96 +#: superset/sqllab/query_render.py:94 #, python-format msgid "The parameter %(parameters)s in your query is undefined." msgid_plural "The following parameters in your query are undefined: %(parameters)s." @@ -15374,7 +15586,7 @@ msgstr[0] "Параметр %(parameters)s в вашем запросе неоп msgstr[1] "Следующие параметры неопределены в вашем запросе: %(parameters)s" msgstr[2] "Следующие параметры неопределены в вашем запросе: %(parameters)s" -#: superset/db_engine_specs/postgres.py:120 +#: superset/db_engine_specs/postgres.py:119 #, python-format msgid "The password provided for username \"%(username)s\" is incorrect." msgstr "Неверный пароль для пользователя \"%(username)s\"." @@ -15438,7 +15650,7 @@ msgstr "" "экспортируемых файлах и должны быть добавлены вручную после импорта, если" " необходимо." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1284 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1339 msgid "" "The passwords for the databases below are needed in order to import them." " Please note that the \"Secure Extra\" and \"Certificate\" sections of " @@ -15464,7 +15676,7 @@ msgstr "" "Периодичность для группировки по времени. Пользователи могут задавать " "собственную частоту. Для этого нажмите на иконку с информацией." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 msgid "The pixel radius" msgstr "Радиус ячейки (в пикселях)" @@ -15491,7 +15703,7 @@ msgstr "Недействительный порт." msgid "The primary metric is used to define the arc segment sizes" msgstr "Основная мера используется для определения размера сегмента дуги" -#: superset/views/core.py:2212 +#: superset/views/core.py:2248 msgid "The provided `rows` argument is not a valid integer." msgstr "" @@ -15500,13 +15712,13 @@ msgid "The query associated with the results was deleted." msgstr "Запрос, связанный с результатами, был удален." #: superset/sqllab/commands/export.py:63 superset/sqllab/commands/results.py:91 -#: superset/views/core.py:2162 +#: superset/views/core.py:2198 msgid "" "The query associated with these results could not be found. You need to " "re-run the original query." msgstr "" -#: superset/sqllab/query_render.py:117 +#: superset/sqllab/query_render.py:115 msgid "The query contains one or more malformed template parameters." msgstr "" @@ -15527,11 +15739,11 @@ msgstr "" msgid "The query has a syntax error." msgstr "Запрос имеет синтаксическую ошибку." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:519 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:512 msgid "The query returned no data" msgstr "Запрос не вернул данных" -#: superset/sql_lab.py:301 +#: superset/sql_lab.py:297 #, python-format msgid "" "The query was killed after %(sqllab_timeout)s seconds. It might be too " @@ -15581,14 +15793,14 @@ msgstr "" "Расширенная всплывающая подсказка показывает список всех категорий для " "этой точки." -#: superset/db_engine_specs/bigquery.py:202 +#: superset/db_engine_specs/bigquery.py:203 #, python-format msgid "" "The schema \"%(schema)s\" does not exist. A valid schema must be used to " "run this query." msgstr "" -#: superset/db_engine_specs/presto.py:646 +#: superset/db_engine_specs/presto.py:673 #, python-format msgid "" "The schema \"%(schema_name)s\" does not exist. A valid schema must be " @@ -15599,11 +15811,12 @@ msgstr "" msgid "The schema was deleted or renamed in the database." msgstr "Схема была удалена или переименована в базе данных." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:92 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 msgid "The size of the square cell, in pixels" msgstr "Размер квадратной ячейки (в пикселях)" -#: superset/views/datasource/views.py:88 +#: superset/datasets/commands/exceptions.py:72 +#: superset/views/datasource/views.py:90 msgid "" "The submitted URL is not considered safe, only use URLs with the same " "domain as Superset." @@ -15617,7 +15830,7 @@ msgstr "Загруженные данные имеют некорректный msgid "The submitted payload has the incorrect schema." msgstr "Загруженные данные имеют некорректную схему." -#: superset/db_engine_specs/bigquery.py:189 +#: superset/db_engine_specs/bigquery.py:190 #, python-format msgid "" "The table \"%(table)s\" does not exist. A valid table must be used to run" @@ -15626,7 +15839,7 @@ msgstr "" "Таблица \"%(table)s\" не существует. Для выполнения запроса должна " "использоваться существующая таблица" -#: superset/db_engine_specs/presto.py:638 +#: superset/db_engine_specs/presto.py:665 #, python-format msgid "" "The table \"%(table_name)s\" does not exist. A valid table must be used " @@ -15635,7 +15848,7 @@ msgstr "" "Таблица \"%(table_name)s\" не существует. Для выполнения запроса должна " "использоваться существующая таблица" -#: superset/connectors/sqla/views.py:515 +#: superset/connectors/sqla/views.py:422 msgid "" "The table was created. As part of this two-phase configuration process, " "you should now click the edit button by the new table to configure it." @@ -15706,7 +15919,7 @@ msgstr "" "можете самостоятельно задать часовой пояс по формату ISO 8601 при " "пользовательской настройке, задав время начала и/или конца." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 msgid "" "The time unit for each block. Should be a smaller unit than " "domain_granularity. Should be larger or equal to Time Grain" @@ -15714,7 +15927,7 @@ msgstr "" "Единица времени для каждого подблока. Должна быть меньшей единицей, чем " "единица времени блока. Должно быть больше или равно единице времени" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 msgid "The time unit used for the grouping of blocks" msgstr "Единица времени для группировки блоков" @@ -15732,7 +15945,12 @@ msgstr "Единица измерения для указанного радиу msgid "The user seems to have been deleted" msgstr "Пользователь, похоже, был удален" -#: superset/db_engine_specs/postgres.py:115 +#: superset/db_engine_specs/ocient.py:251 +msgid "The user/password combination is not valid (Incorrect password for user)." +msgstr "" + +#: superset/db_engine_specs/ocient.py:246 +#: superset/db_engine_specs/postgres.py:114 #, python-format msgid "The username \"%(username)s\" does not exist." msgstr "Пользователь \"%(username)s\" не существует." @@ -15759,16 +15977,16 @@ msgstr "Ширина линий" msgid "There are associated alerts or reports" msgstr "Есть связанные оповещения или отчеты" -#: superset/charts/commands/bulk_delete.py:62 -#: superset/charts/commands/delete.py:71 -#: superset/dashboards/commands/bulk_delete.py:63 -#: superset/dashboards/commands/delete.py:64 -#: superset/databases/commands/delete.py:63 +#: superset/charts/commands/bulk_delete.py:61 +#: superset/charts/commands/delete.py:70 +#: superset/dashboards/commands/bulk_delete.py:62 +#: superset/dashboards/commands/delete.py:63 +#: superset/databases/commands/delete.py:62 #, python-format msgid "There are associated alerts or reports: %s," msgstr "Есть связанные оповещения или отчеты: %s" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:710 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:711 msgid "There are no charts added to this dashboard" msgstr "В этот дашборд еще не добавлен ни один график." @@ -15828,7 +16046,7 @@ msgstr "К сожалению, произошла ошибка при получ msgid "There was an error fetching tables" msgstr "Возникла ошибка при загрузке таблиц" -#: superset-frontend/src/views/CRUD/hooks.ts:589 +#: superset-frontend/src/views/CRUD/hooks.ts:593 #, python-format msgid "There was an error fetching the favorite status: %s" msgstr "Произошла ошибка при получении статуса избранного: %s" @@ -15837,19 +16055,24 @@ msgstr "Произошла ошибка при получении статуса msgid "There was an error fetching your recent activity:" msgstr "Произошла ошибка при получении вашей недавней активности:" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:450 +#, fuzzy +msgid "There was an error loading the chart data" +msgstr "Возникла ошибка при загрузке схем" + #: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 msgid "There was an error loading the dataset metadata" msgstr "Возникла ошибка при загрузке метаданных датасета" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:241 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:240 msgid "There was an error loading the schemas" msgstr "Возникла ошибка при загрузке схем" -#: superset-frontend/src/components/TableSelector/index.tsx:194 +#: superset-frontend/src/components/TableSelector/index.tsx:191 msgid "There was an error loading the tables" msgstr "Возникла ошибка при загрузке таблиц" -#: superset-frontend/src/views/CRUD/hooks.ts:612 +#: superset-frontend/src/views/CRUD/hooks.ts:616 #, python-format msgid "There was an error saving the favorite status: %s" msgstr "Произошла ошибка при сохранении статуса избранного: %s" @@ -15863,14 +16086,20 @@ msgstr "Произошла ошибка с вашим запросом" #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 #: superset-frontend/src/pages/AnnotationList/index.tsx:121 #: superset-frontend/src/pages/CssTemplateList/index.tsx:97 -#: superset-frontend/src/pages/DatabaseList/index.tsx:167 -#: superset-frontend/src/pages/DatasetList/index.tsx:657 +#: superset-frontend/src/pages/DatabaseList/index.tsx:178 +#: superset-frontend/src/pages/DatasetList/index.tsx:668 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:97 #: superset-frontend/src/pages/SavedQueryList/index.tsx:245 #: superset-frontend/src/views/CRUD/utils.tsx:315 #, python-format msgid "There was an issue deleting %s: %s" msgstr "Произошла ошибка при удалении %s: %s" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:111 +#, fuzzy, python-format +msgid "There was an issue deleting rules: %s" +msgstr "Произошла ошибка при удалении %s: %s" + #: superset-frontend/src/pages/AlertReportList/index.tsx:201 #, python-format msgid "There was an issue deleting the selected %s: %s" @@ -15890,7 +16119,7 @@ msgstr "Произошла ошибка при удалении выбранны msgid "There was an issue deleting the selected dashboards: " msgstr "Произошла ошибка при удалении выбранных дашбордов: " -#: superset-frontend/src/pages/DatasetList/index.tsx:675 +#: superset-frontend/src/pages/DatasetList/index.tsx:686 #, python-format msgid "There was an issue deleting the selected datasets: %s" msgstr "Произошла ошибка при удалении выбранных датасетов: %s" @@ -15915,16 +16144,16 @@ msgstr "Произошла ошибка при удалении выбранны msgid "There was an issue deleting: %s" msgstr "Произошла ошибка при удалении: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:683 +#: superset-frontend/src/pages/DatasetList/index.tsx:694 msgid "There was an issue duplicating the dataset." msgstr "Произошла ошибка при дублировании датасета." -#: superset-frontend/src/pages/DatasetList/index.tsx:699 +#: superset-frontend/src/pages/DatasetList/index.tsx:710 #, python-format msgid "There was an issue duplicating the selected datasets: %s" msgstr "Произошла ошибка при дублировании выбранных датасетов: %s" -#: superset-frontend/src/dashboard/actions/dashboardState.js:129 +#: superset-frontend/src/dashboard/actions/dashboardState.js:127 msgid "There was an issue favoriting this dashboard." msgstr "Произошла ошибка при добавлении этого дашборда в избранное." @@ -15932,7 +16161,7 @@ msgstr "Произошла ошибка при добавлении этого msgid "There was an issue fetching reports attached to this dashboard." msgstr "Произошла ошибка с получением рассылок, связанных с этим дашбордом." -#: superset-frontend/src/dashboard/actions/dashboardState.js:104 +#: superset-frontend/src/dashboard/actions/dashboardState.js:103 msgid "There was an issue fetching the favorite status of this dashboard." msgstr "Произошла ошибка с получением статуса избранного для этого дашборда." @@ -15966,13 +16195,13 @@ msgstr "Произошла ошибка при предпросмотре выб msgid "There was an issue previewing the selected query. %s" msgstr "Произошла ошибка при предпросмотре выбранного запроса: %s" -#: superset/viz.py:1992 +#: superset/viz.py:1915 msgid "" "There's a loop in your Sankey, please provide a tree. Here's a faulty " "link: {}" msgstr "" -#: superset/connectors/sqla/views.py:335 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:386 msgid "These are the tables this filter will be applied to." msgstr "Это таблицы, к которым будет применен этот фильтр." @@ -16027,10 +16256,10 @@ msgstr "" "Это может быть как IP адрес (например, 127.0.0.1), так и доменное имя " "(например, моябазаданных.рф)." -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:244 +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:245 msgid "" -"This chart emits/applies cross-filters to other charts that use the same " -"dataset" +"This chart applies cross-filters to charts whose datasets contain columns" +" with the same name." msgstr "" #: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 @@ -16045,7 +16274,7 @@ msgstr "" msgid "This chart might be incompatible with the filter (datasets don't match)" msgstr "Этот график может быть несовместим с этим фильтром (датасеты не совпадают)" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:322 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 msgid "" "This chart type is not supported when using an unsaved query as a chart " "source. " @@ -16057,7 +16286,7 @@ msgid "" " Check the JSON metadata in the Advanced settings" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:121 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:113 msgid "This column might be incompatible with current dataset" msgstr "Этот график может быть несовместим с этим датасетом" @@ -16115,11 +16344,11 @@ msgstr "" "Этот дашборд не опубликован, он не будет отображён в списке дашбордов. " "Нажмите, чтобы опубликовать этот дашборд." -#: superset-frontend/src/dashboard/actions/dashboardState.js:154 +#: superset-frontend/src/dashboard/actions/dashboardState.js:152 msgid "This dashboard is now hidden" msgstr "Дашборд теперь скрыт" -#: superset-frontend/src/dashboard/actions/dashboardState.js:153 +#: superset-frontend/src/dashboard/actions/dashboardState.js:151 msgid "This dashboard is now published" msgstr "Дашборд теперь опубликован" @@ -16133,7 +16362,7 @@ msgid "" " id to the SDK:" msgstr "" -#: superset/views/core.py:1319 +#: superset/views/core.py:1353 msgid "" "This dashboard was changed recently. Please reload dashboard to get " "latest version." @@ -16141,12 +16370,12 @@ msgstr "" "Этот дашборд был недавно изменен. Пожалуйста, обновите дашборд, чтобы " "увидеть изменения." -#: superset-frontend/src/dashboard/actions/dashboardState.js:311 -#: superset-frontend/src/dashboard/actions/dashboardState.js:350 +#: superset-frontend/src/dashboard/actions/dashboardState.js:313 +#: superset-frontend/src/dashboard/actions/dashboardState.js:352 msgid "This dashboard was saved successfully." msgstr "Дашборд успешно сохранен" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1119 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1174 msgid "This database is managed externally, and can't be edited in Superset" msgstr "Эта база данных управляется извне и не может быть изменена в Суперсете" @@ -16156,7 +16385,7 @@ msgid "" "table." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:240 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:282 msgid "This dataset is managed externally, and can't be edited in Superset" msgstr "Этот датасет управляется извне и не может быть изменена в Суперсете" @@ -16173,7 +16402,7 @@ msgstr "Элемент, который будет отражен на графи msgid "This defines the level of the hierarchy" msgstr "Определяет уровень иерархии" -#: superset/connectors/sqla/views.py:436 +#: superset/connectors/sqla/views.py:343 msgid "" "This fields acts a Superset view, meaning that Superset will run a query " "against this string as a subquery." @@ -16196,7 +16425,7 @@ msgstr "Этот набор фильтров идентичен \"%s\"" msgid "This functionality is disabled in your environment for security reasons." msgstr "Эта функция отключена в вашей среде по соображениям безопасности." -#: superset/connectors/sqla/views.py:352 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:456 msgid "" "This is the condition that will be added to the WHERE clause. For " "example, to only return rows for a particular client, you might define a " @@ -16232,7 +16461,7 @@ msgstr "Этот компонент содержит ошибки. Пожалу msgid "This may be triggered by:" msgstr "Возможные причины:" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:258 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:256 msgid "This metric might be incompatible with current dataset" msgstr "Эта мера может быть несовместима с этим датасетом" @@ -16278,15 +16507,15 @@ msgid "" "associate one dataset with a table.\n" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:85 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 msgid "This value should be greater than the left target value" msgstr "Это значение должно быть больше чем левое целевое значение" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:80 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 msgid "This value should be smaller than the right target value" msgstr "Это значение должно быть больше чем правое целевое значение" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:141 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:171 #, fuzzy msgid "This visualization type does not support cross-filtering." msgstr "Этот тип визуализации не поддерживается." @@ -16324,6 +16553,7 @@ msgstr "Четверг" #: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:38 #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 @@ -16353,7 +16583,7 @@ msgstr "Столбец даты/времени" msgid "Time Comparison" msgstr "Сравнение по времени" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:141 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 msgid "Time Format" msgstr "Формат даты/времени" @@ -16383,41 +16613,41 @@ msgstr "Соотношение времени" msgid "Time Series" msgstr "Временной ряд" -#: superset/viz.py:1670 +#: superset/viz.py:1581 msgid "Time Series - Bar Chart" msgstr "Столбчатая диаграмма (временные ряды)" -#: superset/viz.py:1596 +#: superset/viz.py:1504 msgid "Time Series - Dual Axis Line Chart" msgstr "Диаграмма с двумя осями (временные ряды)" -#: superset/viz.py:1308 +#: superset/viz.py:1209 msgid "Time Series - Line Chart" msgstr "Линейная диаграмма (временные ряды)" -#: superset/viz.py:1518 +#: superset/viz.py:1424 #, fuzzy msgid "Time Series - Multiple Line Charts" msgstr "Multiple Line Charts (временные ряды)" -#: superset/viz.py:3036 +#: superset/viz.py:3033 msgid "Time Series - Nightingale Rose Chart" msgstr "Диаграмма Найтингейл (временные ряды)" -#: superset/viz.py:2965 +#: superset/viz.py:2961 msgid "Time Series - Paired t-test" msgstr "Парный t-test (временные ряды)" -#: superset/viz.py:1725 +#: superset/viz.py:1638 msgid "Time Series - Percent Change" msgstr "Процентное изменение (временные ряды)" -#: superset/viz.py:1679 +#: superset/viz.py:1590 #, fuzzy msgid "Time Series - Period Pivot" msgstr "Period Pivot (временные ряды)" -#: superset/viz.py:1733 +#: superset/viz.py:1646 msgid "Time Series - Stacked" msgstr "Диаграмма с накоплением (временные ряды)" @@ -16432,7 +16662,7 @@ msgstr "Настройки временных рядов" msgid "Time Shift" msgstr "Временной сдвиг" -#: superset/viz.py:849 +#: superset/viz.py:878 #, fuzzy msgid "Time Table View" msgstr "Убрать предпросмотр таблицы" @@ -16444,7 +16674,7 @@ msgstr "Убрать предпросмотр таблицы" msgid "Time column" msgstr "Столбец даты/времени" -#: superset/connectors/sqla/models.py:1392 superset/models/helpers.py:1575 +#: superset/models/helpers.py:1659 #, python-format msgid "Time column \"%(col)s\" does not exist in dataset" msgstr "Столбец формата дата/время \"%(col)s\" не существует в датасете" @@ -16532,6 +16762,7 @@ msgid "Time ratio" msgstr "Соотношение времени" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 #: superset-frontend/src/explore/controlPanels/sections.tsx:66 msgid "Time related form attributes" msgstr "Параметры, связанные со временем" @@ -16668,12 +16899,12 @@ msgstr "Ошибка таймаута" msgid "Timestamp format" msgstr "Формат даты и времени" -#: superset-frontend/src/components/ReportModal/index.tsx:326 +#: superset-frontend/src/components/ReportModal/index.tsx:325 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 msgid "Timezone" msgstr "Часовой пояс" -#: superset/connectors/sqla/views.py:427 +#: superset/connectors/sqla/views.py:334 msgid "Timezone offset (in hours) for this datasource" msgstr "Смещение часового пояса (в часах) для этого источника данных" @@ -16715,30 +16946,27 @@ msgstr "Для фильтрации по мере используйте вкл msgid "To get a readable URL for your dashboard" msgstr "Для получения читаемого URL-адреса дашборда" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:288 -msgid "Too many columns to filter" -msgstr "Слишком много столбцов для фильтрации" - #: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:27 msgid "Tools" msgstr "Инструменты" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:216 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:213 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 msgid "Tooltip" msgstr "Всплывающая подсказка" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:201 msgid "Tooltip sort by metric" msgstr "Сортировка данных подсказки по мере" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:191 msgid "Tooltip time format" msgstr "Формат времени всплывающей подсказки" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 msgid "Top" msgstr "Сверху" @@ -16760,14 +16988,14 @@ msgstr "Сверху вниз" msgid "Total (%(aggfunc)s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:497 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:562 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:784 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 #, python-format msgid "Total (%(aggregatorName)s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:230 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:68 #, fuzzy msgid "Total value" msgstr "Фактическое значение" @@ -16782,7 +17010,7 @@ msgstr "Итого: %s" msgid "Totals" msgstr "Общая сумма" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:411 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:404 msgid "Track job" msgstr "Отслеживать работу" @@ -16802,10 +17030,6 @@ msgstr "Трансформируемый" msgid "Transparent" msgstr "Прозрачный" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:99 -msgid "Transpose Pivot" -msgstr "Транспонировать таблицу" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:238 msgid "Transpose pivot" msgstr "Транспонировать таблицу" @@ -16823,7 +17047,7 @@ msgid "Tree orientation" msgstr "Ориентация дерева" #: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:60 -#: superset/viz.py:1035 +#: superset/viz.py:925 msgid "Treemap" msgstr "Плоское дерево" @@ -16893,7 +17117,7 @@ msgstr "" msgid "Truncates the specified date to the accuracy specified by the date unit." msgstr "Усекает указанную дату с точностью, указанной в единице измерения даты." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 msgid "Try applying different filters or ensuring your datasource has data" msgstr "" "Попробуйте использовать другие фильтры или убедитесь, что в вашем " @@ -16917,21 +17141,21 @@ msgstr "Вторник" msgid "Tukey" msgstr "запрос" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:216 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:65 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:272 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:276 -#: superset-frontend/src/pages/DatasetList/index.tsx:343 -#: superset-frontend/src/pages/DatasetList/index.tsx:552 -#: superset/connectors/sqla/views.py:164 superset/connectors/sqla/views.py:253 +#: superset-frontend/src/pages/DatasetList/index.tsx:354 +#: superset-frontend/src/pages/DatasetList/index.tsx:563 +#: superset/connectors/sqla/views.py:163 superset/connectors/sqla/views.py:252 msgid "Type" msgstr "Тип" #: superset-frontend/src/components/DeleteModal/index.tsx:92 #: superset-frontend/src/components/ImportModal/index.tsx:397 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1405 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1460 #, python-format msgid "Type \"%s\" to confirm" msgstr "Введите \"%s\" для подтверждения" @@ -16957,7 +17181,7 @@ msgstr "Допустимый тип Google Таблиц" msgid "Type of comparison, value difference or percentage" msgstr "Тип сравнения, разница значений или доля" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:404 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:407 #, python-format msgid "Type or Select [%s]" msgstr "Введите или выберите [%s]" @@ -16987,24 +17211,25 @@ msgstr "Параметры URL" msgid "URL slug" msgstr "Читаемый URL" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:622 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:618 msgid "Unable to add a new tab to the backend. Please contact your administrator." msgstr "" "Не удается добавить новую вкладку на сервер. Пожалуйста, свяжитесь с " "администратором." -#: superset/db_engine_specs/presto.py:677 +#: superset/db_engine_specs/presto.py:704 #, python-format msgid "Unable to connect to catalog named \"%(catalog_name)s\"." msgstr "" #: superset/db_engine_specs/mysql.py:165 -#: superset/db_engine_specs/postgres.py:148 +#: superset/db_engine_specs/postgres.py:147 +#: superset/db_engine_specs/starrocks.py:127 #, python-format msgid "Unable to connect to database \"%(database)s\"." msgstr "Невозможно подключиться к базе данных \"%(database)s\"." -#: superset/db_engine_specs/bigquery.py:177 +#: superset/db_engine_specs/bigquery.py:178 msgid "" "Unable to connect. Verify that the following roles are set on the service" " account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " @@ -17012,10 +17237,18 @@ msgid "" "\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:218 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:216 msgid "Unable to create chart without a query id." msgstr "" +#: superset/key_value/exceptions.py:66 +msgid "Unable to decode value" +msgstr "" + +#: superset/key_value/exceptions.py:62 +msgid "Unable to encode value" +msgstr "" + #: superset/utils/date_parser.py:393 #, python-format msgid "Unable to find such a holiday: [%(holiday)s]" @@ -17029,7 +17262,7 @@ msgstr "" "Не удалось загрузить столбцы для выбранной таблицы. Пожалуйста, выберите " "другую таблицу." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:589 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:585 msgid "" "Unable to migrate query editor state to backend. Superset will retry " "later. Please contact your administrator if this problem persists." @@ -17038,7 +17271,7 @@ msgstr "" "повторит попытку позже. Пожалуйста, свяжитесь с вашим администратором, " "если эта проблема не устранена." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:543 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:539 msgid "" "Unable to migrate query state to backend. Superset will retry later. " "Please contact your administrator if this problem persists." @@ -17047,7 +17280,7 @@ msgstr "" "попытку позже. Пожалуйста, свяжитесь с вашим администратором, если эта " "проблема не устранена." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:525 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:521 msgid "" "Unable to migrate table schema state to backend. Superset will retry " "later. Please contact your administrator if this problem persists." @@ -17060,7 +17293,7 @@ msgstr "" msgid "Unable to retrieve dashboard colors" msgstr "Не удалось получать цветовую схему дашборда" -#: superset/views/database/views.py:275 +#: superset/views/database/views.py:278 #, python-format msgid "" "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" @@ -17069,7 +17302,7 @@ msgstr "" "Не удалось загрузить CSV файл \"%(filename)s\" в таблицу " "\"%(table_name)s\" в базу данных \"%(db_name)s\". Ошибка: %(error_msg)s" -#: superset/views/database/views.py:553 +#: superset/views/database/views.py:556 #, python-format msgid "" "Unable to upload Columnar file \"%(filename)s\" to table " @@ -17079,7 +17312,7 @@ msgstr "" "Не удалось загрузить файл столбчатого типа \"%(filename)s\" в таблицу " "\"%(table_name)s\" в базу данных \"%(db_name)s\". Ошибка: %(error_msg)s" -#: superset/views/database/views.py:412 +#: superset/views/database/views.py:415 #, python-format msgid "" "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " @@ -17088,7 +17321,7 @@ msgstr "" "Не удалось загрузить Excel файл \"%(filename)s\" в таблицу " "\"%(table_name)s\" в базу данных \"%(db_name)s\". Ошибка: %(error_msg)s" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:93 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:92 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 msgid "Undefined" msgstr "Не определено" @@ -17101,7 +17334,7 @@ msgstr "Неопределенное окно для скольжения" msgid "Undo the action" msgstr "Отменить действие" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:131 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:132 msgid "Undo?" msgstr "Отменить?" @@ -17111,7 +17344,7 @@ msgid "Unexpected error" msgstr "Неожиданная ошибка" #: superset/databases/commands/exceptions.py:137 -#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1438 +#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1479 msgid "Unexpected error occurred, please check your logs for details" msgstr "" "Возникла неожиданная ошибка, пожалуйста, проверьте историю действий для " @@ -17121,7 +17354,7 @@ msgstr "" msgid "Unexpected error: " msgstr "Неожиданная ошибка: " -#: superset/views/api.py:109 +#: superset/views/api.py:108 #, fuzzy, python-format msgid "Unexpected time range: %s" msgstr "Неожиданная ошибка: " @@ -17135,7 +17368,7 @@ msgstr "Неизвестно" msgid "Unknown MySQL server host \"%(hostname)s\"." msgstr "Неизвестный хост MySQL \"%(hostname)s\"." -#: superset/db_engine_specs/presto.py:1319 +#: superset/db_engine_specs/presto.py:1342 msgid "Unknown Presto Error" msgstr "Неизвестная ошибка Presto" @@ -17143,13 +17376,13 @@ msgstr "Неизвестная ошибка Presto" msgid "Unknown Status" msgstr "Неизвестный статус" -#: superset/connectors/sqla/models.py:1317 superset/models/helpers.py:1498 +#: superset/models/helpers.py:1582 #, python-format msgid "Unknown column used in orderby: %(col)s" msgstr "Неизвестный столбец использован для упорядочивания: %(col)s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:402 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:480 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:398 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:476 msgid "Unknown error" msgstr "Неизвестная ошибка" @@ -17209,7 +17442,7 @@ msgstr "Безымянный запрос" msgid "Untitled query" msgstr "Безымянный запрос" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:223 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:222 msgid "Update" msgstr "Обновить" @@ -17226,7 +17459,7 @@ msgstr "Обновление графика остановлено" msgid "Upload" msgstr "Загрузить" -#: superset-frontend/src/pages/DatabaseList/index.tsx:202 +#: superset-frontend/src/pages/DatabaseList/index.tsx:213 msgid "Upload CSV" msgstr "Загрузить CSV" @@ -17242,7 +17475,7 @@ msgstr "Загрузить учетные данные" msgid "Upload Enabled" msgstr "Загрузка включена" -#: superset-frontend/src/pages/DatabaseList/index.tsx:216 +#: superset-frontend/src/pages/DatabaseList/index.tsx:227 msgid "Upload Excel file" msgstr "Загрузить файл Excel" @@ -17254,7 +17487,7 @@ msgstr "Загрузить файл Excel в базу данных" msgid "Upload JSON file" msgstr "Загрузить JSON файл" -#: superset-frontend/src/pages/DatabaseList/index.tsx:209 +#: superset-frontend/src/pages/DatabaseList/index.tsx:220 msgid "Upload columnar file" msgstr "Загрузить файл столбчатого формата" @@ -17262,7 +17495,7 @@ msgstr "Загрузить файл столбчатого формата" msgid "Upload columnar file to database" msgstr "Загрузить файл столбчатого формата в базу данных" -#: superset-frontend/src/pages/DatabaseList/index.tsx:199 +#: superset-frontend/src/pages/DatabaseList/index.tsx:210 msgid "Upload file to database" msgstr "Загрузить файл в базу данных" @@ -17276,7 +17509,7 @@ msgstr "Огромный" msgid "Use \"%(menuName)s\" menu instead." msgstr "Использовать меню \"%(menuName)s\" взамен." -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:36 +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 #, python-format msgid "Use %s to open in a new tab." msgstr "Используйте %s для открытия в отдельной вкладке." @@ -17287,7 +17520,7 @@ msgstr "Используйте %s для открытия в отдельной msgid "Use Area Proportions" msgstr "Использовать пропорции области" -#: superset/views/database/forms.py:462 +#: superset/views/database/forms.py:472 msgid "Use Columns" msgstr "Используемые столбцы" @@ -17303,9 +17536,9 @@ msgstr "Использовать логарифмическую шкалу дл msgid "Use a log scale for the Y-axis" msgstr "Использовать логарифмическую шкалу для оси Y" -#: superset/db_engine_specs/base.py:1850 -#: superset/db_engine_specs/clickhouse.py:211 -#: superset/db_engine_specs/databricks.py:57 +#: superset/db_engine_specs/base.py:1889 +#: superset/db_engine_specs/clickhouse.py:216 +#: superset/db_engine_specs/databricks.py:58 msgid "Use an encrypted connection to the database" msgstr "Использовать зашифрованное соединение к Базе Данных" @@ -17316,14 +17549,14 @@ msgid "" " Your chart must be one of these visualization types: [%s]" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:87 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 msgid "Use date formatting even when metric value is not a timestamp" msgstr "" "Использовать перевод к формату дата/время даже если мера представляет " "другой тип данных" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:217 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 msgid "Use legacy datasource editor" msgstr "Использовать старый редактор" @@ -17369,21 +17602,6 @@ msgid "" " from the pluginʼs package.json" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:28 -msgid "" -"Used to summarize a set of data by grouping together multiple statistics " -"along two axes. Examples: Sales numbers by region and month, tasks by " -"status and assignee, active users by age and location.\n" -"\n" -" This chart is being deprecated and we recommend checking out Pivot " -"Table V2 instead!" -msgstr "" -"Используется для обобщения набора данных путем группировки нескольких " -"показателей по двум осям. Примеры: показатели продаж по регионам и " -"месяцам, задачи по статусу и назначенному лицу, активные пользователи по " -"возрасту и местоположению.\n" -" Этот график устарел, рекомендуется использовать график Сводная Таблица 2." - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 msgid "" "Used to summarize a set of data by grouping together multiple statistics " @@ -17431,11 +17649,17 @@ msgstr "Пользовательский запрос" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:133 #: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 -#: superset/db_engine_specs/base.py:1837 +#: superset/db_engine_specs/base.py:1868 #: superset/db_engine_specs/clickhouse.py:201 msgid "Username" msgstr "Имя пользователя" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:27 +msgid "" +"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" +" of data" +msgstr "" + #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:45 msgid "" "Uses a gauge to showcase progress of a metric towards a target. The " @@ -17488,9 +17712,9 @@ msgstr "Формат значения" msgid "Value is required" msgstr "Значение обязательно" -#: superset/reports/schemas.py:186 superset/reports/schemas.py:192 -#: superset/reports/schemas.py:198 superset/reports/schemas.py:280 -#: superset/reports/schemas.py:286 superset/reports/schemas.py:293 +#: superset/reports/schemas.py:190 superset/reports/schemas.py:195 +#: superset/reports/schemas.py:200 superset/reports/schemas.py:291 +#: superset/reports/schemas.py:296 superset/reports/schemas.py:302 msgid "Value must be greater than 0" msgstr "Значение должно быть больше 0" @@ -17512,16 +17736,16 @@ msgstr "" msgid "Vehicle Types" msgstr "" -#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:252 +#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:251 msgid "Verbose Name" msgstr "Удобочитаемое имя" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:503 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:539 #: superset-frontend/src/features/home/RightMenu.tsx:501 msgid "Version" msgstr "Версия" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:509 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:545 msgid "Version number" msgstr "Номер версии" @@ -17532,7 +17756,7 @@ msgstr "Номер версии" msgid "Vertical" msgstr "Вертикально" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:162 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 msgid "Vertical (Left)" msgstr "Вертикально (слева)" @@ -17559,7 +17783,7 @@ msgstr "Посмотреть датасет" msgid "View all charts" msgstr "Показать все графики" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:434 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 msgid "View as table" msgstr "Показать в виде таблицы" @@ -17573,8 +17797,8 @@ msgstr "Открыть в Лаборатории SQL" msgid "View keys & indexes (%s)" msgstr "Показать ключи и индексы (%s)" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:415 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:417 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:424 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:426 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:394 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:396 msgid "View query" @@ -17595,8 +17819,8 @@ msgstr "Просмотрено %s" msgid "Viewport" msgstr "Область просмотра" -#: superset-frontend/src/pages/DatasetList/index.tsx:342 -#: superset-frontend/src/pages/DatasetList/index.tsx:559 +#: superset-frontend/src/pages/DatasetList/index.tsx:353 +#: superset-frontend/src/pages/DatasetList/index.tsx:570 msgid "Virtual" msgstr "Виртуальный" @@ -17604,20 +17828,20 @@ msgstr "Виртуальный" msgid "Virtual (SQL)" msgstr "Виртуальный (SQL)" -#: superset-frontend/src/pages/DatasetList/index.tsx:281 +#: superset-frontend/src/pages/DatasetList/index.tsx:292 msgid "Virtual dataset" msgstr "Виртуальный датасет" -#: superset/connectors/sqla/models.py:960 superset/connectors/sqla/utils.py:111 -#: superset/models/helpers.py:1036 +#: superset/connectors/sqla/models.py:921 superset/connectors/sqla/utils.py:110 +#: superset/models/helpers.py:1079 msgid "Virtual dataset query cannot be empty" msgstr "Запрос виртуального датасета не может быть пустым" -#: superset/connectors/sqla/models.py:963 superset/models/helpers.py:1039 +#: superset/connectors/sqla/models.py:924 superset/models/helpers.py:1082 msgid "Virtual dataset query cannot consist of multiple statements" msgstr "Запрос виртуального датасета не может содержать несколько запросов" -#: superset/connectors/sqla/models.py:928 superset/models/helpers.py:1062 +#: superset/connectors/sqla/models.py:889 superset/models/helpers.py:1105 msgid "Virtual dataset query must be read-only" msgstr "Запрос виртуального датасета должен быть доступен только для чтения" @@ -17757,7 +17981,7 @@ msgstr "" "Визуализирует слова в столбце, которые появляются чаще всего. Более " "крупный шрифт соответствует более высокой частоте" -#: superset/viz.py:141 +#: superset/viz.py:140 msgid "Viz is missing a datasource" msgstr "У визуализации отсутствует источник данных" @@ -17769,21 +17993,21 @@ msgstr "Тип визуализации" msgid "WED" msgstr "СР" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:948 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1003 msgid "Want to add a new database?" msgstr "Хотите добавить новую базу данных?" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1246 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:216 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:214 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 msgid "Warning" msgstr "Предупреждение" -#: superset/connectors/sqla/views.py:258 +#: superset/connectors/sqla/views.py:257 msgid "Warning Message" msgstr "Предупреждение" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:286 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 msgid "Warning!" msgstr "Предупреждение!" @@ -17800,7 +18024,7 @@ msgstr "" msgid "Was unable to check your query" msgstr "Не удалось проверить запрос" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1468 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1523 msgid "" "We are unable to connect to your database. Click \"See more\" for " "database-provided information that may help troubleshoot the issue." @@ -17808,7 +18032,7 @@ msgstr "" "Не удалось подключиться к базе данных. Нажмите \"Подробнее\" для " "информации, предоставленной базой данных в ответ, для решения проблемы." -#: superset/db_engine_specs/bigquery.py:197 +#: superset/db_engine_specs/bigquery.py:198 #, python-format msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." msgstr "Не удалось обнаружить столбец \"%(column)s\" в строке %(location)s." @@ -17818,8 +18042,8 @@ msgstr "Не удалось обнаружить столбец \"%(column)s\" msgid "We can't seem to resolve the column \"%(column_name)s\"" msgstr "Не удалось обнаружить столбец \"%(column_name)s\"" -#: superset/db_engine_specs/postgres.py:153 -#: superset/db_engine_specs/presto.py:630 +#: superset/db_engine_specs/postgres.py:152 +#: superset/db_engine_specs/presto.py:657 #, python-format msgid "" "We can't seem to resolve the column \"%(column_name)s\" at line " @@ -17841,7 +18065,7 @@ msgid "" "dataset." msgstr "Не удалось перенести настройки прошлого графика при переключении датасета." -#: superset/db_engine_specs/redshift.py:90 +#: superset/db_engine_specs/redshift.py:94 #, python-format msgid "" "We were unable to connect to your database named \"%(database)s\". Please" @@ -17860,31 +18084,31 @@ msgstr "Сеть" msgid "Wednesday" msgstr "Среда" -#: superset/db_engine_specs/base.py:107 +#: superset/db_engine_specs/base.py:108 msgid "Week" msgstr "Неделя" -#: superset/db_engine_specs/base.py:113 +#: superset/db_engine_specs/base.py:114 msgid "Week ending Saturday" msgstr "Неделя, заканчивающаяся в субботу" -#: superset/db_engine_specs/base.py:112 +#: superset/db_engine_specs/base.py:113 msgid "Week starting Monday" msgstr "Неделя, начинающаяся в понедельник" -#: superset/db_engine_specs/base.py:111 +#: superset/db_engine_specs/base.py:112 msgid "Week starting Sunday" msgstr "Неделя, начинающаяся в воскресенье" -#: superset/db_engine_specs/base.py:114 +#: superset/db_engine_specs/base.py:115 msgid "Week_ending Sunday" msgstr "Неделя, заканчивающаяся в воскресенье" -#: superset-frontend/src/components/ReportModal/index.tsx:123 +#: superset-frontend/src/components/ReportModal/index.tsx:122 msgid "Weekly Report" msgstr "Еженедельный отчет" -#: superset-frontend/src/components/ReportModal/index.tsx:122 +#: superset-frontend/src/components/ReportModal/index.tsx:121 #, python-format msgid "Weekly Report for %s" msgstr "Еженедельный отчет для %s" @@ -17898,6 +18122,7 @@ msgstr "Недельная сезонность" msgid "Weeks %s" msgstr "Недель %s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:49 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:77 msgid "Weight" @@ -17948,7 +18173,7 @@ msgstr[2] "" msgid "What should be shown on the label?" msgstr "Текст, отображаемый на метке" -#: superset/views/database/forms.py:165 +#: superset/views/database/forms.py:175 msgid "What should happen if the table already exists" msgstr "Что должно произойти, если таблица уже существует" @@ -17981,7 +18206,7 @@ msgstr "" "Если отмечено, карта будет смасштабирована к вашим данным после каждого " "запроса" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:189 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 msgid "When enabled, users are able to visualize SQL Lab results in Explore." msgstr "" "Если этот параметр включен, пользователи могут смотреть ответ запросов " @@ -18019,11 +18244,11 @@ msgstr "" "относительного временного фильтра к секционированному или " "индексированному полю типа дата/время." -#: superset/viz.py:861 +#: superset/viz.py:891 msgid "When using 'Group By' you are limited to use a single metric" msgstr "При использовании 'GROUP BY' вы ограничены использованием одной меры" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:74 msgid "When using other than adaptive formatting, labels may overlap" msgstr "" @@ -18035,11 +18260,11 @@ msgstr "При включении этой опции нельзя устано msgid "Whether the progress bar overlaps when there are multiple groups of data" msgstr "Индикатор прогресса накладывается при наличии нескольких групп данных" -#: superset/connectors/sqla/views.py:455 +#: superset/connectors/sqla/views.py:362 msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" msgstr "" -#: superset/connectors/sqla/views.py:111 +#: superset/connectors/sqla/views.py:110 msgid "" "Whether this column is exposed in the `Filters` section of the explore " "view." @@ -18081,7 +18306,7 @@ msgstr "Окрашивать ячейки с числами в зависимо msgid "Whether to display a bar chart background in table columns" msgstr "Отображать гистограмм в колонках таблицы" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 msgid "Whether to display a legend for the chart" msgstr "Отображать легенду для графика" @@ -18115,14 +18340,14 @@ msgstr "" "Отображать метки. Обратите внимание, что метка отображается только при " "достижении порогового значения 5%." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:157 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:118 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:159 msgid "Whether to display the legend (toggles)" msgstr "Отображать легенду (переключатель)" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:181 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 msgid "Whether to display the metric name as a title" msgstr "Отображать имя меры как названия" @@ -18135,7 +18360,7 @@ msgstr "Отображать минимальное и максимальное msgid "Whether to display the min and max values of the Y-axis" msgstr "Отображать минимальное и максимальное значение на оси Y" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:167 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:187 msgid "Whether to display the numerical values within the cells" @@ -18201,7 +18426,7 @@ msgstr "Сделать сетку 3D" msgid "Whether to make the histogram cumulative" msgstr "Сделать гистограмму нарастающей" -#: superset/connectors/sqla/views.py:106 +#: superset/connectors/sqla/views.py:105 msgid "" "Whether to make this column available as a [Time Granularity] option, " "column has to be DATETIME or DATETIME-like" @@ -18215,7 +18440,7 @@ msgstr "Нормализовать гистограмму" msgid "Whether to populate autocomplete filters options" msgstr "Распространить настройки фильтров автозаполнения" -#: superset/connectors/sqla/views.py:450 +#: superset/connectors/sqla/views.py:357 msgid "" "Whether to populate the filter's dropdown in the explore view's filter " "section with a list of distinct values fetched from the backend on the " @@ -18247,7 +18472,8 @@ msgstr "" msgid "Whether to show the split lines on the axis" msgstr "Отображение линий разделения на оси" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:124 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:143 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:174 #, fuzzy msgid "Whether to sort ascending or descending on the base Axis." msgstr "Сортировка по убыванию или по возрастанию для оси X" @@ -18280,7 +18506,7 @@ msgstr "" msgid "Whether to sort results by the selected metric in descending order." msgstr "Сортировка результатов по выбранной мере в порядке убывания" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:207 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 msgid "Whether to sort tooltip by the selected metric in descending order." msgstr "Сортировка выбранных мер по убыванию во всплывающей подсказке" @@ -18346,7 +18572,7 @@ msgid "Working timeout" msgstr "Время на рассылку" #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 -#: superset/viz.py:2079 +#: superset/viz.py:2006 msgid "World Map" msgstr "Карта Мира" @@ -18358,11 +18584,11 @@ msgstr "Заполните описание к вашему запросу" msgid "Write a handlebars template to render the data" msgstr "" -#: superset/views/database/forms.py:219 +#: superset/views/database/forms.py:229 msgid "Write dataframe index as a column" msgstr "Сделать индекс датафрейма столбцом." -#: superset/views/database/forms.py:380 superset/views/database/forms.py:471 +#: superset/views/database/forms.py:390 superset/views/database/forms.py:481 msgid "Write dataframe index as a column." msgstr "Сделать индекс датафрейма столбцом." @@ -18420,11 +18646,13 @@ msgstr "Расположение делений оси X" msgid "X bounds" msgstr "Показывать границы оси X" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:122 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:141 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:172 msgid "X-Axis Sort Ascending" msgstr "Сортировать по возрастанию оси X" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:69 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:156 msgid "X-Axis Sort By" msgstr "" @@ -18483,7 +18711,6 @@ msgid "Y Axis 2 Bounds" msgstr "Границы оси Y 2" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:260 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:248 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:192 @@ -18522,12 +18749,14 @@ msgstr "Логарифмическая ось Y" msgid "Y bounds" msgstr "Показывать границы оси Y" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:121 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:140 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:171 #, fuzzy msgid "Y-Axis Sort Ascending" msgstr "Сортировать по возрастанию оси X" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:68 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 msgid "Y-Axis Sort By" msgstr "" @@ -18544,7 +18773,7 @@ msgstr "Границы оси Y" msgid "YScale Interval" msgstr "Интервал обновления" -#: superset/db_engine_specs/base.py:110 +#: superset/db_engine_specs/base.py:111 msgid "Year" msgstr "Год" @@ -18569,9 +18798,9 @@ msgstr "Лет %s" #: superset-frontend/src/pages/ChartList/index.tsx:707 #: superset-frontend/src/pages/DashboardList/index.tsx:506 #: superset-frontend/src/pages/DashboardList/index.tsx:588 -#: superset-frontend/src/pages/DatabaseList/index.tsx:467 -#: superset-frontend/src/pages/DatabaseList/index.tsx:487 -#: superset-frontend/src/pages/DatasetList/index.tsx:572 +#: superset-frontend/src/pages/DatabaseList/index.tsx:478 +#: superset-frontend/src/pages/DatabaseList/index.tsx:498 +#: superset-frontend/src/pages/DatasetList/index.tsx:583 msgid "Yes" msgstr "Да" @@ -18604,7 +18833,7 @@ msgstr "" "Перезапись может привести к потере части вашей работы. Вы уверены, что " "хотите перезаписать?" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1394 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1449 msgid "" "You are importing one or more databases that already exist. Overwriting " "might cause you to lose some of your work. Are you sure you want to " @@ -18634,7 +18863,7 @@ msgstr "" "существуют. Перезапись может привести к потере части вашей работы. Вы " "уверены, что хотите продолжить?" -#: superset/views/core.py:2177 +#: superset/views/core.py:2213 msgid "" "You are not authorized to see this query. If you think this is an error, " "please reach out to your administrator." @@ -18654,7 +18883,7 @@ msgstr "Вы можете добавить компоненты в" msgid "You can add the components in the edit mode." msgstr "Вы можете добавить компоненты в режиме редактирования." -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:127 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:157 msgid "You can also just click on the chart to apply cross-filter." msgstr "" @@ -18679,7 +18908,7 @@ msgstr "" msgid "You can preview the list of dashboards in the chart settings dropdown." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:148 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:178 #, fuzzy msgid "You can't apply cross-filter on this data point." msgstr "Недостаточно прав для доступа к этому датасету." @@ -18696,7 +18925,7 @@ msgstr "" "Вы не можете использовать расположение делений под углом 45° при " "использовании временного фильтра" -#: superset/viz.py:723 +#: superset/viz.py:748 msgid "" "You cannot use [Columns] in combination with [Group " "By]/[Metrics]/[Percentage Metrics]. Please choose one or the other." @@ -18714,7 +18943,7 @@ msgid "You do not have permission to edit this chart" msgstr "У вас нет прав на редактирование этого графика" #: superset-frontend/src/components/Tags/utils.tsx:69 -#: superset-frontend/src/dashboard/actions/dashboardState.js:366 +#: superset-frontend/src/dashboard/actions/dashboardState.js:368 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:134 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:40 @@ -18726,7 +18955,7 @@ msgstr "У вас нет прав на редактирование этого msgid "You do not have permissions to access the datasource(s): %(name)s." msgstr "У вас нет доступа этого источника данных: %(name)s." -#: superset-frontend/src/dashboard/actions/dashboardState.js:162 +#: superset-frontend/src/dashboard/actions/dashboardState.js:160 msgid "You do not have permissions to edit this dashboard." msgstr "У вас нет прав на редактирование этого дашборда." @@ -18738,7 +18967,7 @@ msgstr "Недостаточно прав для доступа к этому г msgid "You don't have access to this dashboard." msgstr "Недостаточно прав для доступа к этому дашборду." -#: superset/datasets/commands/exceptions.py:189 +#: superset/datasets/commands/exceptions.py:206 msgid "You don't have access to this dataset." msgstr "Недостаточно прав для доступа к этому датасету." @@ -18755,16 +18984,16 @@ msgstr "У вас пока нет избранных!" msgid "You don't have permission to modify the value." msgstr "Недостаточно прав для редактирования этого значения." -#: superset/security/manager.py:2267 +#: superset/security/manager.py:2262 #, python-format msgid "You don't have the rights to alter %(resource)s" msgstr "Недостаточно прав для изменения %(resource)s" -#: superset/views/core.py:923 +#: superset/views/core.py:945 msgid "You don't have the rights to alter this chart" msgstr "Недостаточно прав для изменения графика" -#: superset/views/core.py:1097 +#: superset/views/core.py:1119 msgid "You don't have the rights to alter this dashboard" msgstr "Недостаточно прав для изменения дашборда" @@ -18772,19 +19001,19 @@ msgstr "Недостаточно прав для изменения дашбор msgid "You don't have the rights to alter this title." msgstr "Недостаточно прав для изменения названия." -#: superset/views/core.py:929 +#: superset/views/core.py:951 msgid "You don't have the rights to create a chart" msgstr "Недостаточно прав для создания графика" -#: superset/views/core.py:1113 +#: superset/views/core.py:1135 msgid "You don't have the rights to create a dashboard" msgstr "Недостаточно прав для создания дашборда" -#: superset/views/core.py:644 +#: superset/views/core.py:649 msgid "You don't have the rights to download as csv" msgstr "Недостаточно прав для скачивания в CSV" -#: superset/views/core.py:424 +#: superset/views/core.py:425 msgid "You have no permission to approve this request" msgstr "Недостаточно прав для одобрения этого запроса" @@ -18796,7 +19025,7 @@ msgstr "Вы удалили фильтр." msgid "You have unsaved changes." msgstr "У вас есть несохраненные изменения." -#: superset-frontend/src/dashboard/actions/dashboardState.js:652 +#: superset-frontend/src/dashboard/actions/dashboardState.js:650 #, python-format msgid "" "You have used all %(historyLength)s undo slots and will not be able to " @@ -18805,7 +19034,7 @@ msgid "" msgstr "" #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:300 -#: superset-frontend/src/pages/DatasetList/index.tsx:453 +#: superset-frontend/src/pages/DatasetList/index.tsx:464 msgid "" "You must be a dataset owner in order to edit. Please reach out to a " "dataset owner to request modifications or edit access." @@ -18817,7 +19046,7 @@ msgstr "" msgid "You must pick a name for the new dashboard" msgstr "Вы должны выбрать имя для нового дашборда" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:525 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:519 msgid "You must run the query successfully first" msgstr "Сначала необходимо успешно выполнить запрос" @@ -18825,7 +19054,7 @@ msgstr "Сначала необходимо успешно выполнить з msgid "You need to configure HTML sanitization to use CSS" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:350 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 msgid "" "You updated the values in the control panel, but the chart was not " "updated automatically. Run the query by clicking on the \"Update chart\" " @@ -18842,7 +19071,7 @@ msgstr "" "Вы изменили датасеты. Все элементы управления с данными (столбцами, " "мерами), которые соответствуют новому датасету, были сохранены." -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:343 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 msgid "Your chart is not up to date" msgstr "Ваш график не актуален" @@ -18856,7 +19085,7 @@ msgstr "" "Дашборд слишком большой. Пожалуйста, уменьшите его размер перед " "сохранением." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1036 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1028 msgid "Your query could not be saved" msgstr "Не удалось сохранить ваш запрос" @@ -18864,7 +19093,7 @@ msgstr "Не удалось сохранить ваш запрос" msgid "Your query could not be scheduled" msgstr "Не удалось запланировать ваш запрос" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1071 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1063 msgid "Your query could not be updated" msgstr "Не удалось обновить ваш запрос" @@ -18876,15 +19105,15 @@ msgstr "" "Запрос был запланирован. Чтобы посмотреть детали запроса, перейдите в " "Сохраненные запросы" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1051 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 msgid "Your query was not properly saved" msgstr "Ваш запрос не был сохранен должным образом" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1054 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1046 msgid "Your query was saved" msgstr "Ваш запрос был сохранен" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1067 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1059 msgid "Your query was updated" msgstr "Ваш запрос был сохранен" @@ -18905,19 +19134,19 @@ msgstr "Масштабирование" msgid "Zoom level of the map" msgstr "Уровень масштабирования карты" -#: superset-frontend/src/dashboard/actions/dashboardState.js:262 +#: superset-frontend/src/dashboard/actions/dashboardState.js:260 msgid "[ untitled dashboard ]" msgstr "[ безымянный дашборд ]" -#: superset/viz.py:2386 +#: superset/viz.py:2323 msgid "[Longitude] and [Latitude] columns must be present in [Group By]" msgstr "Столбцы [Долгота] и [Широта] должны присутствовать в [Группировать по]" -#: superset/viz.py:2336 +#: superset/viz.py:2273 msgid "[Longitude] and [Latitude] must be set" msgstr "[Долгота] и [Широта] должны быть заданы" -#: superset/explore/commands/get.py:121 superset/views/core.py:870 +#: superset/explore/commands/get.py:121 superset/views/core.py:892 msgid "[Missing Dataset]" msgstr "[отсутствующий датасет]" @@ -18930,7 +19159,7 @@ msgstr "[Суперсет] Предоставлен доступ к источн msgid "[Untitled]" msgstr "[Без названия]" -#: superset/connectors/base/models.py:252 superset/models/sql_lab.py:228 +#: superset/connectors/base/models.py:262 superset/models/sql_lab.py:216 #, fuzzy msgid "[asc]" msgstr "Базовая настройка" @@ -18944,7 +19173,7 @@ msgstr "Копировать" msgid "[dashboard name]" msgstr "[имя дашборда]" -#: superset/connectors/base/models.py:255 superset/models/sql_lab.py:231 +#: superset/connectors/base/models.py:265 superset/models/sql_lab.py:219 msgid "[desc]" msgstr "" @@ -18971,7 +19200,7 @@ msgstr "" msgid "`compare_type` must be `difference`, `percentage` or `ratio`" msgstr "" -#: superset/charts/schemas.py:573 +#: superset/charts/schemas.py:654 msgid "`confidence_interval` must be between 0 and 1 (exclusive)" msgstr "`доверительный_интервал` должен быть между 0 и 1 (не включая концы)" @@ -18994,15 +19223,15 @@ msgstr "" msgid "`rename_columns` must have the same length as `columns`." msgstr "" -#: superset/charts/schemas.py:1114 +#: superset/charts/schemas.py:1284 msgid "`row_limit` must be greater than or equal to 0" msgstr "" -#: superset/charts/schemas.py:1121 +#: superset/charts/schemas.py:1291 msgid "`row_offset` must be greater than or equal to 0" msgstr "" -#: superset/charts/schemas.py:972 +#: superset/charts/schemas.py:1108 msgid "`width` must be greater or equal to 0" msgstr "" @@ -19010,10 +19239,16 @@ msgstr "" msgid "aggregate" msgstr "агрегатная функция" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 #: superset-frontend/src/pages/AlertReportList/index.tsx:110 msgid "alert" msgstr "оповещение" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 +#, fuzzy +msgid "alert dark" +msgstr "оповещение" + #: superset-frontend/src/pages/AlertReportList/index.tsx:111 msgid "alerts" msgstr "оповещений" @@ -19153,7 +19388,7 @@ msgid "clear all filters" msgstr "Сбросить все фильтры" #: superset-frontend/src/components/Chart/Chart.jsx:290 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:354 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 msgid "click here" msgstr "нажмите сюда" @@ -19183,7 +19418,7 @@ msgstr "подключении к %(dbModelName)s" msgid "count" msgstr "количество" -#: superset-frontend/src/explore/components/SaveModal.tsx:365 +#: superset-frontend/src/explore/components/SaveModal.tsx:400 msgid "create" msgstr "создать" @@ -19227,16 +19462,16 @@ msgid "dashboards" msgstr "дашборды(ов)" #: superset-frontend/src/features/databases/DatabaseModal/index.tsx:543 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:712 -#: superset-frontend/src/pages/DatabaseList/index.tsx:91 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:729 +#: superset-frontend/src/pages/DatabaseList/index.tsx:102 msgid "database" msgstr "база данных" #: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 #: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 #: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 -#: superset-frontend/src/pages/DatasetList/index.tsx:148 -#: superset-frontend/src/pages/DatasetList/index.tsx:822 +#: superset-frontend/src/pages/DatasetList/index.tsx:159 +#: superset-frontend/src/pages/DatasetList/index.tsx:844 msgid "dataset" msgstr "датасет" @@ -19248,8 +19483,8 @@ msgstr "Имя датасета" msgid "date" msgstr "дата" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 msgid "day" msgstr "день" @@ -19278,6 +19513,11 @@ msgstr "deck.gl GeoJSON" msgid "deck.gl Grid" msgstr "deck.gl Сетка" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:30 +#, fuzzy +msgid "deck.gl Heatmap" +msgstr "deck.gl Точечная карта" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:28 msgid "deck.gl Multiple Layers" msgstr "deck.gl Многослойный" @@ -19309,6 +19549,7 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:34 @@ -19393,11 +19634,11 @@ msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:112 #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:657 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:674 msgid "e.g. world_population" msgstr "например, health_medicine" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:655 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:672 msgid "e.g. xy12345.us-east-2.aws" msgstr "" @@ -19414,7 +19655,16 @@ msgstr "режиме редактирования" msgid "entries" msgstr "категории" -#: superset/connectors/sqla/models.py:1537 superset/models/helpers.py:1742 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +#, fuzzy +msgid "error" +msgstr "Ошибка" + +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 +msgid "error dark" +msgstr "" + +#: superset/models/helpers.py:1803 #, fuzzy msgid "error_message" msgstr "Сообщение об ошибке" @@ -19499,10 +19749,6 @@ msgstr "" msgid "geohash (square)" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 -msgid "green" -msgstr "Зеленая" - #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:168 msgid "heatmap" msgstr "тепловая карта" @@ -19515,13 +19761,13 @@ msgstr "тепловая карта: значения нормализованы #: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:125 #: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1800 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1856 msgid "here" msgstr "здесь" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 msgid "hour" msgstr "час" @@ -19558,7 +19804,7 @@ msgstr "Ожидается целое число" msgid "joined" msgstr "Присоединился" -#: superset/views/base.py:595 +#: superset/views/base.py:596 msgid "json isn't valid" msgstr "JSON не валиден" @@ -19618,7 +19864,7 @@ msgstr "" msgid "log" msgstr "журнал" -#: superset/charts/schemas.py:645 +#: superset/charts/schemas.py:735 msgid "" "lower percentile must be greater than 0 and less than 100. Must be lower " "than upper percentile." @@ -19627,7 +19873,6 @@ msgstr "" "верхнего процентиля" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:189 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:58 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 #: superset-frontend/src/filters/components/Range/buildQuery.ts:69 msgid "max" @@ -19636,9 +19881,9 @@ msgstr "Максимум" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:187 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:254 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:56 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:136 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:119 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:403 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:531 @@ -19656,14 +19901,13 @@ msgstr "Среднее" msgid "median" msgstr "Медиана" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:60 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:62 #: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 msgid "metric" msgstr "мера" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:188 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:57 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 #: superset-frontend/src/filters/components/Range/buildQuery.ts:58 msgid "min" @@ -19683,8 +19927,8 @@ msgid "monotone" msgstr "Гладкая линия" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 #: superset-frontend/src/explore/controls.jsx:267 msgid "month" @@ -19695,7 +19939,7 @@ msgid "more than {max} {name}" msgstr "" #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:53 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:78 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:77 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:116 msgid "must have a value" msgstr "значение обязательно" @@ -19760,7 +20004,7 @@ msgstr "час" msgid "or use existing ones from the panel on the right" msgstr "или использовать уже существующие из панели справа" -#: superset/charts/schemas.py:1143 +#: superset/charts/schemas.py:1313 #, fuzzy msgid "orderby column must be populated" msgstr "Ваш запрос не может быть сохранен" @@ -19819,7 +20063,7 @@ msgid "" " first is lower than the second value" msgstr "" -#: superset/views/core.py:1921 +#: superset/views/core.py:1958 msgid "permalink state not found" msgstr "" @@ -19872,11 +20116,7 @@ msgstr "недавние" msgid "recents" msgstr "недавние(их)" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 -msgid "red" -msgstr "Красная" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:563 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:566 #: superset-frontend/src/pages/AlertReportList/index.tsx:110 msgid "report" msgstr "рассылка" @@ -19888,7 +20128,7 @@ msgstr "рассылка" msgid "reports" msgstr "рассылки" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:491 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:522 msgid "restore zoom" msgstr "восстановить масштабирование" @@ -19897,6 +20137,11 @@ msgstr "восстановить масштабирование" msgid "right" msgstr "справа" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:139 +#, fuzzy +msgid "rowlevelsecurity" +msgstr "Безопасность на уровне строк" + #: superset-frontend/src/SqlLab/constants.ts:36 #: superset-frontend/src/SqlLab/constants.ts:52 #, fuzzy @@ -19947,7 +20192,6 @@ msgstr "Запущен" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:190 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:59 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:138 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:405 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:185 @@ -19979,16 +20223,22 @@ msgstr "" #: superset-frontend/src/SqlLab/constants.ts:38 #: superset-frontend/src/SqlLab/constants.ts:50 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 #, fuzzy msgid "success" msgstr "Успешно" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +#, fuzzy +msgid "success dark" +msgstr "Успешно" + #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:186 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:255 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:378 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:55 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:260 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:532 @@ -20032,7 +20282,7 @@ msgstr "отмены" msgid "unknown type icon" msgstr "" -#: superset/charts/schemas.py:660 +#: superset/charts/schemas.py:750 msgid "" "upper percentile must be greater than 0 and less than 100. Must be higher" " than lower percentile." @@ -20054,7 +20304,6 @@ msgid "value descending" msgstr "Значение по убыванию" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:60 msgid "var" msgstr "Дисперсия" @@ -20075,13 +20324,13 @@ msgstr "Виртуальный" msgid "viz type" msgstr "тип визуализации" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:451 msgid "was created" msgstr "создан(а)" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:62 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 #: superset-frontend/src/explore/controls.jsx:264 msgid "week" @@ -20114,16 +20363,12 @@ msgid "y: values are normalized within each row" msgstr "y: значения нормализованы внутри каждой строки" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 #: superset-frontend/src/explore/controls.jsx:269 msgid "year" msgstr "год" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 -msgid "yellow" -msgstr "Желтая" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:490 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:521 msgid "zoom area" msgstr "" diff --git a/superset/translations/sk/LC_MESSAGES/messages.json b/superset/translations/sk/LC_MESSAGES/messages.json index 8470e98d79..cc8d1f6a83 100644 --- a/superset/translations/sk/LC_MESSAGES/messages.json +++ b/superset/translations/sk/LC_MESSAGES/messages.json @@ -160,6 +160,9 @@ "" ], "A database with the same name already exists.": [""], + "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ + "" + ], "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ "" ], @@ -233,7 +236,7 @@ "Add Log": [""], "Add Metric": [""], "Add Report": [""], - "Add Row level security filter": [""], + "Add Rule": [""], "Add Saved Query": [""], "Add a Plugin": [""], "Add a dataset": [""], @@ -249,6 +252,7 @@ "" ], "Add cross-filter": [""], + "Add custom scoping": [""], "Add delivery method": [""], "Add extra connection information.": [""], "Add filter": [""], @@ -303,6 +307,7 @@ "Aggregates data within the boundary of grid cells and maps the aggregated values to a dynamic color scale": [ "" ], + "Aggregation": [""], "Aggregation function": [""], "Alert": [""], "Alert Triggered, In Grace Period": [""], @@ -330,6 +335,7 @@ "All Entities": [""], "All Text": [""], "All charts": [""], + "All charts/global scoping": [""], "All filters": [""], "All filters (%(filterCount)d)": [""], "All panels": [""], @@ -418,6 +424,7 @@ "" ], "An error occurred while importing %s: %s": [""], + "An error occurred while loading dashboard information.": [""], "An error occurred while loading the SQL": [""], "An error occurred while opening Explore": [""], "An error occurred while parsing the key.": [""], @@ -510,6 +517,7 @@ "" ], "Apply": [""], + "Apply conditional color formatting to metric": [""], "Apply conditional color formatting to metrics": [""], "Apply conditional color formatting to numeric columns": [""], "Apply filters": [""], @@ -529,6 +537,7 @@ "Are you sure you want to delete the selected datasets?": [""], "Are you sure you want to delete the selected layers?": [""], "Are you sure you want to delete the selected queries?": [""], + "Are you sure you want to delete the selected rules?": [""], "Are you sure you want to delete the selected tags?": [""], "Are you sure you want to delete the selected templates?": [""], "Are you sure you want to overwrite this dataset?": [""], @@ -598,6 +607,12 @@ "Bounds for the axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ "" ], + "Bounds for the primary Y-axis. When left empty, the bounds are dynamically defined based on the min/max of the data. Note that this feature will only expand the axis range. It won't narrow the data's extent.": [ + "" + ], + "Bounds for the secondary Y-axis. Only works when Independent Y-axis\n bounds are enabled. When left empty, the bounds are dynamically defined\n based on the min/max of the data. Note that this feature will only expand\n the axis range. It won't narrow the data's extent.": [ + "" + ], "Box Plot": [""], "Breakdowns": [""], "Bubble Chart": [""], @@ -779,7 +794,6 @@ "Choose a source": [""], "Choose a source and a target": [""], "Choose a target": [""], - "Choose a unique name": [""], "Choose chart type": [""], "Choose one of the available databases from the panel on the left.": [""], "Choose one or more charts for left axis": [""], @@ -823,7 +837,6 @@ ], "Click to cancel sorting": [""], "Click to edit": [""], - "Click to edit %s in a new tab": [""], "Click to edit %s.": [""], "Click to edit chart.": [""], "Click to edit label": [""], @@ -862,6 +875,7 @@ "" ], "Column Configuration": [""], + "Column Data Types": [""], "Column Formatting": [""], "Column Label(s)": [""], "Column containing ISO 3166-2 codes of region/province/department in your table.": [ @@ -869,6 +883,7 @@ ], "Column containing latitude data": [""], "Column containing longitude data": [""], + "Column datatype": [""], "Column header tooltip": [""], "Column is required": [""], "Column label for index column(s). If None is given and Dataframe Index is True, Index Names are used.": [ @@ -904,7 +919,6 @@ "Columns to group by on the columns": [""], "Columns to group by on the rows": [""], "Columns to show": [""], - "Combine Metrics": [""], "Combine metrics": [""], "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ "" @@ -932,6 +946,7 @@ "Compose multiple layers together to form complex visuals.": [""], "Compute the contribution to the total": [""], "Condition": [""], + "Conditional Formatting": [""], "Conditional formatting": [""], "Confidence interval": [""], "Confidence interval must be between 0 and 1 (exclusive)": [""], @@ -987,12 +1002,14 @@ "Copy to clipboard": [""], "Correlation": [""], "Cost estimate": [""], + "Could not connect to database: \"%(database)s\"": [""], "Could not determine datasource type": [""], "Could not fetch all saved charts": [""], "Could not find viz object": [""], "Could not load database driver": [""], "Could not load database driver: %(driver_name)s": [""], "Could not load database driver: {}": [""], + "Could not resolve hostname: \"%(host)s\".": [""], "Count": [""], "Count Unique Values": [""], "Count as Fraction of Columns": [""], @@ -1030,6 +1047,8 @@ "" ], "Cross-filtering is not enabled for this dashboard.": [""], + "Cross-filtering is not enabled in this dashboard": [""], + "Cross-filtering scoping": [""], "Cross-filters": [""], "Cumulative": [""], "Currently rendered: %s": [""], @@ -1174,6 +1193,7 @@ "Deactivate": [""], "December": [""], "Decides which column to sort the base axis by.": [""], + "Decides which measure to sort the base axis by.": [""], "Decimal Character": [""], "Deck.gl - 3D Grid": [""], "Deck.gl - 3D HEX": [""], @@ -1247,6 +1267,7 @@ "Delete query": [""], "Delete template": [""], "Delete this container and save to remove this message.": [""], + "Deleted": [""], "Deleted %(num)d annotation": [ "", "Deleted %(num)d annotations", @@ -1287,6 +1308,7 @@ "Deleted %(num)d saved queries", "Deleted %(num)d saved queries" ], + "Deleted %s": [""], "Deleted: %s": [""], "Deleting a tab will remove all content within it. You may still reverse this action with the": [ "" @@ -1334,7 +1356,6 @@ ], "Display row level total": [""], "Display settings": [""], - "Display total row/column": [""], "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ "" ], @@ -1372,10 +1393,7 @@ ], "Drill to detail: %s": [""], "Drop a temporal column here or click": [""], - "Drop columns here": [""], - "Drop columns or metrics here": [""], "Drop columns/metrics here or click": [""], - "Drop temporal column here": [""], "Dual Line Chart": [""], "Duplicate": [""], "Duplicate column name(s): %(columns)s": [""], @@ -1435,7 +1453,7 @@ "Edit Metric": [""], "Edit Plugin": [""], "Edit Report": [""], - "Edit Row level security filter": [""], + "Edit Rule": [""], "Edit Saved Query": [""], "Edit Table": [""], "Edit annotation": [""], @@ -1550,6 +1568,7 @@ ], "Excel to Database configuration": [""], "Exclude selected values": [""], + "Excluded roles": [""], "Executed SQL": [""], "Executed query": [""], "Execution ID": [""], @@ -1608,9 +1627,12 @@ "Failed at stopping query. %s": [""], "Failed to create report": [""], "Failed to execute %(query)s": [""], + "Failed to generate chart edit URL": [""], "Failed to load chart data": [""], "Failed to load chart data.": [""], + "Failed to load dimensions for drill by": [""], "Failed to retrieve advanced type": [""], + "Failed to save cross-filter scoping": [""], "Failed to start remote query on a worker.": [""], "Failed to update report": [""], "Failed to verify select options: %s": [""], @@ -1634,7 +1656,7 @@ "Filter List": [""], "Filter Settings": [""], "Filter Type": [""], - "Filter box": [""], + "Filter box (deprecated)": [""], "Filter configuration": [""], "Filter configuration for the filter box": [""], "Filter has default value": [""], @@ -1743,8 +1765,8 @@ "Grid Size": [""], "Group By": [""], "Group By filter plugin": [""], - "Group By' and 'Columns' can't overlap": [""], "Group By, Metrics or Percentage Metrics must have a value": [""], + "Group Key": [""], "Group by": [""], "Groupable": [""], "Handlebars": [""], @@ -1848,6 +1870,11 @@ "Input field supports custom rotation. e.g. 30 for 30°": [""], "Instant filtering": [""], "Intensity": [""], + "Intensity Radius": [""], + "Intensity Radius is the radius at which the weight is distributed": [""], + "Intensity is the value multiplied by the weight to obtain the final weight": [ + "" + ], "Interpret Datetime Format Automatically": [""], "Interpret the datetime format automatically": [""], "Interval": [""], @@ -1856,6 +1883,10 @@ "Interval colors": [""], "Interval start column": [""], "Intervals": [""], + "Intesity": [""], + "Invalid Connection String: Expecting String of the form 'ocient://user:pass@host:port/database'.": [ + "" + ], "Invalid JSON": [""], "Invalid advanced data type: %(advanced_data_type)s": [""], "Invalid certificate": [""], @@ -1882,6 +1913,7 @@ "Invalid numpy function: %(operator)s": [""], "Invalid options for %(rolling_type)s: %(options)s": [""], "Invalid permalink key": [""], + "Invalid reference to column: \"%(column)s\"": [""], "Invalid result type: %(result_type)s": [""], "Invalid rolling_type: %(type)s": [""], "Invalid spatial point encountered: %s": [""], @@ -2257,7 +2289,6 @@ "No database tables found": [""], "No databases match your search": [""], "No description available.": [""], - "No dimensions available for drill by": [""], "No favorite charts yet, go click on stars!": [""], "No favorite dashboards yet, go click on stars!": [""], "No filter": [""], @@ -2402,7 +2433,6 @@ "Optional d3 number format string": [""], "Optional name of the data column.": [""], "Optional warning about use of this metric": [""], - "Optionally add a detailed description": [""], "Options": [""], "Or choose from a list of other databases we support:": [""], "Order by entity id": [""], @@ -2508,9 +2538,7 @@ "Pie Chart": [""], "Pie shape": [""], "Pin": [""], - "Pivot Options": [""], "Pivot Table": [""], - "Pivot Table (legacy)": [""], "Pivot operation must include at least one aggregate": [""], "Pivot operation requires at least one index": [""], "Pivoted": [""], @@ -2531,9 +2559,7 @@ "Please check your template parameters for syntax errors and make sure they match across your SQL query and Set Parameters. Then, try running your query again.": [ "" ], - "Please choose at least one 'Group by' field": [""], "Please choose at least one groupby": [""], - "Please choose at least one metric": [""], "Please choose different metrics on left and right axis": [""], "Please confirm": [""], "Please confirm the overwrite values.": [""], @@ -2578,6 +2604,7 @@ "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ "" ], + "Port out of range 0-65535": [""], "Position JSON": [""], "Position of child node label on tree": [""], "Position of column level subtotal": [""], @@ -2601,6 +2628,7 @@ "Primary Metric": [""], "Primary key": [""], "Primary or secondary y-axis": [""], + "Primary y-axis Bounds": [""], "Primary y-axis format": [""], "Private Key": [""], "Private Key & Password": [""], @@ -2641,6 +2669,8 @@ "Query was stopped.": [""], "RANGE TYPE": [""], "RGB Color": [""], + "RLS Rule could not be deleted.": [""], + "RLS Rule not found.": [""], "Radar": [""], "Radar Chart": [""], "Radar render type, whether to display 'circle' shape.": [""], @@ -2696,7 +2726,8 @@ "Refreshing charts": [""], "Refreshing columns": [""], "Regex": [""], - "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter. Base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ + "Regular": [""], + "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter, base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ "" ], "Relational": [""], @@ -2810,13 +2841,13 @@ "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ "" ], - "Row level security filter": [""], "Row limit": [""], "Rows": [""], "Rows per page, 0 means no pagination": [""], "Rows subtotal position": [""], "Rows to Read": [""], "Rule": [""], + "Rule added": [""], "Run": [""], "Run a query to display query history": [""], "Run a query to display results": [""], @@ -2937,6 +2968,7 @@ "Second": [""], "Secondary": [""], "Secondary Metric": [""], + "Secondary y-axis Bounds": [""], "Secondary y-axis format": [""], "Secondary y-axis title": [""], "Seconds %s": [""], @@ -2994,6 +3026,12 @@ "Select subject": [""], "Select table or type to search tables": [""], "Select the Annotation Layer you would like to use.": [""], + "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" + ], + "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" + ], "Select the geojson column": [""], "Select the number of bins for the histogram": [""], "Select the numeric columns to draw the histogram": [""], @@ -3056,7 +3094,6 @@ "Show Metric": [""], "Show Metric Names": [""], "Show Range Filter": [""], - "Show Row level security filter": [""], "Show Saved Query": [""], "Show Table": [""], "Show Timestamp": [""], @@ -3276,7 +3313,6 @@ "Superset encountered an unexpected error.": [""], "Supported databases": [""], "Survey Responses": [""], - "Swap Groups and Columns": [""], "Swap rows and columns": [""], "Swiss army knife for visualizing data. Choose between step, line, scatter, and bar charts. This viz type has many customization options as well.": [ "" @@ -3289,6 +3325,9 @@ "Symbol size": [""], "Sync columns from source": [""], "Syntax": [""], + "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ + "" + ], "TABLES": [""], "TEMPORAL X-AXIS": [""], "TEMPORAL_RANGE": [""], @@ -3312,6 +3351,7 @@ "Table loading": [""], "Table name cannot contain a schema": [""], "Table name undefined": [""], + "Table or View \"%(table)s\" does not exist.": [""], "Table that visualizes paired t-tests, which are used to understand statistical differences between groups.": [ "" ], @@ -3588,6 +3628,9 @@ "The type of visualization to display": [""], "The unit of measure for the specified point radius": [""], "The user seems to have been deleted": [""], + "The user/password combination is not valid (Incorrect password for user).": [ + "" + ], "The username \"%(username)s\" does not exist.": [""], "The username provided when connecting to a database is not valid.": [""], "The way the ticks are laid out on the X-axis": [""], @@ -3613,12 +3656,14 @@ "There was an error fetching tables": [""], "There was an error fetching the favorite status: %s": [""], "There was an error fetching your recent activity:": [""], + "There was an error loading the chart data": [""], "There was an error loading the dataset metadata": [""], "There was an error loading the schemas": [""], "There was an error loading the tables": [""], "There was an error saving the favorite status: %s": [""], "There was an error with your request": [""], "There was an issue deleting %s: %s": [""], + "There was an issue deleting rules: %s": [""], "There was an issue deleting the selected %s: %s": [""], "There was an issue deleting the selected annotations: %s": [""], "There was an issue deleting the selected charts: %s": [""], @@ -3659,7 +3704,7 @@ "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ "" ], - "This chart emits/applies cross-filters to other charts that use the same dataset": [ + "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ "" ], "This chart has been moved to a different filter scope.": [""], @@ -3851,7 +3896,6 @@ "Title or Slug": [""], "To filter on a metric, use Custom SQL tab.": [""], "To get a readable URL for your dashboard": [""], - "Too many columns to filter": [""], "Tools": [""], "Tooltip": [""], "Tooltip sort by metric": [""], @@ -3867,7 +3911,6 @@ "Track job": [""], "Transformable": [""], "Transparent": [""], - "Transpose Pivot": [""], "Transpose pivot": [""], "Tree Chart": [""], "Tree layout": [""], @@ -3917,6 +3960,8 @@ "" ], "Unable to create chart without a query id.": [""], + "Unable to decode value": [""], + "Unable to encode value": [""], "Unable to find such a holiday: [%(holiday)s]": [""], "Unable to load columns for the selected table. Please select a different table.": [ "" @@ -4002,9 +4047,6 @@ "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ "" ], - "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location.\n\n This chart is being deprecated and we recommend checking out Pivot Table V2 instead!": [ - "" - ], "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ "" ], @@ -4015,6 +4057,9 @@ "User must select a value for this filter": [""], "User query": [""], "Username": [""], + "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ + "" + ], "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ "" ], @@ -4439,6 +4484,7 @@ "`width` must be greater or equal to 0": [""], "aggregate": [""], "alert": [""], + "alert dark": [""], "alerts": [""], "all": [""], "also copy (duplicate) charts": [""], @@ -4517,6 +4563,8 @@ "e.g., a \"user id\" column": [""], "edit mode": [""], "entries": [""], + "error": [""], + "error dark": [""], "error_message": [""], "every": [""], "every day of the month": [""], @@ -4536,7 +4584,6 @@ "for more information on how to structure your URI.": [""], "function type icon": [""], "geohash (square)": [""], - "green": [""], "heatmap": [""], "heatmap: values are normalized across the entire heatmap": [""], "here": [""], @@ -4616,7 +4663,6 @@ "reboot": [""], "recent": [""], "recents": [""], - "red": [""], "report": [""], "reports": [""], "restore zoom": [""], @@ -4637,6 +4683,7 @@ "stream": [""], "string type icon": [""], "success": [""], + "success dark": [""], "sum": [""], "syntax.": [""], "tag": [""], @@ -4666,7 +4713,6 @@ "y": [""], "y: values are normalized within each row": [""], "year": [""], - "yellow": [""], "zoom area": [""] } } diff --git a/superset/translations/sk/LC_MESSAGES/messages.po b/superset/translations/sk/LC_MESSAGES/messages.po index e035fdaa57..be186ae62e 100644 --- a/superset/translations/sk/LC_MESSAGES/messages.po +++ b/superset/translations/sk/LC_MESSAGES/messages.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2023-04-07 19:09+0200\n" +"POT-Creation-Date: 2023-05-23 16:30-0300\n" "PO-Revision-Date: 2021-05-24 15:59+0200\n" "Last-Translator: FULL NAME \n" "Language: sk\n" @@ -37,7 +37,7 @@ msgid "" " " msgstr "" -#: superset/reports/notifications/email.py:88 +#: superset/reports/notifications/email.py:89 #, python-format msgid "" "\n" @@ -56,12 +56,12 @@ msgid "" "in the GeoJSON" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:364 +#: superset-frontend/src/explore/components/SaveModal.tsx:399 #, fuzzy msgid " a dashboard OR " msgstr "Importovať dashboard" -#: superset-frontend/src/explore/components/SaveModal.tsx:366 +#: superset-frontend/src/explore/components/SaveModal.tsx:401 msgid " a new one" msgstr "" @@ -91,7 +91,7 @@ msgid "" " database/column name level via the extra parameter." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:334 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:340 msgid " to add calculated columns" msgstr "" @@ -103,8 +103,8 @@ msgstr "" msgid " to edit or add columns and metrics." msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:323 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:358 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:364 msgid " to mark a column as a time column" msgstr "" @@ -112,7 +112,7 @@ msgstr "" msgid " to open SQL Lab. From there you can save the query as a dataset." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:333 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 msgid " to visualize your data." msgstr "" @@ -120,7 +120,7 @@ msgstr "" msgid "!= (Is not equal)" msgstr "" -#: superset/security/analytics_db_safety.py:44 +#: superset/security/analytics_db_safety.py:48 #, python-format msgid "%(dialect)s cannot be used as a data source for security reasons." msgstr "" @@ -133,7 +133,7 @@ msgid "" "%(issues)s" msgstr "" -#: superset/reports/notifications/email.py:168 +#: superset/reports/notifications/email.py:171 #, python-format msgid "%(name)s.csv" msgstr "" @@ -163,14 +163,14 @@ msgstr "" msgid "%(other)s saved queries will appear here" msgstr "" -#: superset/reports/notifications/email.py:177 +#: superset/reports/notifications/email.py:180 #, python-format msgid "%(prefix)s %(title)s" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:345 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:363 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:377 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:338 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:356 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:370 #, python-format msgid "%(rows)d rows returned" msgstr "" @@ -193,19 +193,19 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: superset/views/core.py:384 +#: superset/views/core.py:385 #, python-format msgid "" "%(user)s was granted the role %(role)s that gives access to the " "%(datasource)s" msgstr "" -#: superset/views/core.py:2672 +#: superset/views/core.py:2709 #, python-format msgid "%(user)s's profile" msgstr "" -#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2327 +#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2369 #, python-format msgid "" "%(validator)s was unable to check your query.\n" @@ -219,25 +219,25 @@ msgid "%s Error" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:298 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1300 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1355 #, python-format msgid "%s PASSWORD" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:318 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1318 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1373 #, python-format msgid "%s SSH TUNNEL PASSWORD" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:341 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1336 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1391 #, python-format msgid "%s SSH TUNNEL PRIVATE KEY" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:363 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1356 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1411 #, python-format msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" msgstr "" @@ -247,17 +247,17 @@ msgstr "" msgid "%s Selected" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:808 +#: superset-frontend/src/pages/DatasetList/index.tsx:830 #, python-format msgid "%s Selected (%s Physical, %s Virtual)" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:801 +#: superset-frontend/src/pages/DatasetList/index.tsx:823 #, python-format msgid "%s Selected (Physical)" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:794 +#: superset-frontend/src/pages/DatasetList/index.tsx:816 #, python-format msgid "%s Selected (Virtual)" msgstr "" @@ -267,8 +267,8 @@ msgstr "" msgid "%s aggregates(s)" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:274 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:371 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:280 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:377 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:346 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 #, python-format @@ -309,8 +309,8 @@ msgstr[2] "" msgid "%s saved metric(s)" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:636 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:652 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:639 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:655 #, python-format msgid "%s updated" msgstr "" @@ -327,7 +327,7 @@ msgstr "" msgid "%s-%s of %s" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:115 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:116 msgid "(Removed)" msgstr "" @@ -377,22 +377,22 @@ msgstr "" msgid "+ %s more" msgstr "" -#: superset/views/database/forms.py:153 +#: superset/views/database/forms.py:163 msgid "," msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:656 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:652 msgid "" "-- Note: Unless you save your query, these tabs will NOT persist if you " "clear your cookies or change browsers.\n" "\n" msgstr "" -#: superset/views/database/forms.py:154 +#: superset/views/database/forms.py:164 msgid "." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:791 +#: superset-frontend/src/pages/DatasetList/index.tsx:813 msgid "0 Selected" msgstr "" @@ -484,7 +484,7 @@ msgstr "" msgid "1 year start frequency" msgstr "" -#: superset/db_engine_specs/base.py:101 +#: superset/db_engine_specs/base.py:102 msgid "10 minute" msgstr "" @@ -499,7 +499,7 @@ msgstr "" msgid "104 weeks ago" msgstr "" -#: superset/db_engine_specs/base.py:102 +#: superset/db_engine_specs/base.py:103 msgid "15 minute" msgstr "" @@ -614,7 +614,7 @@ msgstr "" msgid "30 days ago" msgstr "" -#: superset/db_engine_specs/base.py:103 +#: superset/db_engine_specs/base.py:104 msgid "30 minute" msgstr "" @@ -623,7 +623,7 @@ msgstr "" msgid "30 minutes" msgstr "" -#: superset/db_engine_specs/base.py:98 +#: superset/db_engine_specs/base.py:99 msgid "30 second" msgstr "" @@ -643,7 +643,7 @@ msgstr "" msgid "4 weeks (freq=4W-MON)" msgstr "" -#: superset/db_engine_specs/base.py:100 +#: superset/db_engine_specs/base.py:101 msgid "5 minute" msgstr "" @@ -652,7 +652,7 @@ msgstr "" msgid "5 minutes" msgstr "" -#: superset/db_engine_specs/base.py:97 +#: superset/db_engine_specs/base.py:98 msgid "5 second" msgstr "" @@ -678,7 +678,7 @@ msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 #: superset-frontend/src/explore/controls.jsx:261 -#: superset/db_engine_specs/base.py:105 +#: superset/db_engine_specs/base.py:106 msgid "6 hour" msgstr "" @@ -761,15 +761,15 @@ msgstr "" msgid "A Big Number" msgstr "" -#: superset/views/database/forms.py:184 +#: superset/views/database/forms.py:194 msgid "A comma separated list of columns that should be parsed as dates" msgstr "" -#: superset/views/database/forms.py:367 +#: superset/views/database/forms.py:377 msgid "A comma separated list of columns that should be parsed as dates." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:433 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 msgid "A comma-separated list of schemas that files are allowed to upload to." msgstr "" @@ -777,6 +777,12 @@ msgstr "" msgid "A database with the same name already exists." msgstr "" +#: superset/views/database/forms.py:145 +msgid "" +"A dictionary with column names and their data types if you need to change" +" the defaults. Example: {\"user_id\":\"integer\"}" +msgstr "" + #: superset/views/dynamic_plugins.py:52 msgid "" "A full URL pointing to the location of the built plugin (could be hosted " @@ -842,16 +848,16 @@ msgstr "" msgid "A report named \"%(name)s\" already exists" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:333 +#: superset-frontend/src/explore/components/SaveModal.tsx:368 msgid "A reusable dataset will be saved with your chart." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:309 +#: superset-frontend/src/components/ReportModal/index.tsx:308 msgid "A screenshot of the dashboard will be sent to your email at" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 -#: superset/connectors/sqla/views.py:458 +#: superset/connectors/sqla/views.py:365 msgid "" "A set of parameters that become available in the query using Jinja " "templating syntax" @@ -895,8 +901,8 @@ msgstr "" msgid "APR" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:312 -#: superset-frontend/src/pages/DatabaseList/index.tsx:478 +#: superset-frontend/src/pages/DatabaseList/index.tsx:323 +#: superset-frontend/src/pages/DatabaseList/index.tsx:489 msgid "AQE" msgstr "" @@ -923,7 +929,7 @@ msgstr "" msgid "Access" msgstr "" -#: superset/initialization/__init__.py:431 +#: superset/initialization/__init__.py:425 msgid "Access requests" msgstr "" @@ -935,7 +941,7 @@ msgstr "" msgid "Access token" msgstr "" -#: superset/views/core.py:317 +#: superset/views/core.py:318 msgid "Access was requested" msgstr "" @@ -943,7 +949,7 @@ msgstr "" msgid "Action" msgstr "" -#: superset/initialization/__init__.py:393 +#: superset/initialization/__init__.py:387 msgid "Action Log" msgstr "" @@ -954,9 +960,10 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:569 #: superset-frontend/src/pages/CssTemplateList/index.tsx:229 #: superset-frontend/src/pages/DashboardList/index.tsx:477 -#: superset-frontend/src/pages/DatabaseList/index.tsx:448 -#: superset-frontend/src/pages/DatasetList/index.tsx:488 +#: superset-frontend/src/pages/DatabaseList/index.tsx:459 +#: superset-frontend/src/pages/DatasetList/index.tsx:499 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:327 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:216 #: superset-frontend/src/pages/SavedQueryList/index.tsx:437 #: superset-frontend/src/pages/Tags/index.tsx:171 msgid "Actions" @@ -986,18 +993,19 @@ msgstr "" msgid "Actual values" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:35 -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 #: superset-frontend/src/explore/controls.jsx:78 #: superset-frontend/src/explore/controls.jsx:101 msgid "Adaptive formatting" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:229 +#: superset-frontend/src/components/ReportModal/index.tsx:228 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 #: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 #: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 msgid "Add" msgstr "" @@ -1017,7 +1025,7 @@ msgstr "" msgid "Add Chart" msgstr "" -#: superset/connectors/sqla/views.py:74 +#: superset/connectors/sqla/views.py:73 msgid "Add Column" msgstr "" @@ -1033,7 +1041,7 @@ msgstr "" msgid "Add Log" msgstr "" -#: superset/connectors/sqla/views.py:209 +#: superset/connectors/sqla/views.py:208 msgid "Add Metric" msgstr "" @@ -1041,8 +1049,8 @@ msgstr "" msgid "Add Report" msgstr "" -#: superset/connectors/sqla/views.py:292 -msgid "Add Row level security filter" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +msgid "Add Rule" msgstr "" #: superset/views/sql_lab/views.py:54 @@ -1057,11 +1065,11 @@ msgstr "" msgid "Add a dataset" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:262 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:272 msgid "Add a new tab" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:286 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:296 msgid "Add a new tab to create SQL Query" msgstr "" @@ -1092,23 +1100,27 @@ msgstr "" msgid "Add annotation layer" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:300 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:306 msgid "Add calculated columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:297 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:303 msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:167 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:197 msgid "Add cross-filter" msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 +msgid "Add custom scoping" +msgstr "" + #: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 msgid "Add delivery method" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:330 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 msgid "Add extra connection information." msgstr "" @@ -1178,7 +1190,7 @@ msgstr "" msgid "Add the name of the dashboard" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:351 +#: superset-frontend/src/explore/components/SaveModal.tsx:386 msgid "Add to dashboard" msgstr "" @@ -1204,7 +1216,7 @@ msgstr[2] "" msgid "Additional Parameters" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1787 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1843 msgid "Additional fields may be required" msgstr "" @@ -1216,16 +1228,16 @@ msgstr "" msgid "Additional metadata" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:54 msgid "Additional padding for legend." msgstr "" -#: superset/db_engine_specs/base.py:1847 -#: superset/db_engine_specs/clickhouse.py:214 +#: superset/db_engine_specs/base.py:1885 +#: superset/db_engine_specs/clickhouse.py:221 msgid "Additional parameters" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:444 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 msgid "Additional settings." msgstr "" @@ -1240,17 +1252,18 @@ msgstr "" msgid "Additive" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:75 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 msgid "Adjust how this database will interact with SQL Lab." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:221 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:231 msgid "Adjust performance settings of this database." msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:132 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:91 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:127 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:93 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 @@ -1259,7 +1272,7 @@ msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:939 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:771 #: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1811 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 msgid "Advanced" msgstr "" @@ -1355,7 +1368,6 @@ msgid "" "produce the cluster label." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:63 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:202 msgid "" "Aggregate function to apply when pivoting and computing the total rows " @@ -1368,12 +1380,14 @@ msgid "" " values to a dynamic color scale" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +msgid "Aggregation" +msgstr "" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 msgid "Aggregation function" msgstr "" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:593 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:162 msgid "Alert" msgstr "" @@ -1452,7 +1466,7 @@ msgstr "" msgid "Alerts" msgstr "" -#: superset/initialization/__init__.py:410 +#: superset/initialization/__init__.py:404 msgid "Alerts & Reports" msgstr "" @@ -1478,8 +1492,8 @@ msgstr "" #: superset-frontend/src/pages/DashboardList/index.tsx:528 #: superset-frontend/src/pages/DashboardList/index.tsx:550 #: superset-frontend/src/pages/DashboardList/index.tsx:600 -#: superset-frontend/src/pages/DatabaseList/index.tsx:465 -#: superset-frontend/src/pages/DatabaseList/index.tsx:485 +#: superset-frontend/src/pages/DatabaseList/index.tsx:476 +#: superset-frontend/src/pages/DatabaseList/index.tsx:496 #: superset-frontend/src/pages/Home/index.tsx:205 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:354 #: superset-frontend/src/pages/SavedQueryList/index.tsx:453 @@ -1488,7 +1502,7 @@ msgid "All" msgstr "" #: superset-frontend/src/pages/AllEntities/index.tsx:76 -#: superset/initialization/__init__.py:376 +#: superset/initialization/__init__.py:370 msgid "All Entities" msgstr "" @@ -1499,13 +1513,18 @@ msgstr "" msgid "All Text" msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 #: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:69 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 #: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:85 #: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:128 msgid "All charts" msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 +msgid "All charts/global scoping" +msgstr "" + #: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 msgid "All filters" msgstr "" @@ -1515,7 +1534,7 @@ msgstr "" msgid "All filters (%(filterCount)d)" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:49 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 msgid "All panels" msgstr "" @@ -1523,7 +1542,7 @@ msgstr "" msgid "All panels with this column will be affected by this filter" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:107 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 #: superset/views/database/mixins.py:184 msgid "Allow CREATE TABLE AS" msgstr "" @@ -1532,7 +1551,7 @@ msgstr "" msgid "Allow CREATE TABLE AS option in SQL Lab" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:121 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 #: superset/views/database/mixins.py:185 msgid "Allow CREATE VIEW AS" msgstr "" @@ -1545,7 +1564,7 @@ msgstr "" msgid "Allow Csv Upload" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 #: superset/views/database/mixins.py:186 msgid "Allow DML" msgstr "" @@ -1554,15 +1573,15 @@ msgstr "" msgid "Allow columns to be rearranged" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:110 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 msgid "Allow creation of new tables based on queries" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:124 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 msgid "Allow creation of new views based on queries" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:329 +#: superset-frontend/src/pages/DatabaseList/index.tsx:340 msgid "Allow data manipulation language" msgstr "" @@ -1572,11 +1591,11 @@ msgid "" "their changes won't persist for the next time they open the chart." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:411 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:421 msgid "Allow file uploads to database" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:157 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 msgid "" "Allow manipulation of the database using non-SELECT statements such as " "UPDATE, DELETE, CREATE, etc." @@ -1594,11 +1613,11 @@ msgstr "" msgid "Allow sending multiple polygons as a filter event" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:186 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 msgid "Allow this database to be explored" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:91 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 msgid "Allow this database to be queried in SQL Lab" msgstr "" @@ -1639,20 +1658,20 @@ msgstr "" msgid "An alert named \"%(name)s\" already exists" msgstr "" -#: superset/common/query_context_processor.py:326 superset/viz.py:1447 +#: superset/common/query_context_processor.py:326 superset/viz.py:1352 msgid "" "An enclosed time range (both start and end) must be specified when using " "a Time Comparison." msgstr "" -#: superset/databases/schemas.py:285 +#: superset/databases/schemas.py:289 msgid "" "An engine must be specified when passing individual parameters to a " "database." msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:791 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:141 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:183 #: superset-frontend/src/components/Tags/utils.tsx:67 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:127 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:109 @@ -1667,7 +1686,7 @@ msgstr "" msgid "An error occurred" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:317 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:323 msgid "An error occurred saving dataset" msgstr "" @@ -1678,19 +1697,19 @@ msgstr "" msgid "An error occurred while accessing the value." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1368 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1360 msgid "" "An error occurred while collapsing the table schema. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:304 +#: superset-frontend/src/views/CRUD/hooks.ts:308 #, python-format msgid "An error occurred while creating %ss: %s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1529 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1551 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1530 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1552 msgid "An error occurred while creating the data source" msgstr "" @@ -1706,7 +1725,7 @@ msgstr "" msgid "An error occurred while deleting the value." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1344 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1336 msgid "" "An error occurred while expanding the table schema. Please contact your " "administrator." @@ -1718,8 +1737,8 @@ msgid "An error occurred while fetching %s info: %s" msgstr "" #: superset-frontend/src/views/CRUD/hooks.ts:174 -#: superset-frontend/src/views/CRUD/hooks.ts:261 -#: superset-frontend/src/views/CRUD/hooks.ts:349 +#: superset-frontend/src/views/CRUD/hooks.ts:265 +#: superset-frontend/src/views/CRUD/hooks.ts:353 #, python-format msgid "An error occurred while fetching %ss: %s" msgstr "" @@ -1763,7 +1782,7 @@ msgstr "" msgid "An error occurred while fetching dashboards: %s" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:145 +#: superset-frontend/src/pages/DatabaseList/index.tsx:156 #, python-format msgid "An error occurred while fetching database related data: %s" msgstr "" @@ -1780,26 +1799,26 @@ msgstr "" msgid "An error occurred while fetching dataset datasource values: %s" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:510 +#: superset-frontend/src/pages/DatasetList/index.tsx:521 #, python-format msgid "An error occurred while fetching dataset owner values: %s" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:222 +#: superset-frontend/src/pages/DatasetList/index.tsx:233 msgid "An error occurred while fetching dataset related data" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:242 +#: superset-frontend/src/pages/DatasetList/index.tsx:253 #, python-format msgid "An error occurred while fetching dataset related data: %s" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:530 +#: superset-frontend/src/pages/DatasetList/index.tsx:541 #, python-format msgid "An error occurred while fetching datasets: %s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1581 +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx:120 msgid "An error occurred while fetching function names." msgstr "" @@ -1808,23 +1827,23 @@ msgstr "" msgid "An error occurred while fetching owners values: %s" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:546 +#: superset-frontend/src/pages/DatasetList/index.tsx:557 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:378 #: superset-frontend/src/pages/SavedQueryList/index.tsx:480 #, python-format msgid "An error occurred while fetching schema values: %s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:799 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:795 msgid "An error occurred while fetching tab state" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1199 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1224 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1191 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1216 msgid "An error occurred while fetching table metadata" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1296 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1288 msgid "" "An error occurred while fetching table metadata. Please contact your " "administrator." @@ -1840,23 +1859,27 @@ msgstr "" msgid "An error occurred while fetching user values: %s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:835 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:831 msgid "" "An error occurred while hiding the left bar. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:502 -#: superset-frontend/src/views/CRUD/hooks.ts:518 +#: superset-frontend/src/views/CRUD/hooks.ts:506 +#: superset-frontend/src/views/CRUD/hooks.ts:522 #, python-format msgid "An error occurred while importing %s: %s" msgstr "" +#: superset-frontend/src/explore/components/SaveModal.tsx:135 +msgid "An error occurred while loading dashboard information." +msgstr "" + #: superset-frontend/src/components/Chart/chartAction.js:579 msgid "An error occurred while loading the SQL" msgstr "" -#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:332 +#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:325 msgid "An error occurred while opening Explore" msgstr "" @@ -1868,15 +1891,15 @@ msgstr "" msgid "An error occurred while pruning logs " msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:892 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:888 msgid "An error occurred while removing query. Please contact your administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:857 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:853 msgid "An error occurred while removing tab. Please contact your administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1396 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1388 msgid "" "An error occurred while removing the table schema. Please contact your " "administrator." @@ -1887,38 +1910,38 @@ msgstr "" msgid "An error occurred while rendering the visualization: %s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:710 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:706 msgid "" "An error occurred while setting the active tab. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:975 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:967 msgid "" "An error occurred while setting the tab autorun. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:915 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:911 msgid "" "An error occurred while setting the tab database ID. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1004 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1128 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:996 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1120 msgid "" "An error occurred while setting the tab name. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:946 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:942 msgid "" "An error occurred while setting the tab schema. Please contact your " "administrator." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1154 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1146 msgid "" "An error occurred while setting the tab template parameters. Please " "contact your administrator." @@ -1928,14 +1951,14 @@ msgstr "" msgid "An error occurred while starring this chart" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:251 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:297 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:255 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:301 msgid "" "An error occurred while storing the latest query id in the backend. " "Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1095 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1087 msgid "" "An error occurred while storing your query in the backend. To avoid " "losing your changes, please save your query using the \"Save Query\" " @@ -1955,7 +1978,7 @@ msgstr "" msgid "An unexpected error occurred" msgstr "" -#: superset/views/core.py:734 +#: superset/views/core.py:745 msgid "An unknown error occurred. Please contact your Superset administrator" msgstr "" @@ -1987,7 +2010,7 @@ msgstr "Anotačná vrstva" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:127 -#: superset/initialization/__init__.py:420 +#: superset/initialization/__init__.py:414 msgid "Annotation Layers" msgstr "Anotačná vrstva" @@ -2146,7 +2169,8 @@ msgstr "" #: superset-frontend/src/pages/DashboardList/index.tsx:504 #: superset-frontend/src/pages/DashboardList/index.tsx:572 #: superset-frontend/src/pages/DashboardList/index.tsx:586 -#: superset-frontend/src/pages/DatasetList/index.tsx:570 +#: superset-frontend/src/pages/DatasetList/index.tsx:581 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:260 msgid "Any" msgstr "" @@ -2161,18 +2185,18 @@ msgid "" "dashboard's individual charts" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:953 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1008 msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:967 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1022 msgid "" "Any databases that allow connections via SQL Alchemy URIs can be added. " "Learn about how to connect a database driver " msgstr "" -#: superset/views/database/forms.py:169 superset/views/database/forms.py:326 -#: superset/views/database/forms.py:457 +#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 +#: superset/views/database/forms.py:467 msgid "Append" msgstr "" @@ -2191,7 +2215,7 @@ msgstr "" msgid "Applied filters: %s" msgstr "" -#: superset/viz.py:246 +#: superset/viz.py:250 msgid "" "Applied rolling window did not return any data. Please make sure the " "source query satisfies the minimum periods defined in the rolling window." @@ -2200,11 +2224,15 @@ msgstr "" #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:856 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:228 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:476 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:479 msgid "Apply" msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:100 +msgid "Apply conditional color formatting to metric" +msgstr "" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:386 msgid "Apply conditional color formatting to metrics" msgstr "" @@ -2251,6 +2279,7 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:509 #: superset-frontend/src/pages/DashboardList/index.tsx:418 #: superset-frontend/src/pages/DashboardList/index.tsx:739 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:173 #: superset-frontend/src/pages/Tags/index.tsx:144 msgid "Are you sure you want to delete" msgstr "" @@ -2277,7 +2306,7 @@ msgstr "" msgid "Are you sure you want to delete the selected dashboards?" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:741 +#: superset-frontend/src/pages/DatasetList/index.tsx:763 msgid "Are you sure you want to delete the selected datasets?" msgstr "" @@ -2289,6 +2318,10 @@ msgstr "" msgid "Are you sure you want to delete the selected queries?" msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:305 +msgid "Are you sure you want to delete the selected rules?" +msgstr "" + #: superset-frontend/src/pages/Tags/index.tsx:282 msgid "Are you sure you want to delete the selected tags?" msgstr "" @@ -2297,7 +2330,7 @@ msgstr "" msgid "Are you sure you want to delete the selected templates?" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:426 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:434 msgid "Are you sure you want to overwrite this dataset?" msgstr "" @@ -2305,7 +2338,7 @@ msgstr "" msgid "Are you sure you want to proceed?" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:174 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:216 msgid "Are you sure you want to save and apply changes?" msgstr "" @@ -2344,7 +2377,7 @@ msgstr "" msgid "Assign a set of parameters as" msgstr "" -#: superset/connectors/sqla/views.py:476 +#: superset/connectors/sqla/views.py:383 msgid "Associated Charts" msgstr "" @@ -2352,9 +2385,9 @@ msgstr "" msgid "Async Execution" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:295 -#: superset-frontend/src/pages/DatabaseList/index.tsx:309 -#: superset-frontend/src/pages/DatabaseList/index.tsx:475 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:305 +#: superset-frontend/src/pages/DatabaseList/index.tsx:320 +#: superset-frontend/src/pages/DatabaseList/index.tsx:486 msgid "Asynchronous query execution" msgstr "" @@ -2371,7 +2404,7 @@ msgstr "" msgid "Auto Zoom" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:530 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 msgid "Autocomplete" msgstr "" @@ -2397,7 +2430,7 @@ msgstr "" msgid "Average" msgstr "Spravovať" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:233 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 #, fuzzy msgid "Average value" msgstr "Spravovať" @@ -2431,10 +2464,10 @@ msgstr "" msgid "BOOLEAN" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:366 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1051 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1068 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1088 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:373 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1123 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1143 msgid "Back" msgstr "" @@ -2444,7 +2477,7 @@ msgstr "" msgid "Back to all" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:300 +#: superset-frontend/src/pages/DatabaseList/index.tsx:311 #: superset/views/database/mixins.py:200 msgid "Backend" msgstr "" @@ -2458,7 +2491,7 @@ msgstr "" msgid "Bad formula." msgstr "" -#: superset/viz.py:2509 superset/viz.py:2545 +#: superset/viz.py:2452 superset/viz.py:2492 msgid "Bad spatial key" msgstr "" @@ -2491,6 +2524,12 @@ msgstr "" msgid "Bar orientation" msgstr "" +#: superset-frontend/src/features/rls/constants.ts:28 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:263 +#, fuzzy +msgid "Base" +msgstr "Databázy" + #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:239 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 msgid "Base layer map style" @@ -2504,12 +2543,12 @@ msgstr "" msgid "Based on granularity, number of time periods to compare against" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:228 msgid "Based on what should series be ordered on the chart and legend" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:854 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1723 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1779 msgid "Basic" msgstr "" @@ -2540,7 +2579,7 @@ msgid "Before" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:37 -#: superset/viz.py:1286 +#: superset/viz.py:1186 msgid "Big Number" msgstr "" @@ -2549,11 +2588,11 @@ msgid "Big Number Font Size" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:36 -#: superset/viz.py:1252 +#: superset/viz.py:1150 msgid "Big Number with Trendline" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 msgid "Bottom" msgstr "" @@ -2582,7 +2621,6 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:261 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:277 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:263 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:251 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:195 @@ -2601,6 +2639,24 @@ msgid "" " the axis range. It won't narrow the data's extent." msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 +msgid "" +"Bounds for the primary Y-axis. When left empty, the bounds are " +"dynamically defined based on the min/max of the data. Note that this " +"feature will only expand the axis range. It won't narrow the data's " +"extent." +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:411 +msgid "" +"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" +" bounds are enabled. When left empty, the bounds are " +"dynamically defined\n" +" based on the min/max of the data. Note that this feature " +"will only expand\n" +" the axis range. It won't narrow the data's extent." +msgstr "" + #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:58 #: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/createMetadata.ts:27 @@ -2612,7 +2668,7 @@ msgid "Breakdowns" msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:32 -#: superset/viz.py:1171 +#: superset/viz.py:1065 msgid "Bubble Chart" msgstr "" @@ -2643,14 +2699,15 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:789 #: superset-frontend/src/pages/CssTemplateList/index.tsx:262 #: superset-frontend/src/pages/DashboardList/index.tsx:662 -#: superset-frontend/src/pages/DatasetList/index.tsx:596 +#: superset-frontend/src/pages/DatasetList/index.tsx:607 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 #: superset-frontend/src/pages/SavedQueryList/index.tsx:177 #: superset-frontend/src/pages/Tags/index.tsx:267 msgid "Bulk select" msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 -#: superset/viz.py:1222 +#: superset/viz.py:1118 msgid "Bullet Chart" msgstr "" @@ -2666,7 +2723,7 @@ msgstr "" msgid "Business" msgstr "" -#: superset/connectors/sqla/views.py:165 +#: superset/connectors/sqla/views.py:164 msgid "Business Data Type" msgstr "" @@ -2697,15 +2754,15 @@ msgstr "" msgid "CANCEL" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1520 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1575 msgid "CREATE DATASET" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:585 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:579 msgid "CREATE TABLE AS" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:596 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:590 msgid "CREATE VIEW AS" msgstr "" @@ -2730,7 +2787,7 @@ msgstr "" msgid "CSS Styles" msgstr "" -#: superset/initialization/__init__.py:286 superset/views/css_templates.py:38 +#: superset/initialization/__init__.py:288 superset/views/css_templates.py:38 msgid "CSS Templates" msgstr "CSS šablóny" @@ -2763,26 +2820,26 @@ msgstr "" msgid "CSV Upload" msgstr "" -#: superset/views/database/views.py:287 +#: superset/views/database/views.py:290 #, python-format msgid "" "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " "database \"%(db_name)s\"" msgstr "" -#: superset/views/database/views.py:160 +#: superset/views/database/views.py:161 msgid "CSV to Database configuration" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:344 +#: superset-frontend/src/pages/DatabaseList/index.tsx:355 msgid "CSV upload" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:130 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 msgid "CTAS & CVAS SCHEMA" msgstr "" -#: superset/sql_lab.py:440 +#: superset/sql_lab.py:432 msgid "" "CTAS (create table as select) can only be run with a query where the last" " statement is a SELECT. Please make sure your query has a SELECT as its " @@ -2793,7 +2850,7 @@ msgstr "" msgid "CTAS Schema" msgstr "" -#: superset/sql_lab.py:457 +#: superset/sql_lab.py:449 msgid "" "CVAS (create view as select) can only be run with a query with a single " "SELECT statement. Please make sure your query has only a SELECT " @@ -2808,7 +2865,7 @@ msgstr "" msgid "CVAS (create view as select) query is not a SELECT statement." msgstr "" -#: superset/connectors/sqla/views.py:486 superset/views/chart/mixin.py:76 +#: superset/connectors/sqla/views.py:393 superset/views/chart/mixin.py:76 msgid "Cache Timeout" msgstr "" @@ -2826,16 +2883,16 @@ msgstr "" msgid "Cached" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:349 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:351 #, python-format msgid "Cached %s" msgstr "" -#: superset/viz.py:562 +#: superset/viz.py:578 msgid "Cached value not found" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:53 msgid "Calculate contribution per series or row" msgstr "" @@ -2857,7 +2914,7 @@ msgid "Calculation type" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 -#: superset/viz.py:1080 +#: superset/viz.py:972 msgid "Calendar Heatmap" msgstr "" @@ -2870,17 +2927,17 @@ msgstr "" msgid "Can select multiple values" msgstr "" -#: superset/viz.py:1810 +#: superset/viz.py:1727 msgid "Can't have overlap between Series and Breakdowns" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:206 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:759 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:263 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:185 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 -#: superset-frontend/src/components/Modal/Modal.tsx:262 -#: superset-frontend/src/components/ReportModal/index.tsx:220 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:205 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:753 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:227 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:268 +#: superset-frontend/src/components/Modal/Modal.tsx:269 +#: superset-frontend/src/components/ReportModal/index.tsx:219 #: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:72 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:649 #: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 @@ -2888,14 +2945,14 @@ msgstr "" #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:76 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 -#: superset-frontend/src/explore/components/SaveModal.tsx:379 +#: superset-frontend/src/explore/components/SaveModal.tsx:413 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:843 #: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 #: superset/templates/superset/request_access.html:34 msgid "Cancel" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:314 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 msgid "Cancel query on window unload event" msgstr "" @@ -2911,7 +2968,7 @@ msgstr "" msgid "Cannot have multiple credentials for the SSH Tunnel" msgstr "" -#: superset/views/core.py:723 +#: superset/views/core.py:734 #, python-format msgid "" "Cannot import dashboard: %(db_error)s.\n" @@ -2975,7 +3032,7 @@ msgstr "" msgid "Category and Value" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:229 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:67 #, fuzzy msgid "Category name" msgstr "Datasety" @@ -2990,15 +3047,15 @@ msgstr "" msgid "Category, Value and Percentage" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:103 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 msgid "Cell Padding" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:117 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 msgid "Cell Radius" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 msgid "Cell Size" msgstr "" @@ -3006,7 +3063,7 @@ msgstr "" msgid "Cell bars" msgstr "" -#: superset-frontend/src/components/FilterableTable/index.tsx:431 +#: superset-frontend/src/components/FilterableTable/index.tsx:303 msgid "Cell content" msgstr "" @@ -3018,6 +3075,7 @@ msgstr "" msgid "Center" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:33 msgid "Centroid (Longitude and Latitude): " msgstr "" @@ -3039,7 +3097,7 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:699 #: superset-frontend/src/pages/DashboardList/index.tsx:580 -#: superset-frontend/src/pages/DatasetList/index.tsx:564 +#: superset-frontend/src/pages/DatasetList/index.tsx:575 msgid "Certified" msgstr "" @@ -3070,7 +3128,7 @@ msgstr "" msgid "Change order of rows." msgstr "" -#: superset/connectors/sqla/views.py:478 +#: superset/connectors/sqla/views.py:385 msgid "Changed By" msgstr "" @@ -3117,7 +3175,7 @@ msgstr "" msgid "Changing this control takes effect instantly" msgstr "" -#: superset/datasets/commands/exceptions.py:181 +#: superset/datasets/commands/exceptions.py:198 msgid "Changing this dataset is forbidden" msgstr "" @@ -3134,14 +3192,15 @@ msgstr "" msgid "Changing this report is forbidden" msgstr "" -#: superset/views/database/forms.py:196 +#: superset/views/database/forms.py:206 msgid "Character to interpret as decimal point" msgstr "" -#: superset/views/database/forms.py:375 +#: superset/views/database/forms.py:385 msgid "Character to interpret as decimal point." msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:51 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:449 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:405 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:69 @@ -3149,11 +3208,11 @@ msgstr "" #: superset-frontend/src/features/home/RightMenu.tsx:219 #: superset-frontend/src/pages/ChartList/index.tsx:369 #: superset-frontend/src/pages/ChartList/index.tsx:799 -#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:90 +#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 msgid "Chart" msgstr "" -#: superset/views/core.py:1727 +#: superset/views/core.py:1762 #, python-format msgid "Chart %(id)s not found" msgstr "" @@ -3162,7 +3221,7 @@ msgstr "" msgid "Chart Cache Timeout" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:437 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:442 #, fuzzy, python-format msgid "Chart Data: %s" msgstr "Grafy" @@ -3172,7 +3231,7 @@ msgstr "Grafy" msgid "Chart ID" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:53 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:55 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:61 @@ -3194,7 +3253,7 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:59 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:131 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:107 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:74 @@ -3240,34 +3299,34 @@ msgstr "Grafy" msgid "Chart Title" msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:127 +#: superset-frontend/src/explore/actions/saveModalActions.js:121 #, python-format msgid "Chart [%s] has been overwritten" msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:124 +#: superset-frontend/src/explore/actions/saveModalActions.js:118 #, python-format msgid "Chart [%s] has been saved" msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:145 +#: superset-frontend/src/explore/actions/saveModalActions.js:139 #, python-format msgid "Chart [%s] was added to dashboard [%s]" msgstr "" -#: superset/views/core.py:1077 +#: superset/views/core.py:1099 msgid "Chart [{}] has been overwritten" msgstr "" -#: superset/views/core.py:1073 +#: superset/views/core.py:1095 msgid "Chart [{}] has been saved" msgstr "" -#: superset/views/core.py:1102 +#: superset/views/core.py:1124 msgid "Chart [{}] was added to dashboard [{}]" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:228 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:238 msgid "Chart cache timeout" msgstr "" @@ -3323,7 +3382,7 @@ msgstr "" msgid "Chart last modified by" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:320 +#: superset-frontend/src/explore/components/SaveModal.tsx:355 msgid "Chart name" msgstr "" @@ -3353,7 +3412,7 @@ msgstr "" msgid "Chart type" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:315 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 msgid "Chart type requires a dataset" msgstr "" @@ -3368,7 +3427,7 @@ msgstr "" #: superset-frontend/src/pages/Home/index.tsx:399 #: superset-frontend/src/profile/components/CreatedContent.tsx:104 #: superset-frontend/src/profile/components/Favorites.tsx:102 -#: superset/initialization/__init__.py:257 superset/views/chart/mixin.py:25 +#: superset/initialization/__init__.py:259 superset/views/chart/mixin.py:25 #: superset/views/dashboard/mixin.py:80 msgid "Charts" msgstr "Grafy" @@ -3400,7 +3459,7 @@ msgstr "" msgid "Check out this chart in dashboard:" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:474 msgid "Check out this chart: " msgstr "" @@ -3430,11 +3489,11 @@ msgstr "" msgid "Child label position" msgstr "" -#: superset/viz.py:2370 +#: superset/viz.py:2307 msgid "Choice of [Label] must be present in [Group By]" msgstr "" -#: superset/viz.py:2378 +#: superset/viz.py:2315 msgid "Choice of [Point Radius] must be present in [Group By]" msgstr "" @@ -3447,7 +3506,7 @@ msgstr "" msgid "Choose a chart or dashboard not both" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:924 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:979 msgid "Choose a database..." msgstr "" @@ -3482,15 +3541,11 @@ msgstr "" msgid "Choose a target" msgstr "" -#: superset/connectors/sqla/views.py:327 -msgid "Choose a unique name" -msgstr "" - #: superset-frontend/src/pages/ChartCreation/index.tsx:404 msgid "Choose chart type" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:745 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:739 msgid "Choose one of the available databases from the panel on the left." msgstr "" @@ -3566,7 +3621,8 @@ msgid "" "showcase a view into the underlying data or to show aggregated metrics." msgstr "" -#: superset/connectors/sqla/views.py:365 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:454 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:144 msgid "Clause" msgstr "" @@ -3578,7 +3634,7 @@ msgstr "" msgid "Clear all" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:206 +#: superset-frontend/src/components/Table/index.tsx:210 msgid "Clear all data" msgstr "" @@ -3604,19 +3660,19 @@ msgstr "" msgid "Click the lock to prevent further changes." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1955 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2012 msgid "" "Click this link to switch to an alternate form that allows you to input " "the SQLAlchemy URL for this database manually." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1771 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1827 msgid "" "Click this link to switch to an alternate form that exposes only the " "required fields needed to connect this database." msgstr "" -#: superset-frontend/src/components/Table/index.tsx:213 +#: superset-frontend/src/components/Table/index.tsx:217 msgid "Click to cancel sorting" msgstr "" @@ -3626,16 +3682,10 @@ msgstr "" #: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 #, python-format -msgid "Click to edit %s in a new tab" -msgstr "" - -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:32 -#, python-format msgid "Click to edit %s." msgstr "" #: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:33 msgid "Click to edit chart." msgstr "" @@ -3656,25 +3706,25 @@ msgstr "" msgid "Click to see difference" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:212 +#: superset-frontend/src/components/Table/index.tsx:216 msgid "Click to sort ascending" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:211 +#: superset-frontend/src/components/Table/index.tsx:215 msgid "Click to sort descending" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:83 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:132 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:52 #: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:209 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:219 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:224 #: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:786 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:408 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:414 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:339 #: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:36 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1109 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1164 msgid "Close" msgstr "" @@ -3707,15 +3757,15 @@ msgstr "" msgid "Collapse data panel" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:210 +#: superset-frontend/src/components/Table/index.tsx:214 msgid "Collapse row" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:598 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:599 msgid "Collapse tab content" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:197 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 msgid "Collapse table preview" msgstr "" @@ -3737,7 +3787,7 @@ msgstr "" msgid "Color Scheme" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:129 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 msgid "Color Steps" msgstr "" @@ -3758,8 +3808,8 @@ msgid "Color of the target location" msgstr "" #: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:214 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:218 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 #: superset-frontend/src/explore/controlPanels/sections.tsx:60 #: superset-frontend/src/explore/controls.jsx:460 msgid "Color scheme" @@ -3779,8 +3829,8 @@ msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 #: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:204 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:250 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:256 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:137 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:140 #: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 @@ -3788,7 +3838,7 @@ msgstr "" #: superset-frontend/src/filters/components/Range/controlPanel.ts:39 #: superset-frontend/src/filters/components/Select/controlPanel.ts:49 #: superset-frontend/src/filters/components/Time/controlPanel.ts:37 -#: superset/connectors/sqla/views.py:155 +#: superset/connectors/sqla/views.py:154 msgid "Column" msgstr "" @@ -3803,12 +3853,16 @@ msgstr "" msgid "Column Configuration" msgstr "" +#: superset/views/database/forms.py:144 +msgid "Column Data Types" +msgstr "" + #: superset-frontend/src/explore/components/DataTableControl/index.tsx:194 msgid "Column Formatting" msgstr "" -#: superset/views/database/forms.py:222 superset/views/database/forms.py:383 -#: superset/views/database/forms.py:474 +#: superset/views/database/forms.py:232 superset/views/database/forms.py:393 +#: superset/views/database/forms.py:484 msgid "Column Label(s)" msgstr "" @@ -3826,6 +3880,10 @@ msgstr "" msgid "Column containing longitude data" msgstr "" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:69 +msgid "Column datatype" +msgstr "" + #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 msgid "Column header tooltip" msgstr "" @@ -3834,19 +3892,19 @@ msgstr "" msgid "Column is required" msgstr "" -#: superset/views/database/forms.py:384 superset/views/database/forms.py:475 +#: superset/views/database/forms.py:394 superset/views/database/forms.py:485 msgid "" "Column label for index column(s). If None is given and Dataframe Index is" " True, Index Names are used." msgstr "" -#: superset/views/database/forms.py:223 +#: superset/views/database/forms.py:233 msgid "" "Column label for index column(s). If None is given and Dataframe Index is" " checked, Index Names are used" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:77 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:90 msgid "Column name" msgstr "" @@ -3864,30 +3922,30 @@ msgstr "" msgid "Column select" msgstr "" -#: superset/views/database/forms.py:211 +#: superset/views/database/forms.py:221 msgid "" "Column to use as the row labels of the dataframe. Leave empty if no index" " column" msgstr "" -#: superset/views/database/forms.py:342 +#: superset/views/database/forms.py:352 msgid "" "Column to use as the row labels of the dataframe. Leave empty if no index" " column." msgstr "" -#: superset/views/database/forms.py:414 +#: superset/views/database/forms.py:424 msgid "Columnar File" msgstr "" -#: superset/views/database/views.py:565 +#: superset/views/database/views.py:568 #, python-format msgid "" "Columnar file \"%(columnar_filename)s\" uploaded to table " "\"%(table_name)s\" in database \"%(db_name)s\"" msgstr "" -#: superset/views/database/views.py:440 +#: superset/views/database/views.py:443 msgid "Columnar to Database configuration" msgstr "" @@ -3903,15 +3961,15 @@ msgstr "" #: superset-frontend/src/explore/controls.jsx:244 #: superset-frontend/src/explore/fixtures.tsx:97 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 -#: superset/connectors/sqla/views.py:72 +#: superset/connectors/sqla/views.py:71 msgid "Columns" msgstr "" -#: superset/views/database/forms.py:183 +#: superset/views/database/forms.py:193 msgid "Columns To Be Parsed as Dates" msgstr "" -#: superset/views/database/forms.py:231 +#: superset/views/database/forms.py:241 msgid "Columns To Read" msgstr "" @@ -3920,7 +3978,7 @@ msgstr "" msgid "Columns missing in dataset: %(invalid_columns)s" msgstr "" -#: superset/viz.py:577 +#: superset/viz.py:593 #, python-format msgid "Columns missing in datasource: %(invalid_columns)s" msgstr "" @@ -3959,10 +4017,6 @@ msgstr "" msgid "Columns to show" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:85 -msgid "Combine Metrics" -msgstr "" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:250 msgid "Combine metrics" msgstr "" @@ -4020,6 +4074,7 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:35 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:35 @@ -4064,6 +4119,10 @@ msgstr "" msgid "Condition" msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 +msgid "Conditional Formatting" +msgstr "" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:385 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:504 msgid "Conditional formatting" @@ -4117,15 +4176,15 @@ msgstr "" msgid "Confirm overwrite" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:180 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:222 msgid "Confirm save" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1059 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1097 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1656 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1695 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1857 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1152 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1712 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 msgid "Connect" msgstr "" @@ -4137,9 +4196,9 @@ msgstr "" msgid "Connect Google Sheets as tables to this database" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1660 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1700 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1861 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1716 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1918 msgid "Connect a database" msgstr "" @@ -4147,24 +4206,24 @@ msgstr "" msgid "Connect database" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1768 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 msgid "Connect this database using the dynamic form instead" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1950 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2007 msgid "Connect this database with a SQLAlchemy URI string instead" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:225 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 msgid "Connection" msgstr "" #: superset/databases/commands/exceptions.py:107 -#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1430 +#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1471 msgid "Connection failed, please check your connection settings" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:697 +#: superset-frontend/src/views/CRUD/hooks.ts:701 msgid "Connection looks good!" msgstr "" @@ -4188,7 +4247,7 @@ msgstr "" msgid "Contribution" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:42 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 msgid "Contribution Mode" msgstr "" @@ -4240,8 +4299,8 @@ msgstr "" msgid "Copy message" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:683 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1469 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:679 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1461 #: superset-frontend/src/SqlLab/reducers/sqlLab.js:107 #, python-format msgid "Copy of %s" @@ -4252,7 +4311,7 @@ msgid "Copy partition query to clipboard" msgstr "" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:329 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:468 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:340 msgid "Copy permalink to clipboard" msgstr "" @@ -4277,7 +4336,7 @@ msgstr "" msgid "Copy the name of the database you are trying to connect to." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:273 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:271 msgid "Copy to Clipboard" msgstr "" @@ -4297,7 +4356,12 @@ msgstr "" msgid "Cost estimate" msgstr "" -#: superset/views/utils.py:498 +#: superset/db_engine_specs/ocient.py:259 +#, python-format +msgid "Could not connect to database: \"%(database)s\"" +msgstr "" + +#: superset/views/utils.py:496 msgid "Could not determine datasource type" msgstr "" @@ -4306,7 +4370,7 @@ msgstr "" msgid "Could not fetch all saved charts" msgstr "" -#: superset/views/utils.py:514 +#: superset/views/utils.py:512 msgid "Could not find viz object" msgstr "" @@ -4314,7 +4378,7 @@ msgstr "" msgid "Could not load database driver" msgstr "" -#: superset/views/core.py:1413 +#: superset/views/core.py:1454 #, python-format msgid "Could not load database driver: %(driver_name)s" msgstr "" @@ -4323,6 +4387,11 @@ msgstr "" msgid "Could not load database driver: {}" msgstr "" +#: superset/db_engine_specs/ocient.py:264 +#, python-format +msgid "Could not resolve hostname: \"%(host)s\"." +msgstr "" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 msgid "Count" msgstr "" @@ -4362,12 +4431,12 @@ msgid "Country Field Type" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 -#: superset/viz.py:2044 +#: superset/viz.py:1969 msgid "Country Map" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:767 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:761 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:770 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:96 msgid "Create" msgstr "" @@ -4377,10 +4446,10 @@ msgid "Create Chart" msgstr "" #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:331 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:321 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:332 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:356 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:327 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:338 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:362 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 #, fuzzy msgid "Create a dataset" @@ -4424,7 +4493,7 @@ msgstr "" msgid "Create new filter set" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 msgid "Create or select schema..." msgstr "" @@ -4447,7 +4516,7 @@ msgstr "" #: superset-frontend/src/pages/CssTemplateList/index.tsx:273 #: superset-frontend/src/pages/DashboardList/index.tsx:358 #: superset-frontend/src/pages/DashboardList/index.tsx:545 -#: superset-frontend/src/pages/DatabaseList/index.tsx:365 +#: superset-frontend/src/pages/DatabaseList/index.tsx:376 #: superset-frontend/src/pages/Tags/index.tsx:128 #: superset-frontend/src/pages/Tags/index.tsx:183 msgid "Created by" @@ -4476,9 +4545,8 @@ msgstr "" msgid "Creating a data source and creating a new tab" msgstr "" -#: superset/connectors/sqla/views.py:366 superset/views/chart/mixin.py:77 -#: superset/views/dashboard/mixin.py:84 superset/views/dashboard/views.py:185 -#: superset/views/database/mixins.py:189 +#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 +#: superset/views/dashboard/views.py:185 superset/views/database/mixins.py:189 msgid "Creator" msgstr "" @@ -4486,14 +4554,24 @@ msgstr "" msgid "Crimson" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:122 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:152 msgid "Cross-filter will be applied to all of the charts that use this dataset." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:134 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:164 msgid "Cross-filtering is not enabled for this dashboard." msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 +msgid "Cross-filtering is not enabled in this dashboard" +msgstr "" + +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:414 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 +msgid "Cross-filtering scoping" +msgstr "" + #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 msgid "Cross-filters" msgstr "" @@ -4519,7 +4597,7 @@ msgstr "" msgid "Custom Plugins" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:385 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:391 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 @@ -4530,8 +4608,7 @@ msgstr "" msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" msgstr "" -#: superset/connectors/sqla/utils.py:194 superset/errors.py:145 -#: superset/models/helpers.py:129 superset/models/helpers.py:864 +#: superset/errors.py:145 superset/models/helpers.py:138 msgid "Custom SQL fields cannot contain sub-queries." msgstr "" @@ -4555,7 +4632,7 @@ msgstr "" msgid "Cyclic dependency detected" msgstr "" -#: superset/connectors/sqla/views.py:256 +#: superset/connectors/sqla/views.py:255 msgid "D3 Format" msgstr "" @@ -4565,7 +4642,7 @@ msgstr "" msgid "D3 format" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:22 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:146 msgid "D3 format syntax: https://github.com/d3/d3-format" msgstr "" @@ -4581,7 +4658,7 @@ msgstr "" msgid "D3 time format for datetime columns" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:53 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 msgid "D3 time format syntax: https://github.com/d3/d3-time-format" msgstr "" @@ -4603,7 +4680,7 @@ msgstr "" msgid "DELETE" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:332 +#: superset-frontend/src/pages/DatabaseList/index.tsx:343 msgid "DML" msgstr "" @@ -4632,12 +4709,12 @@ msgstr "" msgid "Dashboard" msgstr "" -#: superset-frontend/src/explore/actions/saveModalActions.js:135 +#: superset-frontend/src/explore/actions/saveModalActions.js:129 #, python-format msgid "Dashboard [%s] just got created and chart [%s] was added to it" msgstr "" -#: superset/views/core.py:1122 +#: superset/views/core.py:1144 msgid "Dashboard [{}] just got created and chart [{}] was added to it" msgstr "" @@ -4702,7 +4779,7 @@ msgstr "Importovať dashboard" #: superset-frontend/src/pages/Home/index.tsx:385 #: superset-frontend/src/profile/components/CreatedContent.tsx:101 #: superset-frontend/src/profile/components/Favorites.tsx:99 -#: superset/initialization/__init__.py:249 superset/views/chart/mixin.py:78 +#: superset/initialization/__init__.py:251 superset/views/chart/mixin.py:78 #: superset/views/dashboard/mixin.py:24 msgid "Dashboards" msgstr "" @@ -4728,7 +4805,7 @@ msgstr "Importovať dashboard" #: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:708 #: superset-frontend/src/features/home/RightMenu.tsx:169 -#: superset/initialization/__init__.py:244 +#: superset/initialization/__init__.py:246 msgid "Data" msgstr "Dáta" @@ -4736,7 +4813,7 @@ msgstr "Dáta" msgid "Data Table" msgstr "" -#: superset/datasets/commands/exceptions.py:197 +#: superset/datasets/commands/exceptions.py:214 msgid "Data URI is not allowed." msgstr "" @@ -4750,14 +4827,14 @@ msgstr "" msgid "Data Zoom" msgstr "" -#: superset/sqllab/commands/results.py:116 superset/views/core.py:2195 +#: superset/sqllab/commands/results.py:116 superset/views/core.py:2231 msgid "" "Data could not be deserialized from the results backend. The storage " "format might have changed, rendering the old data stake. You need to re-" "run the original query." msgstr "" -#: superset/sqllab/commands/results.py:75 superset/views/core.py:2148 +#: superset/sqllab/commands/results.py:75 superset/views/core.py:2184 msgid "" "Data could not be retrieved from the results backend. You need to re-run " "the original query." @@ -4771,7 +4848,7 @@ msgstr "" msgid "Data preview" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:283 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:278 msgid "Data refreshed" msgstr "" @@ -4790,50 +4867,50 @@ msgstr "" msgid "DataFrame must include temporal column" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:275 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:274 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -#: superset-frontend/src/pages/DatabaseList/index.tsx:267 -#: superset-frontend/src/pages/DatabaseList/index.tsx:296 -#: superset-frontend/src/pages/DatasetList/index.tsx:349 -#: superset-frontend/src/pages/DatasetList/index.tsx:520 +#: superset-frontend/src/pages/DatabaseList/index.tsx:278 +#: superset-frontend/src/pages/DatabaseList/index.tsx:307 +#: superset-frontend/src/pages/DatasetList/index.tsx:360 +#: superset-frontend/src/pages/DatasetList/index.tsx:531 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:241 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:349 #: superset-frontend/src/pages/SavedQueryList/index.tsx:287 #: superset-frontend/src/pages/SavedQueryList/index.tsx:448 -#: superset/connectors/sqla/views.py:479 superset/connectors/sqla/views.py:480 +#: superset/connectors/sqla/views.py:386 superset/connectors/sqla/views.py:387 #: superset/templates/superset/import_dashboards.html:53 -#: superset/views/database/forms.py:137 superset/views/database/forms.py:305 -#: superset/views/database/forms.py:436 superset/views/database/mixins.py:188 +#: superset/views/database/forms.py:137 superset/views/database/forms.py:315 +#: superset/views/database/forms.py:446 superset/views/database/mixins.py:188 #: superset/views/sql_lab/views.py:83 msgid "Database" msgstr "" -#: superset/views/database/views.py:478 +#: superset/views/database/views.py:481 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " "for columnar uploads. Please contact your Superset Admin." msgstr "" -#: superset/views/database/views.py:179 +#: superset/views/database/views.py:180 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " "for csv uploads. Please contact your Superset Admin." msgstr "" -#: superset/views/database/views.py:318 +#: superset/views/database/views.py:321 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " "for excel uploads. Please contact your Superset Admin." msgstr "" -#: superset/initialization/__init__.py:241 +#: superset/initialization/__init__.py:243 msgid "Database Connections" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1467 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1522 msgid "Database Creation Error" msgstr "" @@ -4842,9 +4919,9 @@ msgid "Database URL" msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:827 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:849 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1150 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:882 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:904 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1205 msgid "Database connected" msgstr "" @@ -4870,7 +4947,7 @@ msgstr "" msgid "Database does not exist" msgstr "" -#: superset/connectors/sqla/models.py:1793 superset/models/helpers.py:1966 +#: superset/models/helpers.py:2063 msgid "Database does not support subqueries" msgstr "" @@ -4880,7 +4957,7 @@ msgid "" "documentation page for installation instructions: " msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:429 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 msgid "Database error" msgstr "" @@ -4893,8 +4970,8 @@ msgid "Database is required for alerts" msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:113 -#: superset/db_engine_specs/base.py:1845 -#: superset/db_engine_specs/clickhouse.py:209 +#: superset/db_engine_specs/base.py:1880 +#: superset/db_engine_specs/clickhouse.py:212 msgid "Database name" msgstr "" @@ -4906,7 +4983,7 @@ msgstr "" msgid "Database not found." msgstr "" -#: superset/views/core.py:1179 +#: superset/views/core.py:1201 #, python-format msgid "Database not found: %(id)s" msgstr "" @@ -4919,24 +4996,24 @@ msgstr "" msgid "Database passwords" msgstr "" -#: superset/db_engine_specs/base.py:1842 -#: superset/db_engine_specs/clickhouse.py:206 +#: superset/db_engine_specs/base.py:1876 +#: superset/db_engine_specs/clickhouse.py:208 #: superset/db_engine_specs/databricks.py:52 msgid "Database port" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:811 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:853 msgid "Database settings updated" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:258 +#: superset-frontend/src/pages/DatabaseList/index.tsx:269 #: superset-frontend/src/profile/components/Security.tsx:47 #: superset/views/database/mixins.py:33 msgid "Databases" msgstr "Databázy" -#: superset/views/database/forms.py:219 superset/views/database/forms.py:380 -#: superset/views/database/forms.py:471 +#: superset/views/database/forms.py:229 superset/views/database/forms.py:390 +#: superset/views/database/forms.py:481 msgid "Dataframe Index" msgstr "" @@ -4948,7 +5025,7 @@ msgstr "" #: superset-frontend/src/pages/ChartCreation/index.tsx:390 #: superset-frontend/src/pages/ChartList/index.tsx:391 #: superset-frontend/src/pages/ChartList/index.tsx:678 -#: superset-frontend/src/pages/DatasetList/index.tsx:606 +#: superset-frontend/src/pages/DatasetList/index.tsx:617 msgid "Dataset" msgstr "" @@ -4957,7 +5034,7 @@ msgstr "" msgid "Dataset %(name)s already exists" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:331 +#: superset-frontend/src/explore/components/SaveModal.tsx:366 #, fuzzy msgid "Dataset Name" msgstr "Datasety" @@ -4970,28 +5047,28 @@ msgstr "" msgid "Dataset column not found." msgstr "" -#: superset/datasets/commands/exceptions.py:157 +#: superset/datasets/commands/exceptions.py:174 msgid "Dataset could not be created." msgstr "" -#: superset/datasets/commands/exceptions.py:165 +#: superset/datasets/commands/exceptions.py:182 msgid "Dataset could not be deleted." msgstr "" -#: superset/datasets/commands/exceptions.py:193 +#: superset/datasets/commands/exceptions.py:210 msgid "Dataset could not be duplicated." msgstr "" -#: superset/datasets/commands/exceptions.py:161 -#: superset/datasets/commands/exceptions.py:173 +#: superset/datasets/commands/exceptions.py:178 +#: superset/datasets/commands/exceptions.py:190 msgid "Dataset could not be updated." msgstr "" -#: superset/datasets/commands/exceptions.py:149 +#: superset/datasets/commands/exceptions.py:166 msgid "Dataset does not exist" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:185 +#: superset-frontend/src/pages/DatasetList/index.tsx:196 msgid "Dataset imported" msgstr "" @@ -5012,22 +5089,22 @@ msgstr "" msgid "Dataset name" msgstr "" -#: superset/datasets/commands/exceptions.py:153 +#: superset/datasets/commands/exceptions.py:170 msgid "Dataset parameters are invalid." msgstr "" -#: superset/dashboards/api.py:430 +#: superset/dashboards/api.py:415 #, python-format msgid "Dataset schema is invalid, caused by: %(error)s" msgstr "" -#: superset/datasets/commands/exceptions.py:169 +#: superset/datasets/commands/exceptions.py:186 msgid "Dataset(s) could not be bulk deleted." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:589 +#: superset-frontend/src/pages/DatasetList/index.tsx:600 #: superset-frontend/src/profile/components/Security.tsx:61 -#: superset/initialization/__init__.py:265 +#: superset/initialization/__init__.py:267 msgid "Datasets" msgstr "Datasety" @@ -5050,11 +5127,11 @@ msgstr "" msgid "Datasource & Chart Type" msgstr "" -#: superset/commands/exceptions.py:131 +#: superset/commands/exceptions.py:135 msgid "Datasource does not exist" msgstr "" -#: superset/commands/exceptions.py:123 +#: superset/commands/exceptions.py:127 msgid "Datasource type is invalid" msgstr "" @@ -5071,8 +5148,7 @@ msgstr "" msgid "Date filter" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:71 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:151 #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:135 @@ -5092,11 +5168,11 @@ msgstr "" msgid "Date/Time" msgstr "" -#: superset/connectors/sqla/views.py:163 +#: superset/connectors/sqla/views.py:162 msgid "Datetime Format" msgstr "" -#: superset/connectors/sqla/models.py:1237 superset/models/helpers.py:1427 +#: superset/models/helpers.py:1502 msgid "" "Datetime column not provided as part table configuration and is required " "by this type of chart" @@ -5106,7 +5182,7 @@ msgstr "" msgid "Datetime format" msgstr "" -#: superset/db_engine_specs/base.py:106 +#: superset/db_engine_specs/base.py:107 msgid "Day" msgstr "" @@ -5119,7 +5195,7 @@ msgstr "" msgid "Days %s" msgstr "" -#: superset/connectors/sqla/models.py:1936 superset/models/helpers.py:988 +#: superset/connectors/sqla/models.py:1222 superset/models/helpers.py:1024 msgid "Db engine did not return all queried columns" msgstr "" @@ -5131,47 +5207,56 @@ msgstr "" msgid "December" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:70 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:89 msgid "Decides which column to sort the base axis by." msgstr "" -#: superset/views/database/forms.py:194 superset/views/database/forms.py:373 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:160 +msgid "Decides which measure to sort the base axis by." +msgstr "" + +#: superset/views/database/forms.py:204 superset/views/database/forms.py:383 msgid "Decimal Character" msgstr "" -#: superset/viz.py:2743 +#: superset/viz.py:2700 msgid "Deck.gl - 3D Grid" msgstr "" -#: superset/viz.py:2859 +#: superset/viz.py:2825 msgid "Deck.gl - 3D HEX" msgstr "" -#: superset/viz.py:2899 +#: superset/viz.py:2890 msgid "Deck.gl - Arc" msgstr "" -#: superset/viz.py:2880 +#: superset/viz.py:2869 msgid "Deck.gl - GeoJSON" msgstr "" -#: superset/viz.py:2468 +#: superset/viz.py:2848 +#, fuzzy +msgid "Deck.gl - Heatmap" +msgstr "Grafy" + +#: superset/viz.py:2406 msgid "Deck.gl - Multiple Layers" msgstr "" -#: superset/viz.py:2775 +#: superset/viz.py:2735 msgid "Deck.gl - Paths" msgstr "" -#: superset/viz.py:2826 +#: superset/viz.py:2789 msgid "Deck.gl - Polygon" msgstr "" -#: superset/viz.py:2662 +#: superset/viz.py:2612 msgid "Deck.gl - Scatter plot" msgstr "" -#: superset/viz.py:2714 +#: superset/viz.py:2668 msgid "Deck.gl - Screen Grid" msgstr "" @@ -5179,7 +5264,7 @@ msgstr "" msgid "Default" msgstr "" -#: superset/connectors/sqla/views.py:484 +#: superset/connectors/sqla/views.py:391 msgid "Default Endpoint" msgstr "" @@ -5308,11 +5393,13 @@ msgstr "" #: superset-frontend/src/pages/CssTemplateList/index.tsx:338 #: superset-frontend/src/pages/DashboardList/index.tsx:427 #: superset-frontend/src/pages/DashboardList/index.tsx:712 -#: superset-frontend/src/pages/DatasetList/index.tsx:418 -#: superset-frontend/src/pages/DatasetList/index.tsx:751 +#: superset-frontend/src/pages/DatasetList/index.tsx:429 +#: superset-frontend/src/pages/DatasetList/index.tsx:773 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:182 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:313 #: superset-frontend/src/pages/SavedQueryList/index.tsx:542 #: superset-frontend/src/pages/Tags/index.tsx:153 -#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:663 +#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:664 msgid "Delete" msgstr "" @@ -5325,11 +5412,11 @@ msgstr "" msgid "Delete Annotation?" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:529 +#: superset-frontend/src/pages/DatabaseList/index.tsx:551 msgid "Delete Database?" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:723 +#: superset-frontend/src/pages/DatasetList/index.tsx:745 msgid "Delete Dataset?" msgstr "" @@ -5350,7 +5437,7 @@ msgstr "" msgid "Delete Template?" msgstr "" -#: superset/views/base.py:663 +#: superset/views/base.py:664 msgid "Delete all Really?" msgstr "" @@ -5362,7 +5449,7 @@ msgstr "" msgid "Delete dashboard tab?" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:405 +#: superset-frontend/src/pages/DatabaseList/index.tsx:416 msgid "Delete database" msgstr "" @@ -5384,6 +5471,10 @@ msgstr "" msgid "Delete this container and save to remove this message." msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:108 +msgid "Deleted" +msgstr "" + #: superset/annotation_layers/annotations/api.py:504 #, python-format msgid "Deleted %(num)d annotation" @@ -5400,7 +5491,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: superset/charts/api.py:524 +#: superset/charts/api.py:521 #, python-format msgid "Deleted %(num)d chart" msgid_plural "Deleted %(num)d charts" @@ -5416,7 +5507,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: superset/dashboards/api.py:760 +#: superset/dashboards/api.py:745 #, python-format msgid "Deleted %(num)d dashboard" msgid_plural "Deleted %(num)d dashboards" @@ -5424,7 +5515,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: superset/datasets/api.py:783 +#: superset/datasets/api.py:789 #, python-format msgid "Deleted %(num)d dataset" msgid_plural "Deleted %(num)d datasets" @@ -5440,6 +5531,14 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" +#: superset/row_level_security/api.py:349 +#, fuzzy, python-format +msgid "Deleted %(num)d rules" +msgid_plural "Deleted %(num)d rules" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #: superset/queries/saved_queries/api.py:222 #, python-format msgid "Deleted %(num)d saved query" @@ -5448,13 +5547,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:94 +#, python-format +msgid "Deleted %s" +msgstr "" + #: superset-frontend/src/features/home/SavedQueries.tsx:172 #: superset-frontend/src/pages/AlertReportList/index.tsx:183 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 #: superset-frontend/src/pages/AnnotationList/index.tsx:117 #: superset-frontend/src/pages/CssTemplateList/index.tsx:93 -#: superset-frontend/src/pages/DatabaseList/index.tsx:158 -#: superset-frontend/src/pages/DatasetList/index.tsx:653 +#: superset-frontend/src/pages/DatabaseList/index.tsx:169 +#: superset-frontend/src/pages/DatasetList/index.tsx:664 #: superset-frontend/src/pages/SavedQueryList/index.tsx:242 #: superset-frontend/src/reports/actions/reports.js:158 #: superset-frontend/src/views/CRUD/utils.tsx:272 @@ -5473,7 +5577,7 @@ msgstr "" msgid "Delimited long & lat single column" msgstr "" -#: superset/views/database/forms.py:150 +#: superset/views/database/forms.py:160 msgid "Delimiter" msgstr "" @@ -5500,32 +5604,34 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:40 +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 msgid "Deprecated" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:83 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:114 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:96 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:127 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:55 #: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:157 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:156 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:265 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1206 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1210 -#: superset-frontend/src/components/ReportModal/index.tsx:294 +#: superset-frontend/src/components/ReportModal/index.tsx:293 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1158 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:465 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 #: superset-frontend/src/pages/AnnotationList/index.tsx:161 -#: superset/connectors/sqla/views.py:157 superset/connectors/sqla/views.py:251 -#: superset/connectors/sqla/views.py:362 superset/connectors/sqla/views.py:491 -#: superset/views/chart/mixin.py:80 superset/views/sql_lab/views.py:84 +#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:398 superset/views/chart/mixin.py:80 +#: superset/views/sql_lab/views.py:84 msgid "Description" msgstr "" @@ -5538,7 +5644,7 @@ msgstr "" msgid "Description Columns" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:50 msgid "Description text that shows up below your Big Number" msgstr "" @@ -5604,7 +5710,7 @@ msgstr "" msgid "Dimensions" msgstr "" -#: superset/viz.py:2005 +#: superset/viz.py:1928 msgid "Directed Force Layout" msgstr "" @@ -5614,11 +5720,11 @@ msgstr "" msgid "Directional" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:202 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 msgid "Disable SQL Lab data preview queries" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:205 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 msgid "" "Disable data preview when fetching table metadata in SQL Lab. Useful to " "avoid browser performance issues when using databases with very wide " @@ -5657,7 +5763,6 @@ msgstr "" msgid "Display configuration" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:87 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:252 msgid "" "Display metrics side by side within each column, as opposed to each " @@ -5668,14 +5773,10 @@ msgstr "" msgid "Display row level total" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:39 msgid "Display settings" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:78 -msgid "Display total row/column" -msgstr "" - #: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:35 msgid "" "Displays connections between entities in a graph structure. Useful for " @@ -5695,7 +5796,7 @@ msgstr "" msgid "Distribution" msgstr "" -#: superset/viz.py:1801 +#: superset/viz.py:1717 msgid "Distribution - Bar Chart" msgstr "" @@ -5713,7 +5814,7 @@ msgstr "" msgid "Documentation" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:40 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 msgid "Domain" msgstr "" @@ -5726,18 +5827,18 @@ msgstr "" msgid "Dotted" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:480 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:482 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:292 msgid "Download" msgstr "" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:317 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:504 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:512 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:329 msgid "Download as image" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:264 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:262 msgid "Download to CSV" msgstr "" @@ -5789,20 +5890,20 @@ msgstr "" msgid "Draw split lines for minor y-axis ticks" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:181 -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:191 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 msgid "Drill by" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:172 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 msgid "Drill by is not available for this data point" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:170 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 msgid "Drill by is not yet supported for this chart type" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:154 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:420 #, python-format msgid "Drill by: %s" msgstr "" @@ -5831,7 +5932,7 @@ msgstr "" msgid "Drill to detail: %s" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:206 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:184 #, fuzzy msgid "Drop a column here or click" msgid_plural "Drop columns here or click" @@ -5839,7 +5940,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:335 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:330 #, fuzzy msgid "Drop a column/metric here or click" msgid_plural "Drop columns/metrics here or click" @@ -5847,52 +5948,24 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:248 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 msgid "Drop a temporal column here or click" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:216 -#, fuzzy -msgid "Drop column here" -msgid_plural "Drop columns here" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:340 -#, fuzzy -msgid "Drop column or metric here" -msgid_plural "Drop columns or metrics here" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndSelectLabel.tsx:83 -msgid "Drop columns here" -msgstr "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:402 -msgid "Drop columns or metrics here" -msgstr "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:401 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:405 msgid "Drop columns/metrics here or click" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 -msgid "Drop temporal column here" -msgstr "" - #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:32 msgid "Dual Line Chart" msgstr "" #: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 -#: superset-frontend/src/pages/DatasetList/index.tsx:472 +#: superset-frontend/src/pages/DatasetList/index.tsx:483 msgid "Duplicate" msgstr "" -#: superset/views/datasource/views.py:122 +#: superset/views/datasource/views.py:124 #, python-format msgid "Duplicate column name(s): %(columns)s" msgstr "" @@ -5917,7 +5990,7 @@ msgstr "" msgid "Duration" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:239 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:249 msgid "" "Duration (in seconds) of the caching timeout for charts of this database." " A timeout of 0 indicates that the cache never expires, and -1 bypasses " @@ -5944,26 +6017,26 @@ msgid "" "undefined." msgstr "" -#: superset/connectors/sqla/views.py:462 +#: superset/connectors/sqla/views.py:369 msgid "" "Duration (in seconds) of the caching timeout for this table. A timeout of" " 0 indicates that the cache never expires. Note this defaults to the " "database timeout if undefined." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:261 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:271 msgid "" "Duration (in seconds) of the metadata caching timeout for schemas of this" " database. If left unset, the cache never expires." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:282 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:292 msgid "" "Duration (in seconds) of the metadata caching timeout for tables of this " "database. If left unset, the cache never expires. " msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:50 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" msgstr "" @@ -5971,7 +6044,7 @@ msgstr "" msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:49 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 #: superset-frontend/src/explore/controls.jsx:89 msgid "Duration in ms (66000 => 1m 6s)" msgstr "" @@ -6010,7 +6083,7 @@ msgstr "" msgid "ECharts" msgstr "Grafy" -#: superset/reports/notifications/email.py:130 +#: superset/reports/notifications/email.py:133 msgid "EMAIL_REPORTS_CTA" msgstr "" @@ -6020,11 +6093,11 @@ msgstr "" msgid "END (EXCLUSIVE)" msgstr "" -#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:171 +#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 msgid "ERROR" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:700 +#: superset-frontend/src/views/CRUD/hooks.ts:704 #, python-format msgid "ERROR: %s" msgstr "" @@ -6055,8 +6128,9 @@ msgstr "" #: superset-frontend/src/pages/AlertReportList/index.tsx:385 #: superset-frontend/src/pages/ChartList/index.tsx:553 #: superset-frontend/src/pages/DashboardList/index.tsx:461 -#: superset-frontend/src/pages/DatabaseList/index.tsx:431 -#: superset-frontend/src/pages/DatasetList/index.tsx:452 +#: superset-frontend/src/pages/DatabaseList/index.tsx:442 +#: superset-frontend/src/pages/DatasetList/index.tsx:463 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:200 msgid "Edit" msgstr "" @@ -6084,7 +6158,7 @@ msgstr "" msgid "Edit Chart Properties" msgstr "" -#: superset/connectors/sqla/views.py:75 +#: superset/connectors/sqla/views.py:74 msgid "Edit Column" msgstr "" @@ -6096,7 +6170,7 @@ msgstr "" msgid "Edit Database" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:199 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:241 msgid "Edit Dataset " msgstr "" @@ -6104,7 +6178,7 @@ msgstr "" msgid "Edit Log" msgstr "" -#: superset/connectors/sqla/views.py:210 +#: superset/connectors/sqla/views.py:209 msgid "Edit Metric" msgstr "" @@ -6116,15 +6190,15 @@ msgstr "" msgid "Edit Report" msgstr "" -#: superset/connectors/sqla/views.py:293 -msgid "Edit Row level security filter" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +msgid "Edit Rule" msgstr "" #: superset/views/sql_lab/views.py:55 msgid "Edit Saved Query" msgstr "" -#: superset/connectors/sqla/views.py:387 +#: superset/connectors/sqla/views.py:294 msgid "Edit Table" msgstr "" @@ -6141,9 +6215,9 @@ msgstr "" msgid "Edit annotation layer properties" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:74 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:122 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:44 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:212 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:217 #: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:405 #, fuzzy msgid "Edit chart" @@ -6158,7 +6232,7 @@ msgstr "" msgid "Edit dashboard" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1700 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 msgid "Edit database" msgstr "" @@ -6168,7 +6242,7 @@ msgstr "" #: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:243 #: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:264 -#: superset-frontend/src/components/ReportModal/index.tsx:212 +#: superset-frontend/src/components/ReportModal/index.tsx:211 msgid "Edit email report" msgstr "" @@ -6193,7 +6267,7 @@ msgstr "" msgid "Edit template parameters" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:717 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:718 #: superset-frontend/src/dashboard/components/DashboardGrid.jsx:242 #, fuzzy msgid "Edit the dashboard" @@ -6219,8 +6293,9 @@ msgstr "" msgid "Either the database is spelled incorrectly or does not exist." msgstr "" -#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:654 -#: superset/db_engine_specs/redshift.py:67 +#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:681 +#: superset/db_engine_specs/redshift.py:71 +#: superset/db_engine_specs/starrocks.py:122 #, python-format msgid "Either the username \"%(username)s\" or the password is incorrect." msgstr "" @@ -6287,11 +6362,11 @@ msgstr "" msgid "Empty column" msgstr "" -#: superset/charts/data/api.py:363 +#: superset/charts/data/api.py:366 msgid "Empty query result" msgstr "" -#: superset/connectors/sqla/models.py:1243 superset/models/helpers.py:1433 +#: superset/models/helpers.py:1508 msgid "Empty query?" msgstr "" @@ -6304,11 +6379,11 @@ msgstr "" msgid "Enable 'Allow file uploads to database' in any database's settings" msgstr "" -#: superset/connectors/sqla/views.py:482 +#: superset/connectors/sqla/views.py:389 msgid "Enable Filter Select" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:139 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 msgid "Enable cross-filtering" msgstr "" @@ -6343,7 +6418,7 @@ msgstr "" msgid "Enable node dragging" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:170 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 msgid "Enable query cost estimation" msgstr "" @@ -6352,7 +6427,7 @@ msgstr "" msgid "Enable server side pagination of results (experimental feature)" msgstr "" -#: superset/viz.py:2567 +#: superset/viz.py:2514 msgid "" "Encountered invalid NULL spatial entry," " please consider filtering those " @@ -6399,18 +6474,18 @@ msgstr "" msgid "Engine \"%(engine)s\" cannot be configured through parameters." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:476 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:512 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:516 msgid "Engine Parameters" msgstr "" -#: superset/databases/schemas.py:298 +#: superset/databases/schemas.py:302 msgid "" "Engine spec \"InvalidEngine\" does not support being configured via " "individual parameters." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:366 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:376 msgid "Enter CA_BUNDLE" msgstr "" @@ -6419,7 +6494,7 @@ msgstr "" msgid "Enter Primary Credentials" msgstr "Nahrať Excel" -#: superset/views/database/forms.py:151 +#: superset/views/database/forms.py:161 msgid "Enter a delimiter for this data" msgstr "" @@ -6431,14 +6506,14 @@ msgstr "" msgid "Enter a new title for the tab" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:234 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:255 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:276 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:244 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:286 msgid "Enter duration in seconds" msgstr "" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:265 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:367 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:369 msgid "Enter fullscreen" msgstr "" @@ -6465,7 +6540,7 @@ msgstr "" msgid "Equal to (=)" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:140 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:182 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:139 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:298 #: superset-frontend/src/explore/components/EmbedCodeContent.jsx:57 @@ -6474,22 +6549,22 @@ msgstr "" msgid "Error" msgstr "" -#: superset/connectors/sqla/models.py:1650 superset/models/helpers.py:1843 +#: superset/models/helpers.py:1919 #, python-format msgid "Error in jinja expression in HAVING clause: %(msg)s" msgstr "" -#: superset/connectors/sqla/models.py:1145 +#: superset/connectors/sqla/models.py:1105 superset/models/helpers.py:835 #, python-format msgid "Error in jinja expression in RLS filters: %(msg)s" msgstr "" -#: superset/connectors/sqla/models.py:1633 superset/models/helpers.py:1831 +#: superset/models/helpers.py:1901 #, python-format msgid "Error in jinja expression in WHERE clause: %(msg)s" msgstr "" -#: superset/connectors/sqla/models.py:826 +#: superset/connectors/sqla/models.py:789 #, python-format msgid "Error in jinja expression in fetch values predicate: %(msg)s" msgstr "" @@ -6513,7 +6588,7 @@ msgstr "" msgid "Error while fetching data: %s" msgstr "" -#: superset/connectors/sqla/models.py:953 superset/models/helpers.py:1029 +#: superset/connectors/sqla/models.py:914 superset/models/helpers.py:1072 #, python-format msgid "Error while rendering virtual dataset query: %(msg)s" msgstr "" @@ -6523,12 +6598,12 @@ msgstr "" msgid "Error: %(error)s" msgstr "" -#: superset/views/core.py:820 superset/views/core.py:1918 +#: superset/views/core.py:842 superset/views/core.py:1955 #, python-format msgid "Error: %(msg)s" msgstr "" -#: superset/views/core.py:817 +#: superset/views/core.py:839 msgid "Error: permalink state not found" msgstr "" @@ -6540,7 +6615,7 @@ msgstr "" msgid "Estimate selected query cost" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:621 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:615 msgid "Estimate the cost before running a query" msgstr "" @@ -6561,7 +6636,7 @@ msgstr "" msgid "Event definition" msgstr "" -#: superset/viz.py:2933 +#: superset/viz.py:2927 msgid "Event flow" msgstr "" @@ -6608,18 +6683,18 @@ msgstr "" msgid "Examples" msgstr "" -#: superset/views/database/forms.py:278 +#: superset/views/database/forms.py:288 msgid "Excel File" msgstr "" -#: superset/views/database/views.py:424 +#: superset/views/database/views.py:427 #, python-format msgid "" "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" " database \"%(db_name)s\"" msgstr "" -#: superset/views/database/views.py:303 +#: superset/views/database/views.py:306 msgid "Excel to Database configuration" msgstr "" @@ -6627,6 +6702,10 @@ msgstr "" msgid "Exclude selected values" msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:405 +msgid "Excluded roles" +msgstr "" + #: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 msgid "Executed SQL" msgstr "" @@ -6643,16 +6722,16 @@ msgstr "" msgid "Execution log" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:411 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:419 msgid "Existing dataset" msgstr "" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:264 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:366 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:368 msgid "Exit fullscreen" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 msgid "Expand" msgstr "" @@ -6664,11 +6743,11 @@ msgstr "" msgid "Expand data panel" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:209 +#: superset-frontend/src/components/Table/index.tsx:213 msgid "Expand row" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:197 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 msgid "Expand table preview" msgstr "" @@ -6685,6 +6764,7 @@ msgid "" msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:38 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:37 @@ -6699,11 +6779,11 @@ msgid "Experimental" msgstr "" #: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 -#: superset/views/core.py:987 +#: superset/views/core.py:1009 msgid "Explore" msgstr "" -#: superset/views/core.py:985 +#: superset/views/core.py:1007 #, python-format msgid "Explore - %(table)s" msgstr "" @@ -6719,9 +6799,9 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:854 #: superset-frontend/src/pages/DashboardList/index.tsx:445 #: superset-frontend/src/pages/DashboardList/index.tsx:720 -#: superset-frontend/src/pages/DatabaseList/index.tsx:415 -#: superset-frontend/src/pages/DatasetList/index.tsx:434 -#: superset-frontend/src/pages/DatasetList/index.tsx:759 +#: superset-frontend/src/pages/DatabaseList/index.tsx:426 +#: superset-frontend/src/pages/DatasetList/index.tsx:445 +#: superset-frontend/src/pages/DatasetList/index.tsx:781 #: superset-frontend/src/pages/SavedQueryList/index.tsx:550 #: superset/views/dashboard/views.py:65 msgid "Export" @@ -6735,7 +6815,7 @@ msgstr "" msgid "Export query" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:485 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:487 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:316 msgid "Export to .CSV" msgstr "" @@ -6744,19 +6824,20 @@ msgstr "" msgid "Export to .JSON" msgstr "" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:335 msgid "Export to Excel" msgstr "" -#: superset/views/base.py:606 +#: superset/views/base.py:607 msgid "Export to YAML" msgstr "" -#: superset/views/base.py:606 +#: superset/views/base.py:607 msgid "Export to YAML?" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:496 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:498 msgid "Export to full .CSV" msgstr "" @@ -6768,12 +6849,12 @@ msgstr "" msgid "Export to pivoted .CSV" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:88 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 msgid "Expose database in SQL Lab" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:354 -#: superset-frontend/src/pages/DatabaseList/index.tsx:460 +#: superset-frontend/src/pages/DatabaseList/index.tsx:365 +#: superset-frontend/src/pages/DatabaseList/index.tsx:471 #: superset/views/database/mixins.py:183 msgid "Expose in SQL Lab" msgstr "" @@ -6782,12 +6863,12 @@ msgstr "" msgid "Expose this DB in SQL Lab" msgstr "" -#: superset/connectors/sqla/views.py:161 +#: superset/connectors/sqla/views.py:160 msgid "Expression" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:908 -#: superset/connectors/sqla/views.py:257 superset/connectors/sqla/views.py:494 +#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:401 #: superset/views/database/mixins.py:193 msgid "Extra" msgstr "" @@ -6852,8 +6933,8 @@ msgstr "" msgid "Factor to multiply the metric by" msgstr "" -#: superset/views/database/forms.py:167 superset/views/database/forms.py:324 -#: superset/views/database/forms.py:455 +#: superset/views/database/forms.py:177 superset/views/database/forms.py:334 +#: superset/views/database/forms.py:465 msgid "Fail" msgstr "" @@ -6864,16 +6945,16 @@ msgid "Failed" msgstr "" #: superset-frontend/src/SqlLab/actions/sqlLab.js:210 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:346 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:350 msgid "Failed at retrieving results" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:500 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:496 #, python-format msgid "Failed at stopping query. %s" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:343 +#: superset-frontend/src/components/ReportModal/index.tsx:342 msgid "Failed to create report" msgstr "" @@ -6882,23 +6963,36 @@ msgstr "" msgid "Failed to execute %(query)s" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:97 +msgid "Failed to generate chart edit URL" +msgstr "" + #: superset-frontend/src/pages/Chart/index.tsx:57 msgid "Failed to load chart data" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:402 #: superset-frontend/src/pages/Chart/index.tsx:69 msgid "Failed to load chart data." msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 +msgid "Failed to load dimensions for drill by" +msgstr "" + #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 msgid "Failed to retrieve advanced type" msgstr "" +#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +msgid "Failed to save cross-filter scoping" +msgstr "" + #: superset/errors.py:143 superset/sqllab/sql_json_executer.py:189 msgid "Failed to start remote query on a worker." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:342 +#: superset-frontend/src/components/ReportModal/index.tsx:341 msgid "Failed to update report" msgstr "" @@ -6922,15 +7016,15 @@ msgstr "" msgid "February" msgstr "" -#: superset/connectors/sqla/views.py:488 +#: superset/connectors/sqla/views.py:395 msgid "Fetch Values Predicate" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:538 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:531 msgid "Fetch data preview" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:352 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:354 #, python-format msgid "Fetched %s" msgstr "" @@ -6994,11 +7088,16 @@ msgid "Filter Settings" msgstr "" #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:825 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:362 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:373 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:134 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:255 msgid "Filter Type" msgstr "" #: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:28 -msgid "Filter box" +msgid "Filter box (deprecated)" msgstr "" #: superset-frontend/src/dashboard/components/SliceAdder.jsx:351 @@ -7018,7 +7117,7 @@ msgstr "" msgid "Filter has default value" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:197 +#: superset-frontend/src/components/Table/index.tsx:201 msgid "Filter menu" msgstr "" @@ -7034,7 +7133,7 @@ msgstr "" msgid "Filter only displays values relevant to selections made in other filters." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:289 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:283 msgid "Filter results" msgstr "" @@ -7070,7 +7169,7 @@ msgstr "" msgid "Filter value is required" msgstr "" -#: superset/connectors/sqla/models.py:1549 superset/models/helpers.py:1754 +#: superset/models/helpers.py:1815 msgid "Filter value list cannot be empty" msgstr "" @@ -7078,7 +7177,7 @@ msgstr "" msgid "Filter your charts" msgstr "" -#: superset/connectors/sqla/views.py:159 +#: superset/connectors/sqla/views.py:158 msgid "Filterable" msgstr "" @@ -7086,7 +7185,7 @@ msgstr "" #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 #: superset-frontend/src/explore/controls.jsx:446 #: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:35 -#: superset/viz.py:2142 +#: superset/viz.py:2071 msgid "Filters" msgstr "" @@ -7112,7 +7211,7 @@ msgstr "" msgid "Filters out of scope (%d)" msgstr "" -#: superset/connectors/sqla/views.py:342 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:435 msgid "" "Filters with the same group key will be ORed together within the group, " "while different filter groups will be ANDed together. Undefined group " @@ -7124,9 +7223,9 @@ msgid "" " 'Europe')." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1077 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1125 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1857 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1132 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1180 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 msgid "Finish" msgstr "" @@ -7183,7 +7282,7 @@ msgstr "" msgid "Font size for the smallest value in the list" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:173 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 msgid "" "For Bigquery, Presto and Postgres, shows a button to compute cost before " "running a query." @@ -7199,7 +7298,7 @@ msgid "" "function, refer to the" msgstr "" -#: superset/connectors/sqla/views.py:336 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:408 msgid "" "For regular filters, these are the roles this filter will be applied to. " "For base filters, these are the roles that the filter DOES NOT apply to, " @@ -7210,26 +7309,26 @@ msgstr "" msgid "Force" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:141 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 msgid "" "Force all tables and views to be created in this schema when clicking " "CTAS or CVAS in SQL Lab." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:84 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 msgid "Force date format" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:381 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 msgid "Force refresh" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:292 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:291 msgid "Force refresh schema list" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:317 +#: superset-frontend/src/components/TableSelector/index.tsx:307 msgid "Force refresh table list" msgstr "" @@ -7245,11 +7344,11 @@ msgstr "" msgid "Forest Green" msgstr "" -#: superset/explore/commands/get.py:87 superset/views/core.py:834 +#: superset/explore/commands/get.py:87 superset/views/core.py:856 msgid "Form data not found in cache, reverting to chart metadata." msgstr "" -#: superset/explore/commands/get.py:95 superset/views/core.py:840 +#: superset/explore/commands/get.py:95 superset/views/core.py:862 msgid "Form data not found in cache, reverting to dataset metadata." msgstr "" @@ -7259,7 +7358,7 @@ msgstr "" msgid "Formattable" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:255 +#: superset-frontend/src/components/ReportModal/index.tsx:254 msgid "Formatted CSV attached in email" msgstr "" @@ -7310,7 +7409,7 @@ msgstr "" msgid "Friday" msgstr "" -#: superset/utils/date_parser.py:267 superset/viz.py:392 +#: superset/utils/date_parser.py:267 superset/viz.py:403 msgid "From date cannot be larger than to date" msgstr "" @@ -7380,7 +7479,7 @@ msgstr "" msgid "Get the specify date for the holiday" msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:713 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:714 msgid "Go to the edit mode to configure the dashboard and add charts" msgstr "" @@ -7433,20 +7532,22 @@ msgstr "" msgid "Group By filter plugin" msgstr "" -#: superset/viz.py:927 -msgid "Group By' and 'Columns' can't overlap" -msgstr "" - #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:84 msgid "Group By, Metrics or Percentage Metrics must have a value" msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:433 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:139 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:267 +msgid "Group Key" +msgstr "" + #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 msgid "Group by" msgstr "" -#: superset/connectors/sqla/views.py:158 +#: superset/connectors/sqla/views.py:157 msgid "Groupable" msgstr "" @@ -7472,12 +7573,12 @@ msgstr "" msgid "Header" msgstr "" -#: superset/views/database/forms.py:244 superset/views/database/forms.py:331 +#: superset/views/database/forms.py:254 superset/views/database/forms.py:341 msgid "Header Row" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 -#: superset/viz.py:2249 +#: superset/viz.py:2183 msgid "Heatmap" msgstr "" @@ -7501,7 +7602,7 @@ msgstr "" msgid "Hide Line" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:394 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:396 msgid "Hide chart description" msgstr "" @@ -7527,12 +7628,12 @@ msgid "Hierarchy" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 -#: superset/viz.py:1743 +#: superset/viz.py:1656 msgid "Histogram" msgstr "" #: superset-frontend/src/pages/Home/index.tsx:333 -#: superset/initialization/__init__.py:233 +#: superset/initialization/__init__.py:235 msgid "Home" msgstr "Domov" @@ -7540,7 +7641,7 @@ msgstr "Domov" msgid "Horizon Chart" msgstr "" -#: superset/viz.py:2310 +#: superset/viz.py:2246 msgid "Horizon Charts" msgstr "" @@ -7548,7 +7649,7 @@ msgstr "" msgid "Horizontal" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:166 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 msgid "Horizontal (Top)" msgstr "" @@ -7560,12 +7661,12 @@ msgstr "" msgid "Host" msgstr "" -#: superset/db_engine_specs/base.py:1839 -#: superset/db_engine_specs/clickhouse.py:203 +#: superset/db_engine_specs/base.py:1872 +#: superset/db_engine_specs/clickhouse.py:204 msgid "Hostname or IP address" msgstr "" -#: superset/db_engine_specs/base.py:104 +#: superset/db_engine_specs/base.py:105 msgid "Hour" msgstr "" @@ -7622,7 +7723,7 @@ msgstr "" msgid "Id of root node of the tree." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:391 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:401 msgid "" "If Presto or Trino, all the queries in SQL Lab are going to be executed " "as the currently logged on user who must have permission to run them. If " @@ -7640,7 +7741,7 @@ msgid "" "hive.server2.proxy.user property." msgstr "" -#: superset/views/database/forms.py:164 +#: superset/views/database/forms.py:174 msgid "If Table Already Exists" msgstr "" @@ -7648,7 +7749,7 @@ msgstr "" msgid "If a metric is specified, sorting will be done based on the metric value" msgstr "" -#: superset/views/database/forms.py:238 +#: superset/views/database/forms.py:248 msgid "" "If duplicate columns are not overridden, they will be presented as \"X.1," " X.2 ...X.x\"" @@ -7658,7 +7759,7 @@ msgstr "" msgid "If selected, please set the schemas allowed for csv upload in Extra." msgstr "" -#: superset/views/database/forms.py:318 superset/views/database/forms.py:449 +#: superset/views/database/forms.py:328 superset/views/database/forms.py:459 msgid "" "If table exists do one of the following: Fail (do nothing), Replace (drop" " and recreate table) or Append (insert data)." @@ -7676,7 +7777,7 @@ msgstr "" msgid "Ignore time" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:252 +#: superset-frontend/src/components/ReportModal/index.tsx:251 msgid "Image (PNG) embedded in email" msgstr "" @@ -7684,7 +7785,7 @@ msgstr "" msgid "Image download failed, please refresh and try again." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:386 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:396 msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" msgstr "" @@ -7705,11 +7806,11 @@ msgstr "" msgid "Import Dashboard(s)" msgstr "" -#: superset/initialization/__init__.py:337 +#: superset/initialization/__init__.py:331 msgid "Import Dashboards" msgstr "Importovať dashboard" -#: superset/connectors/sqla/views.py:386 +#: superset/connectors/sqla/views.py:293 msgid "Import a table definition" msgstr "" @@ -7734,15 +7835,15 @@ msgstr "" msgid "Import database failed for an unknown reason" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1912 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1969 msgid "Import database from file" msgstr "" -#: superset/datasets/commands/exceptions.py:185 +#: superset/datasets/commands/exceptions.py:202 msgid "Import dataset failed for an unknown reason" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:620 +#: superset-frontend/src/pages/DatasetList/index.tsx:631 msgid "Import datasets" msgstr "" @@ -7768,7 +7869,7 @@ msgstr "" msgid "Include Series" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:295 +#: superset-frontend/src/components/ReportModal/index.tsx:294 msgid "Include a description that will be sent with your report" msgstr "" @@ -7785,7 +7886,7 @@ msgstr "" msgid "Index" msgstr "" -#: superset/views/database/forms.py:210 superset/views/database/forms.py:341 +#: superset/views/database/forms.py:220 superset/views/database/forms.py:351 msgid "Index Column" msgstr "" @@ -7824,11 +7925,23 @@ msgstr "" msgid "Intensity" msgstr "" -#: superset/views/database/forms.py:190 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:85 +msgid "Intensity Radius" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:86 +msgid "Intensity Radius is the radius at which the weight is distributed" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:69 +msgid "Intensity is the value multiplied by the weight to obtain the final weight" +msgstr "" + +#: superset/views/database/forms.py:200 msgid "Interpret Datetime Format Automatically" msgstr "" -#: superset/views/database/forms.py:191 +#: superset/views/database/forms.py:201 msgid "Interpret the datetime format automatically" msgstr "" @@ -7857,6 +7970,16 @@ msgstr "" msgid "Intervals" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:68 +msgid "Intesity" +msgstr "" + +#: superset/db_engine_specs/ocient.py:274 +msgid "" +"Invalid Connection String: Expecting String of the form " +"'ocient://user:pass@host:port/database'." +msgstr "" + #: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 msgid "Invalid JSON" msgstr "" @@ -7870,7 +7993,7 @@ msgstr "" msgid "Invalid certificate" msgstr "" -#: superset/views/core.py:1422 +#: superset/views/core.py:1463 msgid "" "Invalid connection string, a valid string usually follows:\n" "'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" @@ -7899,15 +8022,15 @@ msgstr "" msgid "Invalid cumulative operator: %(operator)s" msgstr "" -#: superset/connectors/sqla/views.py:181 superset/datasets/schemas.py:44 +#: superset/connectors/sqla/views.py:180 superset/datasets/schemas.py:44 msgid "Invalid date/timestamp format" msgstr "" -#: superset/viz.py:2160 +#: superset/viz.py:2091 msgid "Invalid filter configuration, please select a column" msgstr "" -#: superset/connectors/sqla/models.py:1623 superset/models/helpers.py:1820 +#: superset/models/helpers.py:1891 #, python-format msgid "Invalid filter operation type: %(op)s" msgstr "" @@ -7932,7 +8055,7 @@ msgstr "" msgid "Invalid longitude/latitude" msgstr "" -#: superset/utils/core.py:1364 +#: superset/utils/core.py:1373 #, python-format msgid "Invalid metric object: %(metric)s" msgstr "" @@ -7951,7 +8074,12 @@ msgstr "" msgid "Invalid permalink key" msgstr "" -#: superset/common/query_actions.py:228 +#: superset/db_engine_specs/ocient.py:292 +#, python-format +msgid "Invalid reference to column: \"%(column)s\"" +msgstr "" + +#: superset/common/query_actions.py:227 #, python-format msgid "Invalid result type: %(result_type)s" msgstr "" @@ -7961,7 +8089,7 @@ msgstr "" msgid "Invalid rolling_type: %(type)s" msgstr "" -#: superset/viz.py:2530 +#: superset/viz.py:2474 #, python-format msgid "Invalid spatial point encountered: %s" msgstr "" @@ -7971,7 +8099,7 @@ msgstr "" msgid "Invalid state." msgstr "" -#: superset/reports/commands/create.py:144 +#: superset/reports/commands/create.py:142 #, python-format msgid "Invalid tab ids: %s(tab_ids)" msgstr "" @@ -7980,7 +8108,7 @@ msgstr "" msgid "Inverse selection" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:205 +#: superset-frontend/src/components/Table/index.tsx:209 msgid "Invert current page" msgstr "" @@ -7998,7 +8126,7 @@ msgstr "" msgid "Is false" msgstr "" -#: superset/views/base_api.py:143 +#: superset/views/base_api.py:149 msgid "Is favorite" msgstr "" @@ -8015,13 +8143,13 @@ msgstr "" msgid "Is null" msgstr "" -#: superset/views/base_api.py:171 +#: superset/views/base_api.py:177 msgid "Is tagged" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:362 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 -#: superset/connectors/sqla/views.py:162 +#: superset/connectors/sqla/views.py:161 msgid "Is temporal" msgstr "" @@ -8064,7 +8192,7 @@ msgstr "" msgid "JSON metadata is invalid!" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 msgid "" "JSON string containing additional connection configuration. This is used " "to provide connection information for systems like Hive, Presto and " @@ -8100,24 +8228,24 @@ msgstr "" msgid "Jinja templating" msgstr "" -#: superset/views/database/forms.py:233 +#: superset/views/database/forms.py:243 msgid "Json list of the column names that should be read" msgstr "" -#: superset/views/database/forms.py:464 +#: superset/views/database/forms.py:474 msgid "" "Json list of the column names that should be read. If not None, only " "these columns will be read from the file." msgstr "" -#: superset/views/database/forms.py:203 +#: superset/views/database/forms.py:213 msgid "" "Json list of the values that should be treated as null. Examples: [\"\"] " "for empty strings, [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: " "Hive database supports only a single value" msgstr "" -#: superset/views/database/forms.py:394 +#: superset/views/database/forms.py:404 msgid "" "Json list of the values that should be treated as null. Examples: [\"\"]," " [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " @@ -8164,8 +8292,8 @@ msgstr "" msgid "LIMIT" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:80 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:109 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:93 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:122 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:251 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:255 @@ -8242,7 +8370,7 @@ msgstr "" msgid "Last" msgstr "" -#: superset/connectors/sqla/views.py:481 superset/views/database/mixins.py:190 +#: superset/connectors/sqla/views.py:388 superset/views/database/mixins.py:190 msgid "Last Changed" msgstr "" @@ -8269,7 +8397,7 @@ msgstr "" #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:177 #: superset-frontend/src/pages/ChartList/index.tsx:445 #: superset-frontend/src/pages/CssTemplateList/index.tsx:158 -#: superset-frontend/src/pages/DatabaseList/index.tsx:380 +#: superset-frontend/src/pages/DatabaseList/index.tsx:391 msgid "Last modified" msgstr "" @@ -8327,7 +8455,7 @@ msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:28 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:90 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:371 msgid "Left" msgstr "" @@ -8359,7 +8487,7 @@ msgstr "" msgid "Left to Right" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:144 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 msgid "Left value" msgstr "" @@ -8372,7 +8500,6 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:33 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 #: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 #: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 @@ -8388,15 +8515,16 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:35 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 #: superset-frontend/src/visualizations/TimeTable/index.ts:35 msgid "Legacy" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:154 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:289 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:115 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:99 msgid "Legend" msgstr "" @@ -8404,7 +8532,7 @@ msgstr "" msgid "Legend Format" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:95 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:92 msgid "Legend Orientation" msgstr "" @@ -8412,7 +8540,7 @@ msgstr "" msgid "Legend Position" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:72 msgid "Legend type" msgstr "" @@ -8550,7 +8678,7 @@ msgid "Lines encoding" msgstr "" #: superset-frontend/src/pages/SavedQueryList/index.tsx:226 -#: superset-frontend/src/views/CRUD/hooks.ts:673 +#: superset-frontend/src/views/CRUD/hooks.ts:677 msgid "Link Copied!" msgstr "" @@ -8578,7 +8706,7 @@ msgstr "" msgid "List of values to mark with triangles" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:187 +#: superset-frontend/src/components/TableSelector/index.tsx:184 msgid "List updated" msgstr "" @@ -8607,8 +8735,8 @@ msgid "Loading" msgstr "" #: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:495 -#: superset-frontend/src/components/Select/Select.tsx:470 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:496 +#: superset-frontend/src/components/Select/Select.tsx:477 #: superset-frontend/src/components/Select/utils.tsx:152 #: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 #: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 @@ -8636,13 +8764,13 @@ msgstr "" msgid "Logarithmic scale on primary y-axis" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:432 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:449 msgid "Logarithmic scale on secondary y-axis" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:396 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:420 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:429 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:437 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:446 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:222 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:225 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:210 @@ -8711,27 +8839,27 @@ msgstr "" msgid "MON" msgstr "" -#: superset/connectors/sqla/views.py:490 +#: superset/connectors/sqla/views.py:397 msgid "Main Datetime Column" msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:283 +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:292 msgid "" "Make sure that the controls are configured properly and the datasource " "contains data for the selected time range" msgstr "" -#: superset/views/core.py:1717 +#: superset/views/core.py:1752 msgid "" "Malformed request. slice_id or table_name and db_name arguments are " "expected" msgstr "" -#: superset/initialization/__init__.py:277 -#: superset/initialization/__init__.py:289 -#: superset/initialization/__init__.py:341 -#: superset/initialization/__init__.py:412 -#: superset/initialization/__init__.py:425 +#: superset/initialization/__init__.py:279 +#: superset/initialization/__init__.py:291 +#: superset/initialization/__init__.py:335 +#: superset/initialization/__init__.py:406 +#: superset/initialization/__init__.py:419 msgid "Manage" msgstr "Spravovať" @@ -8749,7 +8877,7 @@ msgstr "" msgid "Mandatory" msgstr "" -#: superset/views/database/forms.py:350 +#: superset/views/database/forms.py:360 msgid "Mangle Duplicate Columns" msgstr "" @@ -8768,6 +8896,8 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:67 @@ -8790,7 +8920,7 @@ msgstr "" msgid "MapBox" msgstr "" -#: superset/viz.py:2322 +#: superset/viz.py:2258 msgid "Mapbox" msgstr "" @@ -8798,11 +8928,11 @@ msgstr "" msgid "March" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:50 msgid "Margin" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:348 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:354 msgid "Mark a column as temporal in \"Edit datasource\" modal" msgstr "" @@ -8881,7 +9011,7 @@ msgid "" "this insures that the circle respects this maximum radius." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:232 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 msgid "Maximum value" msgstr "" @@ -8931,7 +9061,7 @@ msgstr "" msgid "Menu actions trigger" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:237 +#: superset-frontend/src/components/ReportModal/index.tsx:236 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 msgid "Message content" msgstr "" @@ -8940,8 +9070,8 @@ msgstr "" msgid "Metadata" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:450 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:454 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:486 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:490 msgid "Metadata Parameters" msgstr "" @@ -8966,13 +9096,12 @@ msgstr "" #: superset-frontend/src/explore/controls.jsx:167 #: superset-frontend/src/explore/controls.jsx:168 #: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 -#: superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:249 msgid "Metric" msgstr "" -#: superset/connectors/sqla/models.py:1264 -#: superset/connectors/sqla/models.py:1847 superset/models/helpers.py:1192 -#: superset/models/helpers.py:1448 +#: superset/connectors/sqla/models.py:1133 superset/models/helpers.py:1236 +#: superset/models/helpers.py:1529 #, python-format msgid "Metric '%(metric)s' does not exist" msgstr "" @@ -9007,7 +9136,7 @@ msgstr "" msgid "Metric for node values" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:106 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:119 msgid "Metric name" msgstr "" @@ -9032,6 +9161,7 @@ msgstr "" msgid "Metric to sort the results by" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:139 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:78 msgid "Metric used as a weight for the grid's coloring" msgstr "" @@ -9070,7 +9200,7 @@ msgstr "" #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 #: superset-frontend/src/explore/controls.jsx:152 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 -#: superset/connectors/sqla/views.py:207 +#: superset/connectors/sqla/views.py:206 msgid "Metrics" msgstr "" @@ -9150,11 +9280,11 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:85 #: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:152 msgid "Minimum threshold in percentage points for showing labels." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:231 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:69 msgid "Minimum value" msgstr "" @@ -9176,7 +9306,7 @@ msgstr "" msgid "Minor Split Line" msgstr "" -#: superset/db_engine_specs/base.py:99 +#: superset/db_engine_specs/base.py:100 msgid "Minute" msgstr "" @@ -9206,12 +9336,13 @@ msgstr "" #: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:278 #: superset-frontend/src/pages/AlertReportList/index.tsx:335 #: superset-frontend/src/pages/DashboardList/index.tsx:347 -#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:375 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:152 #: superset-frontend/src/pages/SavedQueryList/index.tsx:369 #: superset-frontend/src/pages/Tags/index.tsx:118 -#: superset/connectors/sqla/views.py:367 superset/connectors/sqla/views.py:495 -#: superset/views/dashboard/mixin.py:85 superset/views/dashboard/views.py:186 -#: superset/views/database/mixins.py:199 superset/views/sql_lab/views.py:85 +#: superset/connectors/sqla/views.py:402 superset/views/dashboard/mixin.py:85 +#: superset/views/dashboard/views.py:186 superset/views/database/mixins.py:199 +#: superset/views/sql_lab/views.py:85 msgid "Modified" msgstr "" @@ -9226,7 +9357,7 @@ msgstr "" #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 #: superset-frontend/src/pages/ChartList/index.tsx:431 #: superset-frontend/src/pages/DashboardList/index.tsx:326 -#: superset-frontend/src/pages/DatasetList/index.tsx:374 +#: superset-frontend/src/pages/DatasetList/index.tsx:385 msgid "Modified by" msgstr "" @@ -9239,7 +9370,7 @@ msgstr "" msgid "Monday" msgstr "" -#: superset/db_engine_specs/base.py:108 +#: superset/db_engine_specs/base.py:109 msgid "Month" msgstr "" @@ -9303,7 +9434,7 @@ msgstr "" msgid "Multiple Line Charts" msgstr "" -#: superset/views/database/views.py:465 +#: superset/views/database/views.py:468 msgid "" "Multiple file extensions are not allowed for columnar uploads. Please " "make sure all files are of the same extension." @@ -9335,11 +9466,11 @@ msgstr "" msgid "Must choose either a chart or a dashboard" msgstr "" -#: superset/viz.py:2346 +#: superset/viz.py:2283 msgid "Must have a [Group By] column to have 'count' as the [Label]" msgstr "" -#: superset/viz.py:1752 +#: superset/viz.py:1666 msgid "Must have at least one numeric column specified" msgstr "" @@ -9347,7 +9478,7 @@ msgstr "" msgid "Must provide credentials for the SSH Tunnel" msgstr "" -#: superset/connectors/sqla/models.py:1582 superset/models/helpers.py:1780 +#: superset/models/helpers.py:1848 msgid "Must specify a value for filters with comparison operators" msgstr "" @@ -9386,19 +9517,21 @@ msgid "NUMERIC" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:149 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:782 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:212 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:148 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:789 #: superset-frontend/src/pages/AlertReportList/index.tsx:272 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 #: superset-frontend/src/pages/CssTemplateList/index.tsx:131 -#: superset-frontend/src/pages/DatasetList/index.tsx:334 +#: superset-frontend/src/pages/DatasetList/index.tsx:345 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:130 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:248 #: superset-frontend/src/pages/SavedQueryList/index.tsx:283 #: superset-frontend/src/pages/Tags/index.tsx:109 -#: superset/connectors/sqla/views.py:361 superset/views/chart/mixin.py:85 +#: superset/views/chart/mixin.py:85 msgid "Name" msgstr "" @@ -9411,11 +9544,11 @@ msgstr "" msgid "Name must be unique" msgstr "" -#: superset/views/database/forms.py:406 +#: superset/views/database/forms.py:416 msgid "Name of table to be created from columnar data." msgstr "" -#: superset/views/database/forms.py:270 +#: superset/views/database/forms.py:280 msgid "Name of table to be created from excel data." msgstr "" @@ -9435,7 +9568,7 @@ msgstr "" msgid "Name of the source nodes" msgstr "" -#: superset/connectors/sqla/views.py:428 +#: superset/connectors/sqla/views.py:335 msgid "Name of the table that exists in the source database" msgstr "" @@ -9490,17 +9623,17 @@ msgstr "" msgid "New header" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:329 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:331 msgid "New tab" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:268 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:310 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:278 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:320 msgid "New tab (Ctrl + q)" msgstr "" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:269 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:311 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:279 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:321 msgid "New tab (Ctrl + t)" msgstr "" @@ -9522,9 +9655,9 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:708 #: superset-frontend/src/pages/DashboardList/index.tsx:507 #: superset-frontend/src/pages/DashboardList/index.tsx:589 -#: superset-frontend/src/pages/DatabaseList/index.tsx:468 -#: superset-frontend/src/pages/DatabaseList/index.tsx:488 -#: superset-frontend/src/pages/DatasetList/index.tsx:573 +#: superset-frontend/src/pages/DatabaseList/index.tsx:479 +#: superset-frontend/src/pages/DatabaseList/index.tsx:499 +#: superset-frontend/src/pages/DatasetList/index.tsx:584 msgid "No" msgstr "" @@ -9546,6 +9679,11 @@ msgstr "" msgid "No Results" msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:235 +#, fuzzy +msgid "No Rules yet" +msgstr "Grafy" + #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:116 #, fuzzy msgid "No annotation layers" @@ -9581,7 +9719,7 @@ msgstr "Grafy" msgid "No columns" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:242 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 msgid "No columns found" msgstr "" @@ -9593,7 +9731,7 @@ msgstr "" msgid "No compatible datasets found" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 msgid "No compatible schema found" msgstr "" @@ -9606,14 +9744,14 @@ msgstr "" msgid "No dashboards yet" msgstr "Importovať dashboard" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:133 -#: superset-frontend/src/components/Table/index.tsx:203 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 +#: superset-frontend/src/components/Table/index.tsx:207 #: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:225 #: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 msgid "No data" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 msgid "No data after filtering or data is NULL for the latest time record" msgstr "" @@ -9633,10 +9771,6 @@ msgstr "" msgid "No description available." msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:174 -msgid "No dimensions available for drill by" -msgstr "" - #: superset-frontend/src/profile/components/Favorites.tsx:61 msgid "No favorite charts yet, go click on stars!" msgstr "" @@ -9655,7 +9789,7 @@ msgstr "" msgid "No filter is selected." msgstr "" -#: superset-frontend/src/components/Table/index.tsx:200 +#: superset-frontend/src/components/Table/index.tsx:204 msgid "No filters" msgstr "" @@ -9694,7 +9828,7 @@ msgid "No results" msgstr "" #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:425 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:428 msgid "No results found" msgstr "" @@ -9702,7 +9836,7 @@ msgstr "" msgid "No results match your filter criteria" msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:280 +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:289 #: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 msgid "No results were returned for this query" msgstr "" @@ -9722,8 +9856,8 @@ msgstr "" msgid "No samples were returned for this dataset" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:293 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:311 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:299 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:317 #, fuzzy msgid "No saved expressions found" msgstr "Uložené dotazy" @@ -9750,9 +9884,9 @@ msgstr "" msgid "No table columns" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:292 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:310 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:345 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:298 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:316 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:351 msgid "No temporal columns found" msgstr "" @@ -9781,7 +9915,7 @@ msgid "Node size" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:45 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:187 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:270 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:286 @@ -9791,12 +9925,12 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:402 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:182 #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:124 #: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 #: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:196 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:576 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:48 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:51 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:138 #: superset-frontend/src/explore/controlPanels/sections.tsx:134 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:127 @@ -9877,7 +10011,7 @@ msgstr "" msgid "Now" msgstr "" -#: superset/views/database/forms.py:201 +#: superset/views/database/forms.py:211 msgid "Null Values" msgstr "" @@ -9890,11 +10024,11 @@ msgstr "" msgid "Null or Empty" msgstr "" -#: superset/views/database/forms.py:392 +#: superset/views/database/forms.py:402 msgid "Null values" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:191 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 msgid "Number Format" msgstr "" @@ -9909,11 +10043,10 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:60 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:65 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:144 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:117 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:67 #: superset-frontend/plugins/legacy-plugin-chart-treemap/src/controlPanel.ts:67 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:97 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:137 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:276 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:137 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:113 @@ -9954,19 +10087,19 @@ msgstr "" msgid "Number of periods to ratio against" msgstr "" -#: superset/views/database/forms.py:255 +#: superset/views/database/forms.py:265 msgid "Number of rows of file to read" msgstr "" -#: superset/views/database/forms.py:361 +#: superset/views/database/forms.py:371 msgid "Number of rows of file to read." msgstr "" -#: superset/views/database/forms.py:261 +#: superset/views/database/forms.py:271 msgid "Number of rows to skip at start of file" msgstr "" -#: superset/views/database/forms.py:355 +#: superset/views/database/forms.py:365 msgid "Number of rows to skip at start of file." msgstr "" @@ -9990,15 +10123,15 @@ msgstr "" msgid "OCT" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:184 -#: superset-frontend/src/components/Modal/Modal.tsx:231 -#: superset-frontend/src/components/Table/index.tsx:198 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 +#: superset-frontend/src/components/Modal/Modal.tsx:238 +#: superset-frontend/src/components/Table/index.tsx:202 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:865 msgid "OK" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:267 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1379 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1434 msgid "OVERWRITE" msgstr "" @@ -10011,7 +10144,7 @@ msgstr "" msgid "Offline" msgstr "" -#: superset/connectors/sqla/views.py:485 +#: superset/connectors/sqla/views.py:392 msgid "Offset" msgstr "" @@ -10052,27 +10185,27 @@ msgstr "" msgid "One or many metrics to display" msgstr "" -#: superset/datasets/commands/exceptions.py:90 +#: superset/datasets/commands/exceptions.py:107 msgid "One or more columns already exist" msgstr "" -#: superset/datasets/commands/exceptions.py:80 +#: superset/datasets/commands/exceptions.py:97 msgid "One or more columns are duplicated" msgstr "" -#: superset/datasets/commands/exceptions.py:70 +#: superset/datasets/commands/exceptions.py:87 msgid "One or more columns do not exist" msgstr "" -#: superset/datasets/commands/exceptions.py:119 +#: superset/datasets/commands/exceptions.py:136 msgid "One or more metrics already exist" msgstr "" -#: superset/datasets/commands/exceptions.py:109 +#: superset/datasets/commands/exceptions.py:126 msgid "One or more metrics are duplicated" msgstr "" -#: superset/datasets/commands/exceptions.py:99 +#: superset/datasets/commands/exceptions.py:116 msgid "One or more metrics do not exist" msgstr "" @@ -10088,7 +10221,7 @@ msgstr "" msgid "One or more parameters specified in the query are missing." msgstr "" -#: superset/views/core.py:1992 +#: superset/views/core.py:2029 msgid "" "One or more required fields are missing in the request. Please try again," " and if the problem persists contact your administrator." @@ -10098,23 +10231,23 @@ msgstr "" msgid "One ore more annotation layers failed loading." msgstr "" -#: superset/sql_lab.py:230 +#: superset/sql_lab.py:228 msgid "Only SELECT statements are allowed against this database." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:133 msgid "Only Total" msgstr "" -#: superset/connectors/sqla/utils.py:123 +#: superset/connectors/sqla/utils.py:122 msgid "Only `SELECT` statements are allowed" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:29 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 msgid "Only applies when \"Label Type\" is not set to a percentage." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:26 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 msgid "Only applies when \"Label Type\" is set to show values." msgstr "" @@ -10122,18 +10255,18 @@ msgstr "" msgid "Only selected panels will be affected by this filter" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:139 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 msgid "" "Only show the total value on the stacked chart, and not show on the " "selected category" msgstr "" -#: superset/connectors/sqla/utils.py:132 +#: superset/connectors/sqla/utils.py:131 msgid "Only single queries supported" msgstr "" -#: superset/views/database/forms.py:119 superset/views/database/forms.py:288 -#: superset/views/database/forms.py:426 +#: superset/views/database/forms.py:119 superset/views/database/forms.py:298 +#: superset/views/database/forms.py:436 #, python-format msgid "Only the following file extensions are allowed: %(allowed_extensions)s" msgstr "" @@ -10181,7 +10314,7 @@ msgstr "" msgid "Open query in SQL Lab" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:298 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 #: superset/views/database/mixins.py:104 msgid "" "Operate the database in asynchronous mode, meaning that the queries are " @@ -10190,8 +10323,8 @@ msgid "" " Refer to the installation docs for more information." msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:126 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:130 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 msgid "Operator" msgstr "" @@ -10200,7 +10333,7 @@ msgstr "" msgid "Operator undefined for aggregator: %(name)s" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:381 msgid "" "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" " certain database engines." @@ -10222,13 +10355,8 @@ msgstr "" msgid "Optional warning about use of this metric" msgstr "" -#: superset/connectors/sqla/views.py:328 -msgid "Optionally add a detailed description" -msgstr "" - #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:39 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:68 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:108 #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:74 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:45 #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:70 @@ -10241,7 +10369,7 @@ msgstr "" msgid "Options" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:918 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:973 msgid "Or choose from a list of other databases we support:" msgstr "" @@ -10259,7 +10387,7 @@ msgstr "" msgid "Ordering" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:83 msgid "Orientation" msgstr "" @@ -10267,7 +10395,7 @@ msgstr "" msgid "Orientation of bar chart" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:158 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 msgid "Orientation of filter bar" msgstr "" @@ -10283,7 +10411,7 @@ msgstr "" msgid "Original table column order" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 #: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 #: superset-frontend/src/explore/controls.jsx:79 @@ -10295,10 +10423,10 @@ msgid "Orthogonal" msgstr "" #: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:126 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:938 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:479 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:993 #: superset-frontend/src/features/home/EmptyState.tsx:112 -#: superset/views/database/forms.py:155 superset/views/database/forms.py:161 +#: superset/views/database/forms.py:165 superset/views/database/forms.py:171 msgid "Other" msgstr "" @@ -10352,15 +10480,15 @@ msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:426 #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:493 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:459 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:463 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:464 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:148 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 msgid "Overwrite" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:249 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:192 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:247 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 msgid "Overwrite & Explore" msgstr "" @@ -10369,11 +10497,11 @@ msgstr "" msgid "Overwrite Dashboard [%s]" msgstr "" -#: superset/views/database/forms.py:237 +#: superset/views/database/forms.py:247 msgid "Overwrite Duplicate Columns" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:404 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:412 msgid "Overwrite existing" msgstr "" @@ -10388,11 +10516,11 @@ msgstr "" #: superset-frontend/src/pages/AlertReportList/index.tsx:452 #: superset-frontend/src/pages/ChartList/index.tsx:608 #: superset-frontend/src/pages/DashboardList/index.tsx:523 -#: superset-frontend/src/pages/DatasetList/index.tsx:500 +#: superset-frontend/src/pages/DatasetList/index.tsx:511 msgid "Owner" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:235 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:93 #: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:408 @@ -10407,14 +10535,14 @@ msgstr "" #: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 #: superset-frontend/src/pages/AlertReportList/index.tsx:324 #: superset-frontend/src/pages/DashboardList/index.tsx:369 -#: superset-frontend/src/pages/DatasetList/index.tsx:389 -#: superset/connectors/sqla/views.py:489 superset/views/chart/mixin.py:82 +#: superset-frontend/src/pages/DatasetList/index.tsx:400 +#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:82 #: superset/views/dashboard/mixin.py:81 msgid "Owners" msgstr "" -#: superset/commands/exceptions.py:108 -#: superset/datasets/commands/exceptions.py:144 +#: superset/commands/exceptions.py:112 +#: superset/datasets/commands/exceptions.py:161 msgid "Owners are invalid" msgstr "" @@ -10456,7 +10584,7 @@ msgid "Pandas resample rule" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 -#: superset/viz.py:2219 +#: superset/viz.py:2152 msgid "Parallel Coordinates" msgstr "" @@ -10481,7 +10609,7 @@ msgstr "" msgid "Parent" msgstr "" -#: superset/views/database/forms.py:366 +#: superset/views/database/forms.py:376 msgid "Parse Dates" msgstr "" @@ -10499,7 +10627,7 @@ msgstr "" msgid "Partition Chart" msgstr "" -#: superset/viz.py:3071 +#: superset/viz.py:3069 msgid "Partition Diagram" msgstr "" @@ -10519,7 +10647,7 @@ msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:154 #: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 -#: superset/db_engine_specs/base.py:1838 +#: superset/db_engine_specs/base.py:1870 #: superset/db_engine_specs/clickhouse.py:202 msgid "Password" msgstr "" @@ -10570,7 +10698,7 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:81 #: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:148 msgid "Percentage threshold" msgstr "" @@ -10588,7 +10716,7 @@ msgstr "" msgid "Percentages" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:219 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:229 msgid "Performance" msgstr "" @@ -10623,8 +10751,8 @@ msgid "Person or group that has certified this metric" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1114 -#: superset-frontend/src/pages/DatasetList/index.tsx:342 -#: superset-frontend/src/pages/DatasetList/index.tsx:560 +#: superset-frontend/src/pages/DatasetList/index.tsx:353 +#: superset-frontend/src/pages/DatasetList/index.tsx:571 msgid "Physical" msgstr "" @@ -10632,7 +10760,7 @@ msgstr "" msgid "Physical (table or view)" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:273 +#: superset-frontend/src/pages/DatasetList/index.tsx:284 msgid "Physical dataset" msgstr "" @@ -10641,27 +10769,27 @@ msgstr "" msgid "Pick a dimension from which categorical colors are defined" msgstr "" -#: superset/viz.py:769 +#: superset/viz.py:795 msgid "Pick a granularity in the Time section or uncheck 'Include Time'" msgstr "" -#: superset/viz.py:1605 +#: superset/viz.py:1514 msgid "Pick a metric for left axis!" msgstr "" -#: superset/viz.py:1607 +#: superset/viz.py:1516 msgid "Pick a metric for right axis!" msgstr "" -#: superset/viz.py:1195 +#: superset/viz.py:1090 msgid "Pick a metric for x, y and size" msgstr "" -#: superset/viz.py:1234 +#: superset/viz.py:1131 msgid "Pick a metric to display" msgstr "" -#: superset/viz.py:1260 superset/viz.py:1294 +#: superset/viz.py:1159 superset/viz.py:1195 msgid "Pick a metric!" msgstr "" @@ -10677,7 +10805,7 @@ msgstr "" msgid "Pick a set of deck.gl charts to layer on top of one another" msgstr "" -#: superset/viz.py:1390 superset/viz.py:1653 +#: superset/viz.py:1294 superset/viz.py:1564 msgid "Pick a time granularity for your time series" msgstr "" @@ -10685,15 +10813,15 @@ msgstr "" msgid "Pick a title for you annotation." msgstr "" -#: superset/viz.py:1815 +#: superset/viz.py:1732 msgid "Pick at least one field for [Series]" msgstr "" -#: superset/viz.py:857 superset/viz.py:1813 +#: superset/viz.py:887 superset/viz.py:1730 msgid "Pick at least one metric" msgstr "" -#: superset/viz.py:1943 +#: superset/viz.py:1863 msgid "Pick exactly 2 columns as [Source / Target]" msgstr "" @@ -10720,19 +10848,10 @@ msgstr "" msgid "Pin" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:45 -msgid "Pivot Options" -msgstr "" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 -#: superset/viz.py:894 msgid "Pivot Table" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:32 -msgid "Pivot Table (legacy)" -msgstr "" - #: superset/utils/pandas_postprocessing/pivot.py:70 msgid "Pivot operation must include at least one aggregate" msgstr "" @@ -10753,7 +10872,7 @@ msgstr "" msgid "Pixels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 msgid "Plain" msgstr "" @@ -10765,7 +10884,7 @@ msgstr "" msgid "Please apply filter changes" msgstr "" -#: superset/sqllab/query_render.py:120 +#: superset/sqllab/query_render.py:118 msgid "" "Please check your query and confirm that all template parameters are " "surround by double braces, for example, \"{{ ds }}\". Then, try running " @@ -10773,8 +10892,8 @@ msgid "" msgstr "" #: superset/db_engine_specs/athena.py:56 -#: superset/db_engine_specs/bigquery.py:210 -#: superset/db_engine_specs/postgres.py:161 +#: superset/db_engine_specs/bigquery.py:211 +#: superset/db_engine_specs/postgres.py:160 #: superset/db_engine_specs/snowflake.py:117 #, python-format msgid "" @@ -10782,7 +10901,7 @@ msgid "" "\"%(syntax_error)s\". Then, try running your query again." msgstr "" -#: superset/db_engine_specs/gsheets.py:80 superset/db_engine_specs/mysql.py:170 +#: superset/db_engine_specs/gsheets.py:82 superset/db_engine_specs/mysql.py:170 #, python-format msgid "" "Please check your query for syntax errors near \"%(server_error)s\". " @@ -10796,19 +10915,11 @@ msgid "" "your query again." msgstr "" -#: superset/viz.py:911 -msgid "Please choose at least one 'Group by' field" -msgstr "" - -#: superset/viz.py:3229 +#: superset/viz.py:3234 msgid "Please choose at least one groupby" msgstr "" -#: superset/viz.py:923 -msgid "Please choose at least one metric" -msgstr "" - -#: superset/viz.py:1610 +#: superset/viz.py:1519 msgid "Please choose different metrics on left and right axis" msgstr "" @@ -10824,18 +10935,20 @@ msgstr "" #: superset-frontend/src/pages/DashboardList/index.tsx:415 #: superset-frontend/src/pages/DashboardList/index.tsx:701 #: superset-frontend/src/pages/DashboardList/index.tsx:756 -#: superset-frontend/src/pages/DatasetList/index.tsx:740 +#: superset-frontend/src/pages/DatasetList/index.tsx:762 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:170 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:304 #: superset-frontend/src/pages/SavedQueryList/index.tsx:533 #: superset-frontend/src/pages/Tags/index.tsx:141 #: superset-frontend/src/pages/Tags/index.tsx:281 msgid "Please confirm" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:442 +#: superset-frontend/src/dashboard/actions/dashboardState.js:447 msgid "Please confirm the overwrite values." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:624 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:641 msgid "Please enter a SQLAlchemy URI to test" msgstr "" @@ -10843,11 +10956,11 @@ msgstr "" msgid "Please filter set name" msgstr "" -#: superset/db_engine_specs/postgres.py:125 +#: superset/db_engine_specs/postgres.py:124 msgid "Please re-enter the password." msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:435 +#: superset-frontend/src/views/CRUD/hooks.ts:439 msgid "Please re-export your file and try importing again" msgstr "" @@ -10876,7 +10989,7 @@ msgstr "" msgid "Please select both a Dataset and a Chart type to proceed" msgstr "" -#: superset/viz.py:1193 +#: superset/viz.py:1088 msgid "Please use 3 different metric labels" msgstr "" @@ -10891,7 +11004,7 @@ msgid "" "multiple metrics across all of the samples or rows in the data." msgstr "" -#: superset/initialization/__init__.py:275 +#: superset/initialization/__init__.py:277 msgid "Plugins" msgstr "Pluginy" @@ -10983,13 +11096,17 @@ msgid "Port" msgstr "" #: superset/db_engine_specs/mssql.py:98 -#: superset/db_engine_specs/postgres.py:135 -#: superset/db_engine_specs/presto.py:672 -#: superset/db_engine_specs/redshift.py:77 +#: superset/db_engine_specs/postgres.py:134 +#: superset/db_engine_specs/presto.py:699 +#: superset/db_engine_specs/redshift.py:81 #, python-format msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." msgstr "" +#: superset/db_engine_specs/ocient.py:269 +msgid "Port out of range 0-65535" +msgstr "" + #: superset/views/dashboard/mixin.py:86 msgid "Position JSON" msgstr "" @@ -11026,7 +11143,7 @@ msgstr "" msgid "Pre-filter is required" msgstr "" -#: superset/connectors/sqla/views.py:440 +#: superset/connectors/sqla/views.py:347 msgid "" "Predicate applied when fetching distinct value to populate the filter " "control component. Supports jinja template syntax. Applies only when " @@ -11068,7 +11185,7 @@ msgstr "" msgid "Previous" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:346 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:348 msgid "Previous Line" msgstr "" @@ -11089,6 +11206,10 @@ msgstr "" msgid "Primary or secondary y-axis" msgstr "" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 +msgid "Primary y-axis Bounds" +msgstr "" + #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:387 msgid "Primary y-axis format" msgstr "" @@ -11105,7 +11226,7 @@ msgstr "" msgid "Private Key Password" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:269 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 msgid "Proceed" msgstr "" @@ -11184,11 +11305,11 @@ msgstr "" msgid "Python datetime string pattern" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1530 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1585 msgid "QUERY DATA IN SQL LAB" msgstr "" -#: superset/db_engine_specs/base.py:109 +#: superset/db_engine_specs/base.py:110 msgid "Quarter" msgstr "" @@ -11202,9 +11323,9 @@ msgstr "" msgid "Queries" msgstr "Uložené dotazy" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:51 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:43 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:53 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:30 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:33 #: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:90 @@ -11215,7 +11336,6 @@ msgstr "Uložené dotazy" #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:36 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:32 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:34 #: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:30 @@ -11226,6 +11346,7 @@ msgstr "Uložené dotazy" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:44 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:55 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:43 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:41 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:60 @@ -11239,7 +11360,7 @@ msgstr "Uložené dotazy" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:361 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:34 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:35 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:44 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:43 @@ -11255,7 +11376,7 @@ msgstr "Uložené dotazy" #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:152 #: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:30 #: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:26 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1479 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1471 #: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 #: superset-frontend/src/explore/controlPanels/sections.tsx:94 #: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:34 @@ -11267,7 +11388,7 @@ msgstr "Uložené dotazy" msgid "Query" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:361 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:363 #, python-format msgid "Query %s: %s" msgstr "" @@ -11282,11 +11403,11 @@ msgstr "" msgid "Query B" msgstr "" -#: superset/initialization/__init__.py:366 +#: superset/initialization/__init__.py:360 msgid "Query History" msgstr "História dotazov" -#: superset/commands/exceptions.py:138 +#: superset/commands/exceptions.py:142 msgid "Query does not exist" msgstr "" @@ -11300,7 +11421,7 @@ msgstr "" msgid "Query imported" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:465 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 msgid "Query in a new tab" msgstr "" @@ -11325,11 +11446,11 @@ msgstr "" msgid "Query preview" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:415 msgid "Query was stopped" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:498 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:494 msgid "Query was stopped." msgstr "" @@ -11342,6 +11463,14 @@ msgstr "" msgid "RGB Color" msgstr "" +#: superset/row_level_security/commands/exceptions.py:29 +msgid "RLS Rule could not be deleted." +msgstr "" + +#: superset/row_level_security/commands/exceptions.py:25 +msgid "RLS Rule not found." +msgstr "" + #: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:159 msgid "Radar" msgstr "" @@ -11475,7 +11604,7 @@ msgstr "" msgid "Rectangle" msgstr "" -#: superset/connectors/sqla/views.py:446 +#: superset/connectors/sqla/views.py:353 msgid "Redirects to this endpoint when clicking on the table from the table list" msgstr "" @@ -11503,7 +11632,7 @@ msgstr "" msgid "Referenced columns not available in DataFrame." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:549 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:542 msgid "Refetch results" msgstr "" @@ -11552,10 +11681,15 @@ msgstr "" msgid "Regex" msgstr "" -#: superset/connectors/sqla/views.py:329 +#: superset-frontend/src/features/rls/constants.ts:24 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:262 +msgid "Regular" +msgstr "" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:364 msgid "" "Regular filters add where clauses to queries if a user belongs to a role " -"referenced in the filter. Base filters apply filters to all queries " +"referenced in the filter, base filters apply filters to all queries " "except the roles defined in the filter, and can be used to define what " "users can see if no RLS filters within a filter group apply to them." msgstr "" @@ -11600,7 +11734,7 @@ msgstr "" msgid "Remove" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:164 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:194 msgid "Remove cross-filter" msgstr "" @@ -11633,8 +11767,8 @@ msgstr "" msgid "Rendering" msgstr "" -#: superset/views/database/forms.py:168 superset/views/database/forms.py:325 -#: superset/views/database/forms.py:456 +#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 +#: superset/views/database/forms.py:466 msgid "Replace" msgstr "" @@ -11648,12 +11782,11 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:593 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:163 msgid "Report" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:282 +#: superset-frontend/src/components/ReportModal/index.tsx:281 msgid "Report Name" msgstr "" @@ -11770,7 +11903,7 @@ msgid "Request Permissions" msgstr "" #: superset/charts/data/api.py:153 superset/charts/data/api.py:243 -#: superset/charts/data/api.py:309 +#: superset/charts/data/api.py:312 #, python-format msgid "Request is incorrect: %(error)s" msgstr "" @@ -11779,7 +11912,7 @@ msgstr "" msgid "Request is not JSON" msgstr "" -#: superset/views/datasource/views.py:75 +#: superset/views/datasource/views.py:77 msgid "Request missing data field." msgstr "" @@ -11787,14 +11920,14 @@ msgstr "" msgid "Request timed out" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:94 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:98 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:105 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:252 msgid "Required" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:342 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 msgid "Required control values have been removed" msgstr "" @@ -11815,11 +11948,11 @@ msgstr "" msgid "Resample operation requires DatetimeIndex" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:199 +#: superset-frontend/src/components/Table/index.tsx:203 msgid "Reset" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:293 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:280 msgid "Reset state" msgstr "" @@ -11842,14 +11975,15 @@ msgstr "" msgid "Results" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 #: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:212 #: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 #, python-format msgid "Results %s" msgstr "" -#: superset/sql_lab.py:410 superset/sqllab/commands/results.py:59 -#: superset/views/core.py:2133 +#: superset/sql_lab.py:402 superset/sqllab/commands/results.py:59 +#: superset/views/core.py:2169 msgid "Results backend is not configured." msgstr "" @@ -11875,12 +12009,12 @@ msgstr "" msgid "Rich Tooltip" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:178 msgid "Rich tooltip" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:372 msgid "Right" msgstr "" @@ -11905,7 +12039,7 @@ msgstr "" msgid "Right to Left" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:157 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 msgid "Right value" msgstr "" @@ -11917,7 +12051,7 @@ msgstr "" msgid "Role" msgstr "" -#: superset/views/core.py:407 +#: superset/views/core.py:408 #, python-format msgid "Role %(r)s was extended to provide the access to the datasource %(ds)s" msgstr "" @@ -11926,8 +12060,10 @@ msgstr "" #: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:389 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:551 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:406 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:415 #: superset-frontend/src/profile/components/Security.tsx:35 -#: superset/connectors/sqla/views.py:364 superset/views/dashboard/mixin.py:82 +#: superset/views/dashboard/mixin.py:82 msgid "Roles" msgstr "" @@ -11973,7 +12109,7 @@ msgstr "" msgid "Rolling window" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 #: superset/views/database/mixins.py:195 msgid "Root certificate" msgstr "" @@ -12003,32 +12139,30 @@ msgstr "" msgid "Round cap" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 #: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 msgid "Row" msgstr "" -#: superset/initialization/__init__.py:295 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:70 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:302 +#: superset/initialization/__init__.py:436 #, fuzzy msgid "Row Level Security" msgstr "Bezpečnosť na úrovni riadkov" -#: superset/views/database/forms.py:245 +#: superset/views/database/forms.py:255 msgid "" "Row containing the headers to use as column names (0 is first line of " "data). Leave empty if there is no header row" msgstr "" -#: superset/views/database/forms.py:332 +#: superset/views/database/forms.py:342 msgid "" "Row containing the headers to use as column names (0 is first line of " "data). Leave empty if there is no header row." msgstr "" -#: superset/connectors/sqla/views.py:290 -msgid "Row level security filter" -msgstr "" - #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:247 #: superset-frontend/src/explore/controls.jsx:340 msgid "Row limit" @@ -12051,7 +12185,7 @@ msgstr "" msgid "Rows subtotal position" msgstr "" -#: superset/views/database/forms.py:254 superset/views/database/forms.py:360 +#: superset/views/database/forms.py:264 superset/views/database/forms.py:370 msgid "Rows to Read" msgstr "" @@ -12061,10 +12195,20 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:504 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:233 #: superset-frontend/src/explore/controlPanels/sections.tsx:230 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:286 msgid "Rule" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:54 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:355 +#, fuzzy +msgid "Rule Name" +msgstr "Spravovať" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:253 +msgid "Rule added" +msgstr "" + +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:53 msgid "Run" msgstr "" @@ -12081,12 +12225,12 @@ msgstr "" msgid "Run in SQL Lab" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:309 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:319 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:311 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:321 msgid "Run query" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:131 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:132 msgid "Run query (Ctrl + Return)" msgstr "" @@ -12094,7 +12238,7 @@ msgstr "" msgid "Run query in a new tab" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:52 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:51 msgid "Run selection" msgstr "" @@ -12103,7 +12247,7 @@ msgstr "" msgid "Running" msgstr "" -#: superset/sql_lab.py:488 +#: superset/sql_lab.py:480 #, python-format msgid "Running statement %(statement_num)s out of %(statement_count)s" msgstr "" @@ -12125,8 +12269,8 @@ msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 #: superset-frontend/src/features/home/commonMenuData.ts:22 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:312 -#: superset/initialization/__init__.py:354 -#: superset/initialization/__init__.py:362 +#: superset/initialization/__init__.py:348 +#: superset/initialization/__init__.py:356 msgid "SQL" msgstr "" @@ -12134,17 +12278,17 @@ msgstr "" msgid "SQL Copied!" msgstr "" -#: superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:253 msgid "SQL Expression" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:73 -#: superset/initialization/__init__.py:349 -#: superset/initialization/__init__.py:371 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 +#: superset/initialization/__init__.py:343 +#: superset/initialization/__init__.py:365 msgid "SQL Lab" msgstr "" -#: superset/connectors/sqla/views.py:492 +#: superset/connectors/sqla/views.py:399 msgid "SQL Lab View" msgstr "" @@ -12260,7 +12404,7 @@ msgstr "" msgid "Samples" msgstr "" -#: superset/datasets/commands/exceptions.py:177 +#: superset/datasets/commands/exceptions.py:194 msgid "Samples for dataset could not be retrieved." msgstr "" @@ -12268,7 +12412,7 @@ msgstr "" msgid "Samples for datasource could not be retrieved." msgstr "" -#: superset/viz.py:1935 +#: superset/viz.py:1854 msgid "Sankey" msgstr "" @@ -12296,25 +12440,26 @@ msgstr "" #: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 #: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:199 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:214 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:246 -#: superset-frontend/src/components/ReportModal/index.tsx:229 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:288 +#: superset-frontend/src/components/ReportModal/index.tsx:228 #: superset-frontend/src/dashboard/components/Header/index.jsx:607 #: superset-frontend/src/dashboard/components/Header/index.jsx:609 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 #: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 #: superset-frontend/src/dashboard/components/SaveModal.tsx:211 #: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:794 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:156 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:492 #: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:268 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:458 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:462 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 -#: superset-frontend/src/explore/components/SaveModal.tsx:415 +#: superset-frontend/src/explore/components/SaveModal.tsx:449 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:418 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:424 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:147 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 @@ -12324,29 +12469,30 @@ msgstr "" #: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 #: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1695 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 #: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 msgid "Save" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:246 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:190 msgid "Save & Explore" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:396 +#: superset-frontend/src/explore/components/SaveModal.tsx:430 msgid "Save & go to dashboard" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:395 +#: superset-frontend/src/explore/components/SaveModal.tsx:429 msgid "Save & go to new dashboard" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:308 +#: superset-frontend/src/explore/components/SaveModal.tsx:343 msgid "Save (Overwrite)" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:199 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:306 msgid "Save as" msgstr "" @@ -12359,16 +12505,16 @@ msgstr "" msgid "Save as dataset" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:394 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:214 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:402 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 msgid "Save as new" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:412 +#: superset-frontend/src/explore/components/SaveModal.tsx:446 msgid "Save as new chart" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:316 +#: superset-frontend/src/explore/components/SaveModal.tsx:351 msgid "Save as..." msgstr "" @@ -12380,7 +12526,7 @@ msgstr "" msgid "Save changes" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:432 +#: superset-frontend/src/explore/components/SaveModal.tsx:466 msgid "Save chart" msgstr "" @@ -12388,7 +12534,7 @@ msgstr "" msgid "Save dashboard" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:106 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:105 #, fuzzy msgid "Save dataset" msgstr "Datasety" @@ -12397,11 +12543,11 @@ msgstr "Datasety" msgid "Save for this session" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:350 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:356 msgid "Save or Overwrite Dataset" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:202 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:201 msgid "Save query" msgstr "" @@ -12409,27 +12555,27 @@ msgstr "" msgid "Save the query to enable this feature" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:250 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:465 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:149 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 msgid "Save this query as a virtual dataset to continue exploring" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:414 +#: superset-frontend/src/explore/components/SaveModal.tsx:448 msgid "Save to new dashboard" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:265 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:271 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 msgid "Saved" msgstr "" -#: superset/initialization/__init__.py:358 +#: superset/initialization/__init__.py:352 msgid "Saved Queries" msgstr "Uložené dotazy" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:249 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:255 #, fuzzy msgid "Saved expressions" msgstr "Uložené dotazy" @@ -12489,12 +12635,12 @@ msgid "" msgstr "" #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 -#: superset-frontend/src/components/ReportModal/index.tsx:306 +#: superset-frontend/src/components/ReportModal/index.tsx:305 #: superset-frontend/src/pages/AlertReportList/index.tsx:276 msgid "Schedule" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:212 +#: superset-frontend/src/components/ReportModal/index.tsx:211 msgid "Schedule a new email report" msgstr "" @@ -12510,7 +12656,7 @@ msgstr "" msgid "Schedule settings" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:518 msgid "Schedule the query periodically" msgstr "" @@ -12528,31 +12674,31 @@ msgstr "" msgid "Scheduled task executor not found" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:299 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:221 -#: superset-frontend/src/pages/DatasetList/index.tsx:354 -#: superset-frontend/src/pages/DatasetList/index.tsx:536 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:298 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 +#: superset-frontend/src/pages/DatasetList/index.tsx:365 +#: superset-frontend/src/pages/DatasetList/index.tsx:547 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:250 #: superset-frontend/src/pages/SavedQueryList/index.tsx:297 #: superset-frontend/src/pages/SavedQueryList/index.tsx:469 -#: superset/connectors/sqla/views.py:483 superset/views/database/forms.py:144 -#: superset/views/database/forms.py:311 superset/views/database/forms.py:442 +#: superset/connectors/sqla/views.py:390 superset/views/database/forms.py:154 +#: superset/views/database/forms.py:321 superset/views/database/forms.py:452 msgid "Schema" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:247 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:257 msgid "Schema cache timeout" msgstr "" -#: superset/views/core.py:1164 +#: superset/views/core.py:1186 msgid "Schema undefined" msgstr "" -#: superset/connectors/sqla/views.py:429 +#: superset/connectors/sqla/views.py:336 msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:419 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:429 msgid "Schemas allowed for File upload" msgstr "" @@ -12564,7 +12710,7 @@ msgstr "" msgid "Scoping" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 msgid "Scroll" msgstr "" @@ -12580,15 +12726,15 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:724 #: superset-frontend/src/pages/CssTemplateList/index.tsx:293 #: superset-frontend/src/pages/DashboardList/index.tsx:516 -#: superset-frontend/src/pages/DatabaseList/index.tsx:492 -#: superset-frontend/src/pages/DatasetList/index.tsx:577 +#: superset-frontend/src/pages/DatabaseList/index.tsx:503 +#: superset-frontend/src/pages/DatasetList/index.tsx:588 #: superset-frontend/src/pages/SavedQueryList/index.tsx:494 #: superset-frontend/src/pages/Tags/index.tsx:204 #: superset/templates/appbuilder/general/widgets/search.html:40 msgid "Search" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:294 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 msgid "Search / Filter" msgstr "" @@ -12612,11 +12758,11 @@ msgstr "" msgid "Search by query text" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:207 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 msgid "Search columns" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:202 +#: superset-frontend/src/components/Table/index.tsx:206 msgid "Search in filters" msgstr "" @@ -12628,7 +12774,7 @@ msgstr "" msgid "Search..." msgstr "" -#: superset/db_engine_specs/base.py:96 +#: superset/db_engine_specs/base.py:97 msgid "Second" msgstr "" @@ -12642,10 +12788,14 @@ msgid "Secondary Metric" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:408 +msgid "Secondary y-axis Bounds" +msgstr "" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:425 msgid "Secondary y-axis format" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:417 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:434 msgid "Secondary y-axis title" msgstr "" @@ -12658,15 +12808,15 @@ msgstr "" msgid "Secure Extra" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:336 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:341 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:346 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 msgid "Secure extra" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:329 -#: superset/initialization/__init__.py:297 -#: superset/initialization/__init__.py:395 -#: superset/initialization/__init__.py:433 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:339 +#: superset/initialization/__init__.py:389 +#: superset/initialization/__init__.py:427 +#: superset/initialization/__init__.py:438 msgid "Security" msgstr "Bezpečnosť" @@ -12689,25 +12839,25 @@ msgstr "" msgid "See more" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:412 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:405 #, fuzzy msgid "See query details" msgstr "Uložené dotazy" -#: superset-frontend/src/components/TableSelector/index.tsx:288 +#: superset-frontend/src/components/TableSelector/index.tsx:277 msgid "See table schema" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:363 +#: superset-frontend/src/explore/components/SaveModal.tsx:398 #: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 msgid "Select" msgstr "" #: superset-frontend/src/components/AsyncSelect/index.jsx:41 #: superset-frontend/src/components/Select/AsyncSelect.tsx:123 -#: superset-frontend/src/components/Select/Select.tsx:103 +#: superset-frontend/src/components/Select/Select.tsx:104 #: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 -#: superset-frontend/src/explore/components/controls/SelectControl.jsx:230 +#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 msgid "Select ..." msgstr "" @@ -12719,11 +12869,11 @@ msgstr "" msgid "Select Viz Type" msgstr "" -#: superset/views/database/forms.py:415 +#: superset/views/database/forms.py:425 msgid "Select a Columnar file to be uploaded to a database." msgstr "" -#: superset/views/database/forms.py:279 +#: superset/views/database/forms.py:289 msgid "Select a Excel file to be uploaded to a database." msgstr "" @@ -12731,7 +12881,7 @@ msgstr "" msgid "Select a column" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:357 +#: superset-frontend/src/explore/components/SaveModal.tsx:392 #, fuzzy msgid "Select a dashboard" msgstr "" @@ -12752,7 +12902,7 @@ msgstr "" msgid "Select a database to upload the file to" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:744 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:738 msgid "Select a database to write a query" msgstr "" @@ -12764,7 +12914,7 @@ msgstr "" msgid "Select a file to be uploaded to the database" msgstr "" -#: superset/views/database/forms.py:145 +#: superset/views/database/forms.py:155 msgid "Select a schema if the database supports this" msgstr "" @@ -12776,11 +12926,11 @@ msgstr "" msgid "Select aggregate options" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:207 +#: superset-frontend/src/components/Table/index.tsx:211 msgid "Select all data" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:201 +#: superset-frontend/src/components/Table/index.tsx:205 msgid "Select all items" msgstr "" @@ -12788,6 +12938,11 @@ msgstr "" msgid "Select any columns for metadata inspection" msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +#, fuzzy +msgid "Select chart" +msgstr "Grafy" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:45 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:103 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:138 @@ -12798,13 +12953,13 @@ msgstr "" msgid "Select color scheme" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:208 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 msgid "Select column" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:204 +#: superset-frontend/src/components/Table/index.tsx:208 msgid "Select current page" msgstr "" @@ -12812,8 +12967,8 @@ msgstr "" msgid "Select database & schema" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:272 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:280 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:271 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:279 msgid "Select database or type to search databases" msgstr "" @@ -12821,7 +12976,7 @@ msgstr "" msgid "Select database table" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1791 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1847 msgid "" "Select databases require additional fields to be completed in the " "Advanced tab to successfully connect the database. Learn what " @@ -12858,7 +13013,7 @@ msgstr "" msgid "Select or type a value" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:410 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:418 msgid "Select or type dataset name" msgstr "" @@ -12870,8 +13025,8 @@ msgstr "" msgid "Select saved metrics" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:297 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:304 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:296 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 msgid "Select schema or type to search schemas" msgstr "" @@ -12879,7 +13034,7 @@ msgstr "" msgid "Select scheme" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:304 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:307 msgid "Select start and end date" msgstr "" @@ -12887,8 +13042,8 @@ msgstr "" msgid "Select subject" msgstr "" +#: superset-frontend/src/components/TableSelector/index.tsx:284 #: superset-frontend/src/components/TableSelector/index.tsx:295 -#: superset-frontend/src/components/TableSelector/index.tsx:306 msgid "Select table or type to search tables" msgstr "" @@ -12896,6 +13051,23 @@ msgstr "" msgid "Select the Annotation Layer you would like to use." msgstr "" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +msgid "" +"Select the charts to which you want to apply cross-filters in this " +"dashboard. Deselecting a chart will exclude it from being filtered when " +"applying cross-filters from any chart on the dashboard. You can select " +"\"All charts\" to apply cross-filters to all charts that use the same " +"dataset or contain the same column name in the dashboard." +msgstr "" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +msgid "" +"Select the charts to which you want to apply cross-filters when " +"interacting with this chart. You can select \"All charts\" to apply " +"filters to all charts that use the same dataset or contain the same " +"column name in the dashboard." +msgstr "" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:392 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:37 msgid "Select the geojson column" @@ -12941,7 +13113,7 @@ msgstr "" msgid "Sequential" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 msgid "Series" msgstr "" @@ -12957,7 +13129,7 @@ msgstr "" msgid "Series Limit Sort Descending" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:255 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:246 #, fuzzy msgid "Series Order" msgstr "Uložené dotazy" @@ -13030,13 +13202,13 @@ msgid "Settings for time series" msgstr "" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:325 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:464 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:467 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 #: superset-frontend/src/features/home/SavedQueries.tsx:211 msgid "Share" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:469 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:472 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:343 msgid "Share chart by email" msgstr "" @@ -13045,7 +13217,7 @@ msgstr "" msgid "Share permalink by email" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1429 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1421 msgid "Shared query" msgstr "" @@ -13054,7 +13226,7 @@ msgstr "" msgid "Shared query fields" msgstr "Uložené dotazy" -#: superset/views/database/forms.py:298 +#: superset/views/database/forms.py:308 msgid "Sheet Name" msgstr "" @@ -13104,7 +13276,7 @@ msgstr "" msgid "Show Chart" msgstr "" -#: superset/connectors/sqla/views.py:73 +#: superset/connectors/sqla/views.py:72 msgid "Show Column" msgstr "" @@ -13138,11 +13310,11 @@ msgstr "" msgid "Show Markers" msgstr "" -#: superset/connectors/sqla/views.py:208 +#: superset/connectors/sqla/views.py:207 msgid "Show Metric" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:178 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 msgid "Show Metric Names" msgstr "" @@ -13150,15 +13322,11 @@ msgstr "" msgid "Show Range Filter" msgstr "" -#: superset/connectors/sqla/views.py:291 -msgid "Show Row level security filter" -msgstr "" - #: superset/views/sql_lab/views.py:53 msgid "Show Saved Query" msgstr "" -#: superset/connectors/sqla/views.py:385 +#: superset/connectors/sqla/views.py:292 msgid "Show Table" msgstr "" @@ -13179,11 +13347,11 @@ msgstr "" msgid "Show Upper Labels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:110 msgid "Show Value" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:164 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:315 #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:184 msgid "Show Values" @@ -13216,7 +13384,7 @@ msgstr "" msgid "Show cell bars" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:395 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 msgid "Show chart description" msgstr "" @@ -13251,7 +13419,7 @@ msgstr "" msgid "Show labels when the node has children." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:39 msgid "Show legend" msgstr "" @@ -13287,7 +13455,7 @@ msgstr "" msgid "Show rows total" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 msgid "Show series values on the chart" msgstr "" @@ -13314,7 +13482,6 @@ msgid "" " apply to the result." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:76 #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:365 msgid "Show totals" @@ -13359,7 +13526,7 @@ msgstr "" msgid "Showing %s of %s" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:184 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 msgid "Shows a list of all series available at that point in time" msgstr "" @@ -13379,7 +13546,7 @@ msgstr "" msgid "Significance Level" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:341 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 @@ -13428,23 +13595,23 @@ msgstr "" msgid "Sizes of vehicles" msgstr "" -#: superset/views/database/forms.py:177 +#: superset/views/database/forms.py:187 msgid "Skip Blank Lines" msgstr "" -#: superset/views/database/forms.py:174 +#: superset/views/database/forms.py:184 msgid "Skip Initial Space" msgstr "" -#: superset/views/database/forms.py:260 superset/views/database/forms.py:354 +#: superset/views/database/forms.py:270 superset/views/database/forms.py:364 msgid "Skip Rows" msgstr "" -#: superset/views/database/forms.py:178 +#: superset/views/database/forms.py:188 msgid "Skip blank lines rather than interpreting them as Not A Number values" msgstr "" -#: superset/views/database/forms.py:174 +#: superset/views/database/forms.py:184 msgid "Skip spaces after delimiter" msgstr "" @@ -13480,7 +13647,7 @@ msgstr "" msgid "Solid" msgstr "" -#: superset/commands/exceptions.py:115 +#: superset/commands/exceptions.py:119 msgid "Some roles do not exist" msgstr "" @@ -13488,7 +13655,7 @@ msgstr "" msgid "Something went wrong." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:864 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:919 #, python-format msgid "Sorry there was an error fetching database information: %s" msgstr "" @@ -13506,7 +13673,7 @@ msgstr "" msgid "Sorry, an error occurred" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:357 +#: superset-frontend/src/dashboard/actions/dashboardState.js:359 msgid "Sorry, an unknown error occurred" msgstr "" @@ -13535,14 +13702,14 @@ msgstr "" msgid "Sorry, there was an error saving this %s: %s" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:360 +#: superset-frontend/src/dashboard/actions/dashboardState.js:362 #, python-format msgid "Sorry, there was an error saving this dashboard: %s" msgstr "" #: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 #: superset-frontend/src/pages/SavedQueryList/index.tsx:229 -#: superset-frontend/src/views/CRUD/hooks.ts:676 +#: superset-frontend/src/views/CRUD/hooks.ts:680 msgid "Sorry, your browser does not support copying." msgstr "" @@ -13552,7 +13719,7 @@ msgstr "" #: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 #: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 -#: superset-frontend/src/components/Table/index.tsx:208 +#: superset-frontend/src/components/Table/index.tsx:212 msgid "Sort" msgstr "" @@ -13571,11 +13738,11 @@ msgstr "" msgid "Sort Metric" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:247 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:238 msgid "Sort Series Ascending" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:227 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:224 #, fuzzy msgid "Sort Series By" msgstr "Uložené dotazy" @@ -13651,7 +13818,7 @@ msgstr "" msgid "Sort rows by" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:250 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:241 msgid "Sort series in ascending order" msgstr "" @@ -13682,6 +13849,7 @@ msgstr "" msgid "Sparkline" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:978 msgid "Spatial" msgstr "" @@ -13690,23 +13858,23 @@ msgstr "" msgid "Specific Date/Time" msgstr "" -#: superset/views/database/forms.py:312 superset/views/database/forms.py:443 +#: superset/views/database/forms.py:322 superset/views/database/forms.py:453 msgid "Specify a schema (if database flavor supports this)." msgstr "" -#: superset/views/database/forms.py:351 +#: superset/views/database/forms.py:361 msgid "Specify duplicate columns as \"X.0, X.1\"." msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:711 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:705 msgid "Specify name to CREATE TABLE AS schema in: public" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:710 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:704 msgid "Specify name to CREATE VIEW AS schema in: public" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:515 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:551 msgid "" "Specify the database version. This should be used with Presto in order to" " enable query cost estimation." @@ -13728,7 +13896,7 @@ msgstr "" msgid "Square miles" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 msgid "Stack" msgstr "" @@ -13742,7 +13910,7 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:161 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:115 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:128 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:125 msgid "Stack series on top of each other" msgstr "" @@ -13762,7 +13930,7 @@ msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:124 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:121 #: superset-frontend/src/explore/fixtures.tsx:58 msgid "Stacked Style" msgstr "" @@ -13830,7 +13998,7 @@ msgstr "" msgid "State" msgstr "" -#: superset/sql_lab.py:511 +#: superset/sql_lab.py:503 #, python-format msgid "Statement %(statement_num)s out of %(statement_count)s" msgstr "" @@ -13880,20 +14048,20 @@ msgid "" "irregular intervals." msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:47 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:46 #: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 msgid "Stop" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:337 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:339 msgid "Stop query" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:116 msgid "Stop running (Ctrl + e)" msgstr "" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:114 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 msgid "Stop running (Ctrl + x)" msgstr "" @@ -13901,7 +14069,7 @@ msgstr "" msgid "Stopped an unsafe database connection" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 msgid "Stream" msgstr "" @@ -13918,7 +14086,7 @@ msgstr "" msgid "Stretched style" msgstr "" -#: superset/views/database/forms.py:299 +#: superset/views/database/forms.py:309 msgid "Strings used for sheet names (default is the first sheet)." msgstr "" @@ -13947,11 +14115,11 @@ msgstr "" msgid "Style the ends of the progress bar with a round cap" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:56 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 msgid "Subdomain" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 msgid "Subheader" msgstr "" @@ -13963,8 +14131,8 @@ msgstr "" msgid "Submit" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:472 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:678 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 #: superset/charts/post_processing.py:161 #: superset/charts/post_processing.py:178 msgid "Subtotal" @@ -13976,7 +14144,7 @@ msgstr "" msgid "Success" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:193 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 msgid "Successfully changed dataset!" msgstr "" @@ -14009,7 +14177,7 @@ msgstr "" msgid "Sum values" msgstr "" -#: superset/viz.py:1888 +#: superset/viz.py:1805 msgid "Sunburst" msgstr "" @@ -14034,7 +14202,7 @@ msgid "Superset Embedded SDK documentation." msgstr "" #: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:470 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:473 msgid "Superset chart" msgstr "" @@ -14050,7 +14218,7 @@ msgstr "" msgid "Superset encountered an unexpected error." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:920 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 msgid "Supported databases" msgstr "" @@ -14058,11 +14226,7 @@ msgstr "" msgid "Survey Responses" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:101 -msgid "Swap Groups and Columns" -msgstr "" - -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:254 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:311 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:435 #, fuzzy @@ -14111,6 +14275,11 @@ msgstr "" msgid "Syntax" msgstr "" +#: superset/db_engine_specs/ocient.py:282 +#, python-format +msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +msgstr "" + #: superset-frontend/src/pages/QueryHistoryList/index.tsx:268 #: superset-frontend/src/pages/SavedQueryList/index.tsx:315 msgid "TABLES" @@ -14142,36 +14311,36 @@ msgstr "" msgid "Tab title" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:26 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 -#: superset-frontend/src/components/TableSelector/index.tsx:290 +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 +#: superset-frontend/src/components/TableSelector/index.tsx:279 #: superset-frontend/src/visualizations/TimeTable/index.ts:26 -#: superset/connectors/sqla/views.py:160 superset/connectors/sqla/views.py:255 -#: superset/connectors/sqla/views.py:477 superset/views/chart/mixin.py:86 +#: superset/connectors/sqla/views.py:159 superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:384 superset/views/chart/mixin.py:86 msgid "Table" msgstr "" -#: superset/views/core.py:1740 +#: superset/views/core.py:1775 #, python-format msgid "Table %(table)s wasn't found in the database %(db)s" msgstr "" -#: superset/views/database/forms.py:317 superset/views/database/forms.py:448 +#: superset/views/database/forms.py:327 superset/views/database/forms.py:458 msgid "Table Exists" msgstr "" -#: superset/connectors/sqla/views.py:487 superset/views/database/forms.py:128 -#: superset/views/database/forms.py:269 superset/views/database/forms.py:405 +#: superset/connectors/sqla/views.py:394 superset/views/database/forms.py:128 +#: superset/views/database/forms.py:279 superset/views/database/forms.py:415 msgid "Table Name" msgstr "" -#: superset/viz.py:698 +#: superset/viz.py:722 msgid "Table View" msgstr "" -#: superset/datasets/commands/exceptions.py:130 +#: superset/datasets/commands/exceptions.py:147 #, python-format msgid "" "Table [%(table_name)s] could not be found, please double check your " @@ -14184,7 +14353,7 @@ msgid "" "connection, schema, and table name, error: {}" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:268 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:278 msgid "Table cache timeout" msgstr "" @@ -14196,8 +14365,8 @@ msgstr "" msgid "Table loading" msgstr "" -#: superset/views/database/forms.py:132 superset/views/database/forms.py:273 -#: superset/views/database/forms.py:409 +#: superset/views/database/forms.py:132 superset/views/database/forms.py:283 +#: superset/views/database/forms.py:419 msgid "Table name cannot contain a schema" msgstr "" @@ -14205,15 +14374,22 @@ msgstr "" msgid "Table name undefined" msgstr "" +#: superset/db_engine_specs/ocient.py:287 +#, python-format +msgid "Table or View \"%(table)s\" does not exist." +msgstr "" + #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 msgid "" "Table that visualizes paired t-tests, which are used to understand " "statistical differences between groups." msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:384 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:393 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:287 #: superset-frontend/src/pages/SavedQueryList/index.tsx:334 -#: superset/connectors/sqla/views.py:363 superset/connectors/sqla/views.py:384 +#: superset/connectors/sqla/views.py:291 msgid "Tables" msgstr "" @@ -14260,7 +14436,7 @@ msgstr "" #: superset-frontend/src/pages/SavedQueryList/index.tsx:382 #: superset-frontend/src/pages/SavedQueryList/index.tsx:487 #: superset-frontend/src/pages/Tags/index.tsx:279 -#: superset/initialization/__init__.py:384 +#: superset/initialization/__init__.py:378 msgid "Tags" msgstr "" @@ -14287,7 +14463,7 @@ msgstr "" msgid "Target category" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:173 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 msgid "Target value" msgstr "" @@ -14297,7 +14473,7 @@ msgstr "" #: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:962 -#: superset/connectors/sqla/views.py:493 +#: superset/connectors/sqla/views.py:400 msgid "Template parameters" msgstr "" @@ -14307,7 +14483,7 @@ msgid "" "coming from the controls." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:317 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:327 msgid "" "Terminate running queries when browser window closed or navigated to " "another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " @@ -14331,7 +14507,7 @@ msgstr "" msgid "Text align" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:248 +#: superset-frontend/src/components/ReportModal/index.tsx:247 msgid "Text embedded in email" msgstr "" @@ -14376,7 +14552,7 @@ msgid "" " the filters list?" msgstr "" -#: superset/views/core.py:372 +#: superset/views/core.py:373 msgid "The access requests seem to have been deleted" msgstr "" @@ -14394,11 +14570,11 @@ msgid "" "associated with more than one category, only the first will be used." msgstr "" -#: superset/common/query_context_processor.py:586 +#: superset/common/query_context_processor.py:585 msgid "The chart datasource does not exist" msgstr "" -#: superset/common/query_context_processor.py:584 +#: superset/common/query_context_processor.py:583 msgid "The chart does not exist" msgstr "" @@ -14450,14 +14626,14 @@ msgstr "" msgid "The data source seems to have been deleted" msgstr "" -#: superset/connectors/sqla/views.py:115 +#: superset/connectors/sqla/views.py:114 msgid "" "The data type that was inferred by the database. It may be necessary to " "input a type manually for expression-defined columns in some cases. In " "most case users should not need to alter this." msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:515 +#: superset-frontend/src/pages/DatabaseList/index.tsx:529 #, python-format msgid "" "The database %s is linked to %s charts that appear on %s dashboards and " @@ -14496,11 +14672,11 @@ msgstr "" msgid "The database was deleted." msgstr "" -#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2002 +#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2039 msgid "The database was not found." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:710 +#: superset-frontend/src/pages/DatasetList/index.tsx:724 #, python-format msgid "" "The dataset %s is linked to %s charts that appear on %s dashboards. Are " @@ -14509,11 +14685,11 @@ msgid "" msgstr "" #: superset-frontend/src/components/Chart/Chart.jsx:88 -#: superset/views/utils.py:274 +#: superset/views/utils.py:272 msgid "The dataset associated with this chart no longer exists" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:168 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:210 msgid "" "The dataset configuration exposed here\n" " affects all the charts using this dataset.\n" @@ -14522,7 +14698,7 @@ msgid "" " in undesirable ways." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:129 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:164 #: superset-frontend/src/pages/ChartCreation/index.tsx:261 msgid "The dataset has been saved" msgstr "" @@ -14531,7 +14707,7 @@ msgstr "" msgid "The dataset linked to this chart may have been deleted." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1496 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1488 msgid "The datasource couldn't be loaded" msgstr "" @@ -14545,7 +14721,7 @@ msgid "" " Supports markdown." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:104 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 msgid "The distance between cells, in pixels" msgstr "" @@ -14559,7 +14735,7 @@ msgstr "" msgid "The encoding format of the lines" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:495 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:531 msgid "" "The engine_params object gets unpacked into the sqlalchemy.create_engine " "call." @@ -14572,6 +14748,7 @@ msgid "" "%(columns)s. " msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:111 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:67 msgid "The function to use when aggregating points into groups" msgstr "" @@ -14582,9 +14759,9 @@ msgid "The host \"%(hostname)s\" might be down and can't be reached." msgstr "" #: superset/db_engine_specs/mssql.py:103 -#: superset/db_engine_specs/postgres.py:140 -#: superset/db_engine_specs/presto.py:664 -#: superset/db_engine_specs/redshift.py:82 +#: superset/db_engine_specs/postgres.py:139 +#: superset/db_engine_specs/presto.py:691 +#: superset/db_engine_specs/redshift.py:86 #, python-format msgid "" "The host \"%(hostname)s\" might be down, and can't be reached on port " @@ -14596,9 +14773,9 @@ msgid "The host might be down, and can't be reached on the provided port." msgstr "" #: superset/db_engine_specs/mssql.py:93 -#: superset/db_engine_specs/postgres.py:130 -#: superset/db_engine_specs/presto.py:659 -#: superset/db_engine_specs/redshift.py:72 +#: superset/db_engine_specs/postgres.py:129 +#: superset/db_engine_specs/presto.py:686 +#: superset/db_engine_specs/redshift.py:76 #, python-format msgid "The hostname \"%(hostname)s\" cannot be resolved." msgstr "" @@ -14612,7 +14789,7 @@ msgstr "" msgid "The id of the active chart" msgstr "" -#: superset/connectors/sqla/views.py:418 +#: superset/connectors/sqla/views.py:325 msgid "" "The list of charts associated with this table. By altering this " "datasource, you may change how these associated charts behave. Also note " @@ -14649,7 +14826,7 @@ msgid "" "%{key}s is invalid." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:469 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:505 msgid "" "The metadata_params object gets unpacked into the sqlalchemy.MetaData " "call." @@ -14669,7 +14846,7 @@ msgid "" "periods" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:130 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 msgid "The number color \"steps\"" msgstr "" @@ -14679,7 +14856,7 @@ msgid "" " can be used to move UTC time to local time." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:308 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:301 #, python-format msgid "" "The number of results displayed is limited to %(rows)d by the " @@ -14687,7 +14864,7 @@ msgid "" "download to csv to see more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:314 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:307 #, python-format msgid "" "The number of results displayed is limited to %(rows)d. Please add " @@ -14695,22 +14872,22 @@ msgid "" "more rows up to the %(limit)d limit." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:365 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:358 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the dropdown." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:334 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:326 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:319 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the query" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:339 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:332 #, python-format msgid "" "The number of rows displayed is limited to %(rows)d by the query and " @@ -14726,7 +14903,7 @@ msgstr "" msgid "The object does not exist in the given database." msgstr "" -#: superset/sqllab/query_render.py:96 +#: superset/sqllab/query_render.py:94 #, python-format msgid "The parameter %(parameters)s in your query is undefined." msgid_plural "The following parameters in your query are undefined: %(parameters)s." @@ -14734,7 +14911,7 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: superset/db_engine_specs/postgres.py:120 +#: superset/db_engine_specs/postgres.py:119 #, python-format msgid "The password provided for username \"%(username)s\" is incorrect." msgstr "" @@ -14779,7 +14956,7 @@ msgid "" " they are needed." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1284 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1339 msgid "" "The passwords for the databases below are needed in order to import them." " Please note that the \"Secure Extra\" and \"Certificate\" sections of " @@ -14799,7 +14976,7 @@ msgid "" "\"freq\" expressions." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 msgid "The pixel radius" msgstr "" @@ -14823,7 +15000,7 @@ msgstr "" msgid "The primary metric is used to define the arc segment sizes" msgstr "" -#: superset/views/core.py:2212 +#: superset/views/core.py:2248 msgid "The provided `rows` argument is not a valid integer." msgstr "" @@ -14832,13 +15009,13 @@ msgid "The query associated with the results was deleted." msgstr "" #: superset/sqllab/commands/export.py:63 superset/sqllab/commands/results.py:91 -#: superset/views/core.py:2162 +#: superset/views/core.py:2198 msgid "" "The query associated with these results could not be found. You need to " "re-run the original query." msgstr "" -#: superset/sqllab/query_render.py:117 +#: superset/sqllab/query_render.py:115 msgid "The query contains one or more malformed template parameters." msgstr "" @@ -14857,11 +15034,11 @@ msgstr "" msgid "The query has a syntax error." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:519 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:512 msgid "The query returned no data" msgstr "" -#: superset/sql_lab.py:301 +#: superset/sql_lab.py:297 #, python-format msgid "" "The query was killed after %(sqllab_timeout)s seconds. It might be too " @@ -14902,14 +15079,14 @@ msgstr "" msgid "The rich tooltip shows a list of all series for that point in time" msgstr "" -#: superset/db_engine_specs/bigquery.py:202 +#: superset/db_engine_specs/bigquery.py:203 #, python-format msgid "" "The schema \"%(schema)s\" does not exist. A valid schema must be used to " "run this query." msgstr "" -#: superset/db_engine_specs/presto.py:646 +#: superset/db_engine_specs/presto.py:673 #, python-format msgid "" "The schema \"%(schema_name)s\" does not exist. A valid schema must be " @@ -14920,11 +15097,12 @@ msgstr "" msgid "The schema was deleted or renamed in the database." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:92 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 msgid "The size of the square cell, in pixels" msgstr "" -#: superset/views/datasource/views.py:88 +#: superset/datasets/commands/exceptions.py:72 +#: superset/views/datasource/views.py:90 msgid "" "The submitted URL is not considered safe, only use URLs with the same " "domain as Superset." @@ -14938,21 +15116,21 @@ msgstr "" msgid "The submitted payload has the incorrect schema." msgstr "" -#: superset/db_engine_specs/bigquery.py:189 +#: superset/db_engine_specs/bigquery.py:190 #, python-format msgid "" "The table \"%(table)s\" does not exist. A valid table must be used to run" " this query." msgstr "" -#: superset/db_engine_specs/presto.py:638 +#: superset/db_engine_specs/presto.py:665 #, python-format msgid "" "The table \"%(table_name)s\" does not exist. A valid table must be used " "to run this query." msgstr "" -#: superset/connectors/sqla/views.py:515 +#: superset/connectors/sqla/views.py:422 msgid "" "The table was created. As part of this two-phase configuration process, " "you should now click the edit button by the new table to configure it." @@ -15003,13 +15181,13 @@ msgid "" " the start and/or end time." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 msgid "" "The time unit for each block. Should be a smaller unit than " "domain_granularity. Should be larger or equal to Time Grain" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 msgid "The time unit used for the grouping of blocks" msgstr "" @@ -15027,7 +15205,12 @@ msgstr "" msgid "The user seems to have been deleted" msgstr "" -#: superset/db_engine_specs/postgres.py:115 +#: superset/db_engine_specs/ocient.py:251 +msgid "The user/password combination is not valid (Incorrect password for user)." +msgstr "" + +#: superset/db_engine_specs/ocient.py:246 +#: superset/db_engine_specs/postgres.py:114 #, python-format msgid "The username \"%(username)s\" does not exist." msgstr "" @@ -15054,16 +15237,16 @@ msgstr "" msgid "There are associated alerts or reports" msgstr "" -#: superset/charts/commands/bulk_delete.py:62 -#: superset/charts/commands/delete.py:71 -#: superset/dashboards/commands/bulk_delete.py:63 -#: superset/dashboards/commands/delete.py:64 -#: superset/databases/commands/delete.py:63 +#: superset/charts/commands/bulk_delete.py:61 +#: superset/charts/commands/delete.py:70 +#: superset/dashboards/commands/bulk_delete.py:62 +#: superset/dashboards/commands/delete.py:63 +#: superset/databases/commands/delete.py:62 #, python-format msgid "There are associated alerts or reports: %s," msgstr "" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:710 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:711 msgid "There are no charts added to this dashboard" msgstr "" @@ -15116,7 +15299,7 @@ msgstr "" msgid "There was an error fetching tables" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:589 +#: superset-frontend/src/views/CRUD/hooks.ts:593 #, python-format msgid "There was an error fetching the favorite status: %s" msgstr "" @@ -15125,19 +15308,23 @@ msgstr "" msgid "There was an error fetching your recent activity:" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:450 +msgid "There was an error loading the chart data" +msgstr "" + #: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 msgid "There was an error loading the dataset metadata" msgstr "" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:241 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:240 msgid "There was an error loading the schemas" msgstr "" -#: superset-frontend/src/components/TableSelector/index.tsx:194 +#: superset-frontend/src/components/TableSelector/index.tsx:191 msgid "There was an error loading the tables" msgstr "" -#: superset-frontend/src/views/CRUD/hooks.ts:612 +#: superset-frontend/src/views/CRUD/hooks.ts:616 #, python-format msgid "There was an error saving the favorite status: %s" msgstr "" @@ -15151,14 +15338,20 @@ msgstr "" #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 #: superset-frontend/src/pages/AnnotationList/index.tsx:121 #: superset-frontend/src/pages/CssTemplateList/index.tsx:97 -#: superset-frontend/src/pages/DatabaseList/index.tsx:167 -#: superset-frontend/src/pages/DatasetList/index.tsx:657 +#: superset-frontend/src/pages/DatabaseList/index.tsx:178 +#: superset-frontend/src/pages/DatasetList/index.tsx:668 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:97 #: superset-frontend/src/pages/SavedQueryList/index.tsx:245 #: superset-frontend/src/views/CRUD/utils.tsx:315 #, python-format msgid "There was an issue deleting %s: %s" msgstr "" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:111 +#, python-format +msgid "There was an issue deleting rules: %s" +msgstr "" + #: superset-frontend/src/pages/AlertReportList/index.tsx:201 #, python-format msgid "There was an issue deleting the selected %s: %s" @@ -15178,7 +15371,7 @@ msgstr "" msgid "There was an issue deleting the selected dashboards: " msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:675 +#: superset-frontend/src/pages/DatasetList/index.tsx:686 #, python-format msgid "There was an issue deleting the selected datasets: %s" msgstr "" @@ -15203,16 +15396,16 @@ msgstr "" msgid "There was an issue deleting: %s" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:683 +#: superset-frontend/src/pages/DatasetList/index.tsx:694 msgid "There was an issue duplicating the dataset." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:699 +#: superset-frontend/src/pages/DatasetList/index.tsx:710 #, python-format msgid "There was an issue duplicating the selected datasets: %s" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:129 +#: superset-frontend/src/dashboard/actions/dashboardState.js:127 msgid "There was an issue favoriting this dashboard." msgstr "" @@ -15220,7 +15413,7 @@ msgstr "" msgid "There was an issue fetching reports attached to this dashboard." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:104 +#: superset-frontend/src/dashboard/actions/dashboardState.js:103 msgid "There was an issue fetching the favorite status of this dashboard." msgstr "" @@ -15254,13 +15447,13 @@ msgstr "" msgid "There was an issue previewing the selected query. %s" msgstr "" -#: superset/viz.py:1992 +#: superset/viz.py:1915 msgid "" "There's a loop in your Sankey, please provide a tree. Here's a faulty " "link: {}" msgstr "" -#: superset/connectors/sqla/views.py:335 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:386 msgid "These are the tables this filter will be applied to." msgstr "" @@ -15309,10 +15502,10 @@ msgid "" "mydatabase.com)." msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:244 +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:245 msgid "" -"This chart emits/applies cross-filters to other charts that use the same " -"dataset" +"This chart applies cross-filters to charts whose datasets contain columns" +" with the same name." msgstr "" #: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 @@ -15327,7 +15520,7 @@ msgstr "" msgid "This chart might be incompatible with the filter (datasets don't match)" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:322 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 msgid "" "This chart type is not supported when using an unsaved query as a chart " "source. " @@ -15339,7 +15532,7 @@ msgid "" " Check the JSON metadata in the Advanced settings" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:121 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:113 msgid "This column might be incompatible with current dataset" msgstr "" @@ -15386,11 +15579,11 @@ msgid "" "dashboards. Click here to publish this dashboard." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:154 +#: superset-frontend/src/dashboard/actions/dashboardState.js:152 msgid "This dashboard is now hidden" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:153 +#: superset-frontend/src/dashboard/actions/dashboardState.js:151 msgid "This dashboard is now published" msgstr "" @@ -15404,18 +15597,18 @@ msgid "" " id to the SDK:" msgstr "" -#: superset/views/core.py:1319 +#: superset/views/core.py:1353 msgid "" "This dashboard was changed recently. Please reload dashboard to get " "latest version." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:311 -#: superset-frontend/src/dashboard/actions/dashboardState.js:350 +#: superset-frontend/src/dashboard/actions/dashboardState.js:313 +#: superset-frontend/src/dashboard/actions/dashboardState.js:352 msgid "This dashboard was saved successfully." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1119 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1174 msgid "This database is managed externally, and can't be edited in Superset" msgstr "" @@ -15425,7 +15618,7 @@ msgid "" "table." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:240 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:282 msgid "This dataset is managed externally, and can't be edited in Superset" msgstr "" @@ -15442,7 +15635,7 @@ msgstr "" msgid "This defines the level of the hierarchy" msgstr "" -#: superset/connectors/sqla/views.py:436 +#: superset/connectors/sqla/views.py:343 msgid "" "This fields acts a Superset view, meaning that Superset will run a query " "against this string as a subquery." @@ -15465,7 +15658,7 @@ msgstr "" msgid "This functionality is disabled in your environment for security reasons." msgstr "" -#: superset/connectors/sqla/views.py:352 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:456 msgid "" "This is the condition that will be added to the WHERE clause. For " "example, to only return rows for a particular client, you might define a " @@ -15494,7 +15687,7 @@ msgstr "" msgid "This may be triggered by:" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:258 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:256 msgid "This metric might be incompatible with current dataset" msgstr "" @@ -15535,15 +15728,15 @@ msgid "" "associate one dataset with a table.\n" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:85 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 msgid "This value should be greater than the left target value" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:80 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 msgid "This value should be smaller than the right target value" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:141 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:171 msgid "This visualization type does not support cross-filtering." msgstr "" @@ -15581,6 +15774,7 @@ msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:38 #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 @@ -15610,7 +15804,7 @@ msgstr "" msgid "Time Comparison" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:141 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 msgid "Time Format" msgstr "" @@ -15640,39 +15834,39 @@ msgstr "" msgid "Time Series" msgstr "" -#: superset/viz.py:1670 +#: superset/viz.py:1581 msgid "Time Series - Bar Chart" msgstr "" -#: superset/viz.py:1596 +#: superset/viz.py:1504 msgid "Time Series - Dual Axis Line Chart" msgstr "" -#: superset/viz.py:1308 +#: superset/viz.py:1209 msgid "Time Series - Line Chart" msgstr "" -#: superset/viz.py:1518 +#: superset/viz.py:1424 msgid "Time Series - Multiple Line Charts" msgstr "" -#: superset/viz.py:3036 +#: superset/viz.py:3033 msgid "Time Series - Nightingale Rose Chart" msgstr "" -#: superset/viz.py:2965 +#: superset/viz.py:2961 msgid "Time Series - Paired t-test" msgstr "" -#: superset/viz.py:1725 +#: superset/viz.py:1638 msgid "Time Series - Percent Change" msgstr "" -#: superset/viz.py:1679 +#: superset/viz.py:1590 msgid "Time Series - Period Pivot" msgstr "" -#: superset/viz.py:1733 +#: superset/viz.py:1646 msgid "Time Series - Stacked" msgstr "" @@ -15687,7 +15881,7 @@ msgstr "" msgid "Time Shift" msgstr "" -#: superset/viz.py:849 +#: superset/viz.py:878 msgid "Time Table View" msgstr "" @@ -15698,7 +15892,7 @@ msgstr "" msgid "Time column" msgstr "" -#: superset/connectors/sqla/models.py:1392 superset/models/helpers.py:1575 +#: superset/models/helpers.py:1659 #, python-format msgid "Time column \"%(col)s\" does not exist in dataset" msgstr "" @@ -15781,6 +15975,7 @@ msgid "Time ratio" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 #: superset-frontend/src/explore/controlPanels/sections.tsx:66 msgid "Time related form attributes" msgstr "" @@ -15901,12 +16096,12 @@ msgstr "" msgid "Timestamp format" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:326 +#: superset-frontend/src/components/ReportModal/index.tsx:325 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 msgid "Timezone" msgstr "" -#: superset/connectors/sqla/views.py:427 +#: superset/connectors/sqla/views.py:334 msgid "Timezone offset (in hours) for this datasource" msgstr "" @@ -15948,30 +16143,27 @@ msgstr "" msgid "To get a readable URL for your dashboard" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:288 -msgid "Too many columns to filter" -msgstr "" - #: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:27 msgid "Tools" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:216 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:213 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 msgid "Tooltip" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:201 msgid "Tooltip sort by metric" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:191 msgid "Tooltip time format" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 msgid "Top" msgstr "" @@ -15993,14 +16185,14 @@ msgstr "" msgid "Total (%(aggfunc)s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:497 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:562 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:784 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 #, python-format msgid "Total (%(aggregatorName)s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:230 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:68 #, fuzzy msgid "Total value" msgstr "Anotačná vrstva" @@ -16015,7 +16207,7 @@ msgstr "" msgid "Totals" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:411 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:404 msgid "Track job" msgstr "" @@ -16035,10 +16227,6 @@ msgstr "" msgid "Transparent" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:99 -msgid "Transpose Pivot" -msgstr "" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:238 msgid "Transpose pivot" msgstr "" @@ -16056,7 +16244,7 @@ msgid "Tree orientation" msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:60 -#: superset/viz.py:1035 +#: superset/viz.py:925 msgid "Treemap" msgstr "" @@ -16122,7 +16310,7 @@ msgstr "" msgid "Truncates the specified date to the accuracy specified by the date unit." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 msgid "Try applying different filters or ensuring your datasource has data" msgstr "" @@ -16143,21 +16331,21 @@ msgstr "" msgid "Tukey" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:216 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:65 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:272 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:276 -#: superset-frontend/src/pages/DatasetList/index.tsx:343 -#: superset-frontend/src/pages/DatasetList/index.tsx:552 -#: superset/connectors/sqla/views.py:164 superset/connectors/sqla/views.py:253 +#: superset-frontend/src/pages/DatasetList/index.tsx:354 +#: superset-frontend/src/pages/DatasetList/index.tsx:563 +#: superset/connectors/sqla/views.py:163 superset/connectors/sqla/views.py:252 msgid "Type" msgstr "" #: superset-frontend/src/components/DeleteModal/index.tsx:92 #: superset-frontend/src/components/ImportModal/index.tsx:397 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1405 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1460 #, python-format msgid "Type \"%s\" to confirm" msgstr "" @@ -16183,7 +16371,7 @@ msgstr "" msgid "Type of comparison, value difference or percentage" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:404 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:407 #, python-format msgid "Type or Select [%s]" msgstr "" @@ -16213,22 +16401,23 @@ msgstr "" msgid "URL slug" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:622 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:618 msgid "Unable to add a new tab to the backend. Please contact your administrator." msgstr "" -#: superset/db_engine_specs/presto.py:677 +#: superset/db_engine_specs/presto.py:704 #, python-format msgid "Unable to connect to catalog named \"%(catalog_name)s\"." msgstr "" #: superset/db_engine_specs/mysql.py:165 -#: superset/db_engine_specs/postgres.py:148 +#: superset/db_engine_specs/postgres.py:147 +#: superset/db_engine_specs/starrocks.py:127 #, python-format msgid "Unable to connect to database \"%(database)s\"." msgstr "" -#: superset/db_engine_specs/bigquery.py:177 +#: superset/db_engine_specs/bigquery.py:178 msgid "" "Unable to connect. Verify that the following roles are set on the service" " account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " @@ -16236,10 +16425,18 @@ msgid "" "\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:218 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:216 msgid "Unable to create chart without a query id." msgstr "" +#: superset/key_value/exceptions.py:66 +msgid "Unable to decode value" +msgstr "" + +#: superset/key_value/exceptions.py:62 +msgid "Unable to encode value" +msgstr "" + #: superset/utils/date_parser.py:393 #, python-format msgid "Unable to find such a holiday: [%(holiday)s]" @@ -16251,19 +16448,19 @@ msgid "" "table." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:589 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:585 msgid "" "Unable to migrate query editor state to backend. Superset will retry " "later. Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:543 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:539 msgid "" "Unable to migrate query state to backend. Superset will retry later. " "Please contact your administrator if this problem persists." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:525 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:521 msgid "" "Unable to migrate table schema state to backend. Superset will retry " "later. Please contact your administrator if this problem persists." @@ -16273,14 +16470,14 @@ msgstr "" msgid "Unable to retrieve dashboard colors" msgstr "" -#: superset/views/database/views.py:275 +#: superset/views/database/views.py:278 #, python-format msgid "" "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" " database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset/views/database/views.py:553 +#: superset/views/database/views.py:556 #, python-format msgid "" "Unable to upload Columnar file \"%(filename)s\" to table " @@ -16288,14 +16485,14 @@ msgid "" "%(error_msg)s" msgstr "" -#: superset/views/database/views.py:412 +#: superset/views/database/views.py:415 #, python-format msgid "" "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " "in database \"%(db_name)s\". Error message: %(error_msg)s" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:93 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:92 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 msgid "Undefined" msgstr "" @@ -16308,7 +16505,7 @@ msgstr "" msgid "Undo the action" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:131 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:132 msgid "Undo?" msgstr "" @@ -16318,7 +16515,7 @@ msgid "Unexpected error" msgstr "" #: superset/databases/commands/exceptions.py:137 -#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1438 +#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1479 msgid "Unexpected error occurred, please check your logs for details" msgstr "" @@ -16326,7 +16523,7 @@ msgstr "" msgid "Unexpected error: " msgstr "" -#: superset/views/api.py:109 +#: superset/views/api.py:108 #, python-format msgid "Unexpected time range: %s" msgstr "" @@ -16340,7 +16537,7 @@ msgstr "" msgid "Unknown MySQL server host \"%(hostname)s\"." msgstr "" -#: superset/db_engine_specs/presto.py:1319 +#: superset/db_engine_specs/presto.py:1342 msgid "Unknown Presto Error" msgstr "" @@ -16348,13 +16545,13 @@ msgstr "" msgid "Unknown Status" msgstr "" -#: superset/connectors/sqla/models.py:1317 superset/models/helpers.py:1498 +#: superset/models/helpers.py:1582 #, python-format msgid "Unknown column used in orderby: %(col)s" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:402 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:480 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:398 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:476 msgid "Unknown error" msgstr "" @@ -16413,7 +16610,7 @@ msgstr "" msgid "Untitled query" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:223 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:222 msgid "Update" msgstr "" @@ -16430,7 +16627,7 @@ msgstr "" msgid "Upload" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:202 +#: superset-frontend/src/pages/DatabaseList/index.tsx:213 #, fuzzy msgid "Upload CSV" msgstr "Nahrať Excel" @@ -16449,7 +16646,7 @@ msgstr "Nahrať Excel" msgid "Upload Enabled" msgstr "Nahrať Excel" -#: superset-frontend/src/pages/DatabaseList/index.tsx:216 +#: superset-frontend/src/pages/DatabaseList/index.tsx:227 #, fuzzy msgid "Upload Excel file" msgstr "Nahrať Excel" @@ -16462,7 +16659,7 @@ msgstr "" msgid "Upload JSON file" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:209 +#: superset-frontend/src/pages/DatabaseList/index.tsx:220 msgid "Upload columnar file" msgstr "" @@ -16470,7 +16667,7 @@ msgstr "" msgid "Upload columnar file to database" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:199 +#: superset-frontend/src/pages/DatabaseList/index.tsx:210 msgid "Upload file to database" msgstr "" @@ -16484,7 +16681,7 @@ msgstr "Spravovať" msgid "Use \"%(menuName)s\" menu instead." msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:36 +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 #, python-format msgid "Use %s to open in a new tab." msgstr "" @@ -16495,7 +16692,7 @@ msgstr "" msgid "Use Area Proportions" msgstr "" -#: superset/views/database/forms.py:462 +#: superset/views/database/forms.py:472 msgid "Use Columns" msgstr "" @@ -16511,9 +16708,9 @@ msgstr "" msgid "Use a log scale for the Y-axis" msgstr "" -#: superset/db_engine_specs/base.py:1850 -#: superset/db_engine_specs/clickhouse.py:211 -#: superset/db_engine_specs/databricks.py:57 +#: superset/db_engine_specs/base.py:1889 +#: superset/db_engine_specs/clickhouse.py:216 +#: superset/db_engine_specs/databricks.py:58 msgid "Use an encrypted connection to the database" msgstr "" @@ -16524,12 +16721,12 @@ msgid "" " Your chart must be one of these visualization types: [%s]" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:87 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 msgid "Use date formatting even when metric value is not a timestamp" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:217 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 msgid "Use legacy datasource editor" msgstr "" @@ -16575,16 +16772,6 @@ msgid "" " from the pluginʼs package.json" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:28 -msgid "" -"Used to summarize a set of data by grouping together multiple statistics " -"along two axes. Examples: Sales numbers by region and month, tasks by " -"status and assignee, active users by age and location.\n" -"\n" -" This chart is being deprecated and we recommend checking out Pivot " -"Table V2 instead!" -msgstr "" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 msgid "" "Used to summarize a set of data by grouping together multiple statistics " @@ -16628,11 +16815,17 @@ msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:133 #: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 -#: superset/db_engine_specs/base.py:1837 +#: superset/db_engine_specs/base.py:1868 #: superset/db_engine_specs/clickhouse.py:201 msgid "Username" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:27 +msgid "" +"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" +" of data" +msgstr "" + #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:45 msgid "" "Uses a gauge to showcase progress of a metric towards a target. The " @@ -16682,9 +16875,9 @@ msgstr "" msgid "Value is required" msgstr "" -#: superset/reports/schemas.py:186 superset/reports/schemas.py:192 -#: superset/reports/schemas.py:198 superset/reports/schemas.py:280 -#: superset/reports/schemas.py:286 superset/reports/schemas.py:293 +#: superset/reports/schemas.py:190 superset/reports/schemas.py:195 +#: superset/reports/schemas.py:200 superset/reports/schemas.py:291 +#: superset/reports/schemas.py:296 superset/reports/schemas.py:302 msgid "Value must be greater than 0" msgstr "" @@ -16706,16 +16899,16 @@ msgstr "" msgid "Vehicle Types" msgstr "" -#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:252 +#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:251 msgid "Verbose Name" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:503 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:539 #: superset-frontend/src/features/home/RightMenu.tsx:501 msgid "Version" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:509 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:545 msgid "Version number" msgstr "" @@ -16726,7 +16919,7 @@ msgstr "" msgid "Vertical" msgstr "" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:162 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 msgid "Vertical (Left)" msgstr "" @@ -16754,7 +16947,7 @@ msgstr "Datasety" msgid "View all charts" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:434 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 msgid "View as table" msgstr "" @@ -16768,8 +16961,8 @@ msgstr "" msgid "View keys & indexes (%s)" msgstr "" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:415 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:417 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:424 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:426 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:394 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:396 msgid "View query" @@ -16790,8 +16983,8 @@ msgstr "" msgid "Viewport" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:342 -#: superset-frontend/src/pages/DatasetList/index.tsx:559 +#: superset-frontend/src/pages/DatasetList/index.tsx:353 +#: superset-frontend/src/pages/DatasetList/index.tsx:570 msgid "Virtual" msgstr "" @@ -16799,20 +16992,20 @@ msgstr "" msgid "Virtual (SQL)" msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:281 +#: superset-frontend/src/pages/DatasetList/index.tsx:292 msgid "Virtual dataset" msgstr "" -#: superset/connectors/sqla/models.py:960 superset/connectors/sqla/utils.py:111 -#: superset/models/helpers.py:1036 +#: superset/connectors/sqla/models.py:921 superset/connectors/sqla/utils.py:110 +#: superset/models/helpers.py:1079 msgid "Virtual dataset query cannot be empty" msgstr "" -#: superset/connectors/sqla/models.py:963 superset/models/helpers.py:1039 +#: superset/connectors/sqla/models.py:924 superset/models/helpers.py:1082 msgid "Virtual dataset query cannot consist of multiple statements" msgstr "" -#: superset/connectors/sqla/models.py:928 superset/models/helpers.py:1062 +#: superset/connectors/sqla/models.py:889 superset/models/helpers.py:1105 msgid "Virtual dataset query must be read-only" msgstr "" @@ -16941,7 +17134,7 @@ msgid "" "corresponds to higher frequency." msgstr "" -#: superset/viz.py:141 +#: superset/viz.py:140 msgid "Viz is missing a datasource" msgstr "" @@ -16953,21 +17146,21 @@ msgstr "" msgid "WED" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:948 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1003 msgid "Want to add a new database?" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1246 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:216 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:214 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 msgid "Warning" msgstr "" -#: superset/connectors/sqla/views.py:258 +#: superset/connectors/sqla/views.py:257 msgid "Warning Message" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:286 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 msgid "Warning!" msgstr "" @@ -16982,13 +17175,13 @@ msgstr "" msgid "Was unable to check your query" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1468 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1523 msgid "" "We are unable to connect to your database. Click \"See more\" for " "database-provided information that may help troubleshoot the issue." msgstr "" -#: superset/db_engine_specs/bigquery.py:197 +#: superset/db_engine_specs/bigquery.py:198 #, python-format msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." msgstr "" @@ -16998,8 +17191,8 @@ msgstr "" msgid "We can't seem to resolve the column \"%(column_name)s\"" msgstr "" -#: superset/db_engine_specs/postgres.py:153 -#: superset/db_engine_specs/presto.py:630 +#: superset/db_engine_specs/postgres.py:152 +#: superset/db_engine_specs/presto.py:657 #, python-format msgid "" "We can't seem to resolve the column \"%(column_name)s\" at line " @@ -17021,7 +17214,7 @@ msgid "" "dataset." msgstr "" -#: superset/db_engine_specs/redshift.py:90 +#: superset/db_engine_specs/redshift.py:94 #, python-format msgid "" "We were unable to connect to your database named \"%(database)s\". Please" @@ -17038,31 +17231,31 @@ msgstr "" msgid "Wednesday" msgstr "" -#: superset/db_engine_specs/base.py:107 +#: superset/db_engine_specs/base.py:108 msgid "Week" msgstr "" -#: superset/db_engine_specs/base.py:113 +#: superset/db_engine_specs/base.py:114 msgid "Week ending Saturday" msgstr "" -#: superset/db_engine_specs/base.py:112 +#: superset/db_engine_specs/base.py:113 msgid "Week starting Monday" msgstr "" -#: superset/db_engine_specs/base.py:111 +#: superset/db_engine_specs/base.py:112 msgid "Week starting Sunday" msgstr "" -#: superset/db_engine_specs/base.py:114 +#: superset/db_engine_specs/base.py:115 msgid "Week_ending Sunday" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:123 +#: superset-frontend/src/components/ReportModal/index.tsx:122 msgid "Weekly Report" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:122 +#: superset-frontend/src/components/ReportModal/index.tsx:121 #, python-format msgid "Weekly Report for %s" msgstr "" @@ -17076,6 +17269,7 @@ msgstr "" msgid "Weeks %s" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:49 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:77 msgid "Weight" @@ -17114,7 +17308,7 @@ msgstr[2] "" msgid "What should be shown on the label?" msgstr "" -#: superset/views/database/forms.py:165 +#: superset/views/database/forms.py:175 msgid "What should happen if the table already exists" msgstr "" @@ -17139,7 +17333,7 @@ msgstr "" msgid "When checked, the map will zoom to your data after each query" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:189 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 msgid "When enabled, users are able to visualize SQL Lab results in Explore." msgstr "" @@ -17164,11 +17358,11 @@ msgid "" "relative time filter on a partitioned or indexed time-related field." msgstr "" -#: superset/viz.py:861 +#: superset/viz.py:891 msgid "When using 'Group By' you are limited to use a single metric" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:74 msgid "When using other than adaptive formatting, labels may overlap" msgstr "" @@ -17180,11 +17374,11 @@ msgstr "" msgid "Whether the progress bar overlaps when there are multiple groups of data" msgstr "" -#: superset/connectors/sqla/views.py:455 +#: superset/connectors/sqla/views.py:362 msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" msgstr "" -#: superset/connectors/sqla/views.py:111 +#: superset/connectors/sqla/views.py:110 msgid "" "Whether this column is exposed in the `Filters` section of the explore " "view." @@ -17226,7 +17420,7 @@ msgstr "" msgid "Whether to display a bar chart background in table columns" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 msgid "Whether to display a legend for the chart" msgstr "" @@ -17257,14 +17451,14 @@ msgid "" " 5% threshold." msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:157 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:118 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:159 msgid "Whether to display the legend (toggles)" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:181 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 msgid "Whether to display the metric name as a title" msgstr "" @@ -17277,7 +17471,7 @@ msgstr "" msgid "Whether to display the min and max values of the Y-axis" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:167 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:187 msgid "Whether to display the numerical values within the cells" @@ -17341,7 +17535,7 @@ msgstr "" msgid "Whether to make the histogram cumulative" msgstr "" -#: superset/connectors/sqla/views.py:106 +#: superset/connectors/sqla/views.py:105 msgid "" "Whether to make this column available as a [Time Granularity] option, " "column has to be DATETIME or DATETIME-like" @@ -17355,7 +17549,7 @@ msgstr "" msgid "Whether to populate autocomplete filters options" msgstr "" -#: superset/connectors/sqla/views.py:450 +#: superset/connectors/sqla/views.py:357 msgid "" "Whether to populate the filter's dropdown in the explore view's filter " "section with a list of distinct values fetched from the backend on the " @@ -17385,7 +17579,8 @@ msgstr "" msgid "Whether to show the split lines on the axis" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:124 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:143 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:174 msgid "Whether to sort ascending or descending on the base Axis." msgstr "" @@ -17415,7 +17610,7 @@ msgstr "" msgid "Whether to sort results by the selected metric in descending order." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:207 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 msgid "Whether to sort tooltip by the selected metric in descending order." msgstr "" @@ -17479,7 +17674,7 @@ msgid "Working timeout" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 -#: superset/viz.py:2079 +#: superset/viz.py:2006 msgid "World Map" msgstr "" @@ -17491,11 +17686,11 @@ msgstr "" msgid "Write a handlebars template to render the data" msgstr "" -#: superset/views/database/forms.py:219 +#: superset/views/database/forms.py:229 msgid "Write dataframe index as a column" msgstr "" -#: superset/views/database/forms.py:380 superset/views/database/forms.py:471 +#: superset/views/database/forms.py:390 superset/views/database/forms.py:481 msgid "Write dataframe index as a column." msgstr "" @@ -17553,11 +17748,13 @@ msgstr "" msgid "X bounds" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:122 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:141 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:172 msgid "X-Axis Sort Ascending" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:69 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:156 msgid "X-Axis Sort By" msgstr "" @@ -17616,7 +17813,6 @@ msgid "Y Axis 2 Bounds" msgstr "" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:260 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:248 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:192 @@ -17655,11 +17851,13 @@ msgstr "" msgid "Y bounds" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:121 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:140 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:171 msgid "Y-Axis Sort Ascending" msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:68 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 msgid "Y-Axis Sort By" msgstr "" @@ -17675,7 +17873,7 @@ msgstr "" msgid "YScale Interval" msgstr "" -#: superset/db_engine_specs/base.py:110 +#: superset/db_engine_specs/base.py:111 msgid "Year" msgstr "" @@ -17700,9 +17898,9 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:707 #: superset-frontend/src/pages/DashboardList/index.tsx:506 #: superset-frontend/src/pages/DashboardList/index.tsx:588 -#: superset-frontend/src/pages/DatabaseList/index.tsx:467 -#: superset-frontend/src/pages/DatabaseList/index.tsx:487 -#: superset-frontend/src/pages/DatasetList/index.tsx:572 +#: superset-frontend/src/pages/DatabaseList/index.tsx:478 +#: superset-frontend/src/pages/DatabaseList/index.tsx:498 +#: superset-frontend/src/pages/DatasetList/index.tsx:583 msgid "Yes" msgstr "" @@ -17729,7 +17927,7 @@ msgid "" "overwrite?" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1394 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1449 msgid "" "You are importing one or more databases that already exist. Overwriting " "might cause you to lose some of your work. Are you sure you want to " @@ -17750,7 +17948,7 @@ msgid "" "want to overwrite?" msgstr "" -#: superset/views/core.py:2177 +#: superset/views/core.py:2213 msgid "" "You are not authorized to see this query. If you think this is an error, " "please reach out to your administrator." @@ -17768,7 +17966,7 @@ msgstr "" msgid "You can add the components in the edit mode." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:127 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:157 msgid "You can also just click on the chart to apply cross-filter." msgstr "" @@ -17791,7 +17989,7 @@ msgstr "" msgid "You can preview the list of dashboards in the chart settings dropdown." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:148 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:178 msgid "You can't apply cross-filter on this data point." msgstr "" @@ -17805,7 +18003,7 @@ msgstr "" msgid "You cannot use 45° tick layout along with the time range filter" msgstr "" -#: superset/viz.py:723 +#: superset/viz.py:748 msgid "" "You cannot use [Columns] in combination with [Group " "By]/[Metrics]/[Percentage Metrics]. Please choose one or the other." @@ -17821,7 +18019,7 @@ msgid "You do not have permission to edit this chart" msgstr "" #: superset-frontend/src/components/Tags/utils.tsx:69 -#: superset-frontend/src/dashboard/actions/dashboardState.js:366 +#: superset-frontend/src/dashboard/actions/dashboardState.js:368 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:134 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:40 @@ -17833,7 +18031,7 @@ msgstr "" msgid "You do not have permissions to access the datasource(s): %(name)s." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:162 +#: superset-frontend/src/dashboard/actions/dashboardState.js:160 msgid "You do not have permissions to edit this dashboard." msgstr "" @@ -17845,7 +18043,7 @@ msgstr "" msgid "You don't have access to this dashboard." msgstr "" -#: superset/datasets/commands/exceptions.py:189 +#: superset/datasets/commands/exceptions.py:206 msgid "You don't have access to this dataset." msgstr "" @@ -17862,16 +18060,16 @@ msgstr "" msgid "You don't have permission to modify the value." msgstr "" -#: superset/security/manager.py:2267 +#: superset/security/manager.py:2262 #, python-format msgid "You don't have the rights to alter %(resource)s" msgstr "" -#: superset/views/core.py:923 +#: superset/views/core.py:945 msgid "You don't have the rights to alter this chart" msgstr "" -#: superset/views/core.py:1097 +#: superset/views/core.py:1119 msgid "You don't have the rights to alter this dashboard" msgstr "" @@ -17879,19 +18077,19 @@ msgstr "" msgid "You don't have the rights to alter this title." msgstr "" -#: superset/views/core.py:929 +#: superset/views/core.py:951 msgid "You don't have the rights to create a chart" msgstr "" -#: superset/views/core.py:1113 +#: superset/views/core.py:1135 msgid "You don't have the rights to create a dashboard" msgstr "" -#: superset/views/core.py:644 +#: superset/views/core.py:649 msgid "You don't have the rights to download as csv" msgstr "" -#: superset/views/core.py:424 +#: superset/views/core.py:425 msgid "You have no permission to approve this request" msgstr "" @@ -17903,7 +18101,7 @@ msgstr "" msgid "You have unsaved changes." msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:652 +#: superset-frontend/src/dashboard/actions/dashboardState.js:650 #, python-format msgid "" "You have used all %(historyLength)s undo slots and will not be able to " @@ -17912,7 +18110,7 @@ msgid "" msgstr "" #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:300 -#: superset-frontend/src/pages/DatasetList/index.tsx:453 +#: superset-frontend/src/pages/DatasetList/index.tsx:464 msgid "" "You must be a dataset owner in order to edit. Please reach out to a " "dataset owner to request modifications or edit access." @@ -17922,7 +18120,7 @@ msgstr "" msgid "You must pick a name for the new dashboard" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:525 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:519 msgid "You must run the query successfully first" msgstr "" @@ -17930,7 +18128,7 @@ msgstr "" msgid "You need to configure HTML sanitization to use CSS" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:350 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 msgid "" "You updated the values in the control panel, but the chart was not " "updated automatically. Run the query by clicking on the \"Update chart\" " @@ -17943,7 +18141,7 @@ msgid "" "match this new dataset have been retained." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:343 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 msgid "Your chart is not up to date" msgstr "" @@ -17955,7 +18153,7 @@ msgstr "" msgid "Your dashboard is too large. Please reduce its size before saving it." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1036 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1028 msgid "Your query could not be saved" msgstr "" @@ -17963,7 +18161,7 @@ msgstr "" msgid "Your query could not be scheduled" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1071 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1063 msgid "Your query could not be updated" msgstr "" @@ -17973,15 +18171,15 @@ msgid "" "Saved queries" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1051 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 msgid "Your query was not properly saved" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1054 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1046 msgid "Your query was saved" msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1067 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1059 msgid "Your query was updated" msgstr "" @@ -18002,19 +18200,19 @@ msgstr "" msgid "Zoom level of the map" msgstr "" -#: superset-frontend/src/dashboard/actions/dashboardState.js:262 +#: superset-frontend/src/dashboard/actions/dashboardState.js:260 msgid "[ untitled dashboard ]" msgstr "" -#: superset/viz.py:2386 +#: superset/viz.py:2323 msgid "[Longitude] and [Latitude] columns must be present in [Group By]" msgstr "" -#: superset/viz.py:2336 +#: superset/viz.py:2273 msgid "[Longitude] and [Latitude] must be set" msgstr "" -#: superset/explore/commands/get.py:121 superset/views/core.py:870 +#: superset/explore/commands/get.py:121 superset/views/core.py:892 msgid "[Missing Dataset]" msgstr "" @@ -18027,7 +18225,7 @@ msgstr "" msgid "[Untitled]" msgstr "" -#: superset/connectors/base/models.py:252 superset/models/sql_lab.py:228 +#: superset/connectors/base/models.py:262 superset/models/sql_lab.py:216 msgid "[asc]" msgstr "" @@ -18039,7 +18237,7 @@ msgstr "" msgid "[dashboard name]" msgstr "" -#: superset/connectors/base/models.py:255 superset/models/sql_lab.py:231 +#: superset/connectors/base/models.py:265 superset/models/sql_lab.py:219 msgid "[desc]" msgstr "" @@ -18063,7 +18261,7 @@ msgstr "" msgid "`compare_type` must be `difference`, `percentage` or `ratio`" msgstr "" -#: superset/charts/schemas.py:573 +#: superset/charts/schemas.py:654 msgid "`confidence_interval` must be between 0 and 1 (exclusive)" msgstr "" @@ -18086,15 +18284,15 @@ msgstr "" msgid "`rename_columns` must have the same length as `columns`." msgstr "" -#: superset/charts/schemas.py:1114 +#: superset/charts/schemas.py:1284 msgid "`row_limit` must be greater than or equal to 0" msgstr "" -#: superset/charts/schemas.py:1121 +#: superset/charts/schemas.py:1291 msgid "`row_offset` must be greater than or equal to 0" msgstr "" -#: superset/charts/schemas.py:972 +#: superset/charts/schemas.py:1108 msgid "`width` must be greater or equal to 0" msgstr "" @@ -18102,10 +18300,15 @@ msgstr "" msgid "aggregate" msgstr "" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 #: superset-frontend/src/pages/AlertReportList/index.tsx:110 msgid "alert" msgstr "" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 +msgid "alert dark" +msgstr "" + #: superset-frontend/src/pages/AlertReportList/index.tsx:111 msgid "alerts" msgstr "" @@ -18244,7 +18447,7 @@ msgid "clear all filters" msgstr "" #: superset-frontend/src/components/Chart/Chart.jsx:290 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:354 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 msgid "click here" msgstr "" @@ -18274,7 +18477,7 @@ msgstr "" msgid "count" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:365 +#: superset-frontend/src/explore/components/SaveModal.tsx:400 msgid "create" msgstr "" @@ -18319,16 +18522,16 @@ msgid "dashboards" msgstr "Importovať dashboard" #: superset-frontend/src/features/databases/DatabaseModal/index.tsx:543 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:712 -#: superset-frontend/src/pages/DatabaseList/index.tsx:91 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:729 +#: superset-frontend/src/pages/DatabaseList/index.tsx:102 msgid "database" msgstr "" #: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 #: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 #: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 -#: superset-frontend/src/pages/DatasetList/index.tsx:148 -#: superset-frontend/src/pages/DatasetList/index.tsx:822 +#: superset-frontend/src/pages/DatasetList/index.tsx:159 +#: superset-frontend/src/pages/DatasetList/index.tsx:844 msgid "dataset" msgstr "" @@ -18341,8 +18544,8 @@ msgstr "Datasety" msgid "date" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 msgid "day" msgstr "" @@ -18371,6 +18574,11 @@ msgstr "" msgid "deck.gl Grid" msgstr "" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:30 +#, fuzzy +msgid "deck.gl Heatmap" +msgstr "Grafy" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:28 msgid "deck.gl Multiple Layers" msgstr "" @@ -18400,6 +18608,7 @@ msgstr "Grafy" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:34 @@ -18483,11 +18692,11 @@ msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:112 #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:657 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:674 msgid "e.g. world_population" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:655 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:672 msgid "e.g. xy12345.us-east-2.aws" msgstr "" @@ -18503,7 +18712,15 @@ msgstr "" msgid "entries" msgstr "" -#: superset/connectors/sqla/models.py:1537 superset/models/helpers.py:1742 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +msgid "error" +msgstr "" + +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 +msgid "error dark" +msgstr "" + +#: superset/models/helpers.py:1803 msgid "error_message" msgstr "" @@ -18583,10 +18800,6 @@ msgstr "" msgid "geohash (square)" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 -msgid "green" -msgstr "" - #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:168 msgid "heatmap" msgstr "" @@ -18599,13 +18812,13 @@ msgstr "" #: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:125 #: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1800 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1856 msgid "here" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 msgid "hour" msgstr "" @@ -18642,7 +18855,7 @@ msgstr "" msgid "joined" msgstr "" -#: superset/views/base.py:595 +#: superset/views/base.py:596 msgid "json isn't valid" msgstr "" @@ -18701,14 +18914,13 @@ msgstr "" msgid "log" msgstr "" -#: superset/charts/schemas.py:645 +#: superset/charts/schemas.py:735 msgid "" "lower percentile must be greater than 0 and less than 100. Must be lower " "than upper percentile." msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:189 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:58 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 #: superset-frontend/src/filters/components/Range/buildQuery.ts:69 msgid "max" @@ -18717,9 +18929,9 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:187 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:254 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:56 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:136 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:119 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:403 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:531 @@ -18737,14 +18949,13 @@ msgstr "" msgid "median" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:60 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:62 #: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 msgid "metric" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:188 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:57 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 #: superset-frontend/src/filters/components/Range/buildQuery.ts:58 msgid "min" @@ -18763,8 +18974,8 @@ msgid "monotone" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 #: superset-frontend/src/explore/controls.jsx:267 msgid "month" @@ -18775,7 +18986,7 @@ msgid "more than {max} {name}" msgstr "" #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:53 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:78 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:77 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:116 msgid "must have a value" msgstr "" @@ -18837,7 +19048,7 @@ msgstr "" msgid "or use existing ones from the panel on the right" msgstr "" -#: superset/charts/schemas.py:1143 +#: superset/charts/schemas.py:1313 msgid "orderby column must be populated" msgstr "" @@ -18893,7 +19104,7 @@ msgid "" " first is lower than the second value" msgstr "" -#: superset/views/core.py:1921 +#: superset/views/core.py:1958 msgid "permalink state not found" msgstr "" @@ -18946,11 +19157,7 @@ msgstr "" msgid "recents" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 -msgid "red" -msgstr "" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:563 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:566 #: superset-frontend/src/pages/AlertReportList/index.tsx:110 msgid "report" msgstr "" @@ -18962,7 +19169,7 @@ msgstr "" msgid "reports" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:491 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:522 msgid "restore zoom" msgstr "" @@ -18971,6 +19178,11 @@ msgstr "" msgid "right" msgstr "" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:139 +#, fuzzy +msgid "rowlevelsecurity" +msgstr "Bezpečnosť na úrovni riadkov" + #: superset-frontend/src/SqlLab/constants.ts:36 #: superset-frontend/src/SqlLab/constants.ts:52 msgid "running" @@ -19018,7 +19230,6 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:190 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:59 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:138 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:405 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:185 @@ -19049,15 +19260,20 @@ msgstr "" #: superset-frontend/src/SqlLab/constants.ts:38 #: superset-frontend/src/SqlLab/constants.ts:50 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 msgid "success" msgstr "" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +msgid "success dark" +msgstr "" + #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:186 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:255 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:378 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:55 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:260 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:532 @@ -19100,7 +19316,7 @@ msgstr "" msgid "unknown type icon" msgstr "" -#: superset/charts/schemas.py:660 +#: superset/charts/schemas.py:750 msgid "" "upper percentile must be greater than 0 and less than 100. Must be higher" " than lower percentile." @@ -19121,7 +19337,6 @@ msgid "value descending" msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:60 msgid "var" msgstr "" @@ -19141,13 +19356,13 @@ msgstr "" msgid "viz type" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:451 msgid "was created" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:62 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 #: superset-frontend/src/explore/controls.jsx:264 msgid "week" @@ -19180,16 +19395,12 @@ msgid "y: values are normalized within each row" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 #: superset-frontend/src/explore/controls.jsx:269 msgid "year" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 -msgid "yellow" -msgstr "" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:490 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:521 msgid "zoom area" msgstr "" diff --git a/superset/translations/sl/LC_MESSAGES/messages.json b/superset/translations/sl/LC_MESSAGES/messages.json index 2a3cbc38d7..a36ee6a208 100644 --- a/superset/translations/sl/LC_MESSAGES/messages.json +++ b/superset/translations/sl/LC_MESSAGES/messages.json @@ -150,6 +150,9 @@ "A database with the same name already exists.": [ "Podatkovna baza z enakim imenom že obstaja." ], + "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ + "" + ], "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ "Celoten URL, ki kaže na lokacijo zgrajenega vtičnika (lahko gostuje npr. na CDN)" ], @@ -237,9 +240,6 @@ "Add Log": ["Dodaj dnevnik"], "Add Metric": ["Dodaj mero"], "Add Report": ["Dodaj poročilo"], - "Add Row level security filter": [ - "Dodaj filter za varnost na nivoju vrstic" - ], "Add Saved Query": ["Dodaj shranjeno poizvedbo"], "Add a Plugin": ["Dodaj vtičnik"], "Add a new tab": ["Dodaj nov zavihek"], @@ -258,6 +258,7 @@ "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ "Dodaj izračunan časovni stolpec v podatkovni set v oknu \"Uredi podatkovni vir\"" ], + "Add custom scoping": [""], "Add delivery method": ["Dodajte način dostave"], "Add filter": ["Dodaj filter"], "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ @@ -363,6 +364,7 @@ "All": ["Vsi"], "All Text": ["Celotno besedilo"], "All charts": ["Vsi grafikoni"], + "All charts/global scoping": [""], "All filters": ["Vsi filtri"], "All filters (%(filterCount)d)": ["Vsi filtri (%(filterCount)d)"], "All panels": ["Vsi paneli"], @@ -992,7 +994,6 @@ "Choose a source": ["Izberite izvor"], "Choose a source and a target": ["Izberite izhodišče in cilj"], "Choose a target": ["Izberite cilj"], - "Choose a unique name": [""], "Choose chart type": ["Izberite tip grafikona"], "Choose one of the available databases from the panel on the left.": [ "Izberite eno od razpoložljivih podatkovnih baz v panelu na levi." @@ -1049,9 +1050,6 @@ ], "Click to cancel sorting": [""], "Click to edit": ["Kliknite za urejanje"], - "Click to edit %s in a new tab": [ - "Kliknite za urejanje %s v novem zavihku" - ], "Click to edit label": ["Kliknite za urejanje oznake"], "Click to favorite/unfavorite": [ "Kliknite za priljubljeno/nepriljubljeno" @@ -1124,7 +1122,6 @@ "Columns to group by": ["Stolpci za združevanje"], "Columns to group by on the columns": ["Stolpci za združevanje stolpcev"], "Columns to group by on the rows": ["Stolpci za združevanje vrstic"], - "Combine Metrics": ["Združuj mere"], "Combine metrics": ["Združuj mere"], "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ "Z vejico ločene barve za intervale, npr. 1,2,4. Cela števila predstavljajo barve iz barvne sheme (začnejo se z 1). Dolžina mora ustrezati mejam intervala." @@ -1252,6 +1249,7 @@ "Could not load database driver: {}": [ "Ni mogoče naložiti gonilnika podatkovne baze: {}" ], + "Could not resolve hostname: \"%(host)s\".": [""], "Count as Fraction of Columns": [""], "Count as Fraction of Rows": [""], "Count as Fraction of Total": [""], @@ -1479,6 +1477,7 @@ "Deactivate": ["Deaktiviraj"], "December": ["December"], "Decides which column to sort the base axis by.": [""], + "Decides which measure to sort the base axis by.": [""], "Decimal Character": ["Decimalno ločilo"], "Deck.gl - 3D Grid": ["Deck.gl - 3D mreža"], "Deck.gl - 3D HEX": ["Deck.gl - 3D HEX"], @@ -1659,7 +1658,6 @@ ], "Display row level total": ["Prikaži vsote na nivoju vrstic"], "Display settings": ["Nastavitve prikaza"], - "Display total row/column": ["Pokaži vsote vrstic/stolpcev"], "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ "Prikaže povezave med entitetami v strukturi grafa. Uporabno za prikaz razmerij in pomembnih točk v omrežju. Grafikon je lahko krožnega tipa ali z usmerjenimi silami. Če imajo podatki geoprostorsko komponento, poskusite grafikon decl.gl - Arc." ], @@ -1706,12 +1704,9 @@ "Drill to detail is disabled because this chart does not group data by dimension value.": [ "" ], - "Drop columns here": ["Spustite stolpce sem"], - "Drop columns or metrics here": ["Spustite stolpce ali mere sem"], "Drop columns/metrics here or click": [ "Spustite stolpce/mere sem ali kliknite" ], - "Drop temporal column here": ["Spustite časovni stolpec sem"], "Dual Line Chart": ["Grafikon z dvojno krivuljo"], "Duplicate column name(s): %(columns)s": [ "Podvojena imena stolpcev: %(columns)s" @@ -1766,9 +1761,6 @@ "Edit Metric": ["Uredi mero"], "Edit Plugin": ["Uredi vtičnik"], "Edit Report": ["Uredi poročilo"], - "Edit Row level security filter": [ - "Uredi filter za varnost na nivoju vrstic" - ], "Edit Saved Query": ["Uredi shranjeno poizvedbo"], "Edit Table": ["Uredi tabelo"], "Edit annotation": ["Uredi oznako"], @@ -1977,8 +1969,10 @@ "Failed at stopping query. %s": ["Neuspešno ustavljanje poizvedbe. %s"], "Failed to create report": ["Ustvarjanje poročila nesupešno"], "Failed to execute %(query)s": [""], + "Failed to generate chart edit URL": [""], "Failed to load chart data": [""], "Failed to load chart data.": [""], + "Failed to load dimensions for drill by": [""], "Failed to retrieve advanced type": [ "Napaka pri pridobivanju naprednega tipa" ], @@ -2015,7 +2009,6 @@ "Filter List": ["Seznam filtrov"], "Filter Settings": ["Nastavitve filtra"], "Filter Type": ["Tip filtra"], - "Filter box": ["Izbirnik za filtriranje"], "Filter configuration": ["Nastavitve filtra"], "Filter configuration for the filter box": ["Nastavitve za polje filtra"], "Filter has default value": ["Filter ima privzeto vrednost"], @@ -2151,9 +2144,6 @@ "Grid Size": ["Velikost mreže"], "Group By": ["Združevanje (Group by)"], "Group By filter plugin": ["Vtičnik za filter za združevanje"], - "Group By' and 'Columns' can't overlap": [ - "'Združevanje' in 'Stolpci' se ne smeta prekrivati" - ], "Group By, Metrics or Percentage Metrics must have a value": [ "Združevanje, Mera ali Procentualna mera morajo imeti vrednost" ], @@ -2276,6 +2266,10 @@ ], "Instant filtering": ["Takojšnje filtriranje"], "Intensity": ["Intenzivnost"], + "Intensity Radius is the radius at which the weight is distributed": [""], + "Intensity is the value multiplied by the weight to obtain the final weight": [ + "" + ], "Interval End column": ["Stolpec konca intervala"], "Interval bounds": ["Meje intervalov"], "Interval colors": ["Barve intervalov"], @@ -2317,6 +2311,7 @@ "Neveljavne možnosti za %(rolling_type)s: %(options)s" ], "Invalid permalink key": ["Neveljaven ključ povezave"], + "Invalid reference to column: \"%(column)s\"": [""], "Invalid result type: %(result_type)s": [ "Neveljaven tip rezultata: %(result_type)s" ], @@ -2710,7 +2705,6 @@ "Nobena podatkovna baza ne ustreza iskanju" ], "No description available.": ["Opisa ni na razpolago."], - "No dimensions available for drill by": [""], "No favorite charts yet, go click on stars!": [ "Priljubljenih grafikonov še ni. Kliknite na zvezdice!" ], @@ -2894,7 +2888,6 @@ "Optional warning about use of this metric": [ "Opcijsko opozorilo za uporabo te mere" ], - "Optionally add a detailed description": [""], "Options": ["Možnosti"], "Or choose from a list of other databases we support:": [ "Ali izberite iz seznama drugih podatkovnih baz, ki jih podpiramo:" @@ -3022,9 +3015,7 @@ "Pie Chart": ["Tortni grafikon"], "Pie shape": ["Oblika torte"], "Pin": ["Žebljiček"], - "Pivot Options": ["Vrtilne možnosti"], "Pivot Table": ["Vrtilna tabela"], - "Pivot Table (legacy)": [""], "Pivot operation must include at least one aggregate": [ "Vrtilna operacija mora vsebovati vsaj en agregat" ], @@ -3046,7 +3037,6 @@ "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ "Preverite, če ima vaša poizvedba sintaktične napake pri \"%(server_error)s\". Potem ponovno poženite poizvedbo." ], - "Please choose at least one metric": ["Izberite vsaj eno mero"], "Please choose different metrics on left and right axis": [ "Izberite različni meri za levo in desno os" ], @@ -3106,6 +3096,7 @@ "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ "Vrata %(port)s na gostitelju \"%(hostname)s\" niso sprejela povezave." ], + "Port out of range 0-65535": [""], "Position JSON": ["JSON za postavitev"], "Position of child node label on tree": [ "Položaj oznake podrejenega vozlišča na drevesu" @@ -3235,9 +3226,6 @@ "Refresh interval saved": ["Interval osveževanja shranjen"], "Refresh the default values": ["Osveži privzete vrednosti"], "Refreshing charts": ["Osveževanje grafikonov"], - "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter. Base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ - "Navadni filtri dodajo WHERE stavek v poizvedbe, če ima uporabnik vlogo podano v filtru. Osnovni filtri filtrirajo vse poizvedbe, razen vlog, definiranih v filtru, in jih je mogoče uporabiti za nastavitev tega kaj uporabnik vidi, če v skupini filtrov ni RLS-filtrov, ki bi se nanašali nanje." - ], "Relational": ["Relacijsko"], "Relationships between community channels": [ "Razmerja med skupnostnimi kanali" @@ -3371,7 +3359,6 @@ "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ "Vrstica z naslovi, ki se uporabi za imena stolpcev (0 je prva vrstica podatkov). Pustite prazno, če ni naslovne vrstice." ], - "Row level security filter": ["Filter za varnost na nivoju vrstic"], "Row limit": ["Omejitev števila vrstic"], "Rows": ["Vrstice"], "Rows per page, 0 means no pagination": [ @@ -3380,6 +3367,7 @@ "Rows subtotal position": ["Položaj vsot vrstic"], "Rows to Read": ["Vrstice za branje"], "Rule": ["Pravilo"], + "Rule added": [""], "Run": ["Zaženi"], "Run a query to display query history": [ "Za prikaz zgodovine poizvedb zaženite poizvedbo" @@ -3557,6 +3545,12 @@ "Select scheme": ["Izberite shemo"], "Select start and end date": ["Izberite začetni in končni datum"], "Select subject": ["Izberite zadevo"], + "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" + ], + "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" + ], "Select the geojson column": ["Izberite geojson stolpec"], "Select the number of bins for the histogram": [ "Izberite število razdelkov za histogram" @@ -3628,9 +3622,6 @@ "Show Metric": ["Pokaži mero"], "Show Metric Names": ["Pokaži imena mer"], "Show Range Filter": ["Pokaži filter obdobja"], - "Show Row level security filter": [ - "Prikaži filter za varnost na nivoju vrstic" - ], "Show Saved Query": ["Prikaži shranjeno poizvedbo"], "Show Table": ["Prikaži tabelo"], "Show Timestamp": ["Prikaži časovno značko"], @@ -3875,13 +3866,15 @@ ], "Supported databases": ["Podprte podatkovne baze"], "Survey Responses": ["Rezultati anket"], - "Swap Groups and Columns": ["Zamenjaj Skupine in Stolpce"], "Swap rows and columns": ["Zamenjaj vrstice in stolpce"], "Symbol": ["Simbol"], "Symbol of two ends of edge line": ["Simbol za konca povezave"], "Symbol size": ["Velikost simbola"], "Sync columns from source": ["Sinhroniziraj stolpce z virom"], "Syntax": ["Sintaksa"], + "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ + "" + ], "TABLES": ["TABELE"], "THU": ["ČET"], "TUE": ["TOR"], @@ -4240,6 +4233,9 @@ "The user seems to have been deleted": [ "Zdi se, da je bil uporabnik izbrisan" ], + "The user/password combination is not valid (Incorrect password for user).": [ + "" + ], "The username \"%(username)s\" does not exist.": [ "Uporabniško ime \"%(username)s\" ne obstaja." ], @@ -4370,7 +4366,7 @@ "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ "To je lahko bodisi IP naslov (npr. 127.0.0.1) bodisi ime domene (npr. mydatabase.com)." ], - "This chart emits/applies cross-filters to other charts that use the same dataset": [ + "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ "" ], "This chart has been moved to a different filter scope.": [ @@ -4596,7 +4592,6 @@ "To get a readable URL for your dashboard": [ "Za pridobitev berljivega URL-ja za nadzorno ploščo" ], - "Too many columns to filter": ["Preveč stolpcev za filtriranje"], "Tools": ["Orodja"], "Tooltip": ["Opis orodja"], "Tooltip sort by metric": ["Mera za razvrščanje opisa orodja"], @@ -4610,7 +4605,6 @@ "Track job": ["Sledi opravilom"], "Transformable": ["Prilagodljiv"], "Transparent": ["Prozorno"], - "Transpose Pivot": ["Transponirano vrtenje"], "Transpose pivot": ["Transponirano vrtenje"], "Tree Chart": ["Drevesni grafikon"], "Tree layout": ["Oblika drevesa"], @@ -4664,6 +4658,8 @@ "" ], "Unable to create chart without a query id.": [""], + "Unable to decode value": [""], + "Unable to encode value": [""], "Unable to find such a holiday: [%(holiday)s]": [ "Ni mogoče najti takšnega praznika: [%(holiday)s]" ], @@ -4796,9 +4792,6 @@ "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ "Uporablja se za interno identifikacijo vtičnika. Naj bo nastavljeno na ime paketa v vtičnikovem package.json" ], - "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location.\n\n This chart is being deprecated and we recommend checking out Pivot Table V2 instead!": [ - "Uporablja se za predstavitev podatkov z združevanjem različnih statistik na dveh oseh. Npr. Prodaja po regijah in mesecih, Naloge po statusih in izvajalcih, aktivni uporabniki po starosti in lokaciji.\n\n Ta grafikon se opušča. Priporočamo uporabo Vrtilne tabele V2!" - ], "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ "Ponazori podatke na podlagi združevanja več statistik vzdolž dveh osi. Npr. prodaja po regijah in mesecih, opravila po statusih in izvajalcih, itd." ], @@ -4815,6 +4808,9 @@ ], "User query": ["Uporabnikova poizvedba"], "Username": ["Uporabniško ime"], + "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ + "" + ], "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ "Uporablja števec za prikaz napredovanja mere k ciljni vrednosti. Položaj kazalca predstavlja napredek, končna vrednost na števcu pa ciljno vrednost." ], @@ -5418,6 +5414,7 @@ "e.g. xy12345.us-east-2.aws": [""], "e.g., a \"user id\" column": ["t.j. stolpec \"id uporabnika\""], "edit mode": ["načinu urejanja"], + "error dark": [""], "error_message": ["error_message"], "every": ["vsak"], "every day of the month": ["vsak dan v mesecu"], @@ -5434,7 +5431,6 @@ ], "function type icon": ["ikona funkcijskega tipa"], "geohash (square)": [""], - "green": ["zelena"], "heatmap: values are normalized across the entire heatmap": [""], "here": ["tukaj"], "hour": ["ura"], @@ -5503,7 +5499,6 @@ "query": ["poizvedba"], "reboot": ["ponovni zagon"], "recents": ["nedavne"], - "red": ["rdeča"], "report": ["poročilo"], "reports": ["poročila"], "restore zoom": ["ponastavi prikaz"], @@ -5535,7 +5530,6 @@ "y": [""], "y: values are normalized within each row": [""], "year": ["leto"], - "yellow": ["rumena"], "zoom area": [""] } } diff --git a/superset/translations/sl/LC_MESSAGES/messages.po b/superset/translations/sl/LC_MESSAGES/messages.po index 5b8925cf1c..e81c41aea5 100644 --- a/superset/translations/sl/LC_MESSAGES/messages.po +++ b/superset/translations/sl/LC_MESSAGES/messages.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: Superset\n" "Report-Msgid-Bugs-To: dkrat7 @github.com\n" -"POT-Creation-Date: 2023-04-07 19:09+0200\n" +"POT-Creation-Date: 2023-05-23 16:30-0300\n" "PO-Revision-Date: 2022-06-19 20:59+0200\n" "Last-Translator: dkrat7 \n" "Language: sl_SI\n" @@ -42,7 +42,7 @@ msgstr "" " Pri shranjevanju grafikona se ne bo shranil.\n" " " -#: superset/reports/notifications/email.py:88 +#: superset/reports/notifications/email.py:89 #, python-format msgid "" "\n" @@ -64,12 +64,12 @@ msgid "" "in the GeoJSON" msgstr " Nastavite prosojnost na 0, če želite obdržati barvo določeno v GeoJSON" -#: superset-frontend/src/explore/components/SaveModal.tsx:364 +#: superset-frontend/src/explore/components/SaveModal.tsx:399 #, fuzzy msgid " a dashboard OR " msgstr "Shrani nadzorno ploščo" -#: superset-frontend/src/explore/components/SaveModal.tsx:366 +#: superset-frontend/src/explore/components/SaveModal.tsx:401 #, fuzzy msgid " a new one" msgstr "Spremenjen" @@ -113,7 +113,7 @@ msgstr "" " podatkovne baze oz. stolpca s pomočjo dodatnega " "parametra." -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:334 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:340 #, fuzzy msgid " to add calculated columns" msgstr "Izračunani stolpci" @@ -127,8 +127,8 @@ msgstr "Dodaj mero" msgid " to edit or add columns and metrics." msgstr " za urejanje ali dodajanje stolpcev in mer." -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:323 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:358 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:364 msgid " to mark a column as a time column" msgstr "" @@ -136,7 +136,7 @@ msgstr "" msgid " to open SQL Lab. From there you can save the query as a dataset." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:333 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 msgid " to visualize your data." msgstr "" @@ -144,7 +144,7 @@ msgstr "" msgid "!= (Is not equal)" msgstr "!= (ni enako)" -#: superset/security/analytics_db_safety.py:44 +#: superset/security/analytics_db_safety.py:48 #, python-format msgid "%(dialect)s cannot be used as a data source for security reasons." msgstr "" @@ -162,7 +162,7 @@ msgstr "" "To je lahko sproženo z/s: \n" "%(issues)s" -#: superset/reports/notifications/email.py:168 +#: superset/reports/notifications/email.py:171 #, python-format msgid "%(name)s.csv" msgstr "%(name)s.csv" @@ -194,14 +194,14 @@ msgstr "" "Nedavno ogledani grafikoni, nadzorne plošče in shranjene poizvedbe bodo " "prikazane tukaj" -#: superset/reports/notifications/email.py:177 +#: superset/reports/notifications/email.py:180 #, python-format msgid "%(prefix)s %(title)s" msgstr "%(prefix)s %(title)s" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:345 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:363 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:377 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:338 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:356 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:370 #, python-format msgid "%(rows)d rows returned" msgstr "%(rows)d vrnjenih vrstic" @@ -228,7 +228,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: superset/views/core.py:384 +#: superset/views/core.py:385 #, python-format msgid "" "%(user)s was granted the role %(role)s that gives access to the " @@ -237,12 +237,12 @@ msgstr "" "Uporabniku %(user)s je bila dodeljena vloga %(role)s, ki omogoča dostop " "do %(datasource)s" -#: superset/views/core.py:2672 +#: superset/views/core.py:2709 #, python-format msgid "%(user)s's profile" msgstr "Profil uporabnika: %(user)s" -#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2327 +#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2369 #, python-format msgid "" "%(validator)s was unable to check your query.\n" @@ -259,25 +259,25 @@ msgid "%s Error" msgstr "%s napaka" #: superset-frontend/src/components/ImportModal/index.tsx:298 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1300 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1355 #, python-format msgid "%s PASSWORD" msgstr "%s GESLO" #: superset-frontend/src/components/ImportModal/index.tsx:318 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1318 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1373 #, python-format msgid "%s SSH TUNNEL PASSWORD" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:341 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1336 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1391 #, python-format msgid "%s SSH TUNNEL PRIVATE KEY" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:363 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1356 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1411 #, python-format msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" msgstr "" @@ -287,17 +287,17 @@ msgstr "" msgid "%s Selected" msgstr "Izbranih: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:808 +#: superset-frontend/src/pages/DatasetList/index.tsx:830 #, python-format msgid "%s Selected (%s Physical, %s Virtual)" msgstr "Izbranih: %s (fizični: %s, virtualni: %s)" -#: superset-frontend/src/pages/DatasetList/index.tsx:801 +#: superset-frontend/src/pages/DatasetList/index.tsx:823 #, python-format msgid "%s Selected (Physical)" msgstr "Izbranih: %s (fizični)" -#: superset-frontend/src/pages/DatasetList/index.tsx:794 +#: superset-frontend/src/pages/DatasetList/index.tsx:816 #, python-format msgid "%s Selected (Virtual)" msgstr "Izbranih: %s (virtualni)" @@ -307,8 +307,8 @@ msgstr "Izbranih: %s (virtualni)" msgid "%s aggregates(s)" msgstr "Agreg. funkcije: %s" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:274 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:371 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:280 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:377 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:346 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 #, python-format @@ -351,8 +351,8 @@ msgstr[3] "" msgid "%s saved metric(s)" msgstr "Shranjene mere: %s" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:636 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:652 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:639 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:655 #, python-format msgid "%s updated" msgstr "%s posodobljeni" @@ -369,7 +369,7 @@ msgstr "%s%s" msgid "%s-%s of %s" msgstr "%s-%s od %s" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:115 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:116 msgid "(Removed)" msgstr "(Odstranjeno)" @@ -433,11 +433,11 @@ msgstr "" msgid "+ %s more" msgstr "" -#: superset/views/database/forms.py:153 +#: superset/views/database/forms.py:163 msgid "," msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:656 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:652 msgid "" "-- Note: Unless you save your query, these tabs will NOT persist if you " "clear your cookies or change browsers.\n" @@ -447,11 +447,11 @@ msgstr "" "boste počistili piškote ali zamenjali brskalnik.\n" "\n" -#: superset/views/database/forms.py:154 +#: superset/views/database/forms.py:164 msgid "." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:791 +#: superset-frontend/src/pages/DatasetList/index.tsx:813 msgid "0 Selected" msgstr "Izbranih: 0" @@ -551,7 +551,7 @@ msgstr "Frekvenca osveževanja" msgid "1 year start frequency" msgstr "Frekvenca osveževanja" -#: superset/db_engine_specs/base.py:101 +#: superset/db_engine_specs/base.py:102 msgid "10 minute" msgstr "10 minut" @@ -567,7 +567,7 @@ msgstr "teden" msgid "104 weeks ago" msgstr "" -#: superset/db_engine_specs/base.py:102 +#: superset/db_engine_specs/base.py:103 msgid "15 minute" msgstr "15 minut" @@ -687,7 +687,7 @@ msgstr "30 dni" msgid "30 days ago" msgstr "30 dni" -#: superset/db_engine_specs/base.py:103 +#: superset/db_engine_specs/base.py:104 msgid "30 minute" msgstr "30 minut" @@ -696,7 +696,7 @@ msgstr "30 minut" msgid "30 minutes" msgstr "30 minut" -#: superset/db_engine_specs/base.py:98 +#: superset/db_engine_specs/base.py:99 msgid "30 second" msgstr "30 sekund" @@ -716,7 +716,7 @@ msgstr "3D" msgid "4 weeks (freq=4W-MON)" msgstr "" -#: superset/db_engine_specs/base.py:100 +#: superset/db_engine_specs/base.py:101 msgid "5 minute" msgstr "5 minut" @@ -725,7 +725,7 @@ msgstr "5 minut" msgid "5 minutes" msgstr "5 minut" -#: superset/db_engine_specs/base.py:97 +#: superset/db_engine_specs/base.py:98 msgid "5 second" msgstr "5 sekund" @@ -754,7 +754,7 @@ msgstr "Teden z začetkom v ponedeljek" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 #: superset-frontend/src/explore/controls.jsx:261 -#: superset/db_engine_specs/base.py:105 +#: superset/db_engine_specs/base.py:106 msgid "6 hour" msgstr "6 ur" @@ -842,16 +842,16 @@ msgstr ">= (večje ali enako)" msgid "A Big Number" msgstr "Velika številka" -#: superset/views/database/forms.py:184 +#: superset/views/database/forms.py:194 #, fuzzy msgid "A comma separated list of columns that should be parsed as dates" msgstr "Z vejico ločen seznam stolpcev, v katerih bodo prepoznani datumi." -#: superset/views/database/forms.py:367 +#: superset/views/database/forms.py:377 msgid "A comma separated list of columns that should be parsed as dates." msgstr "Z vejico ločen seznam stolpcev, v katerih bodo prepoznani datumi." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:433 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 #, fuzzy msgid "A comma-separated list of schemas that files are allowed to upload to." msgstr "Z vejicami ločen seznam shem, kjer je dovoljeno nalaganje CSV-jev." @@ -860,6 +860,12 @@ msgstr "Z vejicami ločen seznam shem, kjer je dovoljeno nalaganje CSV-jev." msgid "A database with the same name already exists." msgstr "Podatkovna baza z enakim imenom že obstaja." +#: superset/views/database/forms.py:145 +msgid "" +"A dictionary with column names and their data types if you need to change" +" the defaults. Example: {\"user_id\":\"integer\"}" +msgstr "" + #: superset/views/dynamic_plugins.py:52 msgid "" "A full URL pointing to the location of the built plugin (could be hosted " @@ -937,16 +943,16 @@ msgstr "Sklic na nastavitve za [Čas], ki upošteva granulacijo" msgid "A report named \"%(name)s\" already exists" msgstr "Poročilo poimenovano %(name)s že obstaja" -#: superset-frontend/src/explore/components/SaveModal.tsx:333 +#: superset-frontend/src/explore/components/SaveModal.tsx:368 msgid "A reusable dataset will be saved with your chart." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:309 +#: superset-frontend/src/components/ReportModal/index.tsx:308 msgid "A screenshot of the dashboard will be sent to your email at" msgstr "Zaslonska slika nadzorne plošče bo poslana na vaš e-naslov ob" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 -#: superset/connectors/sqla/views.py:458 +#: superset/connectors/sqla/views.py:365 msgid "" "A set of parameters that become available in the query using Jinja " "templating syntax" @@ -997,8 +1003,8 @@ msgstr "UPORABI" msgid "APR" msgstr "APR" -#: superset-frontend/src/pages/DatabaseList/index.tsx:312 -#: superset-frontend/src/pages/DatabaseList/index.tsx:478 +#: superset-frontend/src/pages/DatabaseList/index.tsx:323 +#: superset-frontend/src/pages/DatabaseList/index.tsx:489 msgid "AQE" msgstr "AQE" @@ -1025,7 +1031,7 @@ msgstr "O programu" msgid "Access" msgstr "Dostop" -#: superset/initialization/__init__.py:431 +#: superset/initialization/__init__.py:425 msgid "Access requests" msgstr "Zahteve za dostop" @@ -1038,7 +1044,7 @@ msgstr "Dostop do aktivnosti uporabnikov je omejen" msgid "Access token" msgstr "nadrejeni" -#: superset/views/core.py:317 +#: superset/views/core.py:318 msgid "Access was requested" msgstr "Zahtevan je bil dostop" @@ -1046,7 +1052,7 @@ msgstr "Zahtevan je bil dostop" msgid "Action" msgstr "Aktivnost" -#: superset/initialization/__init__.py:393 +#: superset/initialization/__init__.py:387 msgid "Action Log" msgstr "Dnevnik aktivnosti" @@ -1057,9 +1063,10 @@ msgstr "Dnevnik aktivnosti" #: superset-frontend/src/pages/ChartList/index.tsx:569 #: superset-frontend/src/pages/CssTemplateList/index.tsx:229 #: superset-frontend/src/pages/DashboardList/index.tsx:477 -#: superset-frontend/src/pages/DatabaseList/index.tsx:448 -#: superset-frontend/src/pages/DatasetList/index.tsx:488 +#: superset-frontend/src/pages/DatabaseList/index.tsx:459 +#: superset-frontend/src/pages/DatasetList/index.tsx:499 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:327 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:216 #: superset-frontend/src/pages/SavedQueryList/index.tsx:437 #: superset-frontend/src/pages/Tags/index.tsx:171 msgid "Actions" @@ -1092,18 +1099,19 @@ msgstr "Prazne (Null) vrednosti" msgid "Actual values" msgstr "Prazne (Null) vrednosti" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:35 -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 #: superset-frontend/src/explore/controls.jsx:78 #: superset-frontend/src/explore/controls.jsx:101 msgid "Adaptive formatting" msgstr "Adaptivno oblikovanje" -#: superset-frontend/src/components/ReportModal/index.tsx:229 +#: superset-frontend/src/components/ReportModal/index.tsx:228 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 #: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 #: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 msgid "Add" msgstr "Dodaj" @@ -1123,7 +1131,7 @@ msgstr "Dodaj CSS predlogo" msgid "Add Chart" msgstr "Dodaj grafikon" -#: superset/connectors/sqla/views.py:74 +#: superset/connectors/sqla/views.py:73 msgid "Add Column" msgstr "Dodaj stolpec" @@ -1139,7 +1147,7 @@ msgstr "Dodaj podatkovno bazo" msgid "Add Log" msgstr "Dodaj dnevnik" -#: superset/connectors/sqla/views.py:209 +#: superset/connectors/sqla/views.py:208 msgid "Add Metric" msgstr "Dodaj mero" @@ -1147,9 +1155,10 @@ msgstr "Dodaj mero" msgid "Add Report" msgstr "Dodaj poročilo" -#: superset/connectors/sqla/views.py:292 -msgid "Add Row level security filter" -msgstr "Dodaj filter za varnost na nivoju vrstic" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +#, fuzzy +msgid "Add Rule" +msgstr "Oblika zapisa datuma" #: superset/views/sql_lab/views.py:54 msgid "Add Saved Query" @@ -1164,11 +1173,11 @@ msgstr "Dodaj vtičnik" msgid "Add a dataset" msgstr "Dodaj podatkovni set" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:262 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:272 msgid "Add a new tab" msgstr "Dodaj nov zavihek" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:286 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:296 msgid "Add a new tab to create SQL Query" msgstr "Dodaj nov zavihek za SQL-poizvedbo" @@ -1198,26 +1207,30 @@ msgstr "Dodaj oznako" msgid "Add annotation layer" msgstr "Dodaj sloj z oznakami" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:300 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:306 msgid "Add calculated columns to dataset in \"Edit datasource\" modal" msgstr "Dodaj izračunan stolpec v podatkovni set v oknu \"Uredi podatkovni vir\"" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:297 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:303 msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" msgstr "" "Dodaj izračunan časovni stolpec v podatkovni set v oknu \"Uredi " "podatkovni vir\"" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:167 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:197 #, fuzzy msgid "Add cross-filter" msgstr "Dodaj filter" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 +msgid "Add custom scoping" +msgstr "" + #: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 msgid "Add delivery method" msgstr "Dodajte način dostave" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:330 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 #, fuzzy msgid "Add extra connection information." msgstr "Dodatne informacije" @@ -1288,7 +1301,7 @@ msgstr "Dodajte naslov grafikona" msgid "Add the name of the dashboard" msgstr "Dodajte naziv nadzorne plošče" -#: superset-frontend/src/explore/components/SaveModal.tsx:351 +#: superset-frontend/src/explore/components/SaveModal.tsx:386 msgid "Add to dashboard" msgstr "Dodaj na nadzorno ploščo" @@ -1315,7 +1328,7 @@ msgstr[3] "" msgid "Additional Parameters" msgstr "Dodatni parametri" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1787 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1843 msgid "Additional fields may be required" msgstr "" @@ -1327,16 +1340,16 @@ msgstr "Dodatne informacije" msgid "Additional metadata" msgstr "Dodatni metapodatki" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:54 msgid "Additional padding for legend." msgstr "Dodatni razmak za legendo." -#: superset/db_engine_specs/base.py:1847 -#: superset/db_engine_specs/clickhouse.py:214 +#: superset/db_engine_specs/base.py:1885 +#: superset/db_engine_specs/clickhouse.py:221 msgid "Additional parameters" msgstr "Dodatni parametri" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:444 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 #, fuzzy msgid "Additional settings." msgstr "Pogojno oblikovanje" @@ -1352,17 +1365,18 @@ msgstr "Dodatno besedilo, ki ga dodate pred ali za vrednost, npr. enota" msgid "Additive" msgstr "Aditivno" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:75 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 msgid "Adjust how this database will interact with SQL Lab." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:221 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:231 msgid "Adjust performance settings of this database." msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:132 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:91 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:127 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:93 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 @@ -1371,7 +1385,7 @@ msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:939 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:771 #: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1811 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 msgid "Advanced" msgstr "Napredno" @@ -1469,7 +1483,6 @@ msgstr "" "Agregacijska funkcija za seznam točk v vsaki gruči, s katero se ustvari " "oznaka gruče." -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:63 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:202 msgid "" "Aggregate function to apply when pivoting and computing the total rows " @@ -1484,12 +1497,15 @@ msgstr "" "Agregira podatke znotraj meja celic in agregirane vrednosti ponazori z " "dinamično barvno lestvico" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +#, fuzzy +msgid "Aggregation" +msgstr "agregacija" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 msgid "Aggregation function" msgstr "Agregacijska funkcija" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:593 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:162 #, fuzzy msgid "Alert" @@ -1573,7 +1589,7 @@ msgstr "Napaka nastavitev potrjevalnika opozoril." msgid "Alerts" msgstr "Opozorila" -#: superset/initialization/__init__.py:410 +#: superset/initialization/__init__.py:404 msgid "Alerts & Reports" msgstr "Opozorila in poročila" @@ -1599,8 +1615,8 @@ msgstr "Poravnaj +/-" #: superset-frontend/src/pages/DashboardList/index.tsx:528 #: superset-frontend/src/pages/DashboardList/index.tsx:550 #: superset-frontend/src/pages/DashboardList/index.tsx:600 -#: superset-frontend/src/pages/DatabaseList/index.tsx:465 -#: superset-frontend/src/pages/DatabaseList/index.tsx:485 +#: superset-frontend/src/pages/DatabaseList/index.tsx:476 +#: superset-frontend/src/pages/DatabaseList/index.tsx:496 #: superset-frontend/src/pages/Home/index.tsx:205 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:354 #: superset-frontend/src/pages/SavedQueryList/index.tsx:453 @@ -1609,7 +1625,7 @@ msgid "All" msgstr "Vsi" #: superset-frontend/src/pages/AllEntities/index.tsx:76 -#: superset/initialization/__init__.py:376 +#: superset/initialization/__init__.py:370 #, fuzzy msgid "All Entities" msgstr "Vsi filtri" @@ -1621,13 +1637,18 @@ msgstr "Vsi filtri" msgid "All Text" msgstr "Celotno besedilo" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 #: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:69 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 #: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:85 #: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:128 msgid "All charts" msgstr "Vsi grafikoni" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 +msgid "All charts/global scoping" +msgstr "" + #: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 msgid "All filters" msgstr "Vsi filtri" @@ -1637,7 +1658,7 @@ msgstr "Vsi filtri" msgid "All filters (%(filterCount)d)" msgstr "Vsi filtri (%(filterCount)d)" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:49 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 msgid "All panels" msgstr "Vsi paneli" @@ -1645,7 +1666,7 @@ msgstr "Vsi paneli" msgid "All panels with this column will be affected by this filter" msgstr "Ta filter bo vplival na vse panele s tem stolpcem" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:107 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 #: superset/views/database/mixins.py:184 msgid "Allow CREATE TABLE AS" msgstr "Dovoli CREATE TABLE AS" @@ -1654,7 +1675,7 @@ msgstr "Dovoli CREATE TABLE AS" msgid "Allow CREATE TABLE AS option in SQL Lab" msgstr "Dovoli opcijo CREATE TABLE AS v SQL laboratoriju" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:121 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 #: superset/views/database/mixins.py:185 msgid "Allow CREATE VIEW AS" msgstr "Dovoli CREATE VIEW AS" @@ -1667,7 +1688,7 @@ msgstr "Dovoli opcijo CREATE VIEW AS v SQL laboratoriju" msgid "Allow Csv Upload" msgstr "Dovoli nalaganje CSV" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 #: superset/views/database/mixins.py:186 msgid "Allow DML" msgstr "Dovoli DML" @@ -1676,15 +1697,15 @@ msgstr "Dovoli DML" msgid "Allow columns to be rearranged" msgstr "Omogoči razvrščanje stolpcev" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:110 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 msgid "Allow creation of new tables based on queries" msgstr "Dovoli ustvarjanje novih tabel s poizvedbami" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:124 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 msgid "Allow creation of new views based on queries" msgstr "Dovoli ustvarjanje novih pogledov s poizvedbami" -#: superset-frontend/src/pages/DatabaseList/index.tsx:329 +#: superset-frontend/src/pages/DatabaseList/index.tsx:340 msgid "Allow data manipulation language" msgstr "Dovoli jezik za manipulacijo podatkov (DML)" @@ -1696,12 +1717,12 @@ msgstr "" "Uporabniku omogočite, da s potegom razvrsti stolpce. Sprememba se ne bo " "ohranila, ko bo grafikon ponovno naložen." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:411 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:421 #, fuzzy msgid "Allow file uploads to database" msgstr "Izberite Excel-ovo datoteko, ki bo naložena v podatkovno bazo." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:157 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 msgid "" "Allow manipulation of the database using non-SELECT statements such as " "UPDATE, DELETE, CREATE, etc." @@ -1721,11 +1742,11 @@ msgstr "Dovoli izbiro vozlišča" msgid "Allow sending multiple polygons as a filter event" msgstr "Dovoli pošiljanje več poligonov kot dogodek filtra" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:186 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 msgid "Allow this database to be explored" msgstr "Dovoli raziskovanje te podatkovne baze" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:91 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 msgid "Allow this database to be queried in SQL Lab" msgstr "Dovoli poizvedbo na to podatkovno bazo v SQL laboratoriju" @@ -1773,7 +1794,7 @@ msgstr "Prišlo je do napake" msgid "An alert named \"%(name)s\" already exists" msgstr "Opozorilo poimenovano %(name)s že obstaja" -#: superset/common/query_context_processor.py:326 superset/viz.py:1447 +#: superset/common/query_context_processor.py:326 superset/viz.py:1352 msgid "" "An enclosed time range (both start and end) must be specified when using " "a Time Comparison." @@ -1781,7 +1802,7 @@ msgstr "" "Pri časovni primerjavi mora biti določeno zaprto časovno obdobje (s časom" " začetka in konca)." -#: superset/databases/schemas.py:285 +#: superset/databases/schemas.py:289 msgid "" "An engine must be specified when passing individual parameters to a " "database." @@ -1790,7 +1811,7 @@ msgstr "" "tip." #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:791 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:141 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:183 #: superset-frontend/src/components/Tags/utils.tsx:67 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:127 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:109 @@ -1805,7 +1826,7 @@ msgstr "Prišlo je do napake" msgid "An error occurred" msgstr "Prišlo je do napake" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:317 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:323 msgid "An error occurred saving dataset" msgstr "Pri shranjevanju podatkovnega seta je prišlo do napake" @@ -1816,7 +1837,7 @@ msgstr "Pri shranjevanju podatkovnega seta je prišlo do napake" msgid "An error occurred while accessing the value." msgstr "Pri dostopanju do vednosti je prišlo do težave." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1368 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1360 msgid "" "An error occurred while collapsing the table schema. Please contact your " "administrator." @@ -1824,13 +1845,13 @@ msgstr "" "Pri krčenju sheme tabele je prišlo do napake. Kontaktirajte " "administratorja." -#: superset-frontend/src/views/CRUD/hooks.ts:304 +#: superset-frontend/src/views/CRUD/hooks.ts:308 #, python-format msgid "An error occurred while creating %ss: %s" msgstr "Napaka pri ustvarjanju %s: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1529 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1551 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1530 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1552 msgid "An error occurred while creating the data source" msgstr "Pri ustvarjanju podatkovnega vira je prišlo do težave" @@ -1846,7 +1867,7 @@ msgstr "Pri ustvarjanju vrednosti je prišlo do težave." msgid "An error occurred while deleting the value." msgstr "Pri brisanju vrednosti je prišlo do napake." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1344 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1336 msgid "" "An error occurred while expanding the table schema. Please contact your " "administrator." @@ -1860,8 +1881,8 @@ msgid "An error occurred while fetching %s info: %s" msgstr "Napaka pri pridobivanju informacij za %s: %s" #: superset-frontend/src/views/CRUD/hooks.ts:174 -#: superset-frontend/src/views/CRUD/hooks.ts:261 -#: superset-frontend/src/views/CRUD/hooks.ts:349 +#: superset-frontend/src/views/CRUD/hooks.ts:265 +#: superset-frontend/src/views/CRUD/hooks.ts:353 #, python-format msgid "An error occurred while fetching %ss: %s" msgstr "Napaka pri pridobivanju informacij za %s: %s" @@ -1906,7 +1927,7 @@ msgstr "Prišlo je do napake pri pridobivanju nadzornih plošč: %s" msgid "An error occurred while fetching dashboards: %s" msgstr "Prišlo je do napake pri pridobivanju nadzornih plošč: %s" -#: superset-frontend/src/pages/DatabaseList/index.tsx:145 +#: superset-frontend/src/pages/DatabaseList/index.tsx:156 #, python-format msgid "An error occurred while fetching database related data: %s" msgstr "Pri pridobivanju podatkov iz podatkovne baze je prišlo do napake: %s" @@ -1925,26 +1946,26 @@ msgstr "" "Pri pridobivanju vrednosti podatkovnega vira podatkovnega seta je prišlo " "do napake: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:510 +#: superset-frontend/src/pages/DatasetList/index.tsx:521 #, python-format msgid "An error occurred while fetching dataset owner values: %s" msgstr "Pri pridobivanju polja lastnik podatkovnega seta je prišlo do napake: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:222 +#: superset-frontend/src/pages/DatasetList/index.tsx:233 msgid "An error occurred while fetching dataset related data" msgstr "Napaka pri pridobivanju podatkov iz podatkovnega seta" -#: superset-frontend/src/pages/DatasetList/index.tsx:242 +#: superset-frontend/src/pages/DatasetList/index.tsx:253 #, python-format msgid "An error occurred while fetching dataset related data: %s" msgstr "Napaka pri pridobivanju podatkov iz podatkovnega seta: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:530 +#: superset-frontend/src/pages/DatasetList/index.tsx:541 #, python-format msgid "An error occurred while fetching datasets: %s" msgstr "Prišlo je do napake pri pridobivanju podatkovnih setov: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1581 +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx:120 msgid "An error occurred while fetching function names." msgstr "Pri pridobivanju imen funkcij je prišlo do napake." @@ -1953,23 +1974,23 @@ msgstr "Pri pridobivanju imen funkcij je prišlo do napake." msgid "An error occurred while fetching owners values: %s" msgstr "Pri pridobivanju polja lastnik je prišlo do napake: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:546 +#: superset-frontend/src/pages/DatasetList/index.tsx:557 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:378 #: superset-frontend/src/pages/SavedQueryList/index.tsx:480 #, python-format msgid "An error occurred while fetching schema values: %s" msgstr "Pri pridobivanju vrednosti shem je prišlo do napake: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:799 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:795 msgid "An error occurred while fetching tab state" msgstr "Pri pridobivanju stanja zavihka je prišlo do napake" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1199 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1224 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1191 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1216 msgid "An error occurred while fetching table metadata" msgstr "Pri pridobivanju metapodatkov tabele je prišlo do napake" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1296 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1288 msgid "" "An error occurred while fetching table metadata. Please contact your " "administrator." @@ -1987,7 +2008,7 @@ msgstr "Pri pridobivanju vrednosti \"Ustvaril\" je prišlo do napake: %s" msgid "An error occurred while fetching user values: %s" msgstr "Pri pridobivanju vrednosti uporabnika je prišlo do napake: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:835 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:831 msgid "" "An error occurred while hiding the left bar. Please contact your " "administrator." @@ -1995,17 +2016,22 @@ msgstr "" "Pri skrivanju leve vrstice je prišlo do napake. Kontaktirajte " "administratorja." -#: superset-frontend/src/views/CRUD/hooks.ts:502 -#: superset-frontend/src/views/CRUD/hooks.ts:518 +#: superset-frontend/src/views/CRUD/hooks.ts:506 +#: superset-frontend/src/views/CRUD/hooks.ts:522 #, python-format msgid "An error occurred while importing %s: %s" msgstr "Napaka pri uvažanju %s: %s" +#: superset-frontend/src/explore/components/SaveModal.tsx:135 +#, fuzzy +msgid "An error occurred while loading dashboard information." +msgstr "Prišlo je do napake pri pridobivanju nadzornih plošč: %s" + #: superset-frontend/src/components/Chart/chartAction.js:579 msgid "An error occurred while loading the SQL" msgstr "Pri nalaganju SQL je prišlo do napake" -#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:332 +#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:325 msgid "An error occurred while opening Explore" msgstr "Pri odpiranju Raziskovalca je prišlo do napake" @@ -2017,19 +2043,19 @@ msgstr "Pri branju ključa je prišlo do težave." msgid "An error occurred while pruning logs " msgstr "Pri krajšanju dnevnikov je prišlo do napake " -#: superset-frontend/src/SqlLab/actions/sqlLab.js:892 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:888 msgid "An error occurred while removing query. Please contact your administrator." msgstr "" "Pri odstranjevanju poizvedbe je prišlo do napake. Kontaktirajte " "administratorja." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:857 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:853 msgid "An error occurred while removing tab. Please contact your administrator." msgstr "" "Pri odstranjevanju zavihka je prišlo do napake. Kontaktirajte " "administratorja." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1396 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1388 msgid "" "An error occurred while removing the table schema. Please contact your " "administrator." @@ -2042,7 +2068,7 @@ msgstr "" msgid "An error occurred while rendering the visualization: %s" msgstr "Pri prikazovanju vizualizacije je prišlo do napake: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:710 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:706 msgid "" "An error occurred while setting the active tab. Please contact your " "administrator." @@ -2050,7 +2076,7 @@ msgstr "" "Pri določanju aktivnega zavihka je prišlo do napake. Kontaktirajte " "administratorja." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:975 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:967 msgid "" "An error occurred while setting the tab autorun. Please contact your " "administrator." @@ -2058,7 +2084,7 @@ msgstr "" "Pri določanju samodejnega zagona zavihka je prišlo do napake. " "Kontaktirajte administratorja." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:915 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:911 msgid "" "An error occurred while setting the tab database ID. Please contact your " "administrator." @@ -2066,8 +2092,8 @@ msgstr "" "Pri določanju ID-ja v podatkovne baze za zavihek je prišlo do napake. " "Kontaktirajte administratorja." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1004 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1128 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:996 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1120 #, fuzzy msgid "" "An error occurred while setting the tab name. Please contact your " @@ -2076,7 +2102,7 @@ msgstr "" "Pri določanju naslova zavihka je prišlo do napake. Kontaktirajte " "administratorja." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:946 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:942 msgid "" "An error occurred while setting the tab schema. Please contact your " "administrator." @@ -2084,7 +2110,7 @@ msgstr "" "Pri določanju sheme zavihka je prišlo do napake. Kontaktirajte " "administratorja." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1154 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1146 msgid "" "An error occurred while setting the tab template parameters. Please " "contact your administrator." @@ -2096,8 +2122,8 @@ msgstr "" msgid "An error occurred while starring this chart" msgstr "Pri ocenjevanju grafikona je prišlo do napake" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:251 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:297 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:255 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:301 msgid "" "An error occurred while storing the latest query id in the backend. " "Please contact your administrator if this problem persists." @@ -2105,7 +2131,7 @@ msgstr "" "Pri shranjevanju zadnjega id-ja poizvedbe v sistem je prišlo do napake. " "Če se težava ponavlja, kontaktirajte administratorja." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1095 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1087 msgid "" "An error occurred while storing your query in the backend. To avoid " "losing your changes, please save your query using the \"Save Query\" " @@ -2128,7 +2154,7 @@ msgstr "Pri posodabljanju vrednosti je prišlo do težave." msgid "An unexpected error occurred" msgstr "Prišlo je do nepričakovane napake" -#: superset/views/core.py:734 +#: superset/views/core.py:745 msgid "An unknown error occurred. Please contact your Superset administrator" msgstr "" "Zgodila se je neznana napaka. Kontaktirajte svojega administratorja za " @@ -2162,7 +2188,7 @@ msgstr "Sloj z oznakami %s" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:127 -#: superset/initialization/__init__.py:420 +#: superset/initialization/__init__.py:414 msgid "Annotation Layers" msgstr "Sloji z oznakami" @@ -2310,7 +2336,8 @@ msgstr "Oznak ni mogoče izbrisati." #: superset-frontend/src/pages/DashboardList/index.tsx:504 #: superset-frontend/src/pages/DashboardList/index.tsx:572 #: superset-frontend/src/pages/DashboardList/index.tsx:586 -#: superset-frontend/src/pages/DatasetList/index.tsx:570 +#: superset-frontend/src/pages/DatasetList/index.tsx:581 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:260 msgid "Any" msgstr "Katerikoli" @@ -2327,13 +2354,13 @@ msgstr "" "Na tem mestu izbrana barvna shema bo nadomestila barve posameznih " "grafikonov v tej nadzorni plošči" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:953 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1008 msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " msgstr "" "Dodate lahko katerokoli podatkovno bazo, ki podpira konekcije z SQL " "Alchemy URI-ji. " -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:967 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1022 msgid "" "Any databases that allow connections via SQL Alchemy URIs can be added. " "Learn about how to connect a database driver " @@ -2341,8 +2368,8 @@ msgstr "" "Dodate lahko katerokoli podatkovno bazo, ki podpira konekcije z SQL " "Alchemy URI-ji. Naučite se kako povezati gonilnik podatkovne baze " -#: superset/views/database/forms.py:169 superset/views/database/forms.py:326 -#: superset/views/database/forms.py:457 +#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 +#: superset/views/database/forms.py:467 msgid "Append" msgstr "Dodaj" @@ -2361,7 +2388,7 @@ msgstr "Uporabljeni filtri (%d)" msgid "Applied filters: %s" msgstr "Uporabljeni filtri (%d)" -#: superset/viz.py:246 +#: superset/viz.py:250 msgid "" "Applied rolling window did not return any data. Please make sure the " "source query satisfies the minimum periods defined in the rolling window." @@ -2372,11 +2399,16 @@ msgstr "" #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:856 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:228 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:476 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:479 msgid "Apply" msgstr "Uporabi" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:100 +#, fuzzy +msgid "Apply conditional color formatting to metric" +msgstr "Za mere uporabi pogojno oblikovanje z barvami" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:386 msgid "Apply conditional color formatting to metrics" msgstr "Za mere uporabi pogojno oblikovanje z barvami" @@ -2424,6 +2456,7 @@ msgstr "Ali želite prekiniti?" #: superset-frontend/src/pages/ChartList/index.tsx:509 #: superset-frontend/src/pages/DashboardList/index.tsx:418 #: superset-frontend/src/pages/DashboardList/index.tsx:739 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:173 #: superset-frontend/src/pages/Tags/index.tsx:144 msgid "Are you sure you want to delete" msgstr "Ali ste prepričani, da želite izbrisati" @@ -2450,7 +2483,7 @@ msgstr "Ali ste prepričani, da želite izbrisati izbrane grafikone?" msgid "Are you sure you want to delete the selected dashboards?" msgstr "Ali ste prepričani, da želite izbrisati izbrane nadzorne plošče?" -#: superset-frontend/src/pages/DatasetList/index.tsx:741 +#: superset-frontend/src/pages/DatasetList/index.tsx:763 msgid "Are you sure you want to delete the selected datasets?" msgstr "Ali ste prepričani, da želite izbrisati izbrane podatkovne sete?" @@ -2462,6 +2495,11 @@ msgstr "Ali ste prepričani, da želite izbrisati izbrane sloje?" msgid "Are you sure you want to delete the selected queries?" msgstr "Ali ste prepričani, da želite izbrisati izbrane poizvedbe?" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:305 +#, fuzzy +msgid "Are you sure you want to delete the selected rules?" +msgstr "Ali ste prepričani, da želite izbrisati izbrane sloje?" + #: superset-frontend/src/pages/Tags/index.tsx:282 #, fuzzy msgid "Are you sure you want to delete the selected tags?" @@ -2471,7 +2509,7 @@ msgstr "Ali ste prepričani, da želite izbrisati izbrane %s?" msgid "Are you sure you want to delete the selected templates?" msgstr "Ali ste prepričani, da želite izbrisati izbrane predloge?" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:426 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:434 msgid "Are you sure you want to overwrite this dataset?" msgstr "Ali ste prepričani, da želite prepisati podatkovni set?" @@ -2479,7 +2517,7 @@ msgstr "Ali ste prepričani, da želite prepisati podatkovni set?" msgid "Are you sure you want to proceed?" msgstr "Ali želite nadaljevati?" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:174 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:216 msgid "Are you sure you want to save and apply changes?" msgstr "Ali resnično želite shraniti in uporabiti spremembe?" @@ -2523,7 +2561,7 @@ msgstr "Puščica" msgid "Assign a set of parameters as" msgstr "Manjkajo parametri URL-ja" -#: superset/connectors/sqla/views.py:476 +#: superset/connectors/sqla/views.py:383 msgid "Associated Charts" msgstr "Povezani grafikoni" @@ -2531,9 +2569,9 @@ msgstr "Povezani grafikoni" msgid "Async Execution" msgstr "Asinhrono izvajanje" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:295 -#: superset-frontend/src/pages/DatabaseList/index.tsx:309 -#: superset-frontend/src/pages/DatabaseList/index.tsx:475 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:305 +#: superset-frontend/src/pages/DatabaseList/index.tsx:320 +#: superset-frontend/src/pages/DatabaseList/index.tsx:486 msgid "Asynchronous query execution" msgstr "Asinhroni zagon poizvedb" @@ -2551,7 +2589,7 @@ msgstr "ob" msgid "Auto Zoom" msgstr "Samodejna povečava" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:530 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 msgid "Autocomplete" msgstr "Samodokončaj" @@ -2577,7 +2615,7 @@ msgstr "Razpoložljivi načini razvrščanja:" msgid "Average" msgstr "Veliko" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:233 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 #, fuzzy msgid "Average value" msgstr "Ciljna vrednost" @@ -2611,10 +2649,10 @@ msgstr "Padajoča os" msgid "BOOLEAN" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:366 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1051 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1068 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1088 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:373 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1123 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1143 msgid "Back" msgstr "Nazaj" @@ -2624,7 +2662,7 @@ msgstr "Nazaj" msgid "Back to all" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:300 +#: superset-frontend/src/pages/DatabaseList/index.tsx:311 #: superset/views/database/mixins.py:200 msgid "Backend" msgstr "Vrsta" @@ -2640,7 +2678,7 @@ msgstr "Vrednosti stolpcev" msgid "Bad formula." msgstr "Oblika zapisa datuma" -#: superset/viz.py:2509 superset/viz.py:2545 +#: superset/viz.py:2452 superset/viz.py:2492 msgid "Bad spatial key" msgstr "Neustrezen prostorski ključ" @@ -2674,6 +2712,12 @@ msgstr "Vrednosti stolpcev" msgid "Bar orientation" msgstr "Orientacija stolpcev" +#: superset-frontend/src/features/rls/constants.ts:28 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:263 +#, fuzzy +msgid "Base" +msgstr "podatkovna baza" + #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:239 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 msgid "Base layer map style" @@ -2687,12 +2731,12 @@ msgstr "Osnovan na meri" msgid "Based on granularity, number of time periods to compare against" msgstr "Na osnovi granulacije, število časovnih obdobij za primerjavo" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:228 msgid "Based on what should series be ordered on the chart and legend" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:854 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1723 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1779 msgid "Basic" msgstr "Osnovno" @@ -2723,7 +2767,7 @@ msgid "Before" msgstr "PRED" #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:37 -#: superset/viz.py:1286 +#: superset/viz.py:1186 msgid "Big Number" msgstr "Velika številka" @@ -2732,11 +2776,11 @@ msgid "Big Number Font Size" msgstr "Velikost pisave Velike številke" #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:36 -#: superset/viz.py:1252 +#: superset/viz.py:1150 msgid "Big Number with Trendline" msgstr "Velika številka s trendno krivuljo" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 msgid "Bottom" msgstr "Spodaj" @@ -2767,7 +2811,6 @@ msgstr "Iz dna proti vrhu" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:261 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:277 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:263 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:251 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:195 @@ -2792,6 +2835,32 @@ msgstr "" "vrednosti podatkov. Funkcija omeji le prikaz, obseg podatkov pa ostane " "enak." +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 +#, fuzzy +msgid "" +"Bounds for the primary Y-axis. When left empty, the bounds are " +"dynamically defined based on the min/max of the data. Note that this " +"feature will only expand the axis range. It won't narrow the data's " +"extent." +msgstr "" +"Meje Y-osi. Če je prazno, se meje nastavijo dinamično na podlagi " +"min./max. vrednosti podatkov. Funkcija omeji le prikaz, obseg podatkov pa" +" ostane enak." + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:411 +#, fuzzy +msgid "" +"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" +" bounds are enabled. When left empty, the bounds are " +"dynamically defined\n" +" based on the min/max of the data. Note that this feature " +"will only expand\n" +" the axis range. It won't narrow the data's extent." +msgstr "" +"Meje Y-osi. Če je prazno, se meje nastavijo dinamično na podlagi " +"min./max. vrednosti podatkov. Funkcija omeji le prikaz, obseg podatkov pa" +" ostane enak." + #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:58 #: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/createMetadata.ts:27 @@ -2803,7 +2872,7 @@ msgid "Breakdowns" msgstr "Razčlenitev" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:32 -#: superset/viz.py:1171 +#: superset/viz.py:1065 msgid "Bubble Chart" msgstr "Mehurčkasti grafikon" @@ -2835,14 +2904,15 @@ msgstr "Obnovi" #: superset-frontend/src/pages/ChartList/index.tsx:789 #: superset-frontend/src/pages/CssTemplateList/index.tsx:262 #: superset-frontend/src/pages/DashboardList/index.tsx:662 -#: superset-frontend/src/pages/DatasetList/index.tsx:596 +#: superset-frontend/src/pages/DatasetList/index.tsx:607 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 #: superset-frontend/src/pages/SavedQueryList/index.tsx:177 #: superset-frontend/src/pages/Tags/index.tsx:267 msgid "Bulk select" msgstr "Izberi hkrati" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 -#: superset/viz.py:1222 +#: superset/viz.py:1118 msgid "Bullet Chart" msgstr "'Bullet' grafikon" @@ -2858,7 +2928,7 @@ msgstr "'Bullet' grafikon" msgid "Business" msgstr "Aktivnost" -#: superset/connectors/sqla/views.py:165 +#: superset/connectors/sqla/views.py:164 msgid "Business Data Type" msgstr "Poslovni podatkovni tip" @@ -2893,16 +2963,16 @@ msgstr "Po vrednosti: za razvrščanje uporabite vrednosti mere" msgid "CANCEL" msgstr "PREKINI" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1520 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1575 #, fuzzy msgid "CREATE DATASET" msgstr "Ustvarite podatkovni set" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:585 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:579 msgid "CREATE TABLE AS" msgstr "CREATE TABLE AS" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:596 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:590 msgid "CREATE VIEW AS" msgstr "CREATE VIEW AS" @@ -2928,7 +2998,7 @@ msgstr "CSS" msgid "CSS Styles" msgstr "CSS slogi" -#: superset/initialization/__init__.py:286 superset/views/css_templates.py:38 +#: superset/initialization/__init__.py:288 superset/views/css_templates.py:38 msgid "CSS Templates" msgstr "CSS predloge" @@ -2962,7 +3032,7 @@ msgstr "CSS predloge" msgid "CSV Upload" msgstr "Nalaganje CSV" -#: superset/views/database/views.py:287 +#: superset/views/database/views.py:290 #, python-format msgid "" "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " @@ -2971,19 +3041,19 @@ msgstr "" "CSV datoteka \"%(csv_filename)s\" naložena v tabelo \"%(table_name)s\" v " "podatkovni bazi \"%(db_name)s\"" -#: superset/views/database/views.py:160 +#: superset/views/database/views.py:161 msgid "CSV to Database configuration" msgstr "Nastavitve pretvorbe CSV v podatkovno bazo" -#: superset-frontend/src/pages/DatabaseList/index.tsx:344 +#: superset-frontend/src/pages/DatabaseList/index.tsx:355 msgid "CSV upload" msgstr "Nalaganje CSV" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:130 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 msgid "CTAS & CVAS SCHEMA" msgstr "CTAS & CVAS SHEMA" -#: superset/sql_lab.py:440 +#: superset/sql_lab.py:432 msgid "" "CTAS (create table as select) can only be run with a query where the last" " statement is a SELECT. Please make sure your query has a SELECT as its " @@ -2997,7 +3067,7 @@ msgstr "" msgid "CTAS Schema" msgstr "CTAS shema" -#: superset/sql_lab.py:457 +#: superset/sql_lab.py:449 msgid "" "CVAS (create view as select) can only be run with a query with a single " "SELECT statement. Please make sure your query has only a SELECT " @@ -3015,7 +3085,7 @@ msgstr "CVAS (create view as select) poizvedba ima več kot en stavek." msgid "CVAS (create view as select) query is not a SELECT statement." msgstr "CVAS (create view as select) poizvedba ni SELECT stavek." -#: superset/connectors/sqla/views.py:486 superset/views/chart/mixin.py:76 +#: superset/connectors/sqla/views.py:393 superset/views/chart/mixin.py:76 msgid "Cache Timeout" msgstr "Trajanje predpomnilnika" @@ -3033,16 +3103,16 @@ msgstr "Časovna omejitev predpomnilnika" msgid "Cached" msgstr "Predpomnjeno" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:349 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:351 #, python-format msgid "Cached %s" msgstr "Predpomnjeno %s" -#: superset/viz.py:562 +#: superset/viz.py:578 msgid "Cached value not found" msgstr "Predpomnjena vrednost ni najdena" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:53 msgid "Calculate contribution per series or row" msgstr "Izračunaj delež za serijo ali vrstico" @@ -3064,7 +3134,7 @@ msgid "Calculation type" msgstr "Tip izračuna" #: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 -#: superset/viz.py:1080 +#: superset/viz.py:972 msgid "Calendar Heatmap" msgstr "Koledarska barvna lestvica" @@ -3077,17 +3147,17 @@ msgstr "Najvišjega zavihka ni mogoče premakniti v gnezdene zavihke" msgid "Can select multiple values" msgstr "Dovoli izbiro več vrednosti" -#: superset/viz.py:1810 +#: superset/viz.py:1727 msgid "Can't have overlap between Series and Breakdowns" msgstr "Ne sme imeti prekrivanja med podatkovnimi serijami in členitvami" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:206 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:759 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:263 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:185 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 -#: superset-frontend/src/components/Modal/Modal.tsx:262 -#: superset-frontend/src/components/ReportModal/index.tsx:220 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:205 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:753 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:227 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:268 +#: superset-frontend/src/components/Modal/Modal.tsx:269 +#: superset-frontend/src/components/ReportModal/index.tsx:219 #: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:72 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:649 #: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 @@ -3095,14 +3165,14 @@ msgstr "Ne sme imeti prekrivanja med podatkovnimi serijami in členitvami" #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:76 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 -#: superset-frontend/src/explore/components/SaveModal.tsx:379 +#: superset-frontend/src/explore/components/SaveModal.tsx:413 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:843 #: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 #: superset/templates/superset/request_access.html:34 msgid "Cancel" msgstr "Prekliči" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:314 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 msgid "Cancel query on window unload event" msgstr "Prekini poizvedbo pri dogodku zaprtja okna (window unload event)" @@ -3118,7 +3188,7 @@ msgstr "Podatkovne baze s povezanimi podatkovnimi viri ni mogoče izbrisati" msgid "Cannot have multiple credentials for the SSH Tunnel" msgstr "" -#: superset/views/core.py:723 +#: superset/views/core.py:734 #, python-format msgid "" "Cannot import dashboard: %(db_error)s.\n" @@ -3187,7 +3257,7 @@ msgstr "Prikaži procente" msgid "Category and Value" msgstr "Povečava in premikanje" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:229 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:67 #, fuzzy msgid "Category name" msgstr "Ime poizvedbe" @@ -3202,15 +3272,15 @@ msgstr "Kategorija ciljnih vozlišč" msgid "Category, Value and Percentage" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:103 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 msgid "Cell Padding" msgstr "Razmak med celicami" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:117 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 msgid "Cell Radius" msgstr "Polmer celice" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 msgid "Cell Size" msgstr "Velikost celice" @@ -3218,7 +3288,7 @@ msgstr "Velikost celice" msgid "Cell bars" msgstr "Stolp. graf v celicah" -#: superset-frontend/src/components/FilterableTable/index.tsx:431 +#: superset-frontend/src/components/FilterableTable/index.tsx:303 msgid "Cell content" msgstr "Vsebina celice" @@ -3230,6 +3300,7 @@ msgstr "Omejitev celice" msgid "Center" msgstr "Na sredino" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:33 #, fuzzy msgid "Centroid (Longitude and Latitude): " @@ -3252,7 +3323,7 @@ msgstr "Podrobnosti certifikacije" #: superset-frontend/src/pages/ChartList/index.tsx:699 #: superset-frontend/src/pages/DashboardList/index.tsx:580 -#: superset-frontend/src/pages/DatasetList/index.tsx:564 +#: superset-frontend/src/pages/DatasetList/index.tsx:575 msgid "Certified" msgstr "Certificirano" @@ -3283,7 +3354,7 @@ msgstr "Spremeni vrstni red stolpcev." msgid "Change order of rows." msgstr "Spremeni vrstni red vrstic." -#: superset/connectors/sqla/views.py:478 +#: superset/connectors/sqla/views.py:385 msgid "Changed By" msgstr "Spremenil" @@ -3334,7 +3405,7 @@ msgstr "Spreminjanje tega grafikona ni dovoljeno" msgid "Changing this control takes effect instantly" msgstr "Sprememba tega kontrolnika se odrazi takoj" -#: superset/datasets/commands/exceptions.py:181 +#: superset/datasets/commands/exceptions.py:198 msgid "Changing this dataset is forbidden" msgstr "Spreminjanje tega podatkovnega seta ni dovoljeno" @@ -3352,15 +3423,16 @@ msgstr "Spreminjanje tega podatkovnega seta ni dovoljeno" msgid "Changing this report is forbidden" msgstr "Spreminjanje tega poročila ni dovoljeno" -#: superset/views/database/forms.py:196 +#: superset/views/database/forms.py:206 #, fuzzy msgid "Character to interpret as decimal point" msgstr "Znak, ki bo prepoznan kot decimalno ločilo." -#: superset/views/database/forms.py:375 +#: superset/views/database/forms.py:385 msgid "Character to interpret as decimal point." msgstr "Znak, ki bo prepoznan kot decimalno ločilo." +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:51 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:449 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:405 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:69 @@ -3368,11 +3440,11 @@ msgstr "Znak, ki bo prepoznan kot decimalno ločilo." #: superset-frontend/src/features/home/RightMenu.tsx:219 #: superset-frontend/src/pages/ChartList/index.tsx:369 #: superset-frontend/src/pages/ChartList/index.tsx:799 -#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:90 +#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 msgid "Chart" msgstr "Grafikon" -#: superset/views/core.py:1727 +#: superset/views/core.py:1762 #, python-format msgid "Chart %(id)s not found" msgstr "Grafikon %(id)s ni najden" @@ -3381,7 +3453,7 @@ msgstr "Grafikon %(id)s ni najden" msgid "Chart Cache Timeout" msgstr "Trajanje predpomnilnika grafikona" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:437 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:442 #, python-format msgid "Chart Data: %s" msgstr "Podatki grafikona: %s" @@ -3391,7 +3463,7 @@ msgstr "Podatki grafikona: %s" msgid "Chart ID" msgstr "ID grafikona" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:53 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:55 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:61 @@ -3413,7 +3485,7 @@ msgstr "ID grafikona" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:59 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:131 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:107 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:74 @@ -3460,34 +3532,34 @@ msgstr "Podatkovni vir" msgid "Chart Title" msgstr "Naslov grafikona" -#: superset-frontend/src/explore/actions/saveModalActions.js:127 +#: superset-frontend/src/explore/actions/saveModalActions.js:121 #, fuzzy, python-format msgid "Chart [%s] has been overwritten" msgstr "Grafikon [{}] je bil prepisan" -#: superset-frontend/src/explore/actions/saveModalActions.js:124 +#: superset-frontend/src/explore/actions/saveModalActions.js:118 #, fuzzy, python-format msgid "Chart [%s] has been saved" msgstr "Grafikon [{}] je bil shranjen" -#: superset-frontend/src/explore/actions/saveModalActions.js:145 +#: superset-frontend/src/explore/actions/saveModalActions.js:139 #, fuzzy, python-format msgid "Chart [%s] was added to dashboard [%s]" msgstr "Grafikon [{}] je bil dodan na nadzorno ploščo [{}]" -#: superset/views/core.py:1077 +#: superset/views/core.py:1099 msgid "Chart [{}] has been overwritten" msgstr "Grafikon [{}] je bil prepisan" -#: superset/views/core.py:1073 +#: superset/views/core.py:1095 msgid "Chart [{}] has been saved" msgstr "Grafikon [{}] je bil shranjen" -#: superset/views/core.py:1102 +#: superset/views/core.py:1124 msgid "Chart [{}] was added to dashboard [{}]" msgstr "Grafikon [{}] je bil dodan na nadzorno ploščo [{}]" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:228 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:238 msgid "Chart cache timeout" msgstr "Trajanje predpomnilnika grafikona" @@ -3553,7 +3625,7 @@ msgstr "Zadnja sprememba" msgid "Chart last modified by" msgstr "Nazadnje spremenil %s" -#: superset-frontend/src/explore/components/SaveModal.tsx:320 +#: superset-frontend/src/explore/components/SaveModal.tsx:355 msgid "Chart name" msgstr "Ime grafikona" @@ -3583,7 +3655,7 @@ msgstr "Naslov grafikona" msgid "Chart type" msgstr "Tip grafikona" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:315 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 #, fuzzy msgid "Chart type requires a dataset" msgstr "Lastnosti grafikona posodobljene" @@ -3599,7 +3671,7 @@ msgstr "Širina grafikona" #: superset-frontend/src/pages/Home/index.tsx:399 #: superset-frontend/src/profile/components/CreatedContent.tsx:104 #: superset-frontend/src/profile/components/Favorites.tsx:102 -#: superset/initialization/__init__.py:257 superset/views/chart/mixin.py:25 +#: superset/initialization/__init__.py:259 superset/views/chart/mixin.py:25 #: superset/views/dashboard/mixin.py:80 msgid "Charts" msgstr "Grafikoni" @@ -3633,7 +3705,7 @@ msgstr "" msgid "Check out this chart in dashboard:" msgstr "Preizkusite ta grafikon v nadzorni plošči:" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:474 msgid "Check out this chart: " msgstr "Preizkusite ta grafikon: " @@ -3667,11 +3739,11 @@ msgstr "Če želite vključiti časovni filter" msgid "Child label position" msgstr "Položaj podrejene oznake" -#: superset/viz.py:2370 +#: superset/viz.py:2307 msgid "Choice of [Label] must be present in [Group By]" msgstr "Izbira [Oznaka] mora biti prisotna v [Združevanje]" -#: superset/viz.py:2378 +#: superset/viz.py:2315 msgid "Choice of [Point Radius] must be present in [Group By]" msgstr "Izbran [Point Radius] mora biti prisoten v [Združevanje]" @@ -3684,7 +3756,7 @@ msgstr "Izberite datoteko" msgid "Choose a chart or dashboard not both" msgstr "Izberite grafikon ali nadzorno ploščo, ne obojega" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:924 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:979 msgid "Choose a database..." msgstr "Izberite podatkovno bazo..." @@ -3719,15 +3791,11 @@ msgstr "Izberite izhodišče in cilj" msgid "Choose a target" msgstr "Izberite cilj" -#: superset/connectors/sqla/views.py:327 -msgid "Choose a unique name" -msgstr "" - #: superset-frontend/src/pages/ChartCreation/index.tsx:404 msgid "Choose chart type" msgstr "Izberite tip grafikona" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:745 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:739 msgid "Choose one of the available databases from the panel on the left." msgstr "Izberite eno od razpoložljivih podatkovnih baz v panelu na levi." @@ -3805,7 +3873,8 @@ msgid "" "showcase a view into the underlying data or to show aggregated metrics." msgstr "Standardna razpredelnica za prikaz podatkovnega seta." -#: superset/connectors/sqla/views.py:365 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:454 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:144 msgid "Clause" msgstr "Stavek" @@ -3817,7 +3886,7 @@ msgstr "Počisti" msgid "Clear all" msgstr "Počisti vse" -#: superset-frontend/src/components/Table/index.tsx:206 +#: superset-frontend/src/components/Table/index.tsx:210 #, fuzzy msgid "Clear all data" msgstr "počisti vse filtre" @@ -3846,7 +3915,7 @@ msgstr "Kliknite ključavnico, da omogočite spreminjanje." msgid "Click the lock to prevent further changes." msgstr "Kliknite ključavnico, da onemogočite spreminjanje." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1955 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2012 msgid "" "Click this link to switch to an alternate form that allows you to input " "the SQLAlchemy URL for this database manually." @@ -3854,7 +3923,7 @@ msgstr "" "Kliknite to povezavo za drugo vnosno formo, ki omogoča ročni vnos " "SQLAlchemy URL-ja za to podatkovno bazo." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1771 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1827 msgid "" "Click this link to switch to an alternate form that exposes only the " "required fields needed to connect this database." @@ -3862,7 +3931,7 @@ msgstr "" "Kliknite to povezavo za drugo vnosno formo, ki prikaže samo zahtevana " "polja za povezavo s podatkovno bazo." -#: superset-frontend/src/components/Table/index.tsx:213 +#: superset-frontend/src/components/Table/index.tsx:217 msgid "Click to cancel sorting" msgstr "" @@ -3871,17 +3940,11 @@ msgid "Click to edit" msgstr "Kliknite za urejanje" #: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 -#, python-format -msgid "Click to edit %s in a new tab" -msgstr "Kliknite za urejanje %s v novem zavihku" - -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:32 #, fuzzy, python-format msgid "Click to edit %s." msgstr "Kliknite za urejanje" #: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:33 #, fuzzy msgid "Click to edit chart." msgstr "Kliknite za urejanje" @@ -3903,27 +3966,27 @@ msgstr "Kliknite za prisilno osvežitev" msgid "Click to see difference" msgstr "Kliknite za prikaz razlike" -#: superset-frontend/src/components/Table/index.tsx:212 +#: superset-frontend/src/components/Table/index.tsx:216 #, fuzzy msgid "Click to sort ascending" msgstr "Označi za naraščajoče razvrščanje" -#: superset-frontend/src/components/Table/index.tsx:211 +#: superset-frontend/src/components/Table/index.tsx:215 #, fuzzy msgid "Click to sort descending" msgstr "Razvrsti padajoče" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:83 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:132 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:52 #: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:209 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:219 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:224 #: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:786 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:408 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:414 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:339 #: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:36 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1109 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1164 msgid "Close" msgstr "Zapri" @@ -3956,17 +4019,17 @@ msgstr "Skrči vse" msgid "Collapse data panel" msgstr "Skrij podatkovni panel" -#: superset-frontend/src/components/Table/index.tsx:210 +#: superset-frontend/src/components/Table/index.tsx:214 #, fuzzy msgid "Collapse row" msgstr "Skrči vse" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:598 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:599 #, fuzzy msgid "Collapse tab content" msgstr "Skrij podatkovni panel" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:197 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 msgid "Collapse table preview" msgstr "Zapri predogled tabele" @@ -3988,7 +4051,7 @@ msgstr "Mera za barvo" msgid "Color Scheme" msgstr "Barvna shema" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:129 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 msgid "Color Steps" msgstr "Barvni koraki" @@ -4010,8 +4073,8 @@ msgid "Color of the target location" msgstr "Barva ciljne lokacije" #: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:214 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:218 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 #: superset-frontend/src/explore/controlPanels/sections.tsx:60 #: superset-frontend/src/explore/controls.jsx:460 msgid "Color scheme" @@ -4031,8 +4094,8 @@ msgstr "Barve" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 #: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:204 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:250 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:256 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:137 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:140 #: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 @@ -4040,7 +4103,7 @@ msgstr "Barve" #: superset-frontend/src/filters/components/Range/controlPanel.ts:39 #: superset-frontend/src/filters/components/Select/controlPanel.ts:49 #: superset-frontend/src/filters/components/Time/controlPanel.ts:37 -#: superset/connectors/sqla/views.py:155 +#: superset/connectors/sqla/views.py:154 msgid "Column" msgstr "Stolpec" @@ -4056,12 +4119,17 @@ msgstr "Stolpec \"%(column)s\" ni numeričen ali ne obstaja v rezultatu poizvedb msgid "Column Configuration" msgstr "Preveri nastavitve" +#: superset/views/database/forms.py:144 +#, fuzzy +msgid "Column Data Types" +msgstr "Napredni podatkovni tip" + #: superset-frontend/src/explore/components/DataTableControl/index.tsx:194 msgid "Column Formatting" msgstr "Oblikovanje stolpca" -#: superset/views/database/forms.py:222 superset/views/database/forms.py:383 -#: superset/views/database/forms.py:474 +#: superset/views/database/forms.py:232 superset/views/database/forms.py:393 +#: superset/views/database/forms.py:484 msgid "Column Label(s)" msgstr "Naslovi stolpcev" @@ -4081,6 +4149,11 @@ msgstr "Stolpec s podatki zemljepisne širine" msgid "Column containing longitude data" msgstr "Stolpec s podatki zemljepisne dolžine" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:69 +#, fuzzy +msgid "Column datatype" +msgstr "Ime stolpca" + #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 #, fuzzy msgid "Column header tooltip" @@ -4090,7 +4163,7 @@ msgstr "Podroben opis orodja" msgid "Column is required" msgstr "Zahtevan je stolpec" -#: superset/views/database/forms.py:384 superset/views/database/forms.py:475 +#: superset/views/database/forms.py:394 superset/views/database/forms.py:485 msgid "" "Column label for index column(s). If None is given and Dataframe Index is" " True, Index Names are used." @@ -4098,7 +4171,7 @@ msgstr "" "Naslovi stolpcev za indeksne stolpce. Če le-ti niso podani in indeksi " "Dataframe-a obstajajo, se uporabijo imena indeksov." -#: superset/views/database/forms.py:223 +#: superset/views/database/forms.py:233 #, fuzzy msgid "" "Column label for index column(s). If None is given and Dataframe Index is" @@ -4107,7 +4180,7 @@ msgstr "" "Naslovi stolpcev za indeksne stolpce. Če le-ti niso podani in indeksi " "Dataframe-a obstajajo, se uporabijo imena indeksov." -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:77 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:90 msgid "Column name" msgstr "Ime stolpca" @@ -4125,7 +4198,7 @@ msgstr "Stolpec referenciran z agregacijo ni definiran: %(column)s" msgid "Column select" msgstr "Izbira stolpca" -#: superset/views/database/forms.py:211 +#: superset/views/database/forms.py:221 #, fuzzy msgid "" "Column to use as the row labels of the dataframe. Leave empty if no index" @@ -4134,7 +4207,7 @@ msgstr "" "Stolpec, ki se uporabi za naslove vrstic v dataframe-u. Pustite prazno, " "če ni indeksnega stolpca." -#: superset/views/database/forms.py:342 +#: superset/views/database/forms.py:352 msgid "" "Column to use as the row labels of the dataframe. Leave empty if no index" " column." @@ -4142,11 +4215,11 @@ msgstr "" "Stolpec, ki se uporabi za naslove vrstic v dataframe-u. Pustite prazno, " "če ni indeksnega stolpca." -#: superset/views/database/forms.py:414 +#: superset/views/database/forms.py:424 msgid "Columnar File" msgstr "Stoplčna datoteka" -#: superset/views/database/views.py:565 +#: superset/views/database/views.py:568 #, python-format msgid "" "Columnar file \"%(columnar_filename)s\" uploaded to table " @@ -4155,7 +4228,7 @@ msgstr "" "Stolpčna datoteka \"%(columnar_filename)s\" naložena v tabelo " "\"%(table_name)s\" v podatkovni bazi \"%(db_name)s\"" -#: superset/views/database/views.py:440 +#: superset/views/database/views.py:443 msgid "Columnar to Database configuration" msgstr "Nastavitve pretvorbe Stolpci v Podatkovno bazo" @@ -4171,16 +4244,16 @@ msgstr "Nastavitve pretvorbe Stolpci v Podatkovno bazo" #: superset-frontend/src/explore/controls.jsx:244 #: superset-frontend/src/explore/fixtures.tsx:97 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 -#: superset/connectors/sqla/views.py:72 +#: superset/connectors/sqla/views.py:71 msgid "Columns" msgstr "Stolpci" -#: superset/views/database/forms.py:183 +#: superset/views/database/forms.py:193 #, fuzzy msgid "Columns To Be Parsed as Dates" msgstr "Z vejico ločen seznam stolpcev, v katerih bodo prepoznani datumi." -#: superset/views/database/forms.py:231 +#: superset/views/database/forms.py:241 #, fuzzy msgid "Columns To Read" msgstr "Prikaži vsoto stolpcev" @@ -4190,7 +4263,7 @@ msgstr "Prikaži vsoto stolpcev" msgid "Columns missing in dataset: %(invalid_columns)s" msgstr "V podatkovnem viru manjkajo stolpci: %(invalid_columns)s" -#: superset/viz.py:577 +#: superset/viz.py:593 #, python-format msgid "Columns missing in datasource: %(invalid_columns)s" msgstr "V podatkovnem viru manjkajo stolpci: %(invalid_columns)s" @@ -4233,10 +4306,6 @@ msgstr "Stolpci za združevanje vrstic" msgid "Columns to show" msgstr "Stolpci za prikaz" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:85 -msgid "Combine Metrics" -msgstr "Združuj mere" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:250 msgid "Combine metrics" msgstr "Združuj mere" @@ -4306,6 +4375,7 @@ msgstr "Primerja dolžine časovno različnih aktivnosti na skupni časovnici." #: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:35 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:35 @@ -4350,6 +4420,11 @@ msgstr "Izračunaj prispevek k celoti" msgid "Condition" msgstr "Pogoj" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 +#, fuzzy +msgid "Conditional Formatting" +msgstr "Pogojno oblikovanje" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:385 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:504 msgid "Conditional formatting" @@ -4404,15 +4479,15 @@ msgstr "Nastavite kako se tukaj prikazuje vrhnja plast." msgid "Confirm overwrite" msgstr "Potrdite shranjevanje" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:180 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:222 msgid "Confirm save" msgstr "Potrdite shranjevanje" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1059 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1097 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1656 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1695 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1857 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1152 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1712 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 msgid "Connect" msgstr "Poveži" @@ -4424,9 +4499,9 @@ msgstr "Povežite Googlovo preglednico" msgid "Connect Google Sheets as tables to this database" msgstr "Googlove preglednice poveži s to podatkovno bazo kot tabele" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1660 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1700 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1861 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1716 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1918 msgid "Connect a database" msgstr "Poveži se s podatkovno bazo" @@ -4434,24 +4509,24 @@ msgstr "Poveži se s podatkovno bazo" msgid "Connect database" msgstr "Poveži se s podatkovno bazo" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1768 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 msgid "Connect this database using the dynamic form instead" msgstr "S podatkovno bazo se povežite z dinamičnim obrazcem" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1950 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2007 msgid "Connect this database with a SQLAlchemy URI string instead" msgstr "S to podatkovno bazo se raje povežite z SQLAlchemy URI nizom" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:225 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 msgid "Connection" msgstr "Povezava" #: superset/databases/commands/exceptions.py:107 -#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1430 +#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1471 msgid "Connection failed, please check your connection settings" msgstr "Povezava neuspešna. Preverite nastavitve povezave" -#: superset-frontend/src/views/CRUD/hooks.ts:697 +#: superset-frontend/src/views/CRUD/hooks.ts:701 msgid "Connection looks good!" msgstr "Povezava izgleda v redu!" @@ -4475,7 +4550,7 @@ msgstr "Zvezno" msgid "Contribution" msgstr "Prispevek" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:42 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 msgid "Contribution Mode" msgstr "Način deležev" @@ -4528,8 +4603,8 @@ msgstr "Kopiraj povezavo" msgid "Copy message" msgstr "Kopiraj sporočilo" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:683 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1469 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:679 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1461 #: superset-frontend/src/SqlLab/reducers/sqlLab.js:107 #, python-format msgid "Copy of %s" @@ -4540,7 +4615,7 @@ msgid "Copy partition query to clipboard" msgstr "Kopiraj particijsko poizvedbo na odložišče" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:329 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:468 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:340 msgid "Copy permalink to clipboard" msgstr "Kopiraj povezavo v odložišče" @@ -4566,7 +4641,7 @@ msgstr "" msgid "Copy the name of the database you are trying to connect to." msgstr "Kopirajte ime podatkovne baze, s katero se skušate povezati." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:273 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:271 msgid "Copy to Clipboard" msgstr "Kopiraj na odložišče" @@ -4586,7 +4661,12 @@ msgstr "Korelacija" msgid "Cost estimate" msgstr "Ocena potratnosti" -#: superset/views/utils.py:498 +#: superset/db_engine_specs/ocient.py:259 +#, fuzzy, python-format +msgid "Could not connect to database: \"%(database)s\"" +msgstr "Povezava s podatkovno bazo \"%(database)s\" ni uspela." + +#: superset/views/utils.py:496 msgid "Could not determine datasource type" msgstr "Ni mogoče določiti tipa podatkovnega vira" @@ -4595,7 +4675,7 @@ msgstr "Ni mogoče določiti tipa podatkovnega vira" msgid "Could not fetch all saved charts" msgstr "Vseh shranjenih grafikonov ni bilo mogoče pridobiti" -#: superset/views/utils.py:514 +#: superset/views/utils.py:512 msgid "Could not find viz object" msgstr "Ni mogoče najti vizualizacijskega objekta" @@ -4603,7 +4683,7 @@ msgstr "Ni mogoče najti vizualizacijskega objekta" msgid "Could not load database driver" msgstr "Ni mogoče naložiti gonilnika podatkovne baze" -#: superset/views/core.py:1413 +#: superset/views/core.py:1454 #, python-format msgid "Could not load database driver: %(driver_name)s" msgstr "Gonilnika podatkovne baze ni mogoče naložiti: %(driver_name)s" @@ -4612,6 +4692,11 @@ msgstr "Gonilnika podatkovne baze ni mogoče naložiti: %(driver_name)s" msgid "Could not load database driver: {}" msgstr "Ni mogoče naložiti gonilnika podatkovne baze: {}" +#: superset/db_engine_specs/ocient.py:264 +#, python-format +msgid "Could not resolve hostname: \"%(host)s\"." +msgstr "" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 #, fuzzy msgid "Count" @@ -4653,12 +4738,12 @@ msgid "Country Field Type" msgstr "Tip polja za države" #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 -#: superset/viz.py:2044 +#: superset/viz.py:1969 msgid "Country Map" msgstr "Zemljevid držav" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:767 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:761 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:770 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:96 msgid "Create" msgstr "Ustvari" @@ -4668,10 +4753,10 @@ msgid "Create Chart" msgstr "Ustvarite grafikon" #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:331 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:321 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:332 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:356 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:327 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:338 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:362 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 msgid "Create a dataset" msgstr "Ustvarite podatkovni set" @@ -4717,7 +4802,7 @@ msgstr "Ustvari nov grafikon" msgid "Create new filter set" msgstr "Ustvarite nov set filtrov" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 msgid "Create or select schema..." msgstr "Ustvarite ali izberite shemo..." @@ -4740,7 +4825,7 @@ msgstr "Ustvarjeno" #: superset-frontend/src/pages/CssTemplateList/index.tsx:273 #: superset-frontend/src/pages/DashboardList/index.tsx:358 #: superset-frontend/src/pages/DashboardList/index.tsx:545 -#: superset-frontend/src/pages/DatabaseList/index.tsx:365 +#: superset-frontend/src/pages/DatabaseList/index.tsx:376 #: superset-frontend/src/pages/Tags/index.tsx:128 #: superset-frontend/src/pages/Tags/index.tsx:183 msgid "Created by" @@ -4770,9 +4855,8 @@ msgstr "Uvoz grafikona ni uspel zaradi neznanega razloga" msgid "Creating a data source and creating a new tab" msgstr "Ustvarjanje podatkovnega vira in novega zavihka" -#: superset/connectors/sqla/views.py:366 superset/views/chart/mixin.py:77 -#: superset/views/dashboard/mixin.py:84 superset/views/dashboard/views.py:185 -#: superset/views/database/mixins.py:189 +#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 +#: superset/views/dashboard/views.py:185 superset/views/database/mixins.py:189 msgid "Creator" msgstr "Avtor" @@ -4781,15 +4865,27 @@ msgstr "Avtor" msgid "Crimson" msgstr "Dimenzija" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:122 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:152 msgid "Cross-filter will be applied to all of the charts that use this dataset." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:134 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:164 #, fuzzy msgid "Cross-filtering is not enabled for this dashboard." msgstr "V nadzorni plošči ni filtrov." +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 +#, fuzzy +msgid "Cross-filtering is not enabled in this dashboard" +msgstr "V nadzorni plošči ni filtrov." + +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:414 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 +#, fuzzy +msgid "Cross-filtering scoping" +msgstr "Doseg medsebojnega filtra" + #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 #, fuzzy msgid "Cross-filters" @@ -4816,7 +4912,7 @@ msgstr "Prilagojeni vtičnik" msgid "Custom Plugins" msgstr "Prilagojeni vtičniki" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:385 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:391 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 @@ -4827,8 +4923,7 @@ msgstr "Prilagojen SQL" msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" msgstr "Ad-hoc SQL mere po meri za ta podatkovni set niso omogočene" -#: superset/connectors/sqla/utils.py:194 superset/errors.py:145 -#: superset/models/helpers.py:129 superset/models/helpers.py:864 +#: superset/errors.py:145 superset/models/helpers.py:138 msgid "Custom SQL fields cannot contain sub-queries." msgstr "Prilagojena SQL-polja ne smejo vsebovati podpoizvedb." @@ -4852,7 +4947,7 @@ msgstr "Prilagodi stolpce" msgid "Cyclic dependency detected" msgstr "Zaznana krožna odvisnost" -#: superset/connectors/sqla/views.py:256 +#: superset/connectors/sqla/views.py:255 msgid "D3 Format" msgstr "D3 zapis" @@ -4862,7 +4957,7 @@ msgstr "D3 zapis" msgid "D3 format" msgstr "D3 format" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:22 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:146 msgid "D3 format syntax: https://github.com/d3/d3-format" msgstr "Sintaksa D3 formata: https://github.com/d3/d3-format" @@ -4881,7 +4976,7 @@ msgstr "" msgid "D3 time format for datetime columns" msgstr "D3 oblika zapisa za časovne stolpce" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:53 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 msgid "D3 time format syntax: https://github.com/d3/d3-time-format" msgstr "Sintaksa D3 časovnega formata:: https://github.com/d3/d3-time-format" @@ -4904,7 +4999,7 @@ msgstr "DEC" msgid "DELETE" msgstr "IZBRIŠI" -#: superset-frontend/src/pages/DatabaseList/index.tsx:332 +#: superset-frontend/src/pages/DatabaseList/index.tsx:343 msgid "DML" msgstr "DML" @@ -4934,12 +5029,12 @@ msgstr "Temni način" msgid "Dashboard" msgstr "Nadzorna plošča" -#: superset-frontend/src/explore/actions/saveModalActions.js:135 +#: superset-frontend/src/explore/actions/saveModalActions.js:129 #, fuzzy, python-format msgid "Dashboard [%s] just got created and chart [%s] was added to it" msgstr "Nadzorna plošča [{}] je bila ravno ustvarjena in grafikon [{}] dodan nanjo" -#: superset/views/core.py:1122 +#: superset/views/core.py:1144 msgid "Dashboard [{}] just got created and chart [{}] was added to it" msgstr "Nadzorna plošča [{}] je bila ravno ustvarjena in grafikon [{}] dodan nanjo" @@ -5002,7 +5097,7 @@ msgstr "nadzorne plošče" #: superset-frontend/src/pages/Home/index.tsx:385 #: superset-frontend/src/profile/components/CreatedContent.tsx:101 #: superset-frontend/src/profile/components/Favorites.tsx:99 -#: superset/initialization/__init__.py:249 superset/views/chart/mixin.py:78 +#: superset/initialization/__init__.py:251 superset/views/chart/mixin.py:78 #: superset/views/dashboard/mixin.py:24 msgid "Dashboards" msgstr "Nadzorne plošče" @@ -5028,7 +5123,7 @@ msgstr "nadzorna plošča" #: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:708 #: superset-frontend/src/features/home/RightMenu.tsx:169 -#: superset/initialization/__init__.py:244 +#: superset/initialization/__init__.py:246 msgid "Data" msgstr "Podatki" @@ -5036,7 +5131,7 @@ msgstr "Podatki" msgid "Data Table" msgstr "Tabela podatkov" -#: superset/datasets/commands/exceptions.py:197 +#: superset/datasets/commands/exceptions.py:214 msgid "Data URI is not allowed." msgstr "" @@ -5050,7 +5145,7 @@ msgstr "" msgid "Data Zoom" msgstr "Zoom funkcija" -#: superset/sqllab/commands/results.py:116 superset/views/core.py:2195 +#: superset/sqllab/commands/results.py:116 superset/views/core.py:2231 msgid "" "Data could not be deserialized from the results backend. The storage " "format might have changed, rendering the old data stake. You need to re-" @@ -5060,7 +5155,7 @@ msgstr "" "Lahko je prišlo do spremembe oblike zapisa. Ponovno zaženite izvorno " "poizvedbo." -#: superset/sqllab/commands/results.py:75 superset/views/core.py:2148 +#: superset/sqllab/commands/results.py:75 superset/views/core.py:2184 msgid "" "Data could not be retrieved from the results backend. You need to re-run " "the original query." @@ -5076,7 +5171,7 @@ msgstr "Podatki nimajo časovnih korakov" msgid "Data preview" msgstr "Ogled podatkov" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:283 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:278 msgid "Data refreshed" msgstr "Podatki osveženi" @@ -5095,25 +5190,25 @@ msgstr "DataFrame vsebuje vsaj eno serijo" msgid "DataFrame must include temporal column" msgstr "DataFrame mora vsebovati časovni stolpec" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:275 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:274 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -#: superset-frontend/src/pages/DatabaseList/index.tsx:267 -#: superset-frontend/src/pages/DatabaseList/index.tsx:296 -#: superset-frontend/src/pages/DatasetList/index.tsx:349 -#: superset-frontend/src/pages/DatasetList/index.tsx:520 +#: superset-frontend/src/pages/DatabaseList/index.tsx:278 +#: superset-frontend/src/pages/DatabaseList/index.tsx:307 +#: superset-frontend/src/pages/DatasetList/index.tsx:360 +#: superset-frontend/src/pages/DatasetList/index.tsx:531 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:241 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:349 #: superset-frontend/src/pages/SavedQueryList/index.tsx:287 #: superset-frontend/src/pages/SavedQueryList/index.tsx:448 -#: superset/connectors/sqla/views.py:479 superset/connectors/sqla/views.py:480 +#: superset/connectors/sqla/views.py:386 superset/connectors/sqla/views.py:387 #: superset/templates/superset/import_dashboards.html:53 -#: superset/views/database/forms.py:137 superset/views/database/forms.py:305 -#: superset/views/database/forms.py:436 superset/views/database/mixins.py:188 +#: superset/views/database/forms.py:137 superset/views/database/forms.py:315 +#: superset/views/database/forms.py:446 superset/views/database/mixins.py:188 #: superset/views/sql_lab/views.py:83 msgid "Database" msgstr "Podatkovna baza" -#: superset/views/database/views.py:478 +#: superset/views/database/views.py:481 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " @@ -5123,7 +5218,7 @@ msgstr "" "dovoljena za nalaganje stolpčnih datotek. Kontaktirajte administratorja " "za Superset." -#: superset/views/database/views.py:179 +#: superset/views/database/views.py:180 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " @@ -5132,7 +5227,7 @@ msgstr "" "Shema \"%(schema_name)s\" podatkovne baze \"%(database_name)s\" ni " "dovoljena za nalaganje CSV. Kontaktirajte administratorja za Superset." -#: superset/views/database/views.py:318 +#: superset/views/database/views.py:321 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " @@ -5142,12 +5237,12 @@ msgstr "" "dovoljena za nalaganje Excel datotek. Kontaktirajte administratorja za " "Superset." -#: superset/initialization/__init__.py:241 +#: superset/initialization/__init__.py:243 #, fuzzy msgid "Database Connections" msgstr "Podatkovna baza povezana" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1467 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1522 msgid "Database Creation Error" msgstr "Napaka pri ustvarjanju podatkovne baze" @@ -5156,9 +5251,9 @@ msgid "Database URL" msgstr "URL podatkovne baze" #: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:827 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:849 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1150 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:882 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:904 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1205 msgid "Database connected" msgstr "Podatkovna baza povezana" @@ -5184,7 +5279,7 @@ msgstr "Podatkovna baza ne dovoljuje manipulacije podatkov." msgid "Database does not exist" msgstr "Podatkovna baza ne obstaja" -#: superset/connectors/sqla/models.py:1793 superset/models/helpers.py:1966 +#: superset/models/helpers.py:2063 msgid "Database does not support subqueries" msgstr "Podatkovna baza ne podpira podpoizvedb" @@ -5197,7 +5292,7 @@ msgstr "" "Gonilnik podatkovne baze za uvoz ni nameščen. Za navodila pojdite na " "dokumentacijo Superseta:" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:429 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 msgid "Database error" msgstr "Napaka podatkovne baze" @@ -5210,8 +5305,8 @@ msgid "Database is required for alerts" msgstr "Podatkovna baza je obvezna za opozorila" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:113 -#: superset/db_engine_specs/base.py:1845 -#: superset/db_engine_specs/clickhouse.py:209 +#: superset/db_engine_specs/base.py:1880 +#: superset/db_engine_specs/clickhouse.py:212 msgid "Database name" msgstr "Ime podatkovne baze" @@ -5223,7 +5318,7 @@ msgstr "Podatkovne baze ni dovoljeno spreminjati" msgid "Database not found." msgstr "Podatkovna baza ni najdena." -#: superset/views/core.py:1179 +#: superset/views/core.py:1201 #, fuzzy, python-format msgid "Database not found: %(id)s" msgstr "ID podatkovnega vira ni bil najden: %(id)s" @@ -5237,24 +5332,24 @@ msgstr "Parametri podatkovne baze so neveljavni." msgid "Database passwords" msgstr "Vrata podatkovne baze" -#: superset/db_engine_specs/base.py:1842 -#: superset/db_engine_specs/clickhouse.py:206 +#: superset/db_engine_specs/base.py:1876 +#: superset/db_engine_specs/clickhouse.py:208 #: superset/db_engine_specs/databricks.py:52 msgid "Database port" msgstr "Vrata podatkovne baze" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:811 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:853 msgid "Database settings updated" msgstr "Nastavitve podatkovne baze posodobljene" -#: superset-frontend/src/pages/DatabaseList/index.tsx:258 +#: superset-frontend/src/pages/DatabaseList/index.tsx:269 #: superset-frontend/src/profile/components/Security.tsx:47 #: superset/views/database/mixins.py:33 msgid "Databases" msgstr "Podatkovne baze" -#: superset/views/database/forms.py:219 superset/views/database/forms.py:380 -#: superset/views/database/forms.py:471 +#: superset/views/database/forms.py:229 superset/views/database/forms.py:390 +#: superset/views/database/forms.py:481 msgid "Dataframe Index" msgstr "Indeks dataframe-a" @@ -5266,7 +5361,7 @@ msgstr "Indeks dataframe-a" #: superset-frontend/src/pages/ChartCreation/index.tsx:390 #: superset-frontend/src/pages/ChartList/index.tsx:391 #: superset-frontend/src/pages/ChartList/index.tsx:678 -#: superset-frontend/src/pages/DatasetList/index.tsx:606 +#: superset-frontend/src/pages/DatasetList/index.tsx:617 msgid "Dataset" msgstr "Podatkovni set" @@ -5275,7 +5370,7 @@ msgstr "Podatkovni set" msgid "Dataset %(name)s already exists" msgstr "Podatkovni set %(name)s že obstaja" -#: superset-frontend/src/explore/components/SaveModal.tsx:331 +#: superset-frontend/src/explore/components/SaveModal.tsx:366 #, fuzzy msgid "Dataset Name" msgstr "Ime podatkovnega seta" @@ -5288,29 +5383,29 @@ msgstr "Brisanje stolpca podatkovnega seta neuspešno." msgid "Dataset column not found." msgstr "Stolpec podatkovnega seta ni najden." -#: superset/datasets/commands/exceptions.py:157 +#: superset/datasets/commands/exceptions.py:174 msgid "Dataset could not be created." msgstr "Podatkovnega niza ni mogoče ustvariti." -#: superset/datasets/commands/exceptions.py:165 +#: superset/datasets/commands/exceptions.py:182 msgid "Dataset could not be deleted." msgstr "Podatkovnega niza ni mogoče izbrisati." -#: superset/datasets/commands/exceptions.py:193 +#: superset/datasets/commands/exceptions.py:210 #, fuzzy msgid "Dataset could not be duplicated." msgstr "Podatkovnega niza ni mogoče posodobiti." -#: superset/datasets/commands/exceptions.py:161 -#: superset/datasets/commands/exceptions.py:173 +#: superset/datasets/commands/exceptions.py:178 +#: superset/datasets/commands/exceptions.py:190 msgid "Dataset could not be updated." msgstr "Podatkovnega niza ni mogoče posodobiti." -#: superset/datasets/commands/exceptions.py:149 +#: superset/datasets/commands/exceptions.py:166 msgid "Dataset does not exist" msgstr "Podatkovni set ne obstaja" -#: superset-frontend/src/pages/DatasetList/index.tsx:185 +#: superset-frontend/src/pages/DatasetList/index.tsx:196 msgid "Dataset imported" msgstr "Podatkovni set uvožen" @@ -5331,22 +5426,22 @@ msgstr "Mer podatkovnega seta ni najdena." msgid "Dataset name" msgstr "Ime podatkovnega seta" -#: superset/datasets/commands/exceptions.py:153 +#: superset/datasets/commands/exceptions.py:170 msgid "Dataset parameters are invalid." msgstr "Parametri podatkovnega seta so neveljavni." -#: superset/dashboards/api.py:430 +#: superset/dashboards/api.py:415 #, python-format msgid "Dataset schema is invalid, caused by: %(error)s" msgstr "" -#: superset/datasets/commands/exceptions.py:169 +#: superset/datasets/commands/exceptions.py:186 msgid "Dataset(s) could not be bulk deleted." msgstr "Podatkovnih nizov ni mogoče množično izbrisati." -#: superset-frontend/src/pages/DatasetList/index.tsx:589 +#: superset-frontend/src/pages/DatasetList/index.tsx:600 #: superset-frontend/src/profile/components/Security.tsx:61 -#: superset/initialization/__init__.py:265 +#: superset/initialization/__init__.py:267 msgid "Datasets" msgstr "Podatkovni seti" @@ -5369,11 +5464,11 @@ msgstr "Podatkovni vir" msgid "Datasource & Chart Type" msgstr "Tip podatkovnega vira in grafikona" -#: superset/commands/exceptions.py:131 +#: superset/commands/exceptions.py:135 msgid "Datasource does not exist" msgstr "Podatkovni vir ne obstaja" -#: superset/commands/exceptions.py:123 +#: superset/commands/exceptions.py:127 msgid "Datasource type is invalid" msgstr "Neveljaven tip podatkovnega vira" @@ -5390,8 +5485,7 @@ msgstr "Oblika zapisa Datum-Časa" msgid "Date filter" msgstr "Filter po datumu" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:71 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:151 #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:135 @@ -5412,11 +5506,11 @@ msgstr "Adaptivno oblikovanje" msgid "Date/Time" msgstr "Datum/Čas" -#: superset/connectors/sqla/views.py:163 +#: superset/connectors/sqla/views.py:162 msgid "Datetime Format" msgstr "Oblika zapisa datuma,časa" -#: superset/connectors/sqla/models.py:1237 superset/models/helpers.py:1427 +#: superset/models/helpers.py:1502 msgid "" "Datetime column not provided as part table configuration and is required " "by this type of chart" @@ -5428,7 +5522,7 @@ msgstr "" msgid "Datetime format" msgstr "Oblika datum-časa" -#: superset/db_engine_specs/base.py:106 +#: superset/db_engine_specs/base.py:107 msgid "Day" msgstr "Dan" @@ -5441,7 +5535,7 @@ msgstr "" msgid "Days %s" msgstr "Dnevi %s" -#: superset/connectors/sqla/models.py:1936 superset/models/helpers.py:988 +#: superset/connectors/sqla/models.py:1222 superset/models/helpers.py:1024 msgid "Db engine did not return all queried columns" msgstr "Sitem podatkovne baze ni vrnil vse stolpcev poizvedbe" @@ -5453,47 +5547,56 @@ msgstr "Deaktiviraj" msgid "December" msgstr "December" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:70 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:89 msgid "Decides which column to sort the base axis by." msgstr "" -#: superset/views/database/forms.py:194 superset/views/database/forms.py:373 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:160 +msgid "Decides which measure to sort the base axis by." +msgstr "" + +#: superset/views/database/forms.py:204 superset/views/database/forms.py:383 msgid "Decimal Character" msgstr "Decimalno ločilo" -#: superset/viz.py:2743 +#: superset/viz.py:2700 msgid "Deck.gl - 3D Grid" msgstr "Deck.gl - 3D mreža" -#: superset/viz.py:2859 +#: superset/viz.py:2825 msgid "Deck.gl - 3D HEX" msgstr "Deck.gl - 3D HEX" -#: superset/viz.py:2899 +#: superset/viz.py:2890 msgid "Deck.gl - Arc" msgstr "Deck.gl - Arc" -#: superset/viz.py:2880 +#: superset/viz.py:2869 msgid "Deck.gl - GeoJSON" msgstr "Deck.gl - GeoJSON" -#: superset/viz.py:2468 +#: superset/viz.py:2848 +#, fuzzy +msgid "Deck.gl - Heatmap" +msgstr "grafikoni deck.gl" + +#: superset/viz.py:2406 msgid "Deck.gl - Multiple Layers" msgstr "Deck.gl - Večplastni" -#: superset/viz.py:2775 +#: superset/viz.py:2735 msgid "Deck.gl - Paths" msgstr "Deck.gl - Poti" -#: superset/viz.py:2826 +#: superset/viz.py:2789 msgid "Deck.gl - Polygon" msgstr "Deck.gl - Poligon" -#: superset/viz.py:2662 +#: superset/viz.py:2612 msgid "Deck.gl - Scatter plot" msgstr "Deck.gl - Raztreseni graf" -#: superset/viz.py:2714 +#: superset/viz.py:2668 msgid "Deck.gl - Screen Grid" msgstr "Deck.gl - Mreža" @@ -5501,7 +5604,7 @@ msgstr "Deck.gl - Mreža" msgid "Default" msgstr "Privzeto" -#: superset/connectors/sqla/views.py:484 +#: superset/connectors/sqla/views.py:391 msgid "Default Endpoint" msgstr "Privzeta končna točka" @@ -5647,11 +5750,13 @@ msgstr "" #: superset-frontend/src/pages/CssTemplateList/index.tsx:338 #: superset-frontend/src/pages/DashboardList/index.tsx:427 #: superset-frontend/src/pages/DashboardList/index.tsx:712 -#: superset-frontend/src/pages/DatasetList/index.tsx:418 -#: superset-frontend/src/pages/DatasetList/index.tsx:751 +#: superset-frontend/src/pages/DatasetList/index.tsx:429 +#: superset-frontend/src/pages/DatasetList/index.tsx:773 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:182 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:313 #: superset-frontend/src/pages/SavedQueryList/index.tsx:542 #: superset-frontend/src/pages/Tags/index.tsx:153 -#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:663 +#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:664 msgid "Delete" msgstr "Izbriši" @@ -5664,11 +5769,11 @@ msgstr "Izbrišem %s?" msgid "Delete Annotation?" msgstr "Izbrišem oznako?" -#: superset-frontend/src/pages/DatabaseList/index.tsx:529 +#: superset-frontend/src/pages/DatabaseList/index.tsx:551 msgid "Delete Database?" msgstr "Izbrišem podatkovno bazo?" -#: superset-frontend/src/pages/DatasetList/index.tsx:723 +#: superset-frontend/src/pages/DatasetList/index.tsx:745 msgid "Delete Dataset?" msgstr "Izbrišem podatkovni set?" @@ -5689,7 +5794,7 @@ msgstr "Izbrišem poročilo?" msgid "Delete Template?" msgstr "Izbrišem predlogo?" -#: superset/views/base.py:663 +#: superset/views/base.py:664 msgid "Delete all Really?" msgstr "Ali resnično vse izbrišem?" @@ -5701,7 +5806,7 @@ msgstr "Izbriši oznako" msgid "Delete dashboard tab?" msgstr "Ali izbrišem zavihek nadzorne plošče?" -#: superset-frontend/src/pages/DatabaseList/index.tsx:405 +#: superset-frontend/src/pages/DatabaseList/index.tsx:416 msgid "Delete database" msgstr "Izbriši podatkovno bazo" @@ -5723,6 +5828,11 @@ msgstr "Izbriši predlogo" msgid "Delete this container and save to remove this message." msgstr "Izbrišite ta okvir in shranite za odpravo tega sporočila." +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:108 +#, fuzzy +msgid "Deleted" +msgstr "izbriši" + #: superset/annotation_layers/annotations/api.py:504 #, python-format msgid "Deleted %(num)d annotation" @@ -5741,7 +5851,7 @@ msgstr[1] "Izbrisana sta %(num)d sloja z oznakami" msgstr[2] "Izbrisanih so %(num)d sloji z oznakami" msgstr[3] "Izbrisanih je %(num)d slojev z oznakami" -#: superset/charts/api.py:524 +#: superset/charts/api.py:521 #, python-format msgid "Deleted %(num)d chart" msgid_plural "Deleted %(num)d charts" @@ -5759,7 +5869,7 @@ msgstr[1] "Izbrisani %(num)d css predlogi" msgstr[2] "Izbrisane %(num)d css predloge" msgstr[3] "Izbrisanih %(num)d css predlog" -#: superset/dashboards/api.py:760 +#: superset/dashboards/api.py:745 #, python-format msgid "Deleted %(num)d dashboard" msgid_plural "Deleted %(num)d dashboards" @@ -5768,7 +5878,7 @@ msgstr[1] "Izbrisani sta %(num)d nadzorni plošči" msgstr[2] "Izbrisane so %(num)d nadzorne plošče" msgstr[3] "Izbrisanih je %(num)d nadzornih plošč" -#: superset/datasets/api.py:783 +#: superset/datasets/api.py:789 #, python-format msgid "Deleted %(num)d dataset" msgid_plural "Deleted %(num)d datasets" @@ -5786,6 +5896,15 @@ msgstr[1] "Izbrisana %(num)d urnika poročanja" msgstr[2] "Izbrisani %(num)d urniki poročanja" msgstr[3] "Izbrisanih %(num)d urnikov poročanja" +#: superset/row_level_security/api.py:349 +#, fuzzy, python-format +msgid "Deleted %(num)d rules" +msgid_plural "Deleted %(num)d rules" +msgstr[0] "Izbrisan je %(num)d grafikon" +msgstr[1] "Izbrisana sta %(num)d grafikona" +msgstr[2] "Izbrisani so %(num)d grafikoni" +msgstr[3] "Izbrisanih je %(num)d grafikonov" + #: superset/queries/saved_queries/api.py:222 #, python-format msgid "Deleted %(num)d saved query" @@ -5795,13 +5914,18 @@ msgstr[1] "Izbrisani %(num)d shranjeni poizvedbi" msgstr[2] "Izbrisane %(num)d shranjene poizvedbe" msgstr[3] "Izbrisanih %(num)d shranjenih poizvedb" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:94 +#, fuzzy, python-format +msgid "Deleted %s" +msgstr "Izbrisano: %s" + #: superset-frontend/src/features/home/SavedQueries.tsx:172 #: superset-frontend/src/pages/AlertReportList/index.tsx:183 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 #: superset-frontend/src/pages/AnnotationList/index.tsx:117 #: superset-frontend/src/pages/CssTemplateList/index.tsx:93 -#: superset-frontend/src/pages/DatabaseList/index.tsx:158 -#: superset-frontend/src/pages/DatasetList/index.tsx:653 +#: superset-frontend/src/pages/DatabaseList/index.tsx:169 +#: superset-frontend/src/pages/DatasetList/index.tsx:664 #: superset-frontend/src/pages/SavedQueryList/index.tsx:242 #: superset-frontend/src/reports/actions/reports.js:158 #: superset-frontend/src/views/CRUD/utils.tsx:272 @@ -5820,7 +5944,7 @@ msgstr "" msgid "Delimited long & lat single column" msgstr "En stolpec z ločenima zemljepisno dolžino in širino" -#: superset/views/database/forms.py:150 +#: superset/views/database/forms.py:160 msgid "Delimiter" msgstr "Ločilnik" @@ -5847,32 +5971,34 @@ msgstr "Odvisen od" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:40 +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 msgid "Deprecated" msgstr "Zastarelo" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:83 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:114 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:96 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:127 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:55 #: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:157 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:156 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:265 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1206 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1210 -#: superset-frontend/src/components/ReportModal/index.tsx:294 +#: superset-frontend/src/components/ReportModal/index.tsx:293 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1158 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:465 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 #: superset-frontend/src/pages/AnnotationList/index.tsx:161 -#: superset/connectors/sqla/views.py:157 superset/connectors/sqla/views.py:251 -#: superset/connectors/sqla/views.py:362 superset/connectors/sqla/views.py:491 -#: superset/views/chart/mixin.py:80 superset/views/sql_lab/views.py:84 +#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:398 superset/views/chart/mixin.py:80 +#: superset/views/sql_lab/views.py:84 msgid "Description" msgstr "Opis" @@ -5885,7 +6011,7 @@ msgstr "Opis (lahko je viden na seznamu)" msgid "Description Columns" msgstr "Stolpci z opisi" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:50 msgid "Description text that shows up below your Big Number" msgstr "Besedilo, ki se prikaže pod veliko številko" @@ -5953,7 +6079,7 @@ msgstr "Dimenzija z x-os." msgid "Dimensions" msgstr "Dimenzije" -#: superset/viz.py:2005 +#: superset/viz.py:1928 msgid "Directed Force Layout" msgstr "Izgled usmerjene sile" @@ -5963,11 +6089,11 @@ msgstr "Izgled usmerjene sile" msgid "Directional" msgstr "Usmerjeni" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:202 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 msgid "Disable SQL Lab data preview queries" msgstr "Izključite poizvedbe za predogled podatkov v SQL Laboratoriju" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:205 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 msgid "" "Disable data preview when fetching table metadata in SQL Lab. Useful to " "avoid browser performance issues when using databases with very wide " @@ -6009,7 +6135,6 @@ msgstr "Prikaži vsote na nivoju stolpcev" msgid "Display configuration" msgstr "Prikaži nastavitve" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:87 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:252 msgid "" "Display metrics side by side within each column, as opposed to each " @@ -6022,14 +6147,10 @@ msgstr "" msgid "Display row level total" msgstr "Prikaži vsote na nivoju vrstic" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:39 msgid "Display settings" msgstr "Nastavitve prikaza" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:78 -msgid "Display total row/column" -msgstr "Pokaži vsote vrstic/stolpcev" - #: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:35 msgid "" "Displays connections between entities in a graph structure. Useful for " @@ -6053,7 +6174,7 @@ msgstr "Porazdeli glede na" msgid "Distribution" msgstr "Porazdelitev" -#: superset/viz.py:1801 +#: superset/viz.py:1717 msgid "Distribution - Bar Chart" msgstr "Porazdelitev - Stolpčni grafikon" @@ -6071,7 +6192,7 @@ msgstr "Želite kolobar ali torto?" msgid "Documentation" msgstr "Dokumentacija" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:40 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 msgid "Domain" msgstr "Domena" @@ -6085,18 +6206,18 @@ msgstr "Kolobar" msgid "Dotted" msgstr "Urejane" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:480 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:482 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:292 msgid "Download" msgstr "Prenos" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:317 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:504 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:512 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:329 msgid "Download as image" msgstr "Izvozi kot sliko" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:264 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:262 msgid "Download to CSV" msgstr "Izvozi kot CSV" @@ -6148,20 +6269,20 @@ msgstr "Izriši ločilne črte za pomožne oznake osi" msgid "Draw split lines for minor y-axis ticks" msgstr "Izriši ločilne črte za pomožne oznake y-osi" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:181 -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:191 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 msgid "Drill by" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:172 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 msgid "Drill by is not available for this data point" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:170 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 msgid "Drill by is not yet supported for this chart type" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:154 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:420 #, fuzzy, python-format msgid "Drill by: %s" msgstr "Razvrščanje po %s" @@ -6191,7 +6312,7 @@ msgstr "" msgid "Drill to detail: %s" msgstr "Vrtaj v podrobnosti" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:206 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:184 #, fuzzy msgid "Drop a column here or click" msgid_plural "Drop columns here or click" @@ -6200,7 +6321,7 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:335 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:330 #, fuzzy msgid "Drop a column/metric here or click" msgid_plural "Drop columns/metrics here or click" @@ -6209,56 +6330,26 @@ msgstr[1] "" msgstr[2] "" msgstr[3] "" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:248 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 #, fuzzy msgid "Drop a temporal column here or click" msgstr "Spustite stolpec sem ali kliknite" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:216 -#, fuzzy -msgid "Drop column here" -msgid_plural "Drop columns here" -msgstr[0] "Spustite stolpec sem" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:340 -#, fuzzy -msgid "Drop column or metric here" -msgid_plural "Drop columns or metrics here" -msgstr[0] "Spustite stolpec ali mero sem" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndSelectLabel.tsx:83 -msgid "Drop columns here" -msgstr "Spustite stolpce sem" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:402 -msgid "Drop columns or metrics here" -msgstr "Spustite stolpce ali mere sem" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:401 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:405 msgid "Drop columns/metrics here or click" msgstr "Spustite stolpce/mere sem ali kliknite" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 -msgid "Drop temporal column here" -msgstr "Spustite časovni stolpec sem" - #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:32 msgid "Dual Line Chart" msgstr "Grafikon z dvojno krivuljo" #: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 -#: superset-frontend/src/pages/DatasetList/index.tsx:472 +#: superset-frontend/src/pages/DatasetList/index.tsx:483 #, fuzzy msgid "Duplicate" msgstr "Podvoji zavihek" -#: superset/views/datasource/views.py:122 +#: superset/views/datasource/views.py:124 #, python-format msgid "Duplicate column name(s): %(columns)s" msgstr "Podvojena imena stolpcev: %(columns)s" @@ -6286,7 +6377,7 @@ msgstr "Podvoji zavihek" msgid "Duration" msgstr "Trajanje" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:239 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:249 #, fuzzy msgid "" "Duration (in seconds) of the caching timeout for charts of this database." @@ -6325,7 +6416,7 @@ msgstr "" "Časovna veljavnost (v sekundah) predpomnjenja za ta grafikon. Če ni " "definirana, je uporabljena vrednost za podatkovni set." -#: superset/connectors/sqla/views.py:462 +#: superset/connectors/sqla/views.py:369 msgid "" "Duration (in seconds) of the caching timeout for this table. A timeout of" " 0 indicates that the cache never expires. Note this defaults to the " @@ -6335,7 +6426,7 @@ msgstr "" " predpomnilnik nikoli ne poteče. V primeru, da ni definirano, ima " "nastavitev trajanja za podatkovno bazo." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:261 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:271 msgid "" "Duration (in seconds) of the metadata caching timeout for schemas of this" " database. If left unset, the cache never expires." @@ -6343,7 +6434,7 @@ msgstr "" "Trajanje (v sekundah) predpomnilnika metapodatkov za sheme v tej " "podatkovni bazi. Če ni nastavljeno, predpomnilnik ne poteče." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:282 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:292 msgid "" "Duration (in seconds) of the metadata caching timeout for tables of this " "database. If left unset, the cache never expires. " @@ -6351,7 +6442,7 @@ msgstr "" "Trajanje (v sekundah) predpomnilnika metapodatkov za tabele v tej " "podatkovni bazi. Če ni nastavljeno, predpomnilnik ne poteče. " -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:50 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" msgstr "Trajanje v ms (1.40008 => 1ms 400µs 80ns)" @@ -6360,7 +6451,7 @@ msgstr "Trajanje v ms (1.40008 => 1ms 400µs 80ns)" msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" msgstr "Trajanje v ms (1.40008 => 1ms 400µs 80ns)" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:49 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 #: superset-frontend/src/explore/controls.jsx:89 msgid "Duration in ms (66000 => 1m 6s)" msgstr "Trajanje v ms (66000 => 1m 6s)" @@ -6398,7 +6489,7 @@ msgstr "Dinamično poišče vse možnosti filtra" msgid "ECharts" msgstr "ECharts" -#: superset/reports/notifications/email.py:130 +#: superset/reports/notifications/email.py:133 #, fuzzy msgid "EMAIL_REPORTS_CTA" msgstr "E-poštna poročila aktivna" @@ -6409,12 +6500,12 @@ msgstr "E-poštna poročila aktivna" msgid "END (EXCLUSIVE)" msgstr "KONEC (NI VKLJUČEN)" -#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:171 +#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 #, fuzzy msgid "ERROR" msgstr "Napaka" -#: superset-frontend/src/views/CRUD/hooks.ts:700 +#: superset-frontend/src/views/CRUD/hooks.ts:704 #, python-format msgid "ERROR: %s" msgstr "NAPAKA: %s" @@ -6445,8 +6536,9 @@ msgstr "Debelina povezave" #: superset-frontend/src/pages/AlertReportList/index.tsx:385 #: superset-frontend/src/pages/ChartList/index.tsx:553 #: superset-frontend/src/pages/DashboardList/index.tsx:461 -#: superset-frontend/src/pages/DatabaseList/index.tsx:431 -#: superset-frontend/src/pages/DatasetList/index.tsx:452 +#: superset-frontend/src/pages/DatabaseList/index.tsx:442 +#: superset-frontend/src/pages/DatasetList/index.tsx:463 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:200 msgid "Edit" msgstr "Urejanje" @@ -6475,7 +6567,7 @@ msgstr "Uredi grafikon" msgid "Edit Chart Properties" msgstr "Uredi lastnosti grafikona" -#: superset/connectors/sqla/views.py:75 +#: superset/connectors/sqla/views.py:74 msgid "Edit Column" msgstr "Uredi stolpec" @@ -6487,7 +6579,7 @@ msgstr "Uredi nadzorno ploščo" msgid "Edit Database" msgstr "Uredi podatkovno bazo" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:199 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:241 msgid "Edit Dataset " msgstr "Uredi podatkovni set " @@ -6495,7 +6587,7 @@ msgstr "Uredi podatkovni set " msgid "Edit Log" msgstr "Uredi dnevnik" -#: superset/connectors/sqla/views.py:210 +#: superset/connectors/sqla/views.py:209 msgid "Edit Metric" msgstr "Uredi mero" @@ -6507,15 +6599,16 @@ msgstr "Uredi vtičnik" msgid "Edit Report" msgstr "Uredi poročilo" -#: superset/connectors/sqla/views.py:293 -msgid "Edit Row level security filter" -msgstr "Uredi filter za varnost na nivoju vrstic" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +#, fuzzy +msgid "Edit Rule" +msgstr "načinu urejanja" #: superset/views/sql_lab/views.py:55 msgid "Edit Saved Query" msgstr "Uredi shranjeno poizvedbo" -#: superset/connectors/sqla/views.py:387 +#: superset/connectors/sqla/views.py:294 msgid "Edit Table" msgstr "Uredi tabelo" @@ -6532,9 +6625,9 @@ msgstr "Uredi sloj z oznakami" msgid "Edit annotation layer properties" msgstr "Uredi lastnosti sloja z oznakami" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:74 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:122 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:44 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:212 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:217 #: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:405 msgid "Edit chart" msgstr "Uredi grafikon" @@ -6548,7 +6641,7 @@ msgstr "Uredi lastnosti grafikona" msgid "Edit dashboard" msgstr "Uredi nadzorno ploščo" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1700 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 msgid "Edit database" msgstr "Uredi podatkovno bazo" @@ -6558,7 +6651,7 @@ msgstr "Uredi podatkovni set" #: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:243 #: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:264 -#: superset-frontend/src/components/ReportModal/index.tsx:212 +#: superset-frontend/src/components/ReportModal/index.tsx:211 msgid "Edit email report" msgstr "Uredi e-poštno poročilo" @@ -6583,7 +6676,7 @@ msgstr "Uredi predlogo" msgid "Edit template parameters" msgstr "Uredi parametre predloge" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:717 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:718 #: superset-frontend/src/dashboard/components/DashboardGrid.jsx:242 msgid "Edit the dashboard" msgstr "Uredi nadzorno ploščo" @@ -6608,8 +6701,9 @@ msgstr "Urejanje seta filtrov:" msgid "Either the database is spelled incorrectly or does not exist." msgstr "Ime podatkovne baze je zapisano napačno ali pa ne obstaja." -#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:654 -#: superset/db_engine_specs/redshift.py:67 +#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:681 +#: superset/db_engine_specs/redshift.py:71 +#: superset/db_engine_specs/starrocks.py:122 #, python-format msgid "Either the username \"%(username)s\" or the password is incorrect." msgstr "Uporabniško ime \"%(username)s\" ali geslo sta napačna." @@ -6678,11 +6772,11 @@ msgstr "Prazen izbor" msgid "Empty column" msgstr "Moj stolpec" -#: superset/charts/data/api.py:363 +#: superset/charts/data/api.py:366 msgid "Empty query result" msgstr "Rezultat prazne poizvedbe" -#: superset/connectors/sqla/models.py:1243 superset/models/helpers.py:1433 +#: superset/models/helpers.py:1508 msgid "Empty query?" msgstr "Prazna poizvedba?" @@ -6696,11 +6790,11 @@ msgstr "" msgid "Enable 'Allow file uploads to database' in any database's settings" msgstr "Omogoči 'Dovoli nalaganje podatkov' za vse podatkovne baze" -#: superset/connectors/sqla/views.py:482 +#: superset/connectors/sqla/views.py:389 msgid "Enable Filter Select" msgstr "Omogoči izbiro filtra" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:139 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 #, fuzzy msgid "Enable cross-filtering" msgstr "Doseg medsebojnega filtra" @@ -6736,7 +6830,7 @@ msgstr "Omogoči preoblikovanje grafikona" msgid "Enable node dragging" msgstr "Omogoči premikanje vozlišč" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:170 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 msgid "Enable query cost estimation" msgstr "Omogoči ocenjevanje potratnosti poizvedbe" @@ -6747,7 +6841,7 @@ msgstr "" "Omogoči številčenje strani rezultatov na strani strežnika (preizkusna " "funkcija)" -#: superset/viz.py:2567 +#: superset/viz.py:2514 msgid "" "Encountered invalid NULL spatial entry," " please consider filtering those " @@ -6798,12 +6892,12 @@ msgstr "Končni datum mora biti za začetnim" msgid "Engine \"%(engine)s\" cannot be configured through parameters." msgstr "Podatkovne baze tipa \"%(engine)s\" ni mogoče konfigurirati s parametri." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:476 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:512 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:516 msgid "Engine Parameters" msgstr "Parametri podatkovne baze" -#: superset/databases/schemas.py:298 +#: superset/databases/schemas.py:302 msgid "" "Engine spec \"InvalidEngine\" does not support being configured via " "individual parameters." @@ -6811,7 +6905,7 @@ msgstr "" "Specifikacija baze \"InvalidEngine\" ne podpira konfiguracije s " "posameznimi parametri." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:366 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:376 msgid "Enter CA_BUNDLE" msgstr "Vnesite CA_BUNDLE" @@ -6820,7 +6914,7 @@ msgstr "Vnesite CA_BUNDLE" msgid "Enter Primary Credentials" msgstr "Naloži prijavne podatke" -#: superset/views/database/forms.py:151 +#: superset/views/database/forms.py:161 #, fuzzy msgid "Enter a delimiter for this data" msgstr "Vnesite novo naslov zavihka" @@ -6833,14 +6927,14 @@ msgstr "Vnesite ime te preglednice" msgid "Enter a new title for the tab" msgstr "Vnesite novo naslov zavihka" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:234 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:255 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:276 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:244 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:286 msgid "Enter duration in seconds" msgstr "Vnesite trajanje v sekundah" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:265 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:367 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:369 msgid "Enter fullscreen" msgstr "Vklopi celozaslonski način" @@ -6867,7 +6961,7 @@ msgstr "Enaki datumi" msgid "Equal to (=)" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:140 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:182 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:139 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:298 #: superset-frontend/src/explore/components/EmbedCodeContent.jsx:57 @@ -6876,22 +6970,22 @@ msgstr "" msgid "Error" msgstr "Napaka" -#: superset/connectors/sqla/models.py:1650 superset/models/helpers.py:1843 +#: superset/models/helpers.py:1919 #, python-format msgid "Error in jinja expression in HAVING clause: %(msg)s" msgstr "Napaka v jinja izrazu HAVING stavka: %(msg)s" -#: superset/connectors/sqla/models.py:1145 +#: superset/connectors/sqla/models.py:1105 superset/models/helpers.py:835 #, python-format msgid "Error in jinja expression in RLS filters: %(msg)s" msgstr "Napaka v jinja izrazu RLS filtrov: %(msg)s" -#: superset/connectors/sqla/models.py:1633 superset/models/helpers.py:1831 +#: superset/models/helpers.py:1901 #, python-format msgid "Error in jinja expression in WHERE clause: %(msg)s" msgstr "Napaka v jinja izrazu WHERE stavka: %(msg)s" -#: superset/connectors/sqla/models.py:826 +#: superset/connectors/sqla/models.py:789 #, python-format msgid "Error in jinja expression in fetch values predicate: %(msg)s" msgstr "Napaka v jinja izrazu za pridobivanje vrednosti predikatov: %(msg)s" @@ -6917,7 +7011,7 @@ msgstr "Napaka pri pridobivanju grafikonov" msgid "Error while fetching data: %s" msgstr "Napaka pri pridobivanju podatkov: %s" -#: superset/connectors/sqla/models.py:953 superset/models/helpers.py:1029 +#: superset/connectors/sqla/models.py:914 superset/models/helpers.py:1072 #, python-format msgid "Error while rendering virtual dataset query: %(msg)s" msgstr "Napaka pri izvajanju poizvedbe virtualnega podatkovnega seta: %(msg)s" @@ -6927,12 +7021,12 @@ msgstr "Napaka pri izvajanju poizvedbe virtualnega podatkovnega seta: %(msg)s" msgid "Error: %(error)s" msgstr "Napaka: %(msg)s" -#: superset/views/core.py:820 superset/views/core.py:1918 +#: superset/views/core.py:842 superset/views/core.py:1955 #, python-format msgid "Error: %(msg)s" msgstr "Napaka: %(msg)s" -#: superset/views/core.py:817 +#: superset/views/core.py:839 msgid "Error: permalink state not found" msgstr "Napaka: stanje povezave ni najdeno" @@ -6944,7 +7038,7 @@ msgstr "Oceni potratnost" msgid "Estimate selected query cost" msgstr "Oceni potratnost izbrane poizvedbe" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:621 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:615 msgid "Estimate the cost before running a query" msgstr "Oceni potratnost pred zagonom poizvedbe" @@ -6966,7 +7060,7 @@ msgstr "Imena dogodkov" msgid "Event definition" msgstr "Definicija dogodka" -#: superset/viz.py:2933 +#: superset/viz.py:2927 msgid "Event flow" msgstr "Potek dogodkov" @@ -7013,11 +7107,11 @@ msgstr "Primer" msgid "Examples" msgstr "Vzorci" -#: superset/views/database/forms.py:278 +#: superset/views/database/forms.py:288 msgid "Excel File" msgstr "Excel-ova datoteka" -#: superset/views/database/views.py:424 +#: superset/views/database/views.py:427 #, python-format msgid "" "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" @@ -7026,7 +7120,7 @@ msgstr "" "Excel datoteka \"%(excel_filename)s\" naložena v tabelo " "\"%(table_name)s\" v podatkovni bazi \"%(db_name)s\"" -#: superset/views/database/views.py:303 +#: superset/views/database/views.py:306 msgid "Excel to Database configuration" msgstr "Nastavitve pretvorbe Excel v Podatkovno bazo" @@ -7034,6 +7128,11 @@ msgstr "Nastavitve pretvorbe Excel v Podatkovno bazo" msgid "Exclude selected values" msgstr "Izloči izbrane vrednosti" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:405 +#, fuzzy +msgid "Excluded roles" +msgstr "Vključi serijo" + #: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 msgid "Executed SQL" msgstr "Izvedena poizvedba" @@ -7050,17 +7149,17 @@ msgstr "ID izvedbe" msgid "Execution log" msgstr "Dnevnik izvajanja" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:411 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:419 #, fuzzy msgid "Existing dataset" msgstr "Manjka podatkovni set" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:264 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:366 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:368 msgid "Exit fullscreen" msgstr "Izhod iz celozaslonskega načina" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 msgid "Expand" msgstr "Razširi" @@ -7072,12 +7171,12 @@ msgstr "Razširi vse" msgid "Expand data panel" msgstr "Razširi podatkovni panel" -#: superset-frontend/src/components/Table/index.tsx:209 +#: superset-frontend/src/components/Table/index.tsx:213 #, fuzzy msgid "Expand row" msgstr "Razširi" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:197 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 msgid "Expand table preview" msgstr "Odpri predogled tabele" @@ -7094,6 +7193,7 @@ msgid "" msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:38 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:37 @@ -7108,11 +7208,11 @@ msgid "Experimental" msgstr "Eksperimentalno" #: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 -#: superset/views/core.py:987 +#: superset/views/core.py:1009 msgid "Explore" msgstr "Raziskovanje" -#: superset/views/core.py:985 +#: superset/views/core.py:1007 #, python-format msgid "Explore - %(table)s" msgstr "Razišči - %(table)s" @@ -7128,9 +7228,9 @@ msgstr "Raziščite rezultate v pogledu raziskovanja podatkov" #: superset-frontend/src/pages/ChartList/index.tsx:854 #: superset-frontend/src/pages/DashboardList/index.tsx:445 #: superset-frontend/src/pages/DashboardList/index.tsx:720 -#: superset-frontend/src/pages/DatabaseList/index.tsx:415 -#: superset-frontend/src/pages/DatasetList/index.tsx:434 -#: superset-frontend/src/pages/DatasetList/index.tsx:759 +#: superset-frontend/src/pages/DatabaseList/index.tsx:426 +#: superset-frontend/src/pages/DatasetList/index.tsx:445 +#: superset-frontend/src/pages/DatasetList/index.tsx:781 #: superset-frontend/src/pages/SavedQueryList/index.tsx:550 #: superset/views/dashboard/views.py:65 msgid "Export" @@ -7144,7 +7244,7 @@ msgstr "Izvozim nadzorne plošče?" msgid "Export query" msgstr "Izvozi poizvedbe" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:485 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:487 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:316 msgid "Export to .CSV" msgstr "Izvozi v .CSV" @@ -7153,20 +7253,21 @@ msgstr "Izvozi v .CSV" msgid "Export to .JSON" msgstr "Izvozi v .JSON" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:335 #, fuzzy msgid "Export to Excel" msgstr "Izvozi v YAML" -#: superset/views/base.py:606 +#: superset/views/base.py:607 msgid "Export to YAML" msgstr "Izvozi v YAML" -#: superset/views/base.py:606 +#: superset/views/base.py:607 msgid "Export to YAML?" msgstr "Izvozim v YAML?" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:496 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:498 msgid "Export to full .CSV" msgstr "Izvozi v celoten .CSV" @@ -7178,12 +7279,12 @@ msgstr "Izvozi v izvorni .CSV" msgid "Export to pivoted .CSV" msgstr "Izvozi v vrtilni .CSV" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:88 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 msgid "Expose database in SQL Lab" msgstr "Razkrij podatkovno bazo v SQL laboratoriju" -#: superset-frontend/src/pages/DatabaseList/index.tsx:354 -#: superset-frontend/src/pages/DatabaseList/index.tsx:460 +#: superset-frontend/src/pages/DatabaseList/index.tsx:365 +#: superset-frontend/src/pages/DatabaseList/index.tsx:471 #: superset/views/database/mixins.py:183 msgid "Expose in SQL Lab" msgstr "Uporabi v SQL laboratoriju" @@ -7192,12 +7293,12 @@ msgstr "Uporabi v SQL laboratoriju" msgid "Expose this DB in SQL Lab" msgstr "Uporabi to podatkovno bazo v SQL laboratoriju" -#: superset/connectors/sqla/views.py:161 +#: superset/connectors/sqla/views.py:160 msgid "Expression" msgstr "Izraz" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:908 -#: superset/connectors/sqla/views.py:257 superset/connectors/sqla/views.py:494 +#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:401 #: superset/views/database/mixins.py:193 msgid "Extra" msgstr "Dodatno" @@ -7268,8 +7369,8 @@ msgstr "Faktor" msgid "Factor to multiply the metric by" msgstr "Faktor, s katerim množite mero" -#: superset/views/database/forms.py:167 superset/views/database/forms.py:324 -#: superset/views/database/forms.py:455 +#: superset/views/database/forms.py:177 superset/views/database/forms.py:334 +#: superset/views/database/forms.py:465 msgid "Fail" msgstr "Prekini" @@ -7280,16 +7381,16 @@ msgid "Failed" msgstr "Ni uspelo" #: superset-frontend/src/SqlLab/actions/sqlLab.js:210 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:346 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:350 msgid "Failed at retrieving results" msgstr "Napaka pri pridobivanju rezultatov" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:500 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:496 #, python-format msgid "Failed at stopping query. %s" msgstr "Neuspešno ustavljanje poizvedbe. %s" -#: superset-frontend/src/components/ReportModal/index.tsx:343 +#: superset-frontend/src/components/ReportModal/index.tsx:342 msgid "Failed to create report" msgstr "Ustvarjanje poročila nesupešno" @@ -7298,23 +7399,37 @@ msgstr "Ustvarjanje poročila nesupešno" msgid "Failed to execute %(query)s" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:97 +msgid "Failed to generate chart edit URL" +msgstr "" + #: superset-frontend/src/pages/Chart/index.tsx:57 msgid "Failed to load chart data" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:402 #: superset-frontend/src/pages/Chart/index.tsx:69 msgid "Failed to load chart data." msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 +msgid "Failed to load dimensions for drill by" +msgstr "" + #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 msgid "Failed to retrieve advanced type" msgstr "Napaka pri pridobivanju naprednega tipa" +#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +#, fuzzy +msgid "Failed to save cross-filter scoping" +msgstr "Doseg medsebojnega filtra" + #: superset/errors.py:143 superset/sqllab/sql_json_executer.py:189 msgid "Failed to start remote query on a worker." msgstr "Na delavcu ni bilo mogoče zagnati oddaljene poizvedbe." -#: superset-frontend/src/components/ReportModal/index.tsx:342 +#: superset-frontend/src/components/ReportModal/index.tsx:341 msgid "Failed to update report" msgstr "Posodabljanje poročila neuspešno" @@ -7338,15 +7453,15 @@ msgstr "Priljubljene" msgid "February" msgstr "Februar" -#: superset/connectors/sqla/views.py:488 +#: superset/connectors/sqla/views.py:395 msgid "Fetch Values Predicate" msgstr "Pridobi vrednosti predikatov" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:538 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:531 msgid "Fetch data preview" msgstr "Pridobi predogled podatkov" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:352 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:354 #, python-format msgid "Fetched %s" msgstr "Pridobljeno %s" @@ -7410,12 +7525,18 @@ msgid "Filter Settings" msgstr "Nastavitve filtra" #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:825 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:362 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:373 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:134 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:255 msgid "Filter Type" msgstr "Tip filtra" #: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:28 -msgid "Filter box" -msgstr "Izbirnik za filtriranje" +#, fuzzy +msgid "Filter box (deprecated)" +msgstr "Noben filter ni izbran." #: superset-frontend/src/dashboard/components/SliceAdder.jsx:351 #, fuzzy @@ -7434,7 +7555,7 @@ msgstr "Nastavitve za polje filtra" msgid "Filter has default value" msgstr "Filter ima privzeto vrednost" -#: superset-frontend/src/components/Table/index.tsx:197 +#: superset-frontend/src/components/Table/index.tsx:201 #, fuzzy msgid "Filter menu" msgstr "Ime filtra" @@ -7451,7 +7572,7 @@ msgstr "Ime filtra" msgid "Filter only displays values relevant to selections made in other filters." msgstr "Filter prikazuje samo vrednosti vezane na izbire v drugih filtrih." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:289 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:283 msgid "Filter results" msgstr "Filtriraj rezultate" @@ -7487,7 +7608,7 @@ msgstr "Vrednost filtra (razlik. velikih/malih črk)" msgid "Filter value is required" msgstr "Vrednost filtra je obvezna" -#: superset/connectors/sqla/models.py:1549 superset/models/helpers.py:1754 +#: superset/models/helpers.py:1815 msgid "Filter value list cannot be empty" msgstr "Seznam vrednosti filtra ne sme biti prazen" @@ -7495,7 +7616,7 @@ msgstr "Seznam vrednosti filtra ne sme biti prazen" msgid "Filter your charts" msgstr "Filtriraj grafikone" -#: superset/connectors/sqla/views.py:159 +#: superset/connectors/sqla/views.py:158 msgid "Filterable" msgstr "Filtriranje" @@ -7503,7 +7624,7 @@ msgstr "Filtriranje" #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 #: superset-frontend/src/explore/controls.jsx:446 #: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:35 -#: superset/viz.py:2142 +#: superset/viz.py:2071 msgid "Filters" msgstr "Filtri" @@ -7529,7 +7650,7 @@ msgstr "Nastavitve filtrov" msgid "Filters out of scope (%d)" msgstr "Filtri izven dosega (%d)" -#: superset/connectors/sqla/views.py:342 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:435 msgid "" "Filters with the same group key will be ORed together within the group, " "while different filter groups will be ANDed together. Undefined group " @@ -7549,9 +7670,9 @@ msgstr "" "izraz (oddelek = 'Finance' OR oddelek = 'Marketing') AND (regija = " "'Evropa')." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1077 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1125 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1857 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1132 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1180 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 msgid "Finish" msgstr "Zaključi" @@ -7610,7 +7731,7 @@ msgstr "Velikost pisave za največjo vrednost na seznamu" msgid "Font size for the smallest value in the list" msgstr "Velikost pisave za najmanjšo vrednost na seznamu" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:173 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 msgid "" "For Bigquery, Presto and Postgres, shows a button to compute cost before " "running a query." @@ -7630,7 +7751,7 @@ msgid "" "function, refer to the" msgstr "Za dodatne informacije o objektih v kontekstu te funkcije si oglejte" -#: superset/connectors/sqla/views.py:336 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:408 msgid "" "For regular filters, these are the roles this filter will be applied to. " "For base filters, these are the roles that the filter DOES NOT apply to, " @@ -7644,7 +7765,7 @@ msgstr "" msgid "Force" msgstr "Sila" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:141 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 msgid "" "Force all tables and views to be created in this schema when clicking " "CTAS or CVAS in SQL Lab." @@ -7652,20 +7773,20 @@ msgstr "" "Vsilite, da bodo vse tabele in pogledi ustvarjeni s to shemo, ko kliknete" " CTAS ali CVAS v SQL laboratoriju." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:84 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 msgid "Force date format" msgstr "Vsili obliko zapisa datuma" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:381 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 msgid "Force refresh" msgstr "Osveži" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:292 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:291 msgid "Force refresh schema list" msgstr "Osveži seznam shem" -#: superset-frontend/src/components/TableSelector/index.tsx:317 +#: superset-frontend/src/components/TableSelector/index.tsx:307 msgid "Force refresh table list" msgstr "Osveži seznam tabel" @@ -7682,13 +7803,13 @@ msgstr "" msgid "Forest Green" msgstr "Frekvenca osveževanja" -#: superset/explore/commands/get.py:87 superset/views/core.py:834 +#: superset/explore/commands/get.py:87 superset/views/core.py:856 msgid "Form data not found in cache, reverting to chart metadata." msgstr "" "Podatkov ni mogoče najti v predpomnilniku. Uporabljeni bodo metapodatki " "grafikona." -#: superset/explore/commands/get.py:95 superset/views/core.py:840 +#: superset/explore/commands/get.py:95 superset/views/core.py:862 msgid "Form data not found in cache, reverting to dataset metadata." msgstr "" "Podatkov ni mogoče najti v predpomnilniku. Uporabljeni bodo metapodatki " @@ -7700,7 +7821,7 @@ msgstr "" msgid "Formattable" msgstr "Prilagodljiv" -#: superset-frontend/src/components/ReportModal/index.tsx:255 +#: superset-frontend/src/components/ReportModal/index.tsx:254 msgid "Formatted CSV attached in email" msgstr "Oblikovan CSV pripet e-pošti" @@ -7755,7 +7876,7 @@ msgstr "Trenje med vozlišči" msgid "Friday" msgstr "Petek" -#: superset/utils/date_parser.py:267 superset/viz.py:392 +#: superset/utils/date_parser.py:267 superset/viz.py:403 msgid "From date cannot be larger than to date" msgstr "Začetni datum ne sme biti večji od končnega datuma" @@ -7826,7 +7947,7 @@ msgstr "Pridobi zadnji datum glede na časovno enoto." msgid "Get the specify date for the holiday" msgstr "Določi datum praznika" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:713 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:714 msgid "Go to the edit mode to configure the dashboard and add charts" msgstr "" "Za nastavitve nadzorne plošče in dodajanje grafikonov pojdite v način " @@ -7883,20 +8004,23 @@ msgstr "Združevanje (Group by)" msgid "Group By filter plugin" msgstr "Vtičnik za filter za združevanje" -#: superset/viz.py:927 -msgid "Group By' and 'Columns' can't overlap" -msgstr "'Združevanje' in 'Stolpci' se ne smeta prekrivati" - #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:84 msgid "Group By, Metrics or Percentage Metrics must have a value" msgstr "Združevanje, Mera ali Procentualna mera morajo imeti vrednost" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:433 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:139 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:267 +#, fuzzy +msgid "Group Key" +msgstr "Združevanje (Group by)" + #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 msgid "Group by" msgstr "Združevanje (Group by)" -#: superset/connectors/sqla/views.py:158 +#: superset/connectors/sqla/views.py:157 msgid "Groupable" msgstr "Združevanje" @@ -7925,12 +8049,12 @@ msgstr "ustvarjeno" msgid "Header" msgstr "Glava" -#: superset/views/database/forms.py:244 superset/views/database/forms.py:331 +#: superset/views/database/forms.py:254 superset/views/database/forms.py:341 msgid "Header Row" msgstr "Naslovna vrstica" #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 -#: superset/viz.py:2249 +#: superset/viz.py:2183 msgid "Heatmap" msgstr "Toplotni prikaz" @@ -7956,7 +8080,7 @@ msgstr "Debelina črt" msgid "Hide Line" msgstr "Skrij sloj" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:394 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:396 msgid "Hide chart description" msgstr "Skrij opis grafikona" @@ -7984,12 +8108,12 @@ msgid "Hierarchy" msgstr "Hierarhija" #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 -#: superset/viz.py:1743 +#: superset/viz.py:1656 msgid "Histogram" msgstr "Histogram" #: superset-frontend/src/pages/Home/index.tsx:333 -#: superset/initialization/__init__.py:233 +#: superset/initialization/__init__.py:235 msgid "Home" msgstr "Domov" @@ -7997,7 +8121,7 @@ msgstr "Domov" msgid "Horizon Chart" msgstr "Horizontni grafikon" -#: superset/viz.py:2310 +#: superset/viz.py:2246 msgid "Horizon Charts" msgstr "Horizontni grafikon" @@ -8005,7 +8129,7 @@ msgstr "Horizontni grafikon" msgid "Horizontal" msgstr "Vodoravno" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:166 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 #, fuzzy msgid "Horizontal (Top)" msgstr "Vodoravno" @@ -8018,12 +8142,12 @@ msgstr "Vodoravna poravnava" msgid "Host" msgstr "Gostitelj" -#: superset/db_engine_specs/base.py:1839 -#: superset/db_engine_specs/clickhouse.py:203 +#: superset/db_engine_specs/base.py:1872 +#: superset/db_engine_specs/clickhouse.py:204 msgid "Hostname or IP address" msgstr "Ime gostitelja ali IP naslov" -#: superset/db_engine_specs/base.py:104 +#: superset/db_engine_specs/base.py:105 msgid "Hour" msgstr "Ura" @@ -8083,7 +8207,7 @@ msgstr "Id" msgid "Id of root node of the tree." msgstr "Id korenskega vozlišča drevesa." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:391 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:401 msgid "" "If Presto or Trino, all the queries in SQL Lab are going to be executed " "as the currently logged on user who must have permission to run them. If " @@ -8111,7 +8235,7 @@ msgstr "" "poizvedbe tečejo pod servisnim računom, vendar je trenutno prijavljen " "uporabnik predstavljen z lastnostjo hive.server2.proxy.user." -#: superset/views/database/forms.py:164 +#: superset/views/database/forms.py:174 #, fuzzy msgid "If Table Already Exists" msgstr "Oznaka že obstaja" @@ -8120,7 +8244,7 @@ msgstr "Oznaka že obstaja" msgid "If a metric is specified, sorting will be done based on the metric value" msgstr "Če je določena mera, bo razvrščanje izvedeno na podlagi vrednosti mere" -#: superset/views/database/forms.py:238 +#: superset/views/database/forms.py:248 msgid "" "If duplicate columns are not overridden, they will be presented as \"X.1," " X.2 ...X.x\"" @@ -8130,7 +8254,7 @@ msgstr "" msgid "If selected, please set the schemas allowed for csv upload in Extra." msgstr "Če je izbrano, nastavite dovoljene sheme za nalaganje CSV v Dodatno." -#: superset/views/database/forms.py:318 superset/views/database/forms.py:449 +#: superset/views/database/forms.py:328 superset/views/database/forms.py:459 msgid "" "If table exists do one of the following: Fail (do nothing), Replace (drop" " and recreate table) or Append (insert data)." @@ -8153,7 +8277,7 @@ msgstr "Izpusti prazne lokacije" msgid "Ignore time" msgstr "Ne upoštevaj časa" -#: superset-frontend/src/components/ReportModal/index.tsx:252 +#: superset-frontend/src/components/ReportModal/index.tsx:251 msgid "Image (PNG) embedded in email" msgstr "Slika (PNG) vključena v e-pošto" @@ -8161,7 +8285,7 @@ msgstr "Slika (PNG) vključena v e-pošto" msgid "Image download failed, please refresh and try again." msgstr "Prenos slike ni uspel. Osvežite in poskusite ponovno." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:386 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:396 msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" msgstr "" "Predstavljanje kot prijavljeni uporabnik (Presto, Trino, Drill, Hive in " @@ -8184,11 +8308,11 @@ msgstr "Uvozi %s" msgid "Import Dashboard(s)" msgstr "Uvozi nadzorne plošče" -#: superset/initialization/__init__.py:337 +#: superset/initialization/__init__.py:331 msgid "Import Dashboards" msgstr "Uvozi nadzorne plošče" -#: superset/connectors/sqla/views.py:386 +#: superset/connectors/sqla/views.py:293 msgid "Import a table definition" msgstr "Uvozi definicijo tabele" @@ -8213,15 +8337,15 @@ msgstr "Uvozi nadzorne plošče" msgid "Import database failed for an unknown reason" msgstr "Uvoz podatkovne baze ni uspel zaradi neznanega razloga" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1912 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1969 msgid "Import database from file" msgstr "Uvozi podatkovno bazo iz datoteke" -#: superset/datasets/commands/exceptions.py:185 +#: superset/datasets/commands/exceptions.py:202 msgid "Import dataset failed for an unknown reason" msgstr "Uvoz podatkovnega seta ni uspel zaradi neznanega razloga" -#: superset-frontend/src/pages/DatasetList/index.tsx:620 +#: superset-frontend/src/pages/DatasetList/index.tsx:631 msgid "Import datasets" msgstr "Uvozi podatkovne sete" @@ -8251,7 +8375,7 @@ msgstr "v" msgid "Include Series" msgstr "Vključi serijo" -#: superset-frontend/src/components/ReportModal/index.tsx:295 +#: superset-frontend/src/components/ReportModal/index.tsx:294 msgid "Include a description that will be sent with your report" msgstr "Vključite opis, ki bo vključen v poročilo" @@ -8269,7 +8393,7 @@ msgstr "Vključi čas" msgid "Index" msgstr "Moje" -#: superset/views/database/forms.py:210 superset/views/database/forms.py:341 +#: superset/views/database/forms.py:220 superset/views/database/forms.py:351 msgid "Index Column" msgstr "Indeksni stolpec" @@ -8308,12 +8432,25 @@ msgstr "Takojšnje filtriranje" msgid "Intensity" msgstr "Intenzivnost" -#: superset/views/database/forms.py:190 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:85 +#, fuzzy +msgid "Intensity Radius" +msgstr "Radij točk" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:86 +msgid "Intensity Radius is the radius at which the weight is distributed" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:69 +msgid "Intensity is the value multiplied by the weight to obtain the final weight" +msgstr "" + +#: superset/views/database/forms.py:200 #, fuzzy msgid "Interpret Datetime Format Automatically" msgstr "Uporabi Pandas za samodejno prepoznavo oblike datumov/časov." -#: superset/views/database/forms.py:191 +#: superset/views/database/forms.py:201 #, fuzzy msgid "Interpret the datetime format automatically" msgstr "Uporabi Pandas za samodejno prepoznavo oblike datumov/časov." @@ -8344,6 +8481,20 @@ msgstr "Stolpec začetka intervala" msgid "Intervals" msgstr "Intervali" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:68 +#, fuzzy +msgid "Intesity" +msgstr "Intenzivnost" + +#: superset/db_engine_specs/ocient.py:274 +#, fuzzy +msgid "" +"Invalid Connection String: Expecting String of the form " +"'ocient://user:pass@host:port/database'." +msgstr "" +"Neveljaven niz povezave - veljaven niz običajno sledi: " +"driver://user:password@database-host/database-name" + #: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 msgid "Invalid JSON" msgstr "Neveljaven JSON" @@ -8357,7 +8508,7 @@ msgstr "Neveljaven napreden tip rezultata: %(advanced_data_type)s" msgid "Invalid certificate" msgstr "Neveljaven certifikat" -#: superset/views/core.py:1422 +#: superset/views/core.py:1463 msgid "" "Invalid connection string, a valid string usually follows:\n" "'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" @@ -8394,15 +8545,15 @@ msgstr "Neveljaven cron izraz" msgid "Invalid cumulative operator: %(operator)s" msgstr "Neveljaven kumulativni operand: %(operator)s" -#: superset/connectors/sqla/views.py:181 superset/datasets/schemas.py:44 +#: superset/connectors/sqla/views.py:180 superset/datasets/schemas.py:44 msgid "Invalid date/timestamp format" msgstr "Neveljaven zapis datuma/časa" -#: superset/viz.py:2160 +#: superset/viz.py:2091 msgid "Invalid filter configuration, please select a column" msgstr "Neveljavna nastavitev filtrov, izberite stolpec" -#: superset/connectors/sqla/models.py:1623 superset/models/helpers.py:1820 +#: superset/models/helpers.py:1891 #, python-format msgid "Invalid filter operation type: %(op)s" msgstr "Neveljaven tip operacije filtra: %(op)s" @@ -8427,7 +8578,7 @@ msgstr "Neveljavna nastavitev zemljepisne dolžine/širine." msgid "Invalid longitude/latitude" msgstr "Neveljavna zemljepisna dolžina/širina" -#: superset/utils/core.py:1364 +#: superset/utils/core.py:1373 #, fuzzy, python-format msgid "Invalid metric object: %(metric)s" msgstr "Neveljaven objekt mere" @@ -8446,7 +8597,12 @@ msgstr "Neveljavne možnosti za %(rolling_type)s: %(options)s" msgid "Invalid permalink key" msgstr "Neveljaven ključ povezave" -#: superset/common/query_actions.py:228 +#: superset/db_engine_specs/ocient.py:292 +#, python-format +msgid "Invalid reference to column: \"%(column)s\"" +msgstr "" + +#: superset/common/query_actions.py:227 #, python-format msgid "Invalid result type: %(result_type)s" msgstr "Neveljaven tip rezultata: %(result_type)s" @@ -8456,7 +8612,7 @@ msgstr "Neveljaven tip rezultata: %(result_type)s" msgid "Invalid rolling_type: %(type)s" msgstr "Neveljaven rolling_type: %(type)s" -#: superset/viz.py:2530 +#: superset/viz.py:2474 #, python-format msgid "Invalid spatial point encountered: %s" msgstr "Neustrezna prostorska točka: %s" @@ -8466,7 +8622,7 @@ msgstr "Neustrezna prostorska točka: %s" msgid "Invalid state." msgstr "Neveljavno stanje." -#: superset/reports/commands/create.py:144 +#: superset/reports/commands/create.py:142 #, python-format msgid "Invalid tab ids: %s(tab_ids)" msgstr "" @@ -8475,7 +8631,7 @@ msgstr "" msgid "Inverse selection" msgstr "Invertiraj izbiro" -#: superset-frontend/src/components/Table/index.tsx:205 +#: superset-frontend/src/components/Table/index.tsx:209 #, fuzzy msgid "Invert current page" msgstr "Procentualna sprememba" @@ -8495,7 +8651,7 @@ msgstr "Dimenzija" msgid "Is false" msgstr "Onemogočeno" -#: superset/views/base_api.py:143 +#: superset/views/base_api.py:149 msgid "Is favorite" msgstr "Je priljubljen" @@ -8514,13 +8670,13 @@ msgstr "Ni nič (null)" msgid "Is null" msgstr "Ni nič (null)" -#: superset/views/base_api.py:171 +#: superset/views/base_api.py:177 msgid "Is tagged" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:362 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 -#: superset/connectors/sqla/views.py:162 +#: superset/connectors/sqla/views.py:161 msgid "Is temporal" msgstr "Časoven" @@ -8564,7 +8720,7 @@ msgstr "JSON metapodatki" msgid "JSON metadata is invalid!" msgstr "json ni veljaven" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 msgid "" "JSON string containing additional connection configuration. This is used " "to provide connection information for systems like Hive, Presto and " @@ -8608,12 +8764,12 @@ msgstr "Javascript generator opisa orodja" msgid "Jinja templating" msgstr "Uredi predlogo" -#: superset/views/database/forms.py:233 +#: superset/views/database/forms.py:243 #, fuzzy msgid "Json list of the column names that should be read" msgstr "Z vejico ločen seznam stolpcev, v katerih bodo prepoznani datumi." -#: superset/views/database/forms.py:464 +#: superset/views/database/forms.py:474 msgid "" "Json list of the column names that should be read. If not None, only " "these columns will be read from the file." @@ -8621,7 +8777,7 @@ msgstr "" "JSON seznam imen stolpcev, ki morajo biti prebrani. Če ni prazen, bodo iz" " datoteke prebrani le ti stolpci." -#: superset/views/database/forms.py:203 +#: superset/views/database/forms.py:213 #, fuzzy msgid "" "Json list of the values that should be treated as null. Examples: [\"\"] " @@ -8633,7 +8789,7 @@ msgstr "" "Podatkovna baza Hive podpira le eno vrednost. Uporabite [\"\"] za prazen " "znakovni niz." -#: superset/views/database/forms.py:394 +#: superset/views/database/forms.py:404 msgid "" "Json list of the values that should be treated as null. Examples: [\"\"]," " [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " @@ -8687,8 +8843,8 @@ msgstr "Filtri" msgid "LIMIT" msgstr "Omejitev števila vrstic" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:80 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:109 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:93 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:122 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:251 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:255 @@ -8765,7 +8921,7 @@ msgstr "Veliko" msgid "Last" msgstr "Zadnji" -#: superset/connectors/sqla/views.py:481 superset/views/database/mixins.py:190 +#: superset/connectors/sqla/views.py:388 superset/views/database/mixins.py:190 msgid "Last Changed" msgstr "Zadnja sprememba" @@ -8792,7 +8948,7 @@ msgstr "Zadnja razpoložljiva vrednost na %s" #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:177 #: superset-frontend/src/pages/ChartList/index.tsx:445 #: superset-frontend/src/pages/CssTemplateList/index.tsx:158 -#: superset-frontend/src/pages/DatabaseList/index.tsx:380 +#: superset-frontend/src/pages/DatabaseList/index.tsx:391 msgid "Last modified" msgstr "Zadnja sprememba" @@ -8852,7 +9008,7 @@ msgstr "Zadnje spremenjeno" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:28 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:90 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:371 msgid "Left" msgstr "Levo" @@ -8884,7 +9040,7 @@ msgstr "Levi rob, v pikslih, s katerim povečamo prostor za oznake osi" msgid "Left to Right" msgstr "Iz leve proti desni" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:144 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 msgid "Left value" msgstr "Leva vrednost" @@ -8897,7 +9053,6 @@ msgstr "Leva vrednost" #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:33 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 #: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 #: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 @@ -8913,15 +9068,16 @@ msgstr "Leva vrednost" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:35 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 #: superset-frontend/src/visualizations/TimeTable/index.ts:35 msgid "Legacy" msgstr "Staro" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:154 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:289 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:115 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:99 msgid "Legend" msgstr "Legenda" @@ -8929,7 +9085,7 @@ msgstr "Legenda" msgid "Legend Format" msgstr "Oblika legende" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:95 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:92 #, fuzzy msgid "Legend Orientation" msgstr "Orientacija drevesa" @@ -8938,7 +9094,7 @@ msgstr "Orientacija drevesa" msgid "Legend Position" msgstr "Položaj legende" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:72 msgid "Legend type" msgstr "Tip legende" @@ -9088,7 +9244,7 @@ msgid "Lines encoding" msgstr "Kodiranje črt" #: superset-frontend/src/pages/SavedQueryList/index.tsx:226 -#: superset-frontend/src/views/CRUD/hooks.ts:673 +#: superset-frontend/src/views/CRUD/hooks.ts:677 msgid "Link Copied!" msgstr "Povezava kopirana!" @@ -9118,7 +9274,7 @@ msgstr "Seznam vrednosti, ki bodo markirane s črticami" msgid "List of values to mark with triangles" msgstr "Seznam vrednosti, ki bodo markirane s trikotniki" -#: superset-frontend/src/components/TableSelector/index.tsx:187 +#: superset-frontend/src/components/TableSelector/index.tsx:184 #, fuzzy msgid "List updated" msgstr "%s posodobljeni" @@ -9149,8 +9305,8 @@ msgid "Loading" msgstr "Nalagam ..." #: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:495 -#: superset-frontend/src/components/Select/Select.tsx:470 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:496 +#: superset-frontend/src/components/Select/Select.tsx:477 #: superset-frontend/src/components/Select/utils.tsx:152 #: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 #: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 @@ -9179,13 +9335,13 @@ msgstr "Logaritemska os" msgid "Logarithmic scale on primary y-axis" msgstr "Logaritemska skala na primarni y-osi" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:432 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:449 msgid "Logarithmic scale on secondary y-axis" msgstr "Logaritemska skala na sekundarni y-osi" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:396 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:420 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:429 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:437 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:446 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:222 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:225 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:210 @@ -9256,11 +9412,11 @@ msgstr "MAJ" msgid "MON" msgstr "PON" -#: superset/connectors/sqla/views.py:490 +#: superset/connectors/sqla/views.py:397 msgid "Main Datetime Column" msgstr "Glavni stolpec Datum-Čas" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:283 +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:292 msgid "" "Make sure that the controls are configured properly and the datasource " "contains data for the selected time range" @@ -9268,7 +9424,7 @@ msgstr "" "Poskrbite, da so kontrolniki pravilno nastavljeni in podatkovni vir " "vsebuje podatke za izbrano časovno obdobje" -#: superset/views/core.py:1717 +#: superset/views/core.py:1752 msgid "" "Malformed request. slice_id or table_name and db_name arguments are " "expected" @@ -9276,11 +9432,11 @@ msgstr "" "Deformirana zahteva. Pričakovani so argumenti slice_id ali table_name in " "db_name" -#: superset/initialization/__init__.py:277 -#: superset/initialization/__init__.py:289 -#: superset/initialization/__init__.py:341 -#: superset/initialization/__init__.py:412 -#: superset/initialization/__init__.py:425 +#: superset/initialization/__init__.py:279 +#: superset/initialization/__init__.py:291 +#: superset/initialization/__init__.py:335 +#: superset/initialization/__init__.py:406 +#: superset/initialization/__init__.py:419 msgid "Manage" msgstr "Upravljaj" @@ -9298,7 +9454,7 @@ msgstr "Upravljajte podatkovne baze" msgid "Mandatory" msgstr "Obvezno" -#: superset/views/database/forms.py:350 +#: superset/views/database/forms.py:360 msgid "Mangle Duplicate Columns" msgstr "Odstrani podvojene stolpce" @@ -9318,6 +9474,8 @@ msgstr "Uporabi logaritemsko skalo za Y-os" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:67 @@ -9340,7 +9498,7 @@ msgstr "Slog zemljevida" msgid "MapBox" msgstr "MapBox" -#: superset/viz.py:2322 +#: superset/viz.py:2258 msgid "Mapbox" msgstr "Mapbox" @@ -9348,11 +9506,11 @@ msgstr "Mapbox" msgid "March" msgstr "Marec" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:50 msgid "Margin" msgstr "Rob" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:348 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:354 msgid "Mark a column as temporal in \"Edit datasource\" modal" msgstr "Označite stolpec kot časoven preko okna \"Uredi podatkovni vir\"" @@ -9434,7 +9592,7 @@ msgstr "" "Maksimalni polmer kroga v pikslih. S tem je določen maksimalni polmer " "kroga, ko se spreminja stopnja povečave." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:232 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 #, fuzzy msgid "Maximum value" msgstr "Prazne (Null) vrednosti" @@ -9491,7 +9649,7 @@ msgstr "Srednje" msgid "Menu actions trigger" msgstr "Preklapljanje funkcionalnosti menijev" -#: superset-frontend/src/components/ReportModal/index.tsx:237 +#: superset-frontend/src/components/ReportModal/index.tsx:236 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 msgid "Message content" msgstr "Vsebina sporočila" @@ -9500,8 +9658,8 @@ msgstr "Vsebina sporočila" msgid "Metadata" msgstr "Metapodatki" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:450 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:454 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:486 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:490 msgid "Metadata Parameters" msgstr "Parametri metapodatkov" @@ -9526,13 +9684,12 @@ msgstr "Metoda" #: superset-frontend/src/explore/controls.jsx:167 #: superset-frontend/src/explore/controls.jsx:168 #: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 -#: superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:249 msgid "Metric" msgstr "Mera" -#: superset/connectors/sqla/models.py:1264 -#: superset/connectors/sqla/models.py:1847 superset/models/helpers.py:1192 -#: superset/models/helpers.py:1448 +#: superset/connectors/sqla/models.py:1133 superset/models/helpers.py:1236 +#: superset/models/helpers.py:1529 #, python-format msgid "Metric '%(metric)s' does not exist" msgstr "Mera '%(metric)s' ne obstaja" @@ -9567,7 +9724,7 @@ msgstr "Sprememba faktorja mere od vrednosti \"OD\" do \"DO\"" msgid "Metric for node values" msgstr "Mera za vrednosti vozlišč" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:106 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:119 msgid "Metric name" msgstr "Ime mere" @@ -9592,6 +9749,7 @@ msgstr "Mera za prikaz spodnjega naslova" msgid "Metric to sort the results by" msgstr "Mera za razvrščanje rezultatov" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:139 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:78 msgid "Metric used as a weight for the grid's coloring" msgstr "Mera, ki služi kot utež za barvo mreže" @@ -9638,7 +9796,7 @@ msgstr "" #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 #: superset-frontend/src/explore/controls.jsx:152 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 -#: superset/connectors/sqla/views.py:207 +#: superset/connectors/sqla/views.py:206 msgid "Metrics" msgstr "Mere" @@ -9724,11 +9882,11 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:85 #: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:152 msgid "Minimum threshold in percentage points for showing labels." msgstr "Minimalni prag v odstotnih točkah za prikaz oznak." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:231 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:69 #, fuzzy msgid "Minimum value" msgstr "Prazne (Null) vrednosti" @@ -9751,7 +9909,7 @@ msgstr "Najmanjša vrednost na številčnici" msgid "Minor Split Line" msgstr "Manjša ločilna črta" -#: superset/db_engine_specs/base.py:99 +#: superset/db_engine_specs/base.py:100 msgid "Minute" msgstr "Minuta" @@ -9781,12 +9939,13 @@ msgstr "Kombiniran grafikon časovne vrste" #: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:278 #: superset-frontend/src/pages/AlertReportList/index.tsx:335 #: superset-frontend/src/pages/DashboardList/index.tsx:347 -#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:375 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:152 #: superset-frontend/src/pages/SavedQueryList/index.tsx:369 #: superset-frontend/src/pages/Tags/index.tsx:118 -#: superset/connectors/sqla/views.py:367 superset/connectors/sqla/views.py:495 -#: superset/views/dashboard/mixin.py:85 superset/views/dashboard/views.py:186 -#: superset/views/database/mixins.py:199 superset/views/sql_lab/views.py:85 +#: superset/connectors/sqla/views.py:402 superset/views/dashboard/mixin.py:85 +#: superset/views/dashboard/views.py:186 superset/views/database/mixins.py:199 +#: superset/views/sql_lab/views.py:85 msgid "Modified" msgstr "Spremenjeno" @@ -9801,7 +9960,7 @@ msgstr "Zadnja sprememba %s" #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 #: superset-frontend/src/pages/ChartList/index.tsx:431 #: superset-frontend/src/pages/DashboardList/index.tsx:326 -#: superset-frontend/src/pages/DatasetList/index.tsx:374 +#: superset-frontend/src/pages/DatasetList/index.tsx:385 msgid "Modified by" msgstr "Spremenil" @@ -9814,7 +9973,7 @@ msgstr "Spremenjeni stolpci: %s" msgid "Monday" msgstr "Ponedeljek" -#: superset/db_engine_specs/base.py:108 +#: superset/db_engine_specs/base.py:109 msgid "Month" msgstr "Mesec" @@ -9880,7 +10039,7 @@ msgstr "Več" msgid "Multiple Line Charts" msgstr "Veččrtni grafikon" -#: superset/views/database/views.py:465 +#: superset/views/database/views.py:468 msgid "" "Multiple file extensions are not allowed for columnar uploads. Please " "make sure all files are of the same extension." @@ -9917,11 +10076,11 @@ msgstr "Mora biti unikaten" msgid "Must choose either a chart or a dashboard" msgstr "Izberite grafikon ali nadzorno ploščo, ne obojega" -#: superset/viz.py:2346 +#: superset/viz.py:2283 msgid "Must have a [Group By] column to have 'count' as the [Label]" msgstr "Mora imeti stolpec [Združevanje], da ima število (count) kot [Oznaka]" -#: superset/viz.py:1752 +#: superset/viz.py:1666 msgid "Must have at least one numeric column specified" msgstr "Definiran mora biti vsaj en numerični stolpec" @@ -9929,7 +10088,7 @@ msgstr "Definiran mora biti vsaj en numerični stolpec" msgid "Must provide credentials for the SSH Tunnel" msgstr "" -#: superset/connectors/sqla/models.py:1582 superset/models/helpers.py:1780 +#: superset/models/helpers.py:1848 msgid "Must specify a value for filters with comparison operators" msgstr "Potrebno je podati vrednost za filter s primerjalnim operandom" @@ -9969,19 +10128,21 @@ msgid "NUMERIC" msgstr "Moja mera" #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:149 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:782 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:212 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:148 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:789 #: superset-frontend/src/pages/AlertReportList/index.tsx:272 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 #: superset-frontend/src/pages/CssTemplateList/index.tsx:131 -#: superset-frontend/src/pages/DatasetList/index.tsx:334 +#: superset-frontend/src/pages/DatasetList/index.tsx:345 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:130 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:248 #: superset-frontend/src/pages/SavedQueryList/index.tsx:283 #: superset-frontend/src/pages/Tags/index.tsx:109 -#: superset/connectors/sqla/views.py:361 superset/views/chart/mixin.py:85 +#: superset/views/chart/mixin.py:85 msgid "Name" msgstr "Ime" @@ -9994,11 +10155,11 @@ msgstr "Zahtevano je ime" msgid "Name must be unique" msgstr "Ime mora biti unikatno" -#: superset/views/database/forms.py:406 +#: superset/views/database/forms.py:416 msgid "Name of table to be created from columnar data." msgstr "Ime tabele, ki bo ustvarjena iz podatkov v stolpcih." -#: superset/views/database/forms.py:270 +#: superset/views/database/forms.py:280 msgid "Name of table to be created from excel data." msgstr "Ime tabele, ki bo ustvarjena iz Excel-ovih podatkov." @@ -10019,7 +10180,7 @@ msgstr "Naziv id-stolpca" msgid "Name of the source nodes" msgstr "Imena izvornih vozlišč" -#: superset/connectors/sqla/views.py:428 +#: superset/connectors/sqla/views.py:335 msgid "Name of the table that exists in the source database" msgstr "Ime tabele, ki obstaja v izvorni podatkovni bazi" @@ -10076,17 +10237,17 @@ msgstr "Nov set filtrov" msgid "New header" msgstr "Podnaslov" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:329 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:331 msgid "New tab" msgstr "Nov zavihek" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:268 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:310 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:278 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:320 msgid "New tab (Ctrl + q)" msgstr "Nov zavihek (Ctrl + q)" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:269 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:311 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:279 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:321 msgid "New tab (Ctrl + t)" msgstr "Nov zavihek (Ctrl + t)" @@ -10108,9 +10269,9 @@ msgstr "Nightingale Rose grafikon" #: superset-frontend/src/pages/ChartList/index.tsx:708 #: superset-frontend/src/pages/DashboardList/index.tsx:507 #: superset-frontend/src/pages/DashboardList/index.tsx:589 -#: superset-frontend/src/pages/DatabaseList/index.tsx:468 -#: superset-frontend/src/pages/DatabaseList/index.tsx:488 -#: superset-frontend/src/pages/DatasetList/index.tsx:573 +#: superset-frontend/src/pages/DatabaseList/index.tsx:479 +#: superset-frontend/src/pages/DatabaseList/index.tsx:499 +#: superset-frontend/src/pages/DatasetList/index.tsx:584 msgid "No" msgstr "Ne" @@ -10132,6 +10293,11 @@ msgstr "Ni podatkov" msgid "No Results" msgstr "Ni rezultatov" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:235 +#, fuzzy +msgid "No Rules yet" +msgstr "nedavne" + #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:116 msgid "No annotation layers" msgstr "Ni slojev z oznakami" @@ -10167,7 +10333,7 @@ msgstr "Ni grafikonov" msgid "No columns" msgstr "Brez stolpcev" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:242 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 #, fuzzy msgid "No columns found" msgstr "Ni najdenih časovnih stolpcev" @@ -10181,7 +10347,7 @@ msgstr "Ni najdenih skladnih stolpcev" msgid "No compatible datasets found" msgstr "Ni najdenih skladnih stolpcev" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 #, fuzzy msgid "No compatible schema found" msgstr "Ni najdenih skladnih stolpcev" @@ -10195,14 +10361,14 @@ msgstr "Ni nadzornih plošč" msgid "No dashboards yet" msgstr "Ni nadzornih plošč" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:133 -#: superset-frontend/src/components/Table/index.tsx:203 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 +#: superset-frontend/src/components/Table/index.tsx:207 #: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:225 #: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 msgid "No data" msgstr "Ni podatkov" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 msgid "No data after filtering or data is NULL for the latest time record" msgstr "" "Ni podatkov po filtriranju ali pa imajo vrednost NULL za zadnji časovni " @@ -10225,10 +10391,6 @@ msgstr "Nobena podatkovna baza ne ustreza iskanju" msgid "No description available." msgstr "Opisa ni na razpolago." -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:174 -msgid "No dimensions available for drill by" -msgstr "" - #: superset-frontend/src/profile/components/Favorites.tsx:61 msgid "No favorite charts yet, go click on stars!" msgstr "Priljubljenih grafikonov še ni. Kliknite na zvezdice!" @@ -10247,7 +10409,7 @@ msgstr "Brez filtra" msgid "No filter is selected." msgstr "Noben filter ni izbran." -#: superset-frontend/src/components/Table/index.tsx:200 +#: superset-frontend/src/components/Table/index.tsx:204 #, fuzzy msgid "No filters" msgstr "Brez filtra" @@ -10291,7 +10453,7 @@ msgid "No results" msgstr "Ni rezultatov" #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:425 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:428 msgid "No results found" msgstr "Rezultati niso najdeni" @@ -10299,7 +10461,7 @@ msgstr "Rezultati niso najdeni" msgid "No results match your filter criteria" msgstr "Noben rezultat ne ustreza vašim kriterijem" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:280 +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:289 #: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 msgid "No results were returned for this query" msgstr "Poizvedba ni vrnila rezultatov" @@ -10323,8 +10485,8 @@ msgstr "Za podatkovni set ni vrnjenih vzorcev" msgid "No samples were returned for this dataset" msgstr "Za podatkovni set ni vrnjenih vzorcev" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:293 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:311 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:299 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:317 msgid "No saved expressions found" msgstr "Shranjeni izrazi niso najdeni" @@ -10353,9 +10515,9 @@ msgstr "" msgid "No table columns" msgstr "Ni časovnih stolpcev" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:292 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:310 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:345 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:298 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:316 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:351 msgid "No temporal columns found" msgstr "Ni najdenih časovnih stolpcev" @@ -10384,7 +10546,7 @@ msgid "Node size" msgstr "Velikost vozlišča" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:45 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:187 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:270 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:286 @@ -10394,12 +10556,12 @@ msgstr "Velikost vozlišča" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:402 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:182 #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:124 #: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 #: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:196 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:576 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:48 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:51 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:138 #: superset-frontend/src/explore/controlPanels/sections.tsx:134 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:127 @@ -10484,7 +10646,7 @@ msgstr "November" msgid "Now" msgstr "Zdaj" -#: superset/views/database/forms.py:201 +#: superset/views/database/forms.py:211 #, fuzzy msgid "Null Values" msgstr "Prazne (Null) vrednosti" @@ -10499,11 +10661,11 @@ msgstr "Animacija" msgid "Null or Empty" msgstr "Nič (NULL) ali prazen" -#: superset/views/database/forms.py:392 +#: superset/views/database/forms.py:402 msgid "Null values" msgstr "Prazne (Null) vrednosti" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:191 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 msgid "Number Format" msgstr "Oblika zapisa števila" @@ -10518,11 +10680,10 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:60 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:65 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:144 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:117 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:67 #: superset-frontend/plugins/legacy-plugin-chart-treemap/src/controlPanel.ts:67 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:97 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:137 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:276 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:137 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:113 @@ -10566,21 +10727,21 @@ msgstr "Na osnovi granulacije, število časovnih obdobij za primerjavo" msgid "Number of periods to ratio against" msgstr "Na osnovi granulacije, število časovnih obdobij za primerjavo" -#: superset/views/database/forms.py:255 +#: superset/views/database/forms.py:265 #, fuzzy msgid "Number of rows of file to read" msgstr "Število vrstic v datoteki za branje." -#: superset/views/database/forms.py:361 +#: superset/views/database/forms.py:371 msgid "Number of rows of file to read." msgstr "Število vrstic v datoteki za branje." -#: superset/views/database/forms.py:261 +#: superset/views/database/forms.py:271 #, fuzzy msgid "Number of rows to skip at start of file" msgstr "Število vrstic, ki se izpustijo na začetku datoteke." -#: superset/views/database/forms.py:355 +#: superset/views/database/forms.py:365 msgid "Number of rows to skip at start of file." msgstr "Število vrstic, ki se izpustijo na začetku datoteke." @@ -10604,15 +10765,15 @@ msgstr "Številski obseg" msgid "OCT" msgstr "OKT" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:184 -#: superset-frontend/src/components/Modal/Modal.tsx:231 -#: superset-frontend/src/components/Table/index.tsx:198 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 +#: superset-frontend/src/components/Modal/Modal.tsx:238 +#: superset-frontend/src/components/Table/index.tsx:202 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:865 msgid "OK" msgstr "OK" #: superset-frontend/src/components/ImportModal/index.tsx:267 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1379 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1434 msgid "OVERWRITE" msgstr "OVERWRITE" @@ -10625,7 +10786,7 @@ msgstr "Oktober" msgid "Offline" msgstr "Offline" -#: superset/connectors/sqla/views.py:485 +#: superset/connectors/sqla/views.py:392 msgid "Offset" msgstr "Odmik" @@ -10674,27 +10835,27 @@ msgstr "En ali več kontrolnikov za stolpčno vrtenje" msgid "One or many metrics to display" msgstr "Ena ali več mer za prikaz" -#: superset/datasets/commands/exceptions.py:90 +#: superset/datasets/commands/exceptions.py:107 msgid "One or more columns already exist" msgstr "En ali več stolpcev že obstaja" -#: superset/datasets/commands/exceptions.py:80 +#: superset/datasets/commands/exceptions.py:97 msgid "One or more columns are duplicated" msgstr "En ali več stolpcev je podvojenih" -#: superset/datasets/commands/exceptions.py:70 +#: superset/datasets/commands/exceptions.py:87 msgid "One or more columns do not exist" msgstr "En ali več stolpcev ne obstaja" -#: superset/datasets/commands/exceptions.py:119 +#: superset/datasets/commands/exceptions.py:136 msgid "One or more metrics already exist" msgstr "Ena ali več mer že obstaja" -#: superset/datasets/commands/exceptions.py:109 +#: superset/datasets/commands/exceptions.py:126 msgid "One or more metrics are duplicated" msgstr "Ena ali več mer je podvojenih" -#: superset/datasets/commands/exceptions.py:99 +#: superset/datasets/commands/exceptions.py:116 msgid "One or more metrics do not exist" msgstr "Ena ali več mer ne obstaja" @@ -10710,7 +10871,7 @@ msgstr "En ali več parametrov v SQL-poizvedbi ima napačno obliko." msgid "One or more parameters specified in the query are missing." msgstr "En ali več parametrov v SQL-poizvedbi manjka." -#: superset/views/core.py:1992 +#: superset/views/core.py:2029 #, fuzzy msgid "" "One or more required fields are missing in the request. Please try again," @@ -10723,23 +10884,23 @@ msgstr "" msgid "One ore more annotation layers failed loading." msgstr "Eden ali več slojev z oznakami se ni naložil." -#: superset/sql_lab.py:230 +#: superset/sql_lab.py:228 msgid "Only SELECT statements are allowed against this database." msgstr "Za to podatkovno bazo so dovoljeni le `SELECT` stavki." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:133 msgid "Only Total" msgstr "Samo vsota" -#: superset/connectors/sqla/utils.py:123 +#: superset/connectors/sqla/utils.py:122 msgid "Only `SELECT` statements are allowed" msgstr "Dovoljeni so le `SELECT` stavki" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:29 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 msgid "Only applies when \"Label Type\" is not set to a percentage." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:26 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 msgid "Only applies when \"Label Type\" is set to show values." msgstr "" @@ -10747,7 +10908,7 @@ msgstr "" msgid "Only selected panels will be affected by this filter" msgstr "Ta filter bo vplival le na izbrane panele" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:139 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 msgid "" "Only show the total value on the stacked chart, and not show on the " "selected category" @@ -10755,12 +10916,12 @@ msgstr "" "Na naloženem grafikonu prikaži samo skupno vsoto, za izbrane kategorije " "pa ne" -#: superset/connectors/sqla/utils.py:132 +#: superset/connectors/sqla/utils.py:131 msgid "Only single queries supported" msgstr "Podprte so le enojne poizvedbe" -#: superset/views/database/forms.py:119 superset/views/database/forms.py:288 -#: superset/views/database/forms.py:426 +#: superset/views/database/forms.py:119 superset/views/database/forms.py:298 +#: superset/views/database/forms.py:436 #, python-format msgid "Only the following file extensions are allowed: %(allowed_extensions)s" msgstr "Dovoljene so le naslednje končnice: %(allowed_extensions)s" @@ -10809,7 +10970,7 @@ msgstr "Odpri v SQL laboratoriju" msgid "Open query in SQL Lab" msgstr "Odpri poizvedbo v SQL laboratoriju" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:298 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 #: superset/views/database/mixins.py:104 msgid "" "Operate the database in asynchronous mode, meaning that the queries are " @@ -10822,8 +10983,8 @@ msgstr "" "tem je predpostavljeno, da imate nastavljenega »delavca« za Celery in " "zaledni sistem za rezultate. Več informacij je v navodilih za namestitev." -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:126 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:130 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 msgid "Operator" msgstr "Operator" @@ -10832,7 +10993,7 @@ msgstr "Operator" msgid "Operator undefined for aggregator: %(name)s" msgstr "Operand ni definiran za agregatorja: %(name)s" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:381 msgid "" "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" " certain database engines." @@ -10858,13 +11019,8 @@ msgstr "Opcijsko ime podatkovnega stolpca." msgid "Optional warning about use of this metric" msgstr "Opcijsko opozorilo za uporabo te mere" -#: superset/connectors/sqla/views.py:328 -msgid "Optionally add a detailed description" -msgstr "" - #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:39 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:68 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:108 #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:74 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:45 #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:70 @@ -10877,7 +11033,7 @@ msgstr "" msgid "Options" msgstr "Možnosti" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:918 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:973 msgid "Or choose from a list of other databases we support:" msgstr "Ali izberite iz seznama drugih podatkovnih baz, ki jih podpiramo:" @@ -10895,7 +11051,7 @@ msgstr "Razvrsti rezultate glede na izbrani stolpec" msgid "Ordering" msgstr "Razvrščanje" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:83 #, fuzzy msgid "Orientation" msgstr "Orientacija stolpcev" @@ -10904,7 +11060,7 @@ msgstr "Orientacija stolpcev" msgid "Orientation of bar chart" msgstr "Orientacija stolpčnega grafikona" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:158 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 #, fuzzy msgid "Orientation of filter bar" msgstr "Orientacija drevesa" @@ -10921,7 +11077,7 @@ msgstr "Izvoren" msgid "Original table column order" msgstr "Vrstni red stolpcev izvorne tabele" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 #: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 #: superset-frontend/src/explore/controls.jsx:79 @@ -10933,10 +11089,10 @@ msgid "Orthogonal" msgstr "Pravokotna" #: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:126 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:938 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:479 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:993 #: superset-frontend/src/features/home/EmptyState.tsx:112 -#: superset/views/database/forms.py:155 superset/views/database/forms.py:161 +#: superset/views/database/forms.py:165 superset/views/database/forms.py:171 msgid "Other" msgstr "Ostali" @@ -11001,15 +11157,15 @@ msgstr "Uredi časovno obdobje" #: superset-frontend/src/components/ImportModal/index.tsx:426 #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:493 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:459 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:463 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:464 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:148 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 msgid "Overwrite" msgstr "Prepiši" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:249 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:192 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:247 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 msgid "Overwrite & Explore" msgstr "Prepiši & Razišči" @@ -11018,12 +11174,12 @@ msgstr "Prepiši & Razišči" msgid "Overwrite Dashboard [%s]" msgstr "Prepiši nadzorno ploščo [%s]" -#: superset/views/database/forms.py:237 +#: superset/views/database/forms.py:247 #, fuzzy msgid "Overwrite Duplicate Columns" msgstr "Odstrani podvojene stolpce" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:404 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:412 msgid "Overwrite existing" msgstr "Prepiši obstoječe" @@ -11038,11 +11194,11 @@ msgstr "" #: superset-frontend/src/pages/AlertReportList/index.tsx:452 #: superset-frontend/src/pages/ChartList/index.tsx:608 #: superset-frontend/src/pages/DashboardList/index.tsx:523 -#: superset-frontend/src/pages/DatasetList/index.tsx:500 +#: superset-frontend/src/pages/DatasetList/index.tsx:511 msgid "Owner" msgstr "Lastnik" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:235 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:93 #: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:408 @@ -11057,14 +11213,14 @@ msgstr "Lastnik" #: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 #: superset-frontend/src/pages/AlertReportList/index.tsx:324 #: superset-frontend/src/pages/DashboardList/index.tsx:369 -#: superset-frontend/src/pages/DatasetList/index.tsx:389 -#: superset/connectors/sqla/views.py:489 superset/views/chart/mixin.py:82 +#: superset-frontend/src/pages/DatasetList/index.tsx:400 +#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:82 #: superset/views/dashboard/mixin.py:81 msgid "Owners" msgstr "Lastniki" -#: superset/commands/exceptions.py:108 -#: superset/datasets/commands/exceptions.py:144 +#: superset/commands/exceptions.py:112 +#: superset/datasets/commands/exceptions.py:161 msgid "Owners are invalid" msgstr "Lastniki niso veljavni" @@ -11108,7 +11264,7 @@ msgid "Pandas resample rule" msgstr "Pravilo za prevzorčenje v Pandas" #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 -#: superset/viz.py:2219 +#: superset/viz.py:2152 msgid "Parallel Coordinates" msgstr "Vzporedne koordinate" @@ -11133,7 +11289,7 @@ msgstr "Parametri povezani s pogledom in perspektivo zemljevida" msgid "Parent" msgstr "Nadrejeni" -#: superset/views/database/forms.py:366 +#: superset/views/database/forms.py:376 msgid "Parse Dates" msgstr "Prepoznaj datume" @@ -11151,7 +11307,7 @@ msgstr "Del celote" msgid "Partition Chart" msgstr "Grafikon razdelkov" -#: superset/viz.py:3071 +#: superset/viz.py:3069 msgid "Partition Diagram" msgstr "Grafikon s pravokotniki" @@ -11173,7 +11329,7 @@ msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:154 #: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 -#: superset/db_engine_specs/base.py:1838 +#: superset/db_engine_specs/base.py:1870 #: superset/db_engine_specs/clickhouse.py:202 msgid "Password" msgstr "Geslo" @@ -11227,7 +11383,7 @@ msgstr "Procentualne mere" #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:81 #: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:148 msgid "Percentage threshold" msgstr "Procentualni prag" @@ -11245,7 +11401,7 @@ msgstr "Procentualni prag" msgid "Percentages" msgstr "Procenti" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:219 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:229 msgid "Performance" msgstr "" @@ -11280,8 +11436,8 @@ msgid "Person or group that has certified this metric" msgstr "Oseba ali skupina, ki je certificirala to mero" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1114 -#: superset-frontend/src/pages/DatasetList/index.tsx:342 -#: superset-frontend/src/pages/DatasetList/index.tsx:560 +#: superset-frontend/src/pages/DatasetList/index.tsx:353 +#: superset-frontend/src/pages/DatasetList/index.tsx:571 msgid "Physical" msgstr "Fizičen" @@ -11289,7 +11445,7 @@ msgstr "Fizičen" msgid "Physical (table or view)" msgstr "Fizičen (tabela ali pogled)" -#: superset-frontend/src/pages/DatasetList/index.tsx:273 +#: superset-frontend/src/pages/DatasetList/index.tsx:284 msgid "Physical dataset" msgstr "Fizičen podatkovni set" @@ -11298,27 +11454,27 @@ msgstr "Fizičen podatkovni set" msgid "Pick a dimension from which categorical colors are defined" msgstr "Izberite dimenzijo, ki bo določala kategorične barve" -#: superset/viz.py:769 +#: superset/viz.py:795 msgid "Pick a granularity in the Time section or uncheck 'Include Time'" msgstr "Izberite granulacijo v razdelku 'Čas' ali odstranite 'Vključi čas'" -#: superset/viz.py:1605 +#: superset/viz.py:1514 msgid "Pick a metric for left axis!" msgstr "Izberite mero za levo os!" -#: superset/viz.py:1607 +#: superset/viz.py:1516 msgid "Pick a metric for right axis!" msgstr "Izberite mero za desno os!" -#: superset/viz.py:1195 +#: superset/viz.py:1090 msgid "Pick a metric for x, y and size" msgstr "Izberite mere za x, y in velikost" -#: superset/viz.py:1234 +#: superset/viz.py:1131 msgid "Pick a metric to display" msgstr "Izberite mero za prikaz" -#: superset/viz.py:1260 superset/viz.py:1294 +#: superset/viz.py:1159 superset/viz.py:1195 msgid "Pick a metric!" msgstr "Izberite mero!" @@ -11335,7 +11491,7 @@ msgstr "Izberite vzdevek za to podatkovno bazo, ki bo prikazan v Supersetu." msgid "Pick a set of deck.gl charts to layer on top of one another" msgstr "Izberite nabor deck.gl grafikonov, ki bodo nanizani en na drugem" -#: superset/viz.py:1390 superset/viz.py:1653 +#: superset/viz.py:1294 superset/viz.py:1564 msgid "Pick a time granularity for your time series" msgstr "Izberite granulacijo časa za časovno vrsto" @@ -11343,15 +11499,15 @@ msgstr "Izberite granulacijo časa za časovno vrsto" msgid "Pick a title for you annotation." msgstr "Izberite naslov za oznako." -#: superset/viz.py:1815 +#: superset/viz.py:1732 msgid "Pick at least one field for [Series]" msgstr "Izberite vsaj eno polje za [Serije]" -#: superset/viz.py:857 superset/viz.py:1813 +#: superset/viz.py:887 superset/viz.py:1730 msgid "Pick at least one metric" msgstr "Izberite vsaj eno mero" -#: superset/viz.py:1943 +#: superset/viz.py:1863 msgid "Pick exactly 2 columns as [Source / Target]" msgstr "Izberite natanko dva stolpca za [Izvor / Cilj]" @@ -11380,19 +11536,10 @@ msgstr "Oblika torte" msgid "Pin" msgstr "Žebljiček" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:45 -msgid "Pivot Options" -msgstr "Vrtilne možnosti" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 -#: superset/viz.py:894 msgid "Pivot Table" msgstr "Vrtilna tabela" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:32 -msgid "Pivot Table (legacy)" -msgstr "" - #: superset/utils/pandas_postprocessing/pivot.py:70 msgid "Pivot operation must include at least one aggregate" msgstr "Vrtilna operacija mora vsebovati vsaj en agregat" @@ -11413,7 +11560,7 @@ msgstr "Višina vsake serije v pikslih" msgid "Pixels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 msgid "Plain" msgstr "" @@ -11425,7 +11572,7 @@ msgstr "" msgid "Please apply filter changes" msgstr "Potrdite spremembe filtra" -#: superset/sqllab/query_render.py:120 +#: superset/sqllab/query_render.py:118 msgid "" "Please check your query and confirm that all template parameters are " "surround by double braces, for example, \"{{ ds }}\". Then, try running " @@ -11435,8 +11582,8 @@ msgstr "" "npr. \"{{ ds }}\". Potem poskusite ponovno." #: superset/db_engine_specs/athena.py:56 -#: superset/db_engine_specs/bigquery.py:210 -#: superset/db_engine_specs/postgres.py:161 +#: superset/db_engine_specs/bigquery.py:211 +#: superset/db_engine_specs/postgres.py:160 #: superset/db_engine_specs/snowflake.py:117 #, python-format msgid "" @@ -11446,7 +11593,7 @@ msgstr "" "Preverite, če ima vaša poizvedba sintaktične napake pri " "\"%(syntax_error)s\". Potem ponovno poženite poizvedbo." -#: superset/db_engine_specs/gsheets.py:80 superset/db_engine_specs/mysql.py:170 +#: superset/db_engine_specs/gsheets.py:82 superset/db_engine_specs/mysql.py:170 #, python-format msgid "" "Please check your query for syntax errors near \"%(server_error)s\". " @@ -11465,21 +11612,12 @@ msgstr "" "Preverite, če ima vaša poizvedba sintaktične napake pri " "\"%(syntax_error)s\". Potem ponovno poženite poizvedbo." -#: superset/viz.py:911 -#, fuzzy -msgid "Please choose at least one 'Group by' field" -msgstr "Izberite vsaj eno 'Group by' polje " - -#: superset/viz.py:3229 +#: superset/viz.py:3234 #, fuzzy msgid "Please choose at least one groupby" msgstr "Izberite vsaj eno 'Group by' polje " -#: superset/viz.py:923 -msgid "Please choose at least one metric" -msgstr "Izberite vsaj eno mero" - -#: superset/viz.py:1610 +#: superset/viz.py:1519 msgid "Please choose different metrics on left and right axis" msgstr "Izberite različni meri za levo in desno os" @@ -11495,18 +11633,20 @@ msgstr "Izberite različni meri za levo in desno os" #: superset-frontend/src/pages/DashboardList/index.tsx:415 #: superset-frontend/src/pages/DashboardList/index.tsx:701 #: superset-frontend/src/pages/DashboardList/index.tsx:756 -#: superset-frontend/src/pages/DatasetList/index.tsx:740 +#: superset-frontend/src/pages/DatasetList/index.tsx:762 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:170 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:304 #: superset-frontend/src/pages/SavedQueryList/index.tsx:533 #: superset-frontend/src/pages/Tags/index.tsx:141 #: superset-frontend/src/pages/Tags/index.tsx:281 msgid "Please confirm" msgstr "Prosim, potrdite" -#: superset-frontend/src/dashboard/actions/dashboardState.js:442 +#: superset-frontend/src/dashboard/actions/dashboardState.js:447 msgid "Please confirm the overwrite values." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:624 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:641 msgid "Please enter a SQLAlchemy URI to test" msgstr "Vnesite SQLAlchemy URI za test" @@ -11514,11 +11654,11 @@ msgstr "Vnesite SQLAlchemy URI za test" msgid "Please filter set name" msgstr "Vnesite ime seta filtrov" -#: superset/db_engine_specs/postgres.py:125 +#: superset/db_engine_specs/postgres.py:124 msgid "Please re-enter the password." msgstr "Ponovno vpišite geslo." -#: superset-frontend/src/views/CRUD/hooks.ts:435 +#: superset-frontend/src/views/CRUD/hooks.ts:439 msgid "Please re-export your file and try importing again" msgstr "" @@ -11552,7 +11692,7 @@ msgstr "" msgid "Please select both a Dataset and a Chart type to proceed" msgstr "Za nadaljevanje izberite podatkovni set in tip grafikona" -#: superset/viz.py:1193 +#: superset/viz.py:1088 msgid "Please use 3 different metric labels" msgstr "Uporabite 3 različne oznake mer" @@ -11570,7 +11710,7 @@ msgstr "" " poveže kot črto. Grafikon je uporaben za primerjavo več mer med vsemi " "vzorci ali vrsticami podatkov." -#: superset/initialization/__init__.py:275 +#: superset/initialization/__init__.py:277 msgid "Plugins" msgstr "Vtičniki" @@ -11663,13 +11803,17 @@ msgid "Port" msgstr "poročilo" #: superset/db_engine_specs/mssql.py:98 -#: superset/db_engine_specs/postgres.py:135 -#: superset/db_engine_specs/presto.py:672 -#: superset/db_engine_specs/redshift.py:77 +#: superset/db_engine_specs/postgres.py:134 +#: superset/db_engine_specs/presto.py:699 +#: superset/db_engine_specs/redshift.py:81 #, python-format msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." msgstr "Vrata %(port)s na gostitelju \"%(hostname)s\" niso sprejela povezave." +#: superset/db_engine_specs/ocient.py:269 +msgid "Port out of range 0-65535" +msgstr "" + #: superset/views/dashboard/mixin.py:86 msgid "Position JSON" msgstr "JSON za postavitev" @@ -11707,7 +11851,7 @@ msgstr "Predfiltriraj razpoložljive vrednosti" msgid "Pre-filter is required" msgstr "Zahtevan je predfilter" -#: superset/connectors/sqla/views.py:440 +#: superset/connectors/sqla/views.py:347 msgid "" "Predicate applied when fetching distinct value to populate the filter " "control component. Supports jinja template syntax. Applies only when " @@ -11752,7 +11896,7 @@ msgstr "Predogled: `%s`" msgid "Previous" msgstr "Prejšnji" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:346 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:348 msgid "Previous Line" msgstr "Prejšnja linija" @@ -11774,6 +11918,11 @@ msgstr "Primarna" msgid "Primary or secondary y-axis" msgstr "Primarna ali sekundarna y-os" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 +#, fuzzy +msgid "Primary y-axis Bounds" +msgstr "Oblika primarne y-osi" + #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:387 msgid "Primary y-axis format" msgstr "Oblika primarne y-osi" @@ -11790,7 +11939,7 @@ msgstr "" msgid "Private Key Password" msgstr "" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:269 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 #, fuzzy msgid "Proceed" msgstr "rdeča" @@ -11871,11 +12020,11 @@ msgstr "Vstavite svojo kodo sem" msgid "Python datetime string pattern" msgstr "Pythonov vzorec zapisa datum-časa" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1530 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1585 msgid "QUERY DATA IN SQL LAB" msgstr "" -#: superset/db_engine_specs/base.py:109 +#: superset/db_engine_specs/base.py:110 msgid "Quarter" msgstr "Četrtletje" @@ -11889,9 +12038,9 @@ msgstr "Četrtletja %s" msgid "Queries" msgstr "poizvedbe" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:51 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:43 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:53 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:30 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:33 #: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:90 @@ -11902,7 +12051,6 @@ msgstr "poizvedbe" #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:36 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:32 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:34 #: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:30 @@ -11913,6 +12061,7 @@ msgstr "poizvedbe" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:44 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:55 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:43 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:41 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:60 @@ -11926,7 +12075,7 @@ msgstr "poizvedbe" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:361 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:34 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:35 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:44 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:43 @@ -11942,7 +12091,7 @@ msgstr "poizvedbe" #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:152 #: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:30 #: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:26 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1479 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1471 #: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 #: superset-frontend/src/explore/controlPanels/sections.tsx:94 #: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:34 @@ -11954,7 +12103,7 @@ msgstr "poizvedbe" msgid "Query" msgstr "Poizvedba" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:361 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:363 #, python-format msgid "Query %s: %s" msgstr "Poizvedba %s: %s" @@ -11969,11 +12118,11 @@ msgstr "Poizvedba A" msgid "Query B" msgstr "Poizvedba B" -#: superset/initialization/__init__.py:366 +#: superset/initialization/__init__.py:360 msgid "Query History" msgstr "Zgodovina poizvedb" -#: superset/commands/exceptions.py:138 +#: superset/commands/exceptions.py:142 msgid "Query does not exist" msgstr "Poizvedba ne obstaja" @@ -11987,7 +12136,7 @@ msgstr "Zgodovina poizvedb" msgid "Query imported" msgstr "Poizvedba uvožena" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:465 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 msgid "Query in a new tab" msgstr "Poizvedba v novem zavihku" @@ -12012,11 +12161,11 @@ msgstr "Ime poizvedbe" msgid "Query preview" msgstr "Predogled poizvedbe" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:415 msgid "Query was stopped" msgstr "Poizvedba je bila ustavljena" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:498 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:494 msgid "Query was stopped." msgstr "Poizvedba je bila ustavljena." @@ -12029,6 +12178,16 @@ msgstr "TIP OBDOBJA" msgid "RGB Color" msgstr "RGB barva" +#: superset/row_level_security/commands/exceptions.py:29 +#, fuzzy +msgid "RLS Rule could not be deleted." +msgstr "Grafikonov ni mogoče izbrisati." + +#: superset/row_level_security/commands/exceptions.py:25 +#, fuzzy +msgid "RLS Rule not found." +msgstr "Urnika poročanja ni najden." + #: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:159 msgid "Radar" msgstr "Radar" @@ -12167,7 +12326,7 @@ msgstr "Število zapisov" msgid "Rectangle" msgstr "Pravokotnik" -#: superset/connectors/sqla/views.py:446 +#: superset/connectors/sqla/views.py:353 msgid "Redirects to this endpoint when clicking on the table from the table list" msgstr "Preusmeri v to končno točko, ko kliknete na tabelo v seznamu tabel" @@ -12198,7 +12357,7 @@ msgstr "Obrnite se na" msgid "Referenced columns not available in DataFrame." msgstr "Referencirani stolpci niso razpoložljivi v Dataframe-u." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:549 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:542 msgid "Refetch results" msgstr "Ponovno pridobi rezultate" @@ -12251,10 +12410,17 @@ msgstr "Osveževanje grafikonov" msgid "Regex" msgstr "zelena" -#: superset/connectors/sqla/views.py:329 +#: superset-frontend/src/features/rls/constants.ts:24 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:262 +#, fuzzy +msgid "Regular" +msgstr "Krožno" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:364 +#, fuzzy msgid "" "Regular filters add where clauses to queries if a user belongs to a role " -"referenced in the filter. Base filters apply filters to all queries " +"referenced in the filter, base filters apply filters to all queries " "except the roles defined in the filter, and can be used to define what " "users can see if no RLS filters within a filter group apply to them." msgstr "" @@ -12305,7 +12471,7 @@ msgstr "Opomni me čez 24 ur" msgid "Remove" msgstr "Odstrani" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:164 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:194 #, fuzzy msgid "Remove cross-filter" msgstr "Predfilter" @@ -12339,8 +12505,8 @@ msgstr "Preimenuj zavihek" msgid "Rendering" msgstr "Izris" -#: superset/views/database/forms.py:168 superset/views/database/forms.py:325 -#: superset/views/database/forms.py:456 +#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 +#: superset/views/database/forms.py:466 msgid "Replace" msgstr "Zamenjaj" @@ -12354,12 +12520,11 @@ msgstr "Zamenjaj" #: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:593 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:163 msgid "Report" msgstr "Poročilo" -#: superset-frontend/src/components/ReportModal/index.tsx:282 +#: superset-frontend/src/components/ReportModal/index.tsx:281 #, fuzzy msgid "Report Name" msgstr "Naslov poročila" @@ -12483,7 +12648,7 @@ msgid "Request Permissions" msgstr "Zahtevaj dovoljenja" #: superset/charts/data/api.py:153 superset/charts/data/api.py:243 -#: superset/charts/data/api.py:309 +#: superset/charts/data/api.py:312 #, python-format msgid "Request is incorrect: %(error)s" msgstr "Zahtevek je napačen: %(error)s" @@ -12492,7 +12657,7 @@ msgstr "Zahtevek je napačen: %(error)s" msgid "Request is not JSON" msgstr "Zahtevek ni JSON" -#: superset/views/datasource/views.py:75 +#: superset/views/datasource/views.py:77 msgid "Request missing data field." msgstr "Zahtevaj manjkajoča podatkovna polja." @@ -12500,14 +12665,14 @@ msgstr "Zahtevaj manjkajoča podatkovna polja." msgid "Request timed out" msgstr "Zahtevek pretečen" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:94 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:98 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:105 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:252 msgid "Required" msgstr "Obvezno" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:342 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 msgid "Required control values have been removed" msgstr "Zahtevane kontrolne vrednosti so bile odstranjene" @@ -12528,12 +12693,12 @@ msgstr "Metoda za prevzorčenje v Pandas mora " msgid "Resample operation requires DatetimeIndex" msgstr "Prevzorčevalna operacija zahteva indeks tipa datumčas" -#: superset-frontend/src/components/Table/index.tsx:199 +#: superset-frontend/src/components/Table/index.tsx:203 #, fuzzy msgid "Reset" msgstr "nedavne" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:293 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:280 msgid "Reset state" msgstr "Ponastavi stanje" @@ -12556,14 +12721,15 @@ msgstr "Povrni filter" msgid "Results" msgstr "Rezultati" +#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 #: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:212 #: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 #, python-format msgid "Results %s" msgstr "Rezultati %s" -#: superset/sql_lab.py:410 superset/sqllab/commands/results.py:59 -#: superset/views/core.py:2133 +#: superset/sql_lab.py:402 superset/sqllab/commands/results.py:59 +#: superset/views/core.py:2169 msgid "Results backend is not configured." msgstr "Zaledni sistem rezultatov ni konfiguriran." @@ -12591,12 +12757,12 @@ msgstr "Zamenjaj zemljepisno dolžino/širino " msgid "Rich Tooltip" msgstr "Podroben opis orodja" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:178 msgid "Rich tooltip" msgstr "Podroben opis orodja" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:372 msgid "Right" msgstr "Desno" @@ -12621,7 +12787,7 @@ msgstr "Mera desne osi" msgid "Right to Left" msgstr "Iz desne proti levi" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:157 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 msgid "Right value" msgstr "Desna vrednost" @@ -12633,7 +12799,7 @@ msgstr "" msgid "Role" msgstr "Vloga" -#: superset/views/core.py:407 +#: superset/views/core.py:408 #, python-format msgid "Role %(r)s was extended to provide the access to the datasource %(ds)s" msgstr "" @@ -12644,8 +12810,10 @@ msgstr "" #: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:389 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:551 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:406 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:415 #: superset-frontend/src/profile/components/Security.tsx:35 -#: superset/connectors/sqla/views.py:364 superset/views/dashboard/mixin.py:82 +#: superset/views/dashboard/mixin.py:82 msgid "Roles" msgstr "Vloge" @@ -12701,7 +12869,7 @@ msgstr "Drseča funkcija" msgid "Rolling window" msgstr "Drseče okno" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 #: superset/views/database/mixins.py:195 msgid "Root certificate" msgstr "Korenski certifikat" @@ -12731,16 +12899,18 @@ msgstr "Če želite vrtenje besed v oblaku" msgid "Round cap" msgstr "Zaobljeni konci" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 #: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 msgid "Row" msgstr "Vrstica" -#: superset/initialization/__init__.py:295 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:70 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:302 +#: superset/initialization/__init__.py:436 msgid "Row Level Security" msgstr "Varnost na nivoju vrstic" -#: superset/views/database/forms.py:245 +#: superset/views/database/forms.py:255 #, fuzzy msgid "" "Row containing the headers to use as column names (0 is first line of " @@ -12749,7 +12919,7 @@ msgstr "" "Vrstica z naslovi, ki se uporabi za imena stolpcev (0 je prva vrstica " "podatkov). Pustite prazno, če ni naslovne vrstice." -#: superset/views/database/forms.py:332 +#: superset/views/database/forms.py:342 msgid "" "Row containing the headers to use as column names (0 is first line of " "data). Leave empty if there is no header row." @@ -12757,10 +12927,6 @@ msgstr "" "Vrstica z naslovi, ki se uporabi za imena stolpcev (0 je prva vrstica " "podatkov). Pustite prazno, če ni naslovne vrstice." -#: superset/connectors/sqla/views.py:290 -msgid "Row level security filter" -msgstr "Filter za varnost na nivoju vrstic" - #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:247 #: superset-frontend/src/explore/controls.jsx:340 msgid "Row limit" @@ -12783,7 +12949,7 @@ msgstr "Vrstic na stran (0 pomeni brez številčenja strani)" msgid "Rows subtotal position" msgstr "Položaj vsot vrstic" -#: superset/views/database/forms.py:254 superset/views/database/forms.py:360 +#: superset/views/database/forms.py:264 superset/views/database/forms.py:370 msgid "Rows to Read" msgstr "Vrstice za branje" @@ -12793,10 +12959,20 @@ msgstr "Vrstice za branje" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:504 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:233 #: superset-frontend/src/explore/controlPanels/sections.tsx:230 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:286 msgid "Rule" msgstr "Pravilo" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:54 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:355 +#, fuzzy +msgid "Rule Name" +msgstr "Ime poizvedbe" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:253 +msgid "Rule added" +msgstr "" + +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:53 msgid "Run" msgstr "Zaženi" @@ -12813,12 +12989,12 @@ msgstr "Za prikaz rezultatov morate zagnati poizvedbo" msgid "Run in SQL Lab" msgstr "Zaženi v SQL laboratoriju" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:309 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:319 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:311 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:321 msgid "Run query" msgstr "Zaženi poizvedbo" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:131 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:132 msgid "Run query (Ctrl + Return)" msgstr "Zaženi poizvedbo (Ctrl + Return)" @@ -12826,7 +13002,7 @@ msgstr "Zaženi poizvedbo (Ctrl + Return)" msgid "Run query in a new tab" msgstr "Zaženi poizvedbo v novem zavihku" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:52 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:51 msgid "Run selection" msgstr "Zaženi izbrano" @@ -12835,7 +13011,7 @@ msgstr "Zaženi izbrano" msgid "Running" msgstr "V teku" -#: superset/sql_lab.py:488 +#: superset/sql_lab.py:480 #, python-format msgid "Running statement %(statement_num)s out of %(statement_count)s" msgstr "" @@ -12857,8 +13033,8 @@ msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 #: superset-frontend/src/features/home/commonMenuData.ts:22 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:312 -#: superset/initialization/__init__.py:354 -#: superset/initialization/__init__.py:362 +#: superset/initialization/__init__.py:348 +#: superset/initialization/__init__.py:356 msgid "SQL" msgstr "SQL" @@ -12866,17 +13042,17 @@ msgstr "SQL" msgid "SQL Copied!" msgstr "SQL kopiran!" -#: superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:253 msgid "SQL Expression" msgstr "SQL izraz" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:73 -#: superset/initialization/__init__.py:349 -#: superset/initialization/__init__.py:371 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 +#: superset/initialization/__init__.py:343 +#: superset/initialization/__init__.py:365 msgid "SQL Lab" msgstr "SQL laboratorij" -#: superset/connectors/sqla/views.py:492 +#: superset/connectors/sqla/views.py:399 msgid "SQL Lab View" msgstr "Pogled SQL laboratorija" @@ -13006,7 +13182,7 @@ msgstr "" msgid "Samples" msgstr "Vzorci" -#: superset/datasets/commands/exceptions.py:177 +#: superset/datasets/commands/exceptions.py:194 msgid "Samples for dataset could not be retrieved." msgstr "Vzorcev za podatkovni set ni bilo mogoče pridobiti." @@ -13015,7 +13191,7 @@ msgstr "Vzorcev za podatkovni set ni bilo mogoče pridobiti." msgid "Samples for datasource could not be retrieved." msgstr "Vzorcev za podatkovni set ni bilo mogoče pridobiti." -#: superset/viz.py:1935 +#: superset/viz.py:1854 msgid "Sankey" msgstr "Sankey" @@ -13044,25 +13220,26 @@ msgstr "Sobota" #: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 #: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:199 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:214 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:246 -#: superset-frontend/src/components/ReportModal/index.tsx:229 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:288 +#: superset-frontend/src/components/ReportModal/index.tsx:228 #: superset-frontend/src/dashboard/components/Header/index.jsx:607 #: superset-frontend/src/dashboard/components/Header/index.jsx:609 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 #: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 #: superset-frontend/src/dashboard/components/SaveModal.tsx:211 #: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:794 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:156 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:492 #: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:268 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:458 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:462 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 -#: superset-frontend/src/explore/components/SaveModal.tsx:415 +#: superset-frontend/src/explore/components/SaveModal.tsx:449 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:418 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:424 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:147 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 @@ -13072,29 +13249,30 @@ msgstr "Sobota" #: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 #: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1695 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 #: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 msgid "Save" msgstr "Shrani" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:246 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:190 msgid "Save & Explore" msgstr "Shrani & Razišči" -#: superset-frontend/src/explore/components/SaveModal.tsx:396 +#: superset-frontend/src/explore/components/SaveModal.tsx:430 msgid "Save & go to dashboard" msgstr "Shrani in pojdi na nadzorno ploščo" -#: superset-frontend/src/explore/components/SaveModal.tsx:395 +#: superset-frontend/src/explore/components/SaveModal.tsx:429 msgid "Save & go to new dashboard" msgstr "Shrani in pojdi na novo nadzorno ploščo" -#: superset-frontend/src/explore/components/SaveModal.tsx:308 +#: superset-frontend/src/explore/components/SaveModal.tsx:343 msgid "Save (Overwrite)" msgstr "Shrani (prepiši)" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:199 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:306 msgid "Save as" msgstr "Shrani kot" @@ -13108,16 +13286,16 @@ msgstr "Shrani kot podatkovni set" msgid "Save as dataset" msgstr "Shrani kot podatkovni set" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:394 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:214 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:402 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 msgid "Save as new" msgstr "Shrani kot novo" -#: superset-frontend/src/explore/components/SaveModal.tsx:412 +#: superset-frontend/src/explore/components/SaveModal.tsx:446 msgid "Save as new chart" msgstr "Shrani kot nov grafikon" -#: superset-frontend/src/explore/components/SaveModal.tsx:316 +#: superset-frontend/src/explore/components/SaveModal.tsx:351 msgid "Save as..." msgstr "Shrani kot ..." @@ -13129,7 +13307,7 @@ msgstr "Shrani kot:" msgid "Save changes" msgstr "Shrani spremembe" -#: superset-frontend/src/explore/components/SaveModal.tsx:432 +#: superset-frontend/src/explore/components/SaveModal.tsx:466 msgid "Save chart" msgstr "Shrani grafikon" @@ -13137,7 +13315,7 @@ msgstr "Shrani grafikon" msgid "Save dashboard" msgstr "Shrani nadzorno ploščo" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:106 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:105 #, fuzzy msgid "Save dataset" msgstr "Shrani kot podatkovni set" @@ -13146,11 +13324,11 @@ msgstr "Shrani kot podatkovni set" msgid "Save for this session" msgstr "Shranite za to sejo" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:350 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:356 msgid "Save or Overwrite Dataset" msgstr "Shrani ali prepiši podatkovni set" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:202 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:201 msgid "Save query" msgstr "Shrani poizvedbo" @@ -13158,27 +13336,27 @@ msgstr "Shrani poizvedbo" msgid "Save the query to enable this feature" msgstr "Za omogočenje te funkcije shranite poizvedbo" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:250 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:465 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:149 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 msgid "Save this query as a virtual dataset to continue exploring" msgstr "Shranite poizvedbo kot virtualni podatkovni set" -#: superset-frontend/src/explore/components/SaveModal.tsx:414 +#: superset-frontend/src/explore/components/SaveModal.tsx:448 msgid "Save to new dashboard" msgstr "Shrani v novo nadzorno ploščo" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:265 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:271 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 msgid "Saved" msgstr "Shranjeno" -#: superset/initialization/__init__.py:358 +#: superset/initialization/__init__.py:352 msgid "Saved Queries" msgstr "Shranjene poizvedbe" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:249 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:255 msgid "Saved expressions" msgstr "Shranjeni izrazi" @@ -13240,12 +13418,12 @@ msgstr "" "dvema spremenljivkama." #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 -#: superset-frontend/src/components/ReportModal/index.tsx:306 +#: superset-frontend/src/components/ReportModal/index.tsx:305 #: superset-frontend/src/pages/AlertReportList/index.tsx:276 msgid "Schedule" msgstr "Urnik" -#: superset-frontend/src/components/ReportModal/index.tsx:212 +#: superset-frontend/src/components/ReportModal/index.tsx:211 msgid "Schedule a new email report" msgstr "Dodaj novo e-poštno poročilo na urnik" @@ -13261,7 +13439,7 @@ msgstr "Urnik poizvedb" msgid "Schedule settings" msgstr "Nastavitve urnika" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:518 msgid "Schedule the query periodically" msgstr "Periodično zaganjaj poizvedbo" @@ -13280,34 +13458,34 @@ msgstr "Izvede se ob (UTC)" msgid "Scheduled task executor not found" msgstr "Stanje urnika poročanj ni najdeno" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:299 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:221 -#: superset-frontend/src/pages/DatasetList/index.tsx:354 -#: superset-frontend/src/pages/DatasetList/index.tsx:536 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:298 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 +#: superset-frontend/src/pages/DatasetList/index.tsx:365 +#: superset-frontend/src/pages/DatasetList/index.tsx:547 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:250 #: superset-frontend/src/pages/SavedQueryList/index.tsx:297 #: superset-frontend/src/pages/SavedQueryList/index.tsx:469 -#: superset/connectors/sqla/views.py:483 superset/views/database/forms.py:144 -#: superset/views/database/forms.py:311 superset/views/database/forms.py:442 +#: superset/connectors/sqla/views.py:390 superset/views/database/forms.py:154 +#: superset/views/database/forms.py:321 superset/views/database/forms.py:452 msgid "Schema" msgstr "Shema" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:247 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:257 msgid "Schema cache timeout" msgstr "Trajanje prepomnilnika sheme" -#: superset/views/core.py:1164 +#: superset/views/core.py:1186 #, fuzzy msgid "Schema undefined" msgstr "Ni definirano" -#: superset/connectors/sqla/views.py:429 +#: superset/connectors/sqla/views.py:336 msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" msgstr "" "Shema, ki se uporablja pri nekaterih podatkovnih bazah, kot so Postgres, " "Redshift in DB2" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:419 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:429 #, fuzzy msgid "Schemas allowed for File upload" msgstr "Dovoljene sheme za nalaganje CSV" @@ -13320,7 +13498,7 @@ msgstr "Doseg" msgid "Scoping" msgstr "Doseg" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 msgid "Scroll" msgstr "" @@ -13336,15 +13514,15 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:724 #: superset-frontend/src/pages/CssTemplateList/index.tsx:293 #: superset-frontend/src/pages/DashboardList/index.tsx:516 -#: superset-frontend/src/pages/DatabaseList/index.tsx:492 -#: superset-frontend/src/pages/DatasetList/index.tsx:577 +#: superset-frontend/src/pages/DatabaseList/index.tsx:503 +#: superset-frontend/src/pages/DatasetList/index.tsx:588 #: superset-frontend/src/pages/SavedQueryList/index.tsx:494 #: superset-frontend/src/pages/Tags/index.tsx:204 #: superset/templates/appbuilder/general/widgets/search.html:40 msgid "Search" msgstr "Iskanje" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:294 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 msgid "Search / Filter" msgstr "Iskanje / Filter" @@ -13368,12 +13546,12 @@ msgstr "Iskalno polje" msgid "Search by query text" msgstr "Išči z besedilom poizvedbe" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:207 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 #, fuzzy msgid "Search columns" msgstr "Uporabi stolpce" -#: superset-frontend/src/components/Table/index.tsx:202 +#: superset-frontend/src/components/Table/index.tsx:206 #, fuzzy msgid "Search in filters" msgstr "Iskanje / Filter" @@ -13387,7 +13565,7 @@ msgstr "Vloge uporabnikov" msgid "Search..." msgstr "Iskanje ..." -#: superset/db_engine_specs/base.py:96 +#: superset/db_engine_specs/base.py:97 msgid "Second" msgstr "Sekunda" @@ -13401,10 +13579,15 @@ msgid "Secondary Metric" msgstr "Sekundarna mera" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:408 +#, fuzzy +msgid "Secondary y-axis Bounds" +msgstr "Oblika sekundarne y-osi" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:425 msgid "Secondary y-axis format" msgstr "Oblika sekundarne y-osi" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:417 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:434 msgid "Secondary y-axis title" msgstr "Naslov sekundarne y-osi" @@ -13417,15 +13600,15 @@ msgstr "Sekunde %s" msgid "Secure Extra" msgstr "Dodatna varnost" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:336 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:341 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:346 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 msgid "Secure extra" msgstr "Dodatna varnost" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:329 -#: superset/initialization/__init__.py:297 -#: superset/initialization/__init__.py:395 -#: superset/initialization/__init__.py:433 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:339 +#: superset/initialization/__init__.py:389 +#: superset/initialization/__init__.py:427 +#: superset/initialization/__init__.py:438 msgid "Security" msgstr "Varnost" @@ -13448,25 +13631,25 @@ msgstr "Oglejte si manj" msgid "See more" msgstr "Oglejte si več" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:412 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:405 #, fuzzy msgid "See query details" msgstr "Polja deljenih poizvedb" -#: superset-frontend/src/components/TableSelector/index.tsx:288 +#: superset-frontend/src/components/TableSelector/index.tsx:277 msgid "See table schema" msgstr "Ogled sheme tabele" -#: superset-frontend/src/explore/components/SaveModal.tsx:363 +#: superset-frontend/src/explore/components/SaveModal.tsx:398 #: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 msgid "Select" msgstr "Izberi" #: superset-frontend/src/components/AsyncSelect/index.jsx:41 #: superset-frontend/src/components/Select/AsyncSelect.tsx:123 -#: superset-frontend/src/components/Select/Select.tsx:103 +#: superset-frontend/src/components/Select/Select.tsx:104 #: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 -#: superset-frontend/src/explore/components/controls/SelectControl.jsx:230 +#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 msgid "Select ..." msgstr "Izberite ..." @@ -13478,11 +13661,11 @@ msgstr "Izberite način dostave" msgid "Select Viz Type" msgstr "Izberite tip vizualizacije" -#: superset/views/database/forms.py:415 +#: superset/views/database/forms.py:425 msgid "Select a Columnar file to be uploaded to a database." msgstr "Izberite stolpčno datoteko, ki bo naložena v podatkovno bazo." -#: superset/views/database/forms.py:279 +#: superset/views/database/forms.py:289 msgid "Select a Excel file to be uploaded to a database." msgstr "Izberite Excel-ovo datoteko, ki bo naložena v podatkovno bazo." @@ -13490,7 +13673,7 @@ msgstr "Izberite Excel-ovo datoteko, ki bo naložena v podatkovno bazo." msgid "Select a column" msgstr "Izberite stolpec" -#: superset-frontend/src/explore/components/SaveModal.tsx:357 +#: superset-frontend/src/explore/components/SaveModal.tsx:392 msgid "Select a dashboard" msgstr "Izberite nadzorno ploščo" @@ -13514,7 +13697,7 @@ msgstr "Izberite podatkovno bazo za poizvedbo" msgid "Select a database to upload the file to" msgstr "Izberite podatkovno bazo za poizvedbo" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:744 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:738 msgid "Select a database to write a query" msgstr "Izberite podatkovno bazo za poizvedbo" @@ -13527,7 +13710,7 @@ msgstr "Izberite dimenzijo" msgid "Select a file to be uploaded to the database" msgstr "Izberite CSV datoteko, ki bo naložena v podatkovno bazo." -#: superset/views/database/forms.py:145 +#: superset/views/database/forms.py:155 #, fuzzy msgid "Select a schema if the database supports this" msgstr "Podajte shemo (če vrsta podatkovne baze to podpira)" @@ -13540,12 +13723,12 @@ msgstr "Izberite tip vizualizacije" msgid "Select aggregate options" msgstr "Izberite agregacijske možnosti" -#: superset-frontend/src/components/Table/index.tsx:207 +#: superset-frontend/src/components/Table/index.tsx:211 #, fuzzy msgid "Select all data" msgstr "Počisti izbor" -#: superset-frontend/src/components/Table/index.tsx:201 +#: superset-frontend/src/components/Table/index.tsx:205 #, fuzzy msgid "Select all items" msgstr "Počisti izbor" @@ -13554,6 +13737,11 @@ msgstr "Počisti izbor" msgid "Select any columns for metadata inspection" msgstr "Izberite poljubne stolpce za pregled metapodatkov" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +#, fuzzy +msgid "Select chart" +msgstr "Izberi grafikone" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:45 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:103 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:138 @@ -13564,13 +13752,13 @@ msgstr "Izberi grafikone" msgid "Select color scheme" msgstr "Izberite barvno shemo" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:208 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 msgid "Select column" msgstr "Izberite stolpec" -#: superset-frontend/src/components/Table/index.tsx:204 +#: superset-frontend/src/components/Table/index.tsx:208 msgid "Select current page" msgstr "" @@ -13579,8 +13767,8 @@ msgstr "" msgid "Select database & schema" msgstr "Ogled sheme tabele" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:272 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:280 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:271 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:279 #, fuzzy msgid "Select database or type to search databases" msgstr "Izberite ali vnesite ime podatkovne baze" @@ -13590,7 +13778,7 @@ msgstr "Izberite ali vnesite ime podatkovne baze" msgid "Select database table" msgstr "Izbriši podatkovno bazo" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1791 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1847 msgid "" "Select databases require additional fields to be completed in the " "Advanced tab to successfully connect the database. Learn what " @@ -13631,7 +13819,7 @@ msgstr "Izberite operator" msgid "Select or type a value" msgstr "Izberite ali vnesite vrednost" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:410 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:418 msgid "Select or type dataset name" msgstr "Izberite ali vnesite naziv podatkovnega seta" @@ -13643,8 +13831,8 @@ msgstr "Izberite lastnike" msgid "Select saved metrics" msgstr "Izberite shranjene mere" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:297 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:304 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:296 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 #, fuzzy msgid "Select schema or type to search schemas" msgstr "Izberite ali vnesite ime sheme" @@ -13653,7 +13841,7 @@ msgstr "Izberite ali vnesite ime sheme" msgid "Select scheme" msgstr "Izberite shemo" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:304 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:307 msgid "Select start and end date" msgstr "Izberite začetni in končni datum" @@ -13661,8 +13849,8 @@ msgstr "Izberite začetni in končni datum" msgid "Select subject" msgstr "Izberite zadevo" +#: superset-frontend/src/components/TableSelector/index.tsx:284 #: superset-frontend/src/components/TableSelector/index.tsx:295 -#: superset-frontend/src/components/TableSelector/index.tsx:306 #, fuzzy msgid "Select table or type to search tables" msgstr "Izberite ali vnesite ime tabele" @@ -13672,6 +13860,23 @@ msgstr "Izberite ali vnesite ime tabele" msgid "Select the Annotation Layer you would like to use." msgstr "Izberite tip sloja z oznakami" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +msgid "" +"Select the charts to which you want to apply cross-filters in this " +"dashboard. Deselecting a chart will exclude it from being filtered when " +"applying cross-filters from any chart on the dashboard. You can select " +"\"All charts\" to apply cross-filters to all charts that use the same " +"dataset or contain the same column name in the dashboard." +msgstr "" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +msgid "" +"Select the charts to which you want to apply cross-filters when " +"interacting with this chart. You can select \"All charts\" to apply " +"filters to all charts that use the same dataset or contain the same " +"column name in the dashboard." +msgstr "" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:392 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:37 msgid "Select the geojson column" @@ -13719,7 +13924,7 @@ msgstr "September" msgid "Sequential" msgstr "Sekvenčni" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 #, fuzzy msgid "Series" msgstr "poizvedbe" @@ -13736,7 +13941,7 @@ msgstr "Razvrščanje omejitev serije" msgid "Series Limit Sort Descending" msgstr "Razvrsti padajoče" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:255 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:246 #, fuzzy msgid "Series Order" msgstr "poizvedbe" @@ -13809,13 +14014,13 @@ msgid "Settings for time series" msgstr "Nastavitve časovne vrste" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:325 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:464 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:467 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 #: superset-frontend/src/features/home/SavedQueries.tsx:211 msgid "Share" msgstr "Deljenje" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:469 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:472 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:343 msgid "Share chart by email" msgstr "Deli grafikon po e-pošti" @@ -13824,7 +14029,7 @@ msgstr "Deli grafikon po e-pošti" msgid "Share permalink by email" msgstr "Deli povezavo po e-pošti" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1429 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1421 msgid "Shared query" msgstr "Deljene poizvedbe" @@ -13832,7 +14037,7 @@ msgstr "Deljene poizvedbe" msgid "Shared query fields" msgstr "Polja deljenih poizvedb" -#: superset/views/database/forms.py:298 +#: superset/views/database/forms.py:308 msgid "Sheet Name" msgstr "Ime zvezka" @@ -13889,7 +14094,7 @@ msgstr "Prikaži CSS predlogo" msgid "Show Chart" msgstr "Prikaži grafikon" -#: superset/connectors/sqla/views.py:73 +#: superset/connectors/sqla/views.py:72 msgid "Show Column" msgstr "Pokaži stolpec" @@ -13923,11 +14128,11 @@ msgstr "Prikaži dnevnik" msgid "Show Markers" msgstr "Prikaži markerje" -#: superset/connectors/sqla/views.py:208 +#: superset/connectors/sqla/views.py:207 msgid "Show Metric" msgstr "Pokaži mero" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:178 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 msgid "Show Metric Names" msgstr "Pokaži imena mer" @@ -13935,15 +14140,11 @@ msgstr "Pokaži imena mer" msgid "Show Range Filter" msgstr "Pokaži filter obdobja" -#: superset/connectors/sqla/views.py:291 -msgid "Show Row level security filter" -msgstr "Prikaži filter za varnost na nivoju vrstic" - #: superset/views/sql_lab/views.py:53 msgid "Show Saved Query" msgstr "Prikaži shranjeno poizvedbo" -#: superset/connectors/sqla/views.py:385 +#: superset/connectors/sqla/views.py:292 msgid "Show Table" msgstr "Prikaži tabelo" @@ -13964,11 +14165,11 @@ msgstr "Pokaži trendno črto" msgid "Show Upper Labels" msgstr "Prikaži zgornje oznake" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:110 msgid "Show Value" msgstr "Prikaži vrednost" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:164 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:315 #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:184 msgid "Show Values" @@ -14001,7 +14202,7 @@ msgstr "Prikaži oznake na X-osi" msgid "Show cell bars" msgstr "Prikaži stolp. graf v celicah" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:395 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 msgid "Show chart description" msgstr "Prikaži opis grafikona" @@ -14040,7 +14241,7 @@ msgstr "Pokaži oznako" msgid "Show labels when the node has children." msgstr "Prikaži oznake, ko ima vozlišče podrejene elemente." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:39 msgid "Show legend" msgstr "Prikaži legendo" @@ -14077,7 +14278,7 @@ msgstr "Prikaži območje" msgid "Show rows total" msgstr "Prikaži vsoto vrstic" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 msgid "Show series values on the chart" msgstr "Na grafikonu prikaži vrednosti serij" @@ -14107,7 +14308,6 @@ msgstr "" "Prikaži skupno agregacijo izbrane mere. Omejitev števila vrstic ne vpliva" " na rezultat." -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:76 #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:365 msgid "Show totals" @@ -14162,7 +14362,7 @@ msgstr "" msgid "Showing %s of %s" msgstr "Prikazanih %s od %s" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:184 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 msgid "Shows a list of all series available at that point in time" msgstr "Prikaže seznam vseh razpoložljivih podatkovnih serij za istočasno točko" @@ -14182,7 +14382,7 @@ msgstr "" msgid "Significance Level" msgstr "Stopnja značilnosti" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:341 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 @@ -14231,24 +14431,24 @@ msgstr "Velikost markerja. Upošteva se tudi za napovedi." msgid "Sizes of vehicles" msgstr "Velikosti vozil" -#: superset/views/database/forms.py:177 +#: superset/views/database/forms.py:187 msgid "Skip Blank Lines" msgstr "Izpusti prazne vrstice" -#: superset/views/database/forms.py:174 +#: superset/views/database/forms.py:184 msgid "Skip Initial Space" msgstr "Izpusti začetni presledek" -#: superset/views/database/forms.py:260 superset/views/database/forms.py:354 +#: superset/views/database/forms.py:270 superset/views/database/forms.py:364 msgid "Skip Rows" msgstr "Izpusti vrstice" -#: superset/views/database/forms.py:178 +#: superset/views/database/forms.py:188 #, fuzzy msgid "Skip blank lines rather than interpreting them as Not A Number values" msgstr "Raje izpusti prazne vrstice, kot pa da so prepoznane kot NaN vrednosti." -#: superset/views/database/forms.py:174 +#: superset/views/database/forms.py:184 #, fuzzy msgid "Skip spaces after delimiter" msgstr "Izpusti presledek za ločilnikom." @@ -14287,7 +14487,7 @@ msgstr "" msgid "Solid" msgstr "" -#: superset/commands/exceptions.py:115 +#: superset/commands/exceptions.py:119 msgid "Some roles do not exist" msgstr "Nekatere vloge ne obstajajo" @@ -14296,7 +14496,7 @@ msgstr "Nekatere vloge ne obstajajo" msgid "Something went wrong." msgstr "Nekaj je šlo narobe. Poskusite ponovno kasneje." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:864 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:919 #, python-format msgid "Sorry there was an error fetching database information: %s" msgstr "Pri pridobivanju informacij o podatkovni bazi je prišlo do napake: %s" @@ -14314,7 +14514,7 @@ msgstr "Prišlo je do napake" msgid "Sorry, an error occurred" msgstr "Prišlo je do napake" -#: superset-frontend/src/dashboard/actions/dashboardState.js:357 +#: superset-frontend/src/dashboard/actions/dashboardState.js:359 #, fuzzy msgid "Sorry, an unknown error occurred" msgstr "Prišlo je do neznane napake" @@ -14345,14 +14545,14 @@ msgstr "Ni podatkov" msgid "Sorry, there was an error saving this %s: %s" msgstr "Prišlo je do napake pri shranjevanju nadzorne plošče: %s" -#: superset-frontend/src/dashboard/actions/dashboardState.js:360 +#: superset-frontend/src/dashboard/actions/dashboardState.js:362 #, python-format msgid "Sorry, there was an error saving this dashboard: %s" msgstr "Prišlo je do napake pri shranjevanju nadzorne plošče: %s" #: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 #: superset-frontend/src/pages/SavedQueryList/index.tsx:229 -#: superset-frontend/src/views/CRUD/hooks.ts:676 +#: superset-frontend/src/views/CRUD/hooks.ts:680 msgid "Sorry, your browser does not support copying." msgstr "Vaš brskalnik ne podpira kopiranja." @@ -14362,7 +14562,7 @@ msgstr "Vaš brskalnik ne podpira kopiranja. Uporabite Ctrl / Cmd + C!" #: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 #: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 -#: superset-frontend/src/components/Table/index.tsx:208 +#: superset-frontend/src/components/Table/index.tsx:212 msgid "Sort" msgstr "Razvrsti" @@ -14380,12 +14580,12 @@ msgstr "Razvrsti padajoče" msgid "Sort Metric" msgstr "Mera za razvrščanje" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:247 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:238 #, fuzzy msgid "Sort Series Ascending" msgstr "Razvrsti naraščajoče" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:227 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:224 #, fuzzy msgid "Sort Series By" msgstr "Razvrsti vrstice" @@ -14461,7 +14661,7 @@ msgstr "Mera za razvrščanje" msgid "Sort rows by" msgstr "Razvrsti vrstice" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:250 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:241 msgid "Sort series in ascending order" msgstr "" @@ -14493,6 +14693,7 @@ msgstr "Kategorija izvora" msgid "Sparkline" msgstr "Markirne črtice" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:978 msgid "Spatial" msgstr "Prostorski" @@ -14501,23 +14702,23 @@ msgstr "Prostorski" msgid "Specific Date/Time" msgstr "Fiksen Datum/Čas" -#: superset/views/database/forms.py:312 superset/views/database/forms.py:443 +#: superset/views/database/forms.py:322 superset/views/database/forms.py:453 msgid "Specify a schema (if database flavor supports this)." msgstr "Podajte shemo (če vrsta podatkovne baze to podpira)" -#: superset/views/database/forms.py:351 +#: superset/views/database/forms.py:361 msgid "Specify duplicate columns as \"X.0, X.1\"." msgstr "Določite podvojene stolpce kot \"X.0, X.1\"." -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:711 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:705 msgid "Specify name to CREATE TABLE AS schema in: public" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:710 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:704 msgid "Specify name to CREATE VIEW AS schema in: public" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:515 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:551 msgid "" "Specify the database version. This should be used with Presto in order to" " enable query cost estimation." @@ -14543,7 +14744,7 @@ msgstr "Parametri" msgid "Square miles" msgstr "poizvedbe" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 msgid "Stack" msgstr "Naloži" @@ -14557,7 +14758,7 @@ msgstr "Nalagaj serije" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:161 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:115 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:128 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:125 msgid "Stack series on top of each other" msgstr "Nalagaj serije eno na drugo" @@ -14577,7 +14778,7 @@ msgstr "Naloženi stolpci" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:124 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:121 #: superset-frontend/src/explore/fixtures.tsx:58 msgid "Stacked Style" msgstr "Slog nalaganja" @@ -14650,7 +14851,7 @@ msgstr "Status" msgid "State" msgstr "Status" -#: superset/sql_lab.py:511 +#: superset/sql_lab.py:503 #, python-format msgid "Statement %(statement_num)s out of %(statement_count)s" msgstr "" @@ -14703,20 +14904,20 @@ msgstr "" "tvorijo stopnice med posameznimi točkami. Koristen je za prikaz sprememb " "na posameznih intervalih." -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:47 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:46 #: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 msgid "Stop" msgstr "Ustavi" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:337 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:339 msgid "Stop query" msgstr "Ustavi poizvedbo" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:116 msgid "Stop running (Ctrl + e)" msgstr "Ustavi (Ctrl + e)" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:114 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 msgid "Stop running (Ctrl + x)" msgstr "Ustavi (Ctrl + x)" @@ -14724,7 +14925,7 @@ msgstr "Ustavi (Ctrl + x)" msgid "Stopped an unsafe database connection" msgstr "Nevarna povezava s podatkovno bazo je bila ustavljena" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 #, fuzzy msgid "Stream" msgstr "Histogram" @@ -14743,7 +14944,7 @@ msgstr "Sila privlačnosti med grafikonom in središčem" msgid "Stretched style" msgstr "Raztegnjen slog" -#: superset/views/database/forms.py:299 +#: superset/views/database/forms.py:309 msgid "Strings used for sheet names (default is the first sheet)." msgstr "" "Znakovni nizi uporabljeni za imena preglednic (privzeto je prva " @@ -14774,11 +14975,11 @@ msgstr "Slog" msgid "Style the ends of the progress bar with a round cap" msgstr "Zaobljena oblika koncev območja" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:56 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 msgid "Subdomain" msgstr "Poddomena" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 msgid "Subheader" msgstr "Podnaslov" @@ -14790,8 +14991,8 @@ msgstr "Velikost pisave podnaslova" msgid "Submit" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:472 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:678 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 #: superset/charts/post_processing.py:161 #: superset/charts/post_processing.py:178 msgid "Subtotal" @@ -14803,7 +15004,7 @@ msgstr "" msgid "Success" msgstr "Uspelo" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:193 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 #, fuzzy msgid "Successfully changed dataset!" msgstr "Spremeni podatkovni set" @@ -14838,7 +15039,7 @@ msgstr "Vsota vrednosti v dani periodi" msgid "Sum values" msgstr "Prazne (Null) vrednosti" -#: superset/viz.py:1888 +#: superset/viz.py:1805 msgid "Sunburst" msgstr "Sunburst" @@ -14864,7 +15065,7 @@ msgid "Superset Embedded SDK documentation." msgstr "Dokumentacija SDK za vgrajevanje." #: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:470 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:473 msgid "Superset chart" msgstr "Superset grafikon" @@ -14880,7 +15081,7 @@ msgstr "Superset je naletel na napako pri izvajanju ukaza." msgid "Superset encountered an unexpected error." msgstr "Superset je naletel na nepričakovano napako." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:920 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 msgid "Supported databases" msgstr "Podprte podatkovne baze" @@ -14888,11 +15089,7 @@ msgstr "Podprte podatkovne baze" msgid "Survey Responses" msgstr "Rezultati anket" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:101 -msgid "Swap Groups and Columns" -msgstr "Zamenjaj Skupine in Stolpce" - -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:254 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:311 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:435 #, fuzzy @@ -14949,6 +15146,11 @@ msgstr "Sinhroniziraj stolpce z virom" msgid "Syntax" msgstr "Sintaksa" +#: superset/db_engine_specs/ocient.py:282 +#, python-format +msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +msgstr "" + #: superset-frontend/src/pages/QueryHistoryList/index.tsx:268 #: superset-frontend/src/pages/SavedQueryList/index.tsx:315 msgid "TABLES" @@ -14982,36 +15184,36 @@ msgstr "Naslov zavihka" msgid "Tab title" msgstr "Naslov zavihka" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:26 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 -#: superset-frontend/src/components/TableSelector/index.tsx:290 +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 +#: superset-frontend/src/components/TableSelector/index.tsx:279 #: superset-frontend/src/visualizations/TimeTable/index.ts:26 -#: superset/connectors/sqla/views.py:160 superset/connectors/sqla/views.py:255 -#: superset/connectors/sqla/views.py:477 superset/views/chart/mixin.py:86 +#: superset/connectors/sqla/views.py:159 superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:384 superset/views/chart/mixin.py:86 msgid "Table" msgstr "Tabela" -#: superset/views/core.py:1740 +#: superset/views/core.py:1775 #, python-format msgid "Table %(table)s wasn't found in the database %(db)s" msgstr "Tabela %(table)s ni bila najdena v podatkovni bazi %(db)s" -#: superset/views/database/forms.py:317 superset/views/database/forms.py:448 +#: superset/views/database/forms.py:327 superset/views/database/forms.py:458 msgid "Table Exists" msgstr "Tabela obstaja" -#: superset/connectors/sqla/views.py:487 superset/views/database/forms.py:128 -#: superset/views/database/forms.py:269 superset/views/database/forms.py:405 +#: superset/connectors/sqla/views.py:394 superset/views/database/forms.py:128 +#: superset/views/database/forms.py:279 superset/views/database/forms.py:415 msgid "Table Name" msgstr "Ime tabele" -#: superset/viz.py:698 +#: superset/viz.py:722 msgid "Table View" msgstr "Tabelarični pogled" -#: superset/datasets/commands/exceptions.py:130 +#: superset/datasets/commands/exceptions.py:147 #, python-format msgid "" "Table [%(table_name)s] could not be found, please double check your " @@ -15028,7 +15230,7 @@ msgstr "" "Tabela [%{table}s] ni najdena. Preverite povezavo, shemo in ime tabele v " "podatkovni bazi. Napaka: {}" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:268 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:278 msgid "Table cache timeout" msgstr "Trajanje predpomnilnika tabele" @@ -15042,8 +15244,8 @@ msgstr "Stolpec z naslovi" msgid "Table loading" msgstr "Omogoči napovedovanje" -#: superset/views/database/forms.py:132 superset/views/database/forms.py:273 -#: superset/views/database/forms.py:409 +#: superset/views/database/forms.py:132 superset/views/database/forms.py:283 +#: superset/views/database/forms.py:419 msgid "Table name cannot contain a schema" msgstr "Ime tabele ne sme vsebovati sheme" @@ -15051,6 +15253,11 @@ msgstr "Ime tabele ne sme vsebovati sheme" msgid "Table name undefined" msgstr "Ime tabele ni definirano" +#: superset/db_engine_specs/ocient.py:287 +#, fuzzy, python-format +msgid "Table or View \"%(table)s\" does not exist." +msgstr "Uporabniško ime \"%(username)s\" ne obstaja." + #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 msgid "" "Table that visualizes paired t-tests, which are used to understand " @@ -15059,9 +15266,11 @@ msgstr "" "Tabela, ki prikazuje uparjene t-teste, ki se uporabljajo za prikaz " "statističnih razlik med skupinami." +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:384 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:393 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:287 #: superset-frontend/src/pages/SavedQueryList/index.tsx:334 -#: superset/connectors/sqla/views.py:363 superset/connectors/sqla/views.py:384 +#: superset/connectors/sqla/views.py:291 msgid "Tables" msgstr "Tabele" @@ -15112,7 +15321,7 @@ msgstr "Podatkovnega niza ni mogoče izbrisati." #: superset-frontend/src/pages/SavedQueryList/index.tsx:382 #: superset-frontend/src/pages/SavedQueryList/index.tsx:487 #: superset-frontend/src/pages/Tags/index.tsx:279 -#: superset/initialization/__init__.py:384 +#: superset/initialization/__init__.py:378 msgid "Tags" msgstr "Značke" @@ -15141,7 +15350,7 @@ msgstr "Ciljno razmerje za razdelke drevesnega grafikona." msgid "Target category" msgstr "Kategorija cilja" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:173 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 msgid "Target value" msgstr "Ciljna vrednost" @@ -15151,7 +15360,7 @@ msgstr "Ime predloge" #: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:962 -#: superset/connectors/sqla/views.py:493 +#: superset/connectors/sqla/views.py:400 msgid "Template parameters" msgstr "Parametri predlog" @@ -15163,7 +15372,7 @@ msgstr "" "Vzorčna povezava, vključiti je mogoče {{ metric }} ali drugo vrednost iz " "kontrolnikov." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:317 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:327 msgid "" "Terminate running queries when browser window closed or navigated to " "another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " @@ -15190,7 +15399,7 @@ msgstr "Besedilo" msgid "Text align" msgstr "Poravnava besedila" -#: superset-frontend/src/components/ReportModal/index.tsx:248 +#: superset-frontend/src/components/ReportModal/index.tsx:247 msgid "Text embedded in email" msgstr "Besedilo vključeno v e-pošto" @@ -15241,7 +15450,7 @@ msgid "" " the filters list?" msgstr "" -#: superset/views/core.py:372 +#: superset/views/core.py:373 msgid "The access requests seem to have been deleted" msgstr "Zdi se, da je bila zahteva za dostop izbrisana" @@ -15261,12 +15470,12 @@ msgstr "" "Kategorija izvornih vozlišč, na podlagi katere je določena barva. Če je " "vozlišče povezano z več kot eno kategorijo, bo uporabljena samo prva." -#: superset/common/query_context_processor.py:586 +#: superset/common/query_context_processor.py:585 #, fuzzy msgid "The chart datasource does not exist" msgstr "Podatkovni vir ne obstaja" -#: superset/common/query_context_processor.py:584 +#: superset/common/query_context_processor.py:583 msgid "The chart does not exist" msgstr "Grafikon ne obstaja" @@ -15324,7 +15533,7 @@ msgstr "Nadzorna plošča je bila shranjena" msgid "The data source seems to have been deleted" msgstr "Zdi se, da je bil podatkovni vir izbrisan" -#: superset/connectors/sqla/views.py:115 +#: superset/connectors/sqla/views.py:114 msgid "" "The data type that was inferred by the database. It may be necessary to " "input a type manually for expression-defined columns in some cases. In " @@ -15334,7 +15543,7 @@ msgstr "" "potrebno ročno vnesti tip za stolpce, ki temeljijo na izrazih. V večini " "primerov uporabniku tega ni potrebno spreminjati." -#: superset-frontend/src/pages/DatabaseList/index.tsx:515 +#: superset-frontend/src/pages/DatabaseList/index.tsx:529 #, python-format msgid "" "The database %s is linked to %s charts that appear on %s dashboards and " @@ -15379,11 +15588,11 @@ msgstr "Podatkovna baza je vrnila nepričakovano napako." msgid "The database was deleted." msgstr "Podatkovna baza je bila izbrisana." -#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2002 +#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2039 msgid "The database was not found." msgstr "Podatkovna baza ni bila najdena." -#: superset-frontend/src/pages/DatasetList/index.tsx:710 +#: superset-frontend/src/pages/DatasetList/index.tsx:724 #, python-format msgid "" "The dataset %s is linked to %s charts that appear on %s dashboards. Are " @@ -15395,11 +15604,11 @@ msgstr "" "te objekte." #: superset-frontend/src/components/Chart/Chart.jsx:88 -#: superset/views/utils.py:274 +#: superset/views/utils.py:272 msgid "The dataset associated with this chart no longer exists" msgstr "Podatkovni set, povezan s tem grafikonom, ne obstaja več" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:168 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:210 msgid "" "The dataset configuration exposed here\n" " affects all the charts using this dataset.\n" @@ -15413,7 +15622,7 @@ msgstr "" " nastavitev lahko nezaželeno vpliva\n" " na druge grafikone." -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:129 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:164 #: superset-frontend/src/pages/ChartCreation/index.tsx:261 msgid "The dataset has been saved" msgstr "Podatkovni set je shranjen" @@ -15422,7 +15631,7 @@ msgstr "Podatkovni set je shranjen" msgid "The dataset linked to this chart may have been deleted." msgstr "Podatkovni set, povezan s tem grafikonom, je bil izbrisan." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1496 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1488 msgid "The datasource couldn't be loaded" msgstr "Podatkovnega vira ni mogoče naložiti" @@ -15438,7 +15647,7 @@ msgstr "" "Opis je lahko prikazan kot glava gradnika in pogledu nadzorne plošče. " "Podpira markdown." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:104 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 msgid "The distance between cells, in pixels" msgstr "Razdalja med celicami v pikslih" @@ -15453,7 +15662,7 @@ msgstr "Trajanje (v sekundah) do razveljavitve predpomnilnika" msgid "The encoding format of the lines" msgstr "Oblika kodiranja črt" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:495 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:531 msgid "" "The engine_params object gets unpacked into the sqlalchemy.create_engine " "call." @@ -15466,6 +15675,7 @@ msgid "" "%(columns)s. " msgstr "V 'columns' manjkajo naslednji vnosi iz 'series_columns': %(columns)s. " +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:111 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:67 msgid "The function to use when aggregating points into groups" msgstr "Funkcija za agregacijo točk v skupine" @@ -15476,9 +15686,9 @@ msgid "The host \"%(hostname)s\" might be down and can't be reached." msgstr "Gostitelj \"%(hostname)s\" mogoče ne deluje in ga ni mogoče doseči." #: superset/db_engine_specs/mssql.py:103 -#: superset/db_engine_specs/postgres.py:140 -#: superset/db_engine_specs/presto.py:664 -#: superset/db_engine_specs/redshift.py:82 +#: superset/db_engine_specs/postgres.py:139 +#: superset/db_engine_specs/presto.py:691 +#: superset/db_engine_specs/redshift.py:86 #, python-format msgid "" "The host \"%(hostname)s\" might be down, and can't be reached on port " @@ -15492,9 +15702,9 @@ msgid "The host might be down, and can't be reached on the provided port." msgstr "Gostitelj mogoče ne deluje in ga ni mogoče doseči preko podanih vrat." #: superset/db_engine_specs/mssql.py:93 -#: superset/db_engine_specs/postgres.py:130 -#: superset/db_engine_specs/presto.py:659 -#: superset/db_engine_specs/redshift.py:72 +#: superset/db_engine_specs/postgres.py:129 +#: superset/db_engine_specs/presto.py:686 +#: superset/db_engine_specs/redshift.py:76 #, python-format msgid "The hostname \"%(hostname)s\" cannot be resolved." msgstr "Imena gostitelja \"%(hostname)s\" ni mogoče razrešiti." @@ -15508,7 +15718,7 @@ msgstr "Imena gostitelja ni mogoče razrešiti." msgid "The id of the active chart" msgstr "Identifikator aktivnega grafikona" -#: superset/connectors/sqla/views.py:418 +#: superset/connectors/sqla/views.py:325 msgid "" "The list of charts associated with this table. By altering this " "datasource, you may change how these associated charts behave. Also note " @@ -15557,7 +15767,7 @@ msgstr "" "Metadata_params v polju Dodatno niso pravilno nastavljeni. Ključ %{key}s " "je neveljaven." -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:469 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:505 msgid "" "The metadata_params object gets unpacked into the sqlalchemy.MetaData " "call." @@ -15581,7 +15791,7 @@ msgstr "" " period\" na 7. Tako bodo vse prikazane točke skupaj obsegale 7 obdobij. " "To bo prikrilo rampo, ki bi trajala prvih 7 obdobij" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:130 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 msgid "The number color \"steps\"" msgstr "Število barvnih korakov" @@ -15593,7 +15803,7 @@ msgstr "" "Število ur, negativno ali pozitivno, za zamik časovnega stolpca. Na ta " "način je mogoče UTC čas prestaviti na lokalni čas." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:308 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:301 #, python-format msgid "" "The number of results displayed is limited to %(rows)d by the " @@ -15604,7 +15814,7 @@ msgstr "" " DISPLAY_MAX_ROWS. V csv dodajte dodatne omejitve/filtre, da boste lahko " "videli več vrstic do meje %(limit)d ." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:314 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:307 #, python-format msgid "" "The number of results displayed is limited to %(rows)d. Please add " @@ -15615,22 +15825,22 @@ msgstr "" "dodatne omejitve/filtre, da boste lahko videli več vrstic do meje " "%(limit)d ." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:365 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:358 #, fuzzy, python-format msgid "The number of rows displayed is limited to %(rows)d by the dropdown." msgstr "Število prikazanih rezultatov je omejeno na %(rows)d s poizvedbo." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:334 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." msgstr "Število prikazanih rezultatov je omejeno na %(rows)d s poizvedbo." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:326 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:319 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the query" msgstr "Število prikazanih vrstic je omejeno na %(rows)d s poizvedbo" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:339 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:332 #, python-format msgid "" "The number of rows displayed is limited to %(rows)d by the query and " @@ -15648,7 +15858,7 @@ msgstr "Trajanje (v sekundah) do razveljavitve predpomnilnika" msgid "The object does not exist in the given database." msgstr "Objekt ne obstaja v podani podatkovni bazi." -#: superset/sqllab/query_render.py:96 +#: superset/sqllab/query_render.py:94 #, python-format msgid "The parameter %(parameters)s in your query is undefined." msgid_plural "The following parameters in your query are undefined: %(parameters)s." @@ -15657,7 +15867,7 @@ msgstr[1] "V vaši poizvedbi ni definiranih naslednjih parametrov: %(parameters) msgstr[2] "V vaši poizvedbi ni definiranih naslednjih parametrov: %(parameters)s." msgstr[3] "V vaši poizvedbi ni definiranih naslednjih parametrov: %(parameters)s." -#: superset/db_engine_specs/postgres.py:120 +#: superset/db_engine_specs/postgres.py:119 #, python-format msgid "The password provided for username \"%(username)s\" is incorrect." msgstr "Geslo za uporabniško ime \"%(username)s\" je napačno." @@ -15718,7 +15928,7 @@ msgstr "" "nastavitvah podatkovne baze nista prisotni v izvoženih datotekah in jih " "je potrebno dodati ročno po uvozu, če je to potrebno." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1284 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1339 msgid "" "The passwords for the databases below are needed in order to import them." " Please note that the \"Secure Extra\" and \"Certificate\" sections of " @@ -15746,7 +15956,7 @@ msgstr "" " Kliknite na mehurček za podrobnosti dovoljenih izrazov za " "\"freq\"." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 msgid "The pixel radius" msgstr "Polmer piksla" @@ -15773,7 +15983,7 @@ msgstr "Številka vrat je neveljavna." msgid "The primary metric is used to define the arc segment sizes" msgstr "Primarna mera določa velikost lokov segmentov" -#: superset/views/core.py:2212 +#: superset/views/core.py:2248 msgid "The provided `rows` argument is not a valid integer." msgstr "Podani argument `rows` ni veljavno celo število." @@ -15782,7 +15992,7 @@ msgid "The query associated with the results was deleted." msgstr "Poizvedba, povezana z rezultati, je bila izbrisana." #: superset/sqllab/commands/export.py:63 superset/sqllab/commands/results.py:91 -#: superset/views/core.py:2162 +#: superset/views/core.py:2198 msgid "" "The query associated with these results could not be found. You need to " "re-run the original query." @@ -15790,7 +16000,7 @@ msgstr "" "Poizvedbe, povezane s temi rezultati, ni bilo mogoče najti. Ponovno " "morate zagnati izvorno poizvedbo." -#: superset/sqllab/query_render.py:117 +#: superset/sqllab/query_render.py:115 msgid "The query contains one or more malformed template parameters." msgstr "Poizvedba vsebuje enega ali več parametrov predlog z napačno obliko." @@ -15811,11 +16021,11 @@ msgstr "" msgid "The query has a syntax error." msgstr "Poizvedba ima sintaktično napako." -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:519 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:512 msgid "The query returned no data" msgstr "Poizvedba ni vrnila podatkov" -#: superset/sql_lab.py:301 +#: superset/sql_lab.py:297 #, python-format msgid "" "The query was killed after %(sqllab_timeout)s seconds. It might be too " @@ -15866,7 +16076,7 @@ msgstr "" "Podroben opis orodja prikaže seznam vseh podatkovnih serij za posamezno " "časovno točko" -#: superset/db_engine_specs/bigquery.py:202 +#: superset/db_engine_specs/bigquery.py:203 #, python-format msgid "" "The schema \"%(schema)s\" does not exist. A valid schema must be used to " @@ -15875,7 +16085,7 @@ msgstr "" "Shema \"%(schema)s\" ne obstaja. Za poizvedbo mora biti uporabljena " "veljavna shema." -#: superset/db_engine_specs/presto.py:646 +#: superset/db_engine_specs/presto.py:673 #, python-format msgid "" "The schema \"%(schema_name)s\" does not exist. A valid schema must be " @@ -15888,11 +16098,12 @@ msgstr "" msgid "The schema was deleted or renamed in the database." msgstr "Shema je bila izbrisana ali preimenovana v podatkovni bazi." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:92 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 msgid "The size of the square cell, in pixels" msgstr "Velikost kvadratne celice v pikslih" -#: superset/views/datasource/views.py:88 +#: superset/datasets/commands/exceptions.py:72 +#: superset/views/datasource/views.py:90 msgid "" "The submitted URL is not considered safe, only use URLs with the same " "domain as Superset." @@ -15906,7 +16117,7 @@ msgstr "Podani podatki so v neustrezni obliki." msgid "The submitted payload has the incorrect schema." msgstr "Podani podatki imajo neustrezno shemo." -#: superset/db_engine_specs/bigquery.py:189 +#: superset/db_engine_specs/bigquery.py:190 #, python-format msgid "" "The table \"%(table)s\" does not exist. A valid table must be used to run" @@ -15915,7 +16126,7 @@ msgstr "" "Tabela \"%(table)s\" ne obstaja. V poizvedbi mora biti uporabljena " "veljavna tabela." -#: superset/db_engine_specs/presto.py:638 +#: superset/db_engine_specs/presto.py:665 #, python-format msgid "" "The table \"%(table_name)s\" does not exist. A valid table must be used " @@ -15924,7 +16135,7 @@ msgstr "" "Tabela \"%(table_name)s\" ne obstaja. V poizvedbi mora biti uporabljena " "veljavna tabela." -#: superset/connectors/sqla/views.py:515 +#: superset/connectors/sqla/views.py:422 msgid "" "The table was created. As part of this two-phase configuration process, " "you should now click the edit button by the new table to configure it." @@ -15995,7 +16206,7 @@ msgstr "" "pasom. Eksplicitno lahko nastavite časovni pas v ISO 8601 formatu, če " "določite čas začetka ali konca." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 msgid "" "The time unit for each block. Should be a smaller unit than " "domain_granularity. Should be larger or equal to Time Grain" @@ -16003,7 +16214,7 @@ msgstr "" "Časovna enota za vsak blok. Mora biti manjša enota kot " "domenska_granulacija. Mora biti večja ali enaka Granulaciji časa" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 msgid "The time unit used for the grouping of blocks" msgstr "Časovna enota za združevanje blokov" @@ -16021,7 +16232,12 @@ msgstr "Enota merila za definiran radij točk" msgid "The user seems to have been deleted" msgstr "Zdi se, da je bil uporabnik izbrisan" -#: superset/db_engine_specs/postgres.py:115 +#: superset/db_engine_specs/ocient.py:251 +msgid "The user/password combination is not valid (Incorrect password for user)." +msgstr "" + +#: superset/db_engine_specs/ocient.py:246 +#: superset/db_engine_specs/postgres.py:114 #, python-format msgid "The username \"%(username)s\" does not exist." msgstr "Uporabniško ime \"%(username)s\" ne obstaja." @@ -16048,16 +16264,16 @@ msgstr "Debelina črt" msgid "There are associated alerts or reports" msgstr "Prisotna so povezana opozorila in poročila" -#: superset/charts/commands/bulk_delete.py:62 -#: superset/charts/commands/delete.py:71 -#: superset/dashboards/commands/bulk_delete.py:63 -#: superset/dashboards/commands/delete.py:64 -#: superset/databases/commands/delete.py:63 +#: superset/charts/commands/bulk_delete.py:61 +#: superset/charts/commands/delete.py:70 +#: superset/dashboards/commands/bulk_delete.py:62 +#: superset/dashboards/commands/delete.py:63 +#: superset/databases/commands/delete.py:62 #, python-format msgid "There are associated alerts or reports: %s," msgstr "Prisotna so opozorila in poročila: %s," -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:710 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:711 msgid "There are no charts added to this dashboard" msgstr "V nadzorni plošči ni grafikonov" @@ -16117,7 +16333,7 @@ msgstr "Pri pridobivanju informacij o podatkovni bazi je prišlo do napake: %s" msgid "There was an error fetching tables" msgstr "Napaka pri nalaganju tabel" -#: superset-frontend/src/views/CRUD/hooks.ts:589 +#: superset-frontend/src/views/CRUD/hooks.ts:593 #, python-format msgid "There was an error fetching the favorite status: %s" msgstr "Napaka pri pridobivanju statusa \"Priljubljeno\": %s" @@ -16126,20 +16342,25 @@ msgstr "Napaka pri pridobivanju statusa \"Priljubljeno\": %s" msgid "There was an error fetching your recent activity:" msgstr "Pri pridobivanju nedavnih aktivnosti je prišlo do napake:" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:450 +#, fuzzy +msgid "There was an error loading the chart data" +msgstr "Napaka pri nalaganju shem" + #: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 #, fuzzy msgid "There was an error loading the dataset metadata" msgstr "Napaka pri nalaganju tabel" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:241 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:240 msgid "There was an error loading the schemas" msgstr "Napaka pri nalaganju shem" -#: superset-frontend/src/components/TableSelector/index.tsx:194 +#: superset-frontend/src/components/TableSelector/index.tsx:191 msgid "There was an error loading the tables" msgstr "Napaka pri nalaganju tabel" -#: superset-frontend/src/views/CRUD/hooks.ts:612 +#: superset-frontend/src/views/CRUD/hooks.ts:616 #, python-format msgid "There was an error saving the favorite status: %s" msgstr "Napaka pri shranjevanju statusa \"Priljubljeno\": %s" @@ -16153,14 +16374,20 @@ msgstr "Pri zahtevi je prišlo do napake" #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 #: superset-frontend/src/pages/AnnotationList/index.tsx:121 #: superset-frontend/src/pages/CssTemplateList/index.tsx:97 -#: superset-frontend/src/pages/DatabaseList/index.tsx:167 -#: superset-frontend/src/pages/DatasetList/index.tsx:657 +#: superset-frontend/src/pages/DatabaseList/index.tsx:178 +#: superset-frontend/src/pages/DatasetList/index.tsx:668 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:97 #: superset-frontend/src/pages/SavedQueryList/index.tsx:245 #: superset-frontend/src/views/CRUD/utils.tsx:315 #, python-format msgid "There was an issue deleting %s: %s" msgstr "Težava pri brisanju %s: %s" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:111 +#, fuzzy, python-format +msgid "There was an issue deleting rules: %s" +msgstr "Težava pri brisanju %s: %s" + #: superset-frontend/src/pages/AlertReportList/index.tsx:201 #, python-format msgid "There was an issue deleting the selected %s: %s" @@ -16180,7 +16407,7 @@ msgstr "Pri brisanju izbranih grafikonov je prišlo do težave: %s" msgid "There was an issue deleting the selected dashboards: " msgstr "Pri brisanju izbranih nadzornih plošč je prišlo do težave: " -#: superset-frontend/src/pages/DatasetList/index.tsx:675 +#: superset-frontend/src/pages/DatasetList/index.tsx:686 #, python-format msgid "There was an issue deleting the selected datasets: %s" msgstr "Pri brisanju izbranih podatkovnih setov je prišlo do težave: %s" @@ -16205,17 +16432,17 @@ msgstr "Pri brisanju izbranih predlog je prišlo do težave: %s" msgid "There was an issue deleting: %s" msgstr "Težava pri brisanju: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:683 +#: superset-frontend/src/pages/DatasetList/index.tsx:694 #, fuzzy msgid "There was an issue duplicating the dataset." msgstr "Pri brisanju izbranih podatkovnih setov je prišlo do težave: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:699 +#: superset-frontend/src/pages/DatasetList/index.tsx:710 #, fuzzy, python-format msgid "There was an issue duplicating the selected datasets: %s" msgstr "Pri brisanju izbranih podatkovnih setov je prišlo do težave: %s" -#: superset-frontend/src/dashboard/actions/dashboardState.js:129 +#: superset-frontend/src/dashboard/actions/dashboardState.js:127 msgid "There was an issue favoriting this dashboard." msgstr "Pri uvrščanju nadzorne plošče med priljubljene je prišlo do težave." @@ -16223,7 +16450,7 @@ msgstr "Pri uvrščanju nadzorne plošče med priljubljene je prišlo do težave msgid "There was an issue fetching reports attached to this dashboard." msgstr "Pri pridobivanju poročil za to nadzorno ploščo je prišlo do težave." -#: superset-frontend/src/dashboard/actions/dashboardState.js:104 +#: superset-frontend/src/dashboard/actions/dashboardState.js:103 msgid "There was an issue fetching the favorite status of this dashboard." msgstr "" "Pri pridobivanju statusa \"priljubljeno\" za to nadzorno ploščo je prišlo" @@ -16259,13 +16486,13 @@ msgstr "Do težave je prišlo pri predogledu izbrane poizvedbe %s" msgid "There was an issue previewing the selected query. %s" msgstr "Pri predogledu izbrane poizvedbe je prišlo do težave. %s" -#: superset/viz.py:1992 +#: superset/viz.py:1915 msgid "" "There's a loop in your Sankey, please provide a tree. Here's a faulty " "link: {}" msgstr "V 'Sankey' je zanka, določite drevo. To je okvarjena povezava: {}" -#: superset/connectors/sqla/views.py:335 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:386 msgid "These are the tables this filter will be applied to." msgstr "To so tabele, na katere se nanaša ta filter." @@ -16322,10 +16549,10 @@ msgstr "" "To je lahko bodisi IP naslov (npr. 127.0.0.1) bodisi ime domene (npr. " "mydatabase.com)." -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:244 +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:245 msgid "" -"This chart emits/applies cross-filters to other charts that use the same " -"dataset" +"This chart applies cross-filters to charts whose datasets contain columns" +" with the same name." msgstr "" #: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 @@ -16342,7 +16569,7 @@ msgstr "" "Ta grafikon je lahko nekompatibilen s filtrom (podatkovni seti se ne " "ujemajo)" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:322 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 msgid "" "This chart type is not supported when using an unsaved query as a chart " "source. " @@ -16357,7 +16584,7 @@ msgstr "" "Barvna shema je bila preglasovana z barvo oznake po meri.\n" " Preverite JSON metapodatke v naprednih nastavitvah" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:121 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:113 #, fuzzy msgid "This column might be incompatible with current dataset" msgstr "" @@ -16414,11 +16641,11 @@ msgstr "" "Ta nadzorna plošča ni objavljena in se ne bo prikazala na seznamu " "nadzornih plošč. Kliknite tukaj za njeno objavo." -#: superset-frontend/src/dashboard/actions/dashboardState.js:154 +#: superset-frontend/src/dashboard/actions/dashboardState.js:152 msgid "This dashboard is now hidden" msgstr "Ta nadzorna plošča je sedaj skrita" -#: superset-frontend/src/dashboard/actions/dashboardState.js:153 +#: superset-frontend/src/dashboard/actions/dashboardState.js:151 msgid "This dashboard is now published" msgstr "Ta nadzorna plošča je sedaj objavljena" @@ -16434,7 +16661,7 @@ msgstr "" "Nadzorna plošča je pripravljena za vgradnjo. V svoji aplikaciji v SDK " "vključite naslednji ID:" -#: superset/views/core.py:1319 +#: superset/views/core.py:1353 msgid "" "This dashboard was changed recently. Please reload dashboard to get " "latest version." @@ -16442,12 +16669,12 @@ msgstr "" "Nadzorna plošča je bila pred kratkim spremenjena. Ponovno jo naložite, da" " dobite zadnjo verzijo." -#: superset-frontend/src/dashboard/actions/dashboardState.js:311 -#: superset-frontend/src/dashboard/actions/dashboardState.js:350 +#: superset-frontend/src/dashboard/actions/dashboardState.js:313 +#: superset-frontend/src/dashboard/actions/dashboardState.js:352 msgid "This dashboard was saved successfully." msgstr "Nadzorna plošča je bila uspešno shranjena." -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1119 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1174 msgid "This database is managed externally, and can't be edited in Superset" msgstr "Ta podatkovna baza se ne ureja znotraj Superseta" @@ -16457,7 +16684,7 @@ msgid "" "table." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:240 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:282 msgid "This dataset is managed externally, and can't be edited in Superset" msgstr "Ta podatkovni set se ne ureja znotraj Superseta" @@ -16474,7 +16701,7 @@ msgstr "Določa element, ki bo izrisan na grafikonu" msgid "This defines the level of the hierarchy" msgstr "Določa stopnjo hierarhije" -#: superset/connectors/sqla/views.py:436 +#: superset/connectors/sqla/views.py:343 msgid "" "This fields acts a Superset view, meaning that Superset will run a query " "against this string as a subquery." @@ -16502,7 +16729,7 @@ msgstr "Ta set filtrov je enak: \"%s\"" msgid "This functionality is disabled in your environment for security reasons." msgstr "Ta funkcionalnost je v vašem okolju onemogočena zaradi varnosti." -#: superset/connectors/sqla/views.py:352 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:456 msgid "" "This is the condition that will be added to the WHERE clause. For " "example, to only return rows for a particular client, you might define a " @@ -16538,7 +16765,7 @@ msgstr "Markdown komponenta ima napako. Povrnite nedavne spremembe." msgid "This may be triggered by:" msgstr "To je lahko sproženo z/s:" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:258 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:256 #, fuzzy msgid "This metric might be incompatible with current dataset" msgstr "" @@ -16590,15 +16817,15 @@ msgid "" "associate one dataset with a table.\n" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:85 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 msgid "This value should be greater than the left target value" msgstr "Ta vrednost mora biti večja od leve ciljne vrednosti" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:80 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 msgid "This value should be smaller than the right target value" msgstr "Ta vrednost mora biti manjša od desne ciljne vrednosti" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:141 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:171 #, fuzzy msgid "This visualization type does not support cross-filtering." msgstr "Ta tip vizualizacije ni podprt." @@ -16639,6 +16866,7 @@ msgstr "Četrtek" # SUPERSET UI #: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:38 #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 @@ -16668,7 +16896,7 @@ msgstr "Časovni stolpec" msgid "Time Comparison" msgstr "Časovna primerjava" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:141 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 msgid "Time Format" msgstr "Oblika zapisa časa" @@ -16700,39 +16928,39 @@ msgstr "Granulacija časa" msgid "Time Series" msgstr "Časovna vrsta" -#: superset/viz.py:1670 +#: superset/viz.py:1581 msgid "Time Series - Bar Chart" msgstr "Časovna vrsta - Stolpčni grafikon" -#: superset/viz.py:1596 +#: superset/viz.py:1504 msgid "Time Series - Dual Axis Line Chart" msgstr "Časovna vrsta - Črtni grafikon z dvojno osjo" -#: superset/viz.py:1308 +#: superset/viz.py:1209 msgid "Time Series - Line Chart" msgstr "Časovna vrsta - Črtni grafikon" -#: superset/viz.py:1518 +#: superset/viz.py:1424 msgid "Time Series - Multiple Line Charts" msgstr "Časovna vrsta - Veččrtni grafikon" -#: superset/viz.py:3036 +#: superset/viz.py:3033 msgid "Time Series - Nightingale Rose Chart" msgstr "Časovna vrsta - Nightingale Rose grafikon" -#: superset/viz.py:2965 +#: superset/viz.py:2961 msgid "Time Series - Paired t-test" msgstr "Časovna vrsta - t-test za odvisne vzorce" -#: superset/viz.py:1725 +#: superset/viz.py:1638 msgid "Time Series - Percent Change" msgstr "Časovna vrsta - Procentualna sprememba" -#: superset/viz.py:1679 +#: superset/viz.py:1590 msgid "Time Series - Period Pivot" msgstr "Časovna vrsta - Vrtenje period" -#: superset/viz.py:1733 +#: superset/viz.py:1646 msgid "Time Series - Stacked" msgstr "Časovna vrsta - Naložen graf" @@ -16747,7 +16975,7 @@ msgstr "Možnosti časovne vrste" msgid "Time Shift" msgstr "Časovni zamik" -#: superset/viz.py:849 +#: superset/viz.py:878 msgid "Time Table View" msgstr "Pogled urnika" @@ -16758,7 +16986,7 @@ msgstr "Pogled urnika" msgid "Time column" msgstr "Časovni stolpec" -#: superset/connectors/sqla/models.py:1392 superset/models/helpers.py:1575 +#: superset/models/helpers.py:1659 #, python-format msgid "Time column \"%(col)s\" does not exist in dataset" msgstr "Časovni stolpec \"%(col)s\" ne obstaja v podatkovnem setu" @@ -16845,6 +17073,7 @@ msgid "Time ratio" msgstr "Granulacija časa" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 #: superset-frontend/src/explore/controlPanels/sections.tsx:66 msgid "Time related form attributes" msgstr "S časom povezani atributi prikaza" @@ -16984,12 +17213,12 @@ msgstr "Napaka pretečenega časa" msgid "Timestamp format" msgstr "Oblika zapisa časovne značke" -#: superset-frontend/src/components/ReportModal/index.tsx:326 +#: superset-frontend/src/components/ReportModal/index.tsx:325 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 msgid "Timezone" msgstr "Časovni pas" -#: superset/connectors/sqla/views.py:427 +#: superset/connectors/sqla/views.py:334 msgid "Timezone offset (in hours) for this datasource" msgstr "Razlika časovnega pasu (v urah) za ta podatkovni vir" @@ -17031,30 +17260,27 @@ msgstr "Za filtriranje po meri uporabite prilagojen SQL zavihek." msgid "To get a readable URL for your dashboard" msgstr "Za pridobitev berljivega URL-ja za nadzorno ploščo" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:288 -msgid "Too many columns to filter" -msgstr "Preveč stolpcev za filtriranje" - #: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:27 msgid "Tools" msgstr "Orodja" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:216 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:213 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 msgid "Tooltip" msgstr "Opis orodja" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:201 msgid "Tooltip sort by metric" msgstr "Mera za razvrščanje opisa orodja" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:191 msgid "Tooltip time format" msgstr "Oblika zapisa časa v opisu orodja" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 msgid "Top" msgstr "Zgoraj" @@ -17078,14 +17304,14 @@ msgstr "Iz vrha proti dnu" msgid "Total (%(aggfunc)s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:497 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:562 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:784 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 #, python-format msgid "Total (%(aggregatorName)s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:230 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:68 #, fuzzy msgid "Total value" msgstr "Prazne (Null) vrednosti" @@ -17100,7 +17326,7 @@ msgstr "Vsota: %s" msgid "Totals" msgstr "Vsote" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:411 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:404 msgid "Track job" msgstr "Sledi opravilom" @@ -17120,10 +17346,6 @@ msgstr "Prilagodljiv" msgid "Transparent" msgstr "Prozorno" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:99 -msgid "Transpose Pivot" -msgstr "Transponirano vrtenje" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:238 msgid "Transpose pivot" msgstr "Transponirano vrtenje" @@ -17141,7 +17363,7 @@ msgid "Tree orientation" msgstr "Orientacija drevesa" #: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:60 -#: superset/viz.py:1035 +#: superset/viz.py:925 msgid "Treemap" msgstr "Drevesni grafikon s pravokotniki" @@ -17210,7 +17432,7 @@ msgstr "" msgid "Truncates the specified date to the accuracy specified by the date unit." msgstr "Zaokroži določen datum, glede na natančnost, definirano s časovno enoto." -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 msgid "Try applying different filters or ensuring your datasource has data" msgstr "" "Poskusite uporabiti druge filtre oz. zagotovite, da so v podatkovnem viru" @@ -17234,21 +17456,21 @@ msgstr "Torek" msgid "Tukey" msgstr "poizvedba" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:216 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:65 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:272 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:276 -#: superset-frontend/src/pages/DatasetList/index.tsx:343 -#: superset-frontend/src/pages/DatasetList/index.tsx:552 -#: superset/connectors/sqla/views.py:164 superset/connectors/sqla/views.py:253 +#: superset-frontend/src/pages/DatasetList/index.tsx:354 +#: superset-frontend/src/pages/DatasetList/index.tsx:563 +#: superset/connectors/sqla/views.py:163 superset/connectors/sqla/views.py:252 msgid "Type" msgstr "Tip" #: superset-frontend/src/components/DeleteModal/index.tsx:92 #: superset-frontend/src/components/ImportModal/index.tsx:397 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1405 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1460 #, python-format msgid "Type \"%s\" to confirm" msgstr "Vnesite \"%s\" za potrditev" @@ -17274,7 +17496,7 @@ msgstr "Dovoljeni tipi Googlovih preglednic" msgid "Type of comparison, value difference or percentage" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:404 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:407 #, python-format msgid "Type or Select [%s]" msgstr "Vnesite ali izberite [%s]" @@ -17304,22 +17526,23 @@ msgstr "Parametri URL" msgid "URL slug" msgstr "URL slug" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:622 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:618 msgid "Unable to add a new tab to the backend. Please contact your administrator." msgstr "Novega zavihka ni mogoče dodati v sistem. Kontaktirajte administratorja." -#: superset/db_engine_specs/presto.py:677 +#: superset/db_engine_specs/presto.py:704 #, python-format msgid "Unable to connect to catalog named \"%(catalog_name)s\"." msgstr "Povezava na katalog \"%(catalog_name)s\" ni uspela." #: superset/db_engine_specs/mysql.py:165 -#: superset/db_engine_specs/postgres.py:148 +#: superset/db_engine_specs/postgres.py:147 +#: superset/db_engine_specs/starrocks.py:127 #, python-format msgid "Unable to connect to database \"%(database)s\"." msgstr "Povezava s podatkovno bazo \"%(database)s\" ni uspela." -#: superset/db_engine_specs/bigquery.py:177 +#: superset/db_engine_specs/bigquery.py:178 msgid "" "Unable to connect. Verify that the following roles are set on the service" " account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " @@ -17327,10 +17550,18 @@ msgid "" "\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:218 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:216 msgid "Unable to create chart without a query id." msgstr "" +#: superset/key_value/exceptions.py:66 +msgid "Unable to decode value" +msgstr "" + +#: superset/key_value/exceptions.py:62 +msgid "Unable to encode value" +msgstr "" + #: superset/utils/date_parser.py:393 #, python-format msgid "Unable to find such a holiday: [%(holiday)s]" @@ -17342,7 +17573,7 @@ msgid "" "table." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:589 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:585 msgid "" "Unable to migrate query editor state to backend. Superset will retry " "later. Please contact your administrator if this problem persists." @@ -17351,7 +17582,7 @@ msgstr "" "ponovil poskus kasneje. Če se težava ponavlja, kontaktirajte " "administratorja." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:543 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:539 msgid "" "Unable to migrate query state to backend. Superset will retry later. " "Please contact your administrator if this problem persists." @@ -17359,7 +17590,7 @@ msgstr "" "Stanja poizvedbe ni mogoče prenesti v sistem. Superset bo ponovil poskus " "kasneje. Če se težava ponavlja, kontaktirajte administratorja." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:525 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:521 msgid "" "Unable to migrate table schema state to backend. Superset will retry " "later. Please contact your administrator if this problem persists." @@ -17372,7 +17603,7 @@ msgstr "" msgid "Unable to retrieve dashboard colors" msgstr "Omogoči medsebojne filtre nadzorne plošče" -#: superset/views/database/views.py:275 +#: superset/views/database/views.py:278 #, python-format msgid "" "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" @@ -17382,7 +17613,7 @@ msgstr "" "\"%(table_name)s\" v podatkovni bazi \"%(db_name)s\". Sporočilo napake: " "%(error_msg)s" -#: superset/views/database/views.py:553 +#: superset/views/database/views.py:556 #, python-format msgid "" "Unable to upload Columnar file \"%(filename)s\" to table " @@ -17393,7 +17624,7 @@ msgstr "" "\"%(table_name)s\" v podatkovni bazi \"%(db_name)s\". Sporočilo napake: " "%(error_msg)s" -#: superset/views/database/views.py:412 +#: superset/views/database/views.py:415 #, python-format msgid "" "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " @@ -17403,7 +17634,7 @@ msgstr "" "\"%(table_name)s\" v podatkovni bazi \"%(db_name)s\". Sporočilo napake: " "%(error_msg)s" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:93 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:92 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 msgid "Undefined" msgstr "Ni definirano" @@ -17416,7 +17647,7 @@ msgstr "Nedefinirano okno za drsečo operacijo" msgid "Undo the action" msgstr "Razveljavi dejanje" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:131 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:132 msgid "Undo?" msgstr "Povrni?" @@ -17426,7 +17657,7 @@ msgid "Unexpected error" msgstr "Nepričakovana napaka" #: superset/databases/commands/exceptions.py:137 -#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1438 +#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1479 msgid "Unexpected error occurred, please check your logs for details" msgstr "Zgodila se je nepričakovana napaka. Podrobnosti preverite v dnevnikih" @@ -17434,7 +17665,7 @@ msgstr "Zgodila se je nepričakovana napaka. Podrobnosti preverite v dnevnikih" msgid "Unexpected error: " msgstr "Nepričakovana napaka: " -#: superset/views/api.py:109 +#: superset/views/api.py:108 #, fuzzy, python-format msgid "Unexpected time range: %s" msgstr "Nepričakovana napaka: " @@ -17448,7 +17679,7 @@ msgstr "Neznano" msgid "Unknown MySQL server host \"%(hostname)s\"." msgstr "Neznan MySQL strežnik \"%(hostname)s\"." -#: superset/db_engine_specs/presto.py:1319 +#: superset/db_engine_specs/presto.py:1342 msgid "Unknown Presto Error" msgstr "Neznana Presto napaka" @@ -17456,13 +17687,13 @@ msgstr "Neznana Presto napaka" msgid "Unknown Status" msgstr "Neznan status" -#: superset/connectors/sqla/models.py:1317 superset/models/helpers.py:1498 +#: superset/models/helpers.py:1582 #, python-format msgid "Unknown column used in orderby: %(col)s" msgstr "Za razvrščanje je uporabljen neznan stolpec: %(col)s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:402 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:480 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:398 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:476 msgid "Unknown error" msgstr "Neznana napaka" @@ -17523,7 +17754,7 @@ msgstr "Neimenovana poizvedba" msgid "Untitled query" msgstr "Neimenovana poizvedba" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:223 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:222 msgid "Update" msgstr "Posodobi" @@ -17540,7 +17771,7 @@ msgstr "Posodabljanje grafikona je bilo ustavljeno" msgid "Upload" msgstr "Naloži" -#: superset-frontend/src/pages/DatabaseList/index.tsx:202 +#: superset-frontend/src/pages/DatabaseList/index.tsx:213 msgid "Upload CSV" msgstr "Naloži CSV" @@ -17556,7 +17787,7 @@ msgstr "Naloži prijavne podatke" msgid "Upload Enabled" msgstr "Nalaganje omogočeno" -#: superset-frontend/src/pages/DatabaseList/index.tsx:216 +#: superset-frontend/src/pages/DatabaseList/index.tsx:227 msgid "Upload Excel file" msgstr "Naloži Excel-ovo datoteko" @@ -17568,7 +17799,7 @@ msgstr "Naloži Excel-ovo datoteko v podatkovno bazo" msgid "Upload JSON file" msgstr "Naloži JSON datoteko" -#: superset-frontend/src/pages/DatabaseList/index.tsx:209 +#: superset-frontend/src/pages/DatabaseList/index.tsx:220 msgid "Upload columnar file" msgstr "Naloži datoteko s stolpci" @@ -17576,7 +17807,7 @@ msgstr "Naloži datoteko s stolpci" msgid "Upload columnar file to database" msgstr "Naloži datoteko s stolpci v podatkovno bazo" -#: superset-frontend/src/pages/DatabaseList/index.tsx:199 +#: superset-frontend/src/pages/DatabaseList/index.tsx:210 msgid "Upload file to database" msgstr "Naloži datoteko v podatkovno bazo" @@ -17590,7 +17821,7 @@ msgstr "Ogromna" msgid "Use \"%(menuName)s\" menu instead." msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:36 +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 #, fuzzy, python-format msgid "Use %s to open in a new tab." msgstr "Poizvedba v novem zavihku" @@ -17601,7 +17832,7 @@ msgstr "Poizvedba v novem zavihku" msgid "Use Area Proportions" msgstr "Uporabi razmerje površin" -#: superset/views/database/forms.py:462 +#: superset/views/database/forms.py:472 msgid "Use Columns" msgstr "Uporabi stolpce" @@ -17617,9 +17848,9 @@ msgstr "Uporabi logaritemsko skalo za X-os" msgid "Use a log scale for the Y-axis" msgstr "Uporabi logaritemsko skalo za Y-os" -#: superset/db_engine_specs/base.py:1850 -#: superset/db_engine_specs/clickhouse.py:211 -#: superset/db_engine_specs/databricks.py:57 +#: superset/db_engine_specs/base.py:1889 +#: superset/db_engine_specs/clickhouse.py:216 +#: superset/db_engine_specs/databricks.py:58 msgid "Use an encrypted connection to the database" msgstr "Uporabite šifrirano povezavo s podatkovno bazo" @@ -17632,12 +17863,12 @@ msgstr "" "Uporabite enega izmed obstoječih grafikonov kot vir oznak.\n" " Grafikon mora biti naslednjega tipa: [%s]" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:87 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 msgid "Use date formatting even when metric value is not a timestamp" msgstr "Oblikovanje datuma uporabi tudi, ko vrednost mere ni časovna značka" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:217 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 msgid "Use legacy datasource editor" msgstr "Uporabi starejši urejevalnik podatkovnega vira" @@ -17687,21 +17918,6 @@ msgstr "" "Uporablja se za interno identifikacijo vtičnika. Naj bo nastavljeno na " "ime paketa v vtičnikovem package.json" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:28 -msgid "" -"Used to summarize a set of data by grouping together multiple statistics " -"along two axes. Examples: Sales numbers by region and month, tasks by " -"status and assignee, active users by age and location.\n" -"\n" -" This chart is being deprecated and we recommend checking out Pivot " -"Table V2 instead!" -msgstr "" -"Uporablja se za predstavitev podatkov z združevanjem različnih statistik " -"na dveh oseh. Npr. Prodaja po regijah in mesecih, Naloge po statusih in " -"izvajalcih, aktivni uporabniki po starosti in lokaciji.\n" -"\n" -" Ta grafikon se opušča. Priporočamo uporabo Vrtilne tabele V2!" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 msgid "" "Used to summarize a set of data by grouping together multiple statistics " @@ -17748,11 +17964,17 @@ msgstr "Uporabnikova poizvedba" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:133 #: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 -#: superset/db_engine_specs/base.py:1837 +#: superset/db_engine_specs/base.py:1868 #: superset/db_engine_specs/clickhouse.py:201 msgid "Username" msgstr "Uporabniško ime" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:27 +msgid "" +"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" +" of data" +msgstr "" + #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:45 msgid "" "Uses a gauge to showcase progress of a metric towards a target. The " @@ -17808,9 +18030,9 @@ msgstr "Oblika zapisa vrednosti" msgid "Value is required" msgstr "Zahtevana je vrednost" -#: superset/reports/schemas.py:186 superset/reports/schemas.py:192 -#: superset/reports/schemas.py:198 superset/reports/schemas.py:280 -#: superset/reports/schemas.py:286 superset/reports/schemas.py:293 +#: superset/reports/schemas.py:190 superset/reports/schemas.py:195 +#: superset/reports/schemas.py:200 superset/reports/schemas.py:291 +#: superset/reports/schemas.py:296 superset/reports/schemas.py:302 msgid "Value must be greater than 0" msgstr "Vrednost mora biti večja od 0" @@ -17832,16 +18054,16 @@ msgstr "Vrednosti izbrane v drugih filtrih bodo vplivale na možnosti filtra" msgid "Vehicle Types" msgstr "Vrste vozil" -#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:252 +#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:251 msgid "Verbose Name" msgstr "Podrobno ime" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:503 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:539 #: superset-frontend/src/features/home/RightMenu.tsx:501 msgid "Version" msgstr "Verzija" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:509 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:545 msgid "Version number" msgstr "Številka verzije" @@ -17852,7 +18074,7 @@ msgstr "Številka verzije" msgid "Vertical" msgstr "Navpično" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:162 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 #, fuzzy msgid "Vertical (Left)" msgstr "Navpično" @@ -17881,7 +18103,7 @@ msgstr "Uredi podatkovni set" msgid "View all charts" msgstr "Pokaži vse grafikone" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:434 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 #, fuzzy msgid "View as table" msgstr "Shrani kot podatkovni set" @@ -17896,8 +18118,8 @@ msgstr "Ogled v SQL laboratoriju" msgid "View keys & indexes (%s)" msgstr "Ogled ključev in indeksov (%s)" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:415 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:417 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:424 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:426 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:394 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:396 msgid "View query" @@ -17918,8 +18140,8 @@ msgstr "Ogledane %s" msgid "Viewport" msgstr "Pogled" -#: superset-frontend/src/pages/DatasetList/index.tsx:342 -#: superset-frontend/src/pages/DatasetList/index.tsx:559 +#: superset-frontend/src/pages/DatasetList/index.tsx:353 +#: superset-frontend/src/pages/DatasetList/index.tsx:570 #, fuzzy msgid "Virtual" msgstr "virtualni" @@ -17928,22 +18150,22 @@ msgstr "virtualni" msgid "Virtual (SQL)" msgstr "Virtualen (SQL)" -#: superset-frontend/src/pages/DatasetList/index.tsx:281 +#: superset-frontend/src/pages/DatasetList/index.tsx:292 msgid "Virtual dataset" msgstr "Virtualen podatkovni set" -#: superset/connectors/sqla/models.py:960 superset/connectors/sqla/utils.py:111 -#: superset/models/helpers.py:1036 +#: superset/connectors/sqla/models.py:921 superset/connectors/sqla/utils.py:110 +#: superset/models/helpers.py:1079 msgid "Virtual dataset query cannot be empty" msgstr "Poizvedba na virtualnem podatkovnem setu ne sme biti prazna" -#: superset/connectors/sqla/models.py:963 superset/models/helpers.py:1039 +#: superset/connectors/sqla/models.py:924 superset/models/helpers.py:1082 msgid "Virtual dataset query cannot consist of multiple statements" msgstr "" "Poizvedba na virtualnem podatkovnem setu ne sme biti sestavljena iz več " "stavkov" -#: superset/connectors/sqla/models.py:928 superset/models/helpers.py:1062 +#: superset/connectors/sqla/models.py:889 superset/models/helpers.py:1105 msgid "Virtual dataset query must be read-only" msgstr "Poizvedba na virtualnem podatkovnem setu mora biti samo za branje" @@ -18105,7 +18327,7 @@ msgstr "" "Prikaže besede v stolpcu, glede na pogostost pojavljanja. Večja pisava " "pomeni večjo frekvenco." -#: superset/viz.py:141 +#: superset/viz.py:140 msgid "Viz is missing a datasource" msgstr "Vizualizaciji manjka podatkovni vir" @@ -18118,21 +18340,21 @@ msgstr "Tip omejitve" msgid "WED" msgstr "SRE" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:948 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1003 msgid "Want to add a new database?" msgstr "Želite dodati novo podatkovno bazo?" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1246 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:216 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:214 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 msgid "Warning" msgstr "Opozorilo" -#: superset/connectors/sqla/views.py:258 +#: superset/connectors/sqla/views.py:257 msgid "Warning Message" msgstr "Opozorilo" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:286 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 msgid "Warning!" msgstr "Opozorilo!" @@ -18149,13 +18371,13 @@ msgstr "" msgid "Was unable to check your query" msgstr "Poizvedbe ni bilo mogoče preveriti" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1468 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1523 msgid "" "We are unable to connect to your database. Click \"See more\" for " "database-provided information that may help troubleshoot the issue." msgstr "" -#: superset/db_engine_specs/bigquery.py:197 +#: superset/db_engine_specs/bigquery.py:198 #, python-format msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." msgstr "" @@ -18167,8 +18389,8 @@ msgstr "" msgid "We can't seem to resolve the column \"%(column_name)s\"" msgstr "Zdi se, da ni mogoče razrešiti stolpca \"%(column_name)s\"" -#: superset/db_engine_specs/postgres.py:153 -#: superset/db_engine_specs/presto.py:630 +#: superset/db_engine_specs/postgres.py:152 +#: superset/db_engine_specs/presto.py:657 #, python-format msgid "" "We can't seem to resolve the column \"%(column_name)s\" at line " @@ -18192,7 +18414,7 @@ msgid "" "dataset." msgstr "Prenos kontrolnikov pri preklopu na nov podatkovni set ni bil uspešen." -#: superset/db_engine_specs/redshift.py:90 +#: superset/db_engine_specs/redshift.py:94 #, python-format msgid "" "We were unable to connect to your database named \"%(database)s\". Please" @@ -18211,31 +18433,31 @@ msgstr "Mreža" msgid "Wednesday" msgstr "Sreda" -#: superset/db_engine_specs/base.py:107 +#: superset/db_engine_specs/base.py:108 msgid "Week" msgstr "Teden" -#: superset/db_engine_specs/base.py:113 +#: superset/db_engine_specs/base.py:114 msgid "Week ending Saturday" msgstr "Teden s koncem v soboto" -#: superset/db_engine_specs/base.py:112 +#: superset/db_engine_specs/base.py:113 msgid "Week starting Monday" msgstr "Teden z začetkom v ponedeljek" -#: superset/db_engine_specs/base.py:111 +#: superset/db_engine_specs/base.py:112 msgid "Week starting Sunday" msgstr "Teden z začetkom v nedeljo" -#: superset/db_engine_specs/base.py:114 +#: superset/db_engine_specs/base.py:115 msgid "Week_ending Sunday" msgstr "Teden s koncem v nedeljo" -#: superset-frontend/src/components/ReportModal/index.tsx:123 +#: superset-frontend/src/components/ReportModal/index.tsx:122 msgid "Weekly Report" msgstr "Tedensko poročilo" -#: superset-frontend/src/components/ReportModal/index.tsx:122 +#: superset-frontend/src/components/ReportModal/index.tsx:121 #, python-format msgid "Weekly Report for %s" msgstr "Tedensko poročilo za %s" @@ -18249,6 +18471,7 @@ msgstr "" msgid "Weeks %s" msgstr "Tedni %s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:49 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:77 msgid "Weight" @@ -18293,7 +18516,7 @@ msgstr[3] "" msgid "What should be shown on the label?" msgstr "Kaj bo prikazano na oznaki?" -#: superset/views/database/forms.py:165 +#: superset/views/database/forms.py:175 #, fuzzy msgid "What should happen if the table already exists" msgstr "Set filtrov z enakim imenom že obstaja" @@ -18323,7 +18546,7 @@ msgstr "" msgid "When checked, the map will zoom to your data after each query" msgstr "Če želite, da se zemljevid prilagodi vašim podatkom po vsaki poizvedbi" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:189 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 msgid "When enabled, users are able to visualize SQL Lab results in Explore." msgstr "" "Ko je omogočeno, lahko uporabniki prikazujejo rezultate SQL laboratorija " @@ -18360,11 +18583,11 @@ msgstr "" "tabele. Običajno je namen omejiti poizvedbo z uporabo filtra za relativni" " čas na particioniranem ali indeksiranem časovnem polju." -#: superset/viz.py:861 +#: superset/viz.py:891 msgid "When using 'Group By' you are limited to use a single metric" msgstr "Ko uporabljate 'Group By', ste omejeni na uporabo ene mere" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:74 msgid "When using other than adaptive formatting, labels may overlap" msgstr "" @@ -18376,13 +18599,13 @@ msgstr "Če uporabite to možnost, privzeta vrednost ne more biti nastavljena" msgid "Whether the progress bar overlaps when there are multiple groups of data" msgstr "Če želite prekrivanje območij, ko imate več skupin podatkov" -#: superset/connectors/sqla/views.py:455 +#: superset/connectors/sqla/views.py:362 msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" msgstr "" "Če želite, da je tabela ustvarjena s postopkom 'Vizualizacija' v SQL " "laboratoriju" -#: superset/connectors/sqla/views.py:111 +#: superset/connectors/sqla/views.py:110 msgid "" "Whether this column is exposed in the `Filters` section of the explore " "view." @@ -18436,7 +18659,7 @@ msgstr "" "Če želite omogočiti prikaz manjših stolpčnih grafikonov v ozadju stolpcev" " tabele" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 msgid "Whether to display a legend for the chart" msgstr "Če želite prikaz legende za grafikon" @@ -18470,14 +18693,14 @@ msgstr "" "Če želite prikazati oznake. Oznake so prikazane le pri vsaj 5-odstotnem " "pragu." -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:157 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:118 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:159 msgid "Whether to display the legend (toggles)" msgstr "Preklapljanje prikaza legende" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:181 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 msgid "Whether to display the metric name as a title" msgstr "Če želite prikazati ime mere kot naslov" @@ -18490,7 +18713,7 @@ msgstr "Če želite prikaz min. in max. vrednosti X-osi" msgid "Whether to display the min and max values of the Y-axis" msgstr "Če želite prikaz min. in max. vrednosti Y-osi" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:167 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:187 msgid "Whether to display the numerical values within the cells" @@ -18555,7 +18778,7 @@ msgstr "Če želite kumulativni histogram" msgid "Whether to make the histogram cumulative" msgstr "Če želite kumulativni histogram" -#: superset/connectors/sqla/views.py:106 +#: superset/connectors/sqla/views.py:105 msgid "" "Whether to make this column available as a [Time Granularity] option, " "column has to be DATETIME or DATETIME-like" @@ -18571,7 +18794,7 @@ msgstr "Če želite normirati histogram" msgid "Whether to populate autocomplete filters options" msgstr "Če želite napolniti možnosti za samodokončanje filtrov" -#: superset/connectors/sqla/views.py:450 +#: superset/connectors/sqla/views.py:357 msgid "" "Whether to populate the filter's dropdown in the explore view's filter " "section with a list of distinct values fetched from the backend on the " @@ -18605,7 +18828,8 @@ msgstr "Prikaži merilno območje števčnega grafikona" msgid "Whether to show the split lines on the axis" msgstr "Če želite prikazati razdelitvene črte na osi" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:124 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:143 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:174 #, fuzzy msgid "Whether to sort ascending or descending on the base Axis." msgstr "Če želite prikaz manjših oznak na osi" @@ -18638,7 +18862,7 @@ msgstr "" msgid "Whether to sort results by the selected metric in descending order." msgstr "Če želite padajoče razvrstiti rezultate z izbrano mero." -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:207 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 msgid "Whether to sort tooltip by the selected metric in descending order." msgstr "Če želite padajoče razvrstiti opis orodja z izbrano mero." @@ -18704,7 +18928,7 @@ msgid "Working timeout" msgstr "Pretek delovanja" #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 -#: superset/viz.py:2079 +#: superset/viz.py:2006 msgid "World Map" msgstr "Zemljevid sveta" @@ -18717,12 +18941,12 @@ msgstr "Dodajte opis vaše poizvedbe" msgid "Write a handlebars template to render the data" msgstr "Predloga za Handlebars, ki je uporabljena za podatke" -#: superset/views/database/forms.py:219 +#: superset/views/database/forms.py:229 #, fuzzy msgid "Write dataframe index as a column" msgstr "Zapiši indeks dataframe-a kot stolpec." -#: superset/views/database/forms.py:380 superset/views/database/forms.py:471 +#: superset/views/database/forms.py:390 superset/views/database/forms.py:481 msgid "Write dataframe index as a column." msgstr "Zapiši indeks dataframe-a kot stolpec." @@ -18780,12 +19004,14 @@ msgstr "Postavitev oznak na X-osi" msgid "X bounds" msgstr "Meje X-osi" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:122 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:141 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:172 #, fuzzy msgid "X-Axis Sort Ascending" msgstr "Razvrsti naraščajoče" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:69 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:156 msgid "X-Axis Sort By" msgstr "" @@ -18844,7 +19070,6 @@ msgid "Y Axis 2 Bounds" msgstr "Meje Y 2-osi" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:260 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:248 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:192 @@ -18883,12 +19108,14 @@ msgstr "Logaritemska Y-os" msgid "Y bounds" msgstr "Y meje" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:121 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:140 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:171 #, fuzzy msgid "Y-Axis Sort Ascending" msgstr "Razvrsti naraščajoče" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:68 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 msgid "Y-Axis Sort By" msgstr "" @@ -18906,7 +19133,7 @@ msgstr "Meje osi" msgid "YScale Interval" msgstr "Interval Y-osi" -#: superset/db_engine_specs/base.py:110 +#: superset/db_engine_specs/base.py:111 msgid "Year" msgstr "Leto" @@ -18931,9 +19158,9 @@ msgstr "Leta %s" #: superset-frontend/src/pages/ChartList/index.tsx:707 #: superset-frontend/src/pages/DashboardList/index.tsx:506 #: superset-frontend/src/pages/DashboardList/index.tsx:588 -#: superset-frontend/src/pages/DatabaseList/index.tsx:467 -#: superset-frontend/src/pages/DatabaseList/index.tsx:487 -#: superset-frontend/src/pages/DatasetList/index.tsx:572 +#: superset-frontend/src/pages/DatabaseList/index.tsx:478 +#: superset-frontend/src/pages/DatabaseList/index.tsx:498 +#: superset-frontend/src/pages/DatasetList/index.tsx:583 msgid "Yes" msgstr "Da" @@ -18965,7 +19192,7 @@ msgstr "" "Uvažate eno ali več nadzornih plošč, ki že obstajajo. S prepisom lahko " "izgubite podatke. Ali ste prepričani, da želite prepisati?" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1394 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1449 msgid "" "You are importing one or more databases that already exist. Overwriting " "might cause you to lose some of your work. Are you sure you want to " @@ -18992,7 +19219,7 @@ msgstr "" "Uvažate eno ali več shranjenih poizvedb, ki že obstajajo. S prepisom " "lahko izgubite podatke. Ali ste prepričani, da želite prepisati?" -#: superset/views/core.py:2177 +#: superset/views/core.py:2213 msgid "" "You are not authorized to see this query. If you think this is an error, " "please reach out to your administrator." @@ -19012,7 +19239,7 @@ msgstr "Lahko dodate elemente v" msgid "You can add the components in the edit mode." msgstr "Elemente lahko dodate v načinu urejanja." -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:127 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:157 msgid "You can also just click on the chart to apply cross-filter." msgstr "" @@ -19035,7 +19262,7 @@ msgstr "Ustvarite lahko nove grafikone ali uporabite obstoječe iz panela na des msgid "You can preview the list of dashboards in the chart settings dropdown." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:148 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:178 #, fuzzy msgid "You can't apply cross-filter on this data point." msgstr "Nimate dostopa do tega podatkovnega seta." @@ -19052,7 +19279,7 @@ msgstr "" "Skupaj s filtriranjem časovnega obdobja ne morete uporabiti oznak pod 45°" " kotom" -#: superset/viz.py:723 +#: superset/viz.py:748 msgid "" "You cannot use [Columns] in combination with [Group " "By]/[Metrics]/[Percentage Metrics]. Please choose one or the other." @@ -19070,7 +19297,7 @@ msgid "You do not have permission to edit this chart" msgstr "Nimate dovoljenja za urejanje tega grafikona" #: superset-frontend/src/components/Tags/utils.tsx:69 -#: superset-frontend/src/dashboard/actions/dashboardState.js:366 +#: superset-frontend/src/dashboard/actions/dashboardState.js:368 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:134 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:40 @@ -19082,7 +19309,7 @@ msgstr "Nimate dovoljenja za urejanje te nadzorne plošče" msgid "You do not have permissions to access the datasource(s): %(name)s." msgstr "Nimate dovoljenj za dostop do podatkovnih virov: %(name)s." -#: superset-frontend/src/dashboard/actions/dashboardState.js:162 +#: superset-frontend/src/dashboard/actions/dashboardState.js:160 msgid "You do not have permissions to edit this dashboard." msgstr "Nimate dovoljenj za urejanje te nadzorne plošče." @@ -19094,7 +19321,7 @@ msgstr "Nimate dostopa do tega grafikona." msgid "You don't have access to this dashboard." msgstr "Nimate dostopa do te nadzorne plošče." -#: superset/datasets/commands/exceptions.py:189 +#: superset/datasets/commands/exceptions.py:206 msgid "You don't have access to this dataset." msgstr "Nimate dostopa do tega podatkovnega seta." @@ -19111,17 +19338,17 @@ msgstr "Priljubljenih še niste izbrali!" msgid "You don't have permission to modify the value." msgstr "Nimate dovoljenja za spreminjanje vrednosti." -#: superset/security/manager.py:2267 +#: superset/security/manager.py:2262 #, fuzzy, python-format msgid "You don't have the rights to alter %(resource)s" msgstr "Nimate pravic za spreminjanje tega naslova." -#: superset/views/core.py:923 +#: superset/views/core.py:945 #, fuzzy msgid "You don't have the rights to alter this chart" msgstr "Nimate pravic za spreminjanje tega naslova." -#: superset/views/core.py:1097 +#: superset/views/core.py:1119 #, fuzzy msgid "You don't have the rights to alter this dashboard" msgstr "Nimate pravic za spreminjanje tega naslova." @@ -19130,22 +19357,22 @@ msgstr "Nimate pravic za spreminjanje tega naslova." msgid "You don't have the rights to alter this title." msgstr "Nimate pravic za spreminjanje tega naslova." -#: superset/views/core.py:929 +#: superset/views/core.py:951 #, fuzzy msgid "You don't have the rights to create a chart" msgstr "Nimate pravic za " -#: superset/views/core.py:1113 +#: superset/views/core.py:1135 #, fuzzy msgid "You don't have the rights to create a dashboard" msgstr "Nimate pravic za " -#: superset/views/core.py:644 +#: superset/views/core.py:649 #, fuzzy msgid "You don't have the rights to download as csv" msgstr "Nimate pravic za " -#: superset/views/core.py:424 +#: superset/views/core.py:425 msgid "You have no permission to approve this request" msgstr "Nimate dovoljenja za odobritev te zahteve" @@ -19157,7 +19384,7 @@ msgstr "Odstranili ste ta filter." msgid "You have unsaved changes." msgstr "Imate neshranjene spremembe." -#: superset-frontend/src/dashboard/actions/dashboardState.js:652 +#: superset-frontend/src/dashboard/actions/dashboardState.js:650 #, python-format msgid "" "You have used all %(historyLength)s undo slots and will not be able to " @@ -19166,7 +19393,7 @@ msgid "" msgstr "" #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:300 -#: superset-frontend/src/pages/DatasetList/index.tsx:453 +#: superset-frontend/src/pages/DatasetList/index.tsx:464 msgid "" "You must be a dataset owner in order to edit. Please reach out to a " "dataset owner to request modifications or edit access." @@ -19178,7 +19405,7 @@ msgstr "" msgid "You must pick a name for the new dashboard" msgstr "Izbrati morate ime nove nadzorne plošče" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:525 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:519 msgid "You must run the query successfully first" msgstr "Najprej morate uspešno izvesti poizvedbo" @@ -19186,7 +19413,7 @@ msgstr "Najprej morate uspešno izvesti poizvedbo" msgid "You need to configure HTML sanitization to use CSS" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:350 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 msgid "" "You updated the values in the control panel, but the chart was not " "updated automatically. Run the query by clicking on the \"Update chart\" " @@ -19204,7 +19431,7 @@ msgstr "" "Spremenili ste podatkovne sete. Vsi kontrolniki nad podatki (stolpci, " "mere), ki se ujemajo z novim podatkovnim setom, se bodo ohranili." -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:343 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 msgid "Your chart is not up to date" msgstr "Grafikon ni aktualen" @@ -19216,7 +19443,7 @@ msgstr "Grafikon je pripravljen!" msgid "Your dashboard is too large. Please reduce its size before saving it." msgstr "Vaša nadzorna plošča je prevelika. Pred shranjevanjem jo zmanjšajte." -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1036 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1028 msgid "Your query could not be saved" msgstr "Vaše poizvedbe ni mogoče shraniti" @@ -19224,7 +19451,7 @@ msgstr "Vaše poizvedbe ni mogoče shraniti" msgid "Your query could not be scheduled" msgstr "Vaše poizvedbe ni mogoče uvrstiti v urnik" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1071 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1063 msgid "Your query could not be updated" msgstr "Vaše poizvedbe ni mogoče posodobiti" @@ -19236,15 +19463,15 @@ msgstr "" "Vaša poizvedba je v urniku. Za ogled podrobnosti poizvedbe pojdite na " "shranjene poizvedbe" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1051 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 msgid "Your query was not properly saved" msgstr "Vaša poizvedba ni bila pravilno shranjena" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1054 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1046 msgid "Your query was saved" msgstr "Vaša poizvedba je shranjena" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1067 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1059 msgid "Your query was updated" msgstr "Vaša poizvedba je posodobljena" @@ -19266,21 +19493,21 @@ msgstr "Povečava" msgid "Zoom level of the map" msgstr "Stopnja povečave zemljevida" -#: superset-frontend/src/dashboard/actions/dashboardState.js:262 +#: superset-frontend/src/dashboard/actions/dashboardState.js:260 msgid "[ untitled dashboard ]" msgstr "[ neimenovana nadzorna plošča ]" -#: superset/viz.py:2386 +#: superset/viz.py:2323 msgid "[Longitude] and [Latitude] columns must be present in [Group By]" msgstr "" "Stolpca [Zemljepisna dolžina] in [Zemljepisna širina] morata biti " "prisotna v [Združevanje]" -#: superset/viz.py:2336 +#: superset/viz.py:2273 msgid "[Longitude] and [Latitude] must be set" msgstr "[Zemljepisna dolžina] in [Zemljepisna širina] morata biti nastavljeni" -#: superset/explore/commands/get.py:121 superset/views/core.py:870 +#: superset/explore/commands/get.py:121 superset/views/core.py:892 msgid "[Missing Dataset]" msgstr "[Manjka podatkovni set]" @@ -19293,7 +19520,7 @@ msgstr "[Superset] dostop do podatkovnega vira %(name)s je odobren" msgid "[Untitled]" msgstr "[Neimenovana]" -#: superset/connectors/base/models.py:252 superset/models/sql_lab.py:228 +#: superset/connectors/base/models.py:262 superset/models/sql_lab.py:216 #, fuzzy msgid "[asc]" msgstr "Osnovno" @@ -19307,7 +19534,7 @@ msgstr "Kopiraj" msgid "[dashboard name]" msgstr "[ime nadzorne plošče]" -#: superset/connectors/base/models.py:255 superset/models/sql_lab.py:231 +#: superset/connectors/base/models.py:265 superset/models/sql_lab.py:219 msgid "[desc]" msgstr "" @@ -19333,7 +19560,7 @@ msgstr "`compare_columns` morajo imeti enako dolžino kot `source_columns`." msgid "`compare_type` must be `difference`, `percentage` or `ratio`" msgstr "`compare_type` mora biti `difference`, `percentage` ali `ratio`" -#: superset/charts/schemas.py:573 +#: superset/charts/schemas.py:654 msgid "`confidence_interval` must be between 0 and 1 (exclusive)" msgstr "`confidence_interval` mora biti med 0 in 1 (odprt)" @@ -19360,15 +19587,15 @@ msgstr "Knjižnica `prophet` ni nameščena" msgid "`rename_columns` must have the same length as `columns`." msgstr "`rename_columns` morajo imeti enako dolžino kot `columns`." -#: superset/charts/schemas.py:1114 +#: superset/charts/schemas.py:1284 msgid "`row_limit` must be greater than or equal to 0" msgstr "`row_limit` mora biti večja ali enaka 0" -#: superset/charts/schemas.py:1121 +#: superset/charts/schemas.py:1291 msgid "`row_offset` must be greater than or equal to 0" msgstr "`row_offset` mora biti večja ali enaka 1" -#: superset/charts/schemas.py:972 +#: superset/charts/schemas.py:1108 msgid "`width` must be greater or equal to 0" msgstr "`width` mora biti večja ali enaka 0" @@ -19376,10 +19603,16 @@ msgstr "`width` mora biti večja ali enaka 0" msgid "aggregate" msgstr "agregacija" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 #: superset-frontend/src/pages/AlertReportList/index.tsx:110 msgid "alert" msgstr "opozorilo" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 +#, fuzzy +msgid "alert dark" +msgstr "opozorilo" + #: superset-frontend/src/pages/AlertReportList/index.tsx:111 msgid "alerts" msgstr "opozorila" @@ -19521,7 +19754,7 @@ msgid "clear all filters" msgstr "počisti vse filtre" #: superset-frontend/src/components/Chart/Chart.jsx:290 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:354 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 msgid "click here" msgstr "kliknite tukaj" @@ -19551,7 +19784,7 @@ msgstr "" msgid "count" msgstr "število" -#: superset-frontend/src/explore/components/SaveModal.tsx:365 +#: superset-frontend/src/explore/components/SaveModal.tsx:400 #, fuzzy msgid "create" msgstr "Ustvari" @@ -19597,16 +19830,16 @@ msgid "dashboards" msgstr "nadzorne plošče" #: superset-frontend/src/features/databases/DatabaseModal/index.tsx:543 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:712 -#: superset-frontend/src/pages/DatabaseList/index.tsx:91 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:729 +#: superset-frontend/src/pages/DatabaseList/index.tsx:102 msgid "database" msgstr "podatkovna baza" #: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 #: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 #: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 -#: superset-frontend/src/pages/DatasetList/index.tsx:148 -#: superset-frontend/src/pages/DatasetList/index.tsx:822 +#: superset-frontend/src/pages/DatasetList/index.tsx:159 +#: superset-frontend/src/pages/DatasetList/index.tsx:844 msgid "dataset" msgstr "podatkovni set" @@ -19619,8 +19852,8 @@ msgstr "Ime podatkovnega seta" msgid "date" msgstr "datum" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 msgid "day" msgstr "dan" @@ -19649,6 +19882,11 @@ msgstr "deck.gl - GeoJson grafikon" msgid "deck.gl Grid" msgstr "deck.gl - grafikon mreže" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:30 +#, fuzzy +msgid "deck.gl Heatmap" +msgstr "grafikoni deck.gl" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:28 msgid "deck.gl Multiple Layers" msgstr "deck.gl - večplastni grafikon" @@ -19677,6 +19915,7 @@ msgstr "grafikoni deck.gl" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:34 @@ -19762,11 +20001,11 @@ msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:112 #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:657 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:674 msgid "e.g. world_population" msgstr "npr. world_population" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:655 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:672 msgid "e.g. xy12345.us-east-2.aws" msgstr "" @@ -19783,7 +20022,16 @@ msgstr "načinu urejanja" msgid "entries" msgstr "poizvedbe" -#: superset/connectors/sqla/models.py:1537 superset/models/helpers.py:1742 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +#, fuzzy +msgid "error" +msgstr "Napaka" + +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 +msgid "error dark" +msgstr "" + +#: superset/models/helpers.py:1803 msgid "error_message" msgstr "error_message" @@ -19870,10 +20118,6 @@ msgstr "ikona funkcijskega tipa" msgid "geohash (square)" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 -msgid "green" -msgstr "zelena" - #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:168 #, fuzzy msgid "heatmap" @@ -19887,13 +20131,13 @@ msgstr "" #: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:125 #: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1800 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1856 msgid "here" msgstr "tukaj" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 msgid "hour" msgstr "ura" @@ -19933,7 +20177,7 @@ msgstr "pričakovano je celo število" msgid "joined" msgstr "pridružen" -#: superset/views/base.py:595 +#: superset/views/base.py:596 msgid "json isn't valid" msgstr "json ni veljaven" @@ -19993,7 +20237,7 @@ msgstr "Počisti" msgid "log" msgstr "dnevnik" -#: superset/charts/schemas.py:645 +#: superset/charts/schemas.py:735 msgid "" "lower percentile must be greater than 0 and less than 100. Must be lower " "than upper percentile." @@ -20002,7 +20246,6 @@ msgstr "" "manjši od zgornjega percentila." #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:189 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:58 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 #: superset-frontend/src/filters/components/Range/buildQuery.ts:69 #, fuzzy @@ -20012,9 +20255,9 @@ msgstr "Max" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:187 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:254 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:56 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:136 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:119 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:403 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:531 @@ -20033,15 +20276,14 @@ msgstr "Domena" msgid "median" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:60 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:62 #: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 #, fuzzy msgid "metric" msgstr "Mera" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:188 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:57 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 #: superset-frontend/src/filters/components/Range/buildQuery.ts:58 #, fuzzy @@ -20062,8 +20304,8 @@ msgid "monotone" msgstr "Zglajena črta" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 #: superset-frontend/src/explore/controls.jsx:267 msgid "month" @@ -20074,7 +20316,7 @@ msgid "more than {max} {name}" msgstr "" #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:53 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:78 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:77 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:116 msgid "must have a value" msgstr "mora imeti vrednost" @@ -20140,7 +20382,7 @@ msgstr "ura" msgid "or use existing ones from the panel on the right" msgstr "ali uporabite obstoječe iz panela na desni" -#: superset/charts/schemas.py:1143 +#: superset/charts/schemas.py:1313 msgid "orderby column must be populated" msgstr "stolpec za razvrščanje (orderby) mora biti izpolnjen" @@ -20200,7 +20442,7 @@ msgstr "" "percentili morajo biti tipa list ali tuple z vsaj dvema numeričnima " "vrednostma, pri čemer je prva manjša od druge" -#: superset/views/core.py:1921 +#: superset/views/core.py:1958 msgid "permalink state not found" msgstr "stanje povezave ni najdeno" @@ -20256,11 +20498,7 @@ msgstr "nedavne" msgid "recents" msgstr "nedavne" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 -msgid "red" -msgstr "rdeča" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:563 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:566 #: superset-frontend/src/pages/AlertReportList/index.tsx:110 msgid "report" msgstr "poročilo" @@ -20272,7 +20510,7 @@ msgstr "poročilo" msgid "reports" msgstr "poročila" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:491 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:522 msgid "restore zoom" msgstr "ponastavi prikaz" @@ -20281,6 +20519,11 @@ msgstr "ponastavi prikaz" msgid "right" msgstr "desno" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:139 +#, fuzzy +msgid "rowlevelsecurity" +msgstr "Varnost na nivoju vrstic" + #: superset-frontend/src/SqlLab/constants.ts:36 #: superset-frontend/src/SqlLab/constants.ts:52 #, fuzzy @@ -20335,7 +20578,6 @@ msgstr "Ni sproženo" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:190 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:59 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:138 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:405 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:185 @@ -20369,16 +20611,22 @@ msgstr "ikona znakovnega tipa" #: superset-frontend/src/SqlLab/constants.ts:38 #: superset-frontend/src/SqlLab/constants.ts:50 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 #, fuzzy msgid "success" msgstr "Uspelo" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +#, fuzzy +msgid "success dark" +msgstr "Uspelo" + #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:186 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:255 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:378 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:55 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:260 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:532 @@ -20424,7 +20672,7 @@ msgstr "Povrni?" msgid "unknown type icon" msgstr "ikona neznanega tipa" -#: superset/charts/schemas.py:660 +#: superset/charts/schemas.py:750 msgid "" "upper percentile must be greater than 0 and less than 100. Must be higher" " than lower percentile." @@ -20448,7 +20696,6 @@ msgid "value descending" msgstr "9 - 0" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:60 #, fuzzy msgid "var" msgstr "Stolpec" @@ -20472,13 +20719,13 @@ msgstr "virtualni" msgid "viz type" msgstr "Tip omejitve" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:451 msgid "was created" msgstr "ustvarjeno" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:62 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 #: superset-frontend/src/explore/controls.jsx:264 msgid "week" @@ -20513,16 +20760,12 @@ msgid "y: values are normalized within each row" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 #: superset-frontend/src/explore/controls.jsx:269 msgid "year" msgstr "leto" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 -msgid "yellow" -msgstr "rumena" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:490 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:521 msgid "zoom area" msgstr "" diff --git a/superset/translations/zh/LC_MESSAGES/messages.json b/superset/translations/zh/LC_MESSAGES/messages.json index 8294149cdd..917f77895a 100644 --- a/superset/translations/zh/LC_MESSAGES/messages.json +++ b/superset/translations/zh/LC_MESSAGES/messages.json @@ -137,6 +137,9 @@ "应作为日期解析的列的逗号分隔列表。" ], "A database with the same name already exists.": ["已存在同名的数据库。"], + "A dictionary with column names and their data types if you need to change the defaults. Example: {\"user_id\":\"integer\"}": [ + "" + ], "A full URL pointing to the location of the built plugin (could be hosted on a CDN for example)": [ "指向内置插件位置的完整URL(例如,可以托管在CDN上)" ], @@ -201,7 +204,6 @@ "Add Log": ["新增日志"], "Add Metric": ["添加指标"], "Add Report": ["添加报告"], - "Add Row level security filter": ["添加行级安全过滤"], "Add Saved Query": ["添加保存的查询"], "Add a Plugin": ["添加插件"], "Add a new tab": ["添加新的标签页"], @@ -214,6 +216,7 @@ "Add calculated temporal columns to dataset in \"Edit datasource\" modal": [ "" ], + "Add custom scoping": [""], "Add delivery method": ["添加通知方法"], "Add filter": ["增加过滤条件"], "Add filter clauses to control the filter's source query,\n though only in the context of the autocomplete i.e., these conditions\n do not impact how the filter is applied to the dashboard. This is useful\n when you want to improve the query's performance by only scanning a subset\n of the underlying data or limit the available values displayed in the filter.": [ @@ -292,6 +295,7 @@ "All": ["所有"], "All Text": ["所有文本"], "All charts": ["所有图表"], + "All charts/global scoping": [""], "All filters": ["所有过滤"], "All filters (%(filterCount)d)": ["所有过滤(%(filterCount)d)"], "All panels": ["应用于所有面板"], @@ -789,7 +793,6 @@ "Choose a source": ["选择一个源"], "Choose a source and a target": ["选择一个源和一个目标"], "Choose a target": ["选择一个目标"], - "Choose a unique name": [""], "Choose chart type": ["选择图表类型"], "Choose one of the available databases from the panel on the left.": [ "从左侧的面板中选择一个可用的数据库" @@ -894,7 +897,6 @@ "Columns to group by": ["需要进行分组的一列或多列"], "Columns to group by on the columns": ["必须是分组列"], "Columns to group by on the rows": ["行上分组所依据的列"], - "Combine Metrics": ["整合指标"], "Combine metrics": ["整合指标"], "Comma-separated color picks for the intervals, e.g. 1,2,4. Integers denote colors from the chosen color scheme and are 1-indexed. Length must be matching that of interval bounds.": [ "间隔的逗号分隔色选项,例如1、2、4。整数表示所选配色方案中的颜色,并以1为索引。长度必须与间隔界限匹配。" @@ -996,6 +998,7 @@ "无法加载数据库驱动程序:%(driver_name)s" ], "Could not load database driver: {}": ["无法加载数据库驱动程序:{}"], + "Could not resolve hostname: \"%(host)s\".": [""], "Count as Fraction of Columns": [""], "Count as Fraction of Rows": [""], "Count as Fraction of Total": [""], @@ -1168,6 +1171,7 @@ ], "December": ["十二月"], "Decides which column to sort the base axis by.": [""], + "Decides which measure to sort the base axis by.": [""], "Decimal Character": ["十进制字符"], "Deck.gl - 3D Grid": ["Deck.gl - 3D网格"], "Deck.gl - 3D HEX": ["Deck.gl - 3D六角曲面"], @@ -1289,7 +1293,6 @@ "在每个列中并排显示指标,而不是每个指标并排显示每个列。" ], "Display row level total": ["显示行级合计"], - "Display total row/column": ["显示总行 / 列"], "Displays connections between entities in a graph structure. Useful for mapping relationships and showing which nodes are important in a network. Graph charts can be configured to be force-directed or circulate. If your data has a geospatial component, try the deck.gl Arc chart.": [ "显示图形结构中实体之间的连接。用于映射关系和显示网络中哪些节点是重要的。图表可以配置为强制引导或循环。如果您的数据具有地理空间组件,请尝试使用deck.gl圆弧图表。" ], @@ -1328,10 +1331,7 @@ "" ], "Drill to detail: %s": [""], - "Drop columns here": ["将列拖放到此处"], - "Drop columns or metrics here": ["将列或指标拖放到此处"], "Drop columns/metrics here or click": ["将列/指标拖放到此处或单击"], - "Drop temporal column here": ["将时间列拖放到此处"], "Dual Line Chart": ["双线图"], "Duplicate column name(s): %(columns)s": ["重复的列名%(columns)s"], "Duplicate column/metric labels: %(labels)s. Please make sure all columns and metrics have a unique label.": [ @@ -1381,7 +1381,6 @@ "Edit Metric": ["编辑指标"], "Edit Plugin": ["编辑插件"], "Edit Report": ["编辑报表"], - "Edit Row level security filter": ["编辑行级安全过滤"], "Edit Saved Query": ["编辑保存的查询"], "Edit Table": ["编辑表"], "Edit annotation": ["编辑注释"], @@ -1561,8 +1560,10 @@ "Failed at stopping query. %s": ["停止查询失败。 %s"], "Failed to create report": [""], "Failed to execute %(query)s": [""], + "Failed to generate chart edit URL": [""], "Failed to load chart data": [""], "Failed to load chart data.": [""], + "Failed to load dimensions for drill by": [""], "Failed to start remote query on a worker.": ["无法启动远程查询"], "Failed to update report": [""], "Failed to verify select options: %s": ["验证选择选项失败:%s"], @@ -1587,7 +1588,6 @@ "Filter": ["过滤器"], "Filter List": ["过滤"], "Filter Type": ["过滤类型"], - "Filter box": ["过滤器"], "Filter configuration": ["过滤配置"], "Filter configuration for the filter box": ["过滤条件的过滤配置"], "Filter has default value": ["过滤器默认值"], @@ -1687,7 +1687,6 @@ "Gravity": ["重力"], "Group By": ["分组"], "Group By filter plugin": ["分组过滤插件"], - "Group By' and 'Columns' can't overlap": ["“Group by”列和字段不能重叠"], "Group By, Metrics or Percentage Metrics must have a value": [ "分组、指标或百分比指标必须具有值" ], @@ -1797,6 +1796,10 @@ ], "Instant filtering": ["即时过滤"], "Intensity": ["强度"], + "Intensity Radius is the radius at which the weight is distributed": [""], + "Intensity is the value multiplied by the weight to obtain the final weight": [ + "" + ], "Interval End column": ["间隔结束列"], "Interval bounds": ["区间间隔"], "Interval colors": ["间隔颜色"], @@ -1829,6 +1832,7 @@ "%(rolling_type)s 的选项无效:%(options)s" ], "Invalid permalink key": [""], + "Invalid reference to column: \"%(column)s\"": [""], "Invalid result type: %(result_type)s": [ "无效的结果类型:%(result_type)s" ], @@ -2162,7 +2166,6 @@ "No data in file": ["文件中无数据"], "No databases match your search": ["没有与您的搜索匹配的数据库"], "No description available.": ["没有可用的描述"], - "No dimensions available for drill by": [""], "No favorite charts yet, go click on stars!": [ "暂无收藏的图表,去点击星星吧!" ], @@ -2315,7 +2318,6 @@ ], "Optional name of the data column.": ["数据列的可选名称"], "Optional warning about use of this metric": ["关于使用此指标的可选警告"], - "Optionally add a detailed description": [""], "Options": ["设置"], "Or choose from a list of other databases we support:": [ "或者从我们支持的其他数据库列表中选择:" @@ -2428,9 +2430,7 @@ "Pie Chart": ["饼图"], "Pie shape": ["饼图形状"], "Pin": ["Pin"], - "Pivot Options": ["透视表选项"], "Pivot Table": ["透视表"], - "Pivot Table (legacy)": [""], "Pivot operation must include at least one aggregate": [ "数据透视操作必须至少包含一个聚合" ], @@ -2452,7 +2452,6 @@ "Please check your query for syntax errors near \"%(server_error)s\". Then, try running your query again.": [ "请检查查询中\"%(server_error)s\"附近的语法错误然后,再次尝试运行查询" ], - "Please choose at least one metric": ["请至少选择一个指标"], "Please choose different metrics on left and right axis": [ "请在左右轴上选择不同的指标" ], @@ -2497,6 +2496,7 @@ "Port %(port)s on hostname \"%(hostname)s\" refused the connection.": [ "主机名 \"%(hostname)s\" 上的端口 %(port)s 拒绝连接。" ], + "Port out of range 0-65535": [""], "Position JSON": ["位置JSON"], "Position of child node label on tree": ["子节点标签在树上的位置"], "Position of column level subtotal": ["列级小计的位置"], @@ -2612,9 +2612,6 @@ "Refresh frequency": ["刷新频率"], "Refresh interval": ["刷新间隔"], "Refresh the default values": ["刷新默认值"], - "Regular filters add where clauses to queries if a user belongs to a role referenced in the filter. Base filters apply filters to all queries except the roles defined in the filter, and can be used to define what users can see if no RLS filters within a filter group apply to them.": [ - "常规过滤将where子句添加到查询中,以确定用户是否属于过滤中引用的角色。基本过滤将应用于除过滤中定义的角色之外的所有查询,并且可以用于定义在没有应用RLS过滤组的情况下,哪些用户可以看到内容。" - ], "Relational": ["执行时间"], "Relationships between community channels": ["社区渠道之间的关系"], "Relative Date/Time": ["相对日期/时间"], @@ -2716,13 +2713,13 @@ "Row containing the headers to use as column names (0 is first line of data). Leave empty if there is no header row.": [ "作为列名的带有标题的行(0是第一行数据)。如果没有标题行则留空。" ], - "Row level security filter": ["行级安全过滤"], "Row limit": ["行限制"], "Rows": ["行"], "Rows per page, 0 means no pagination": ["每页行数,0 表示没有分页"], "Rows subtotal position": ["行小计的位置"], "Rows to Read": ["读取的行"], "Rule": ["规则"], + "Rule added": [""], "Run": ["执行"], "Run in SQL Lab": ["在 SQL 工具箱中执行"], "Run query": ["运行查询"], @@ -2860,6 +2857,12 @@ "Select scheme": ["选择表"], "Select start and end date": ["选择开始和结束时间"], "Select subject": ["选择主题"], + "Select the charts to which you want to apply cross-filters in this dashboard. Deselecting a chart will exclude it from being filtered when applying cross-filters from any chart on the dashboard. You can select \"All charts\" to apply cross-filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" + ], + "Select the charts to which you want to apply cross-filters when interacting with this chart. You can select \"All charts\" to apply filters to all charts that use the same dataset or contain the same column name in the dashboard.": [ + "" + ], "Select the number of bins for the histogram": ["选择直方图的容器数"], "Select the numeric columns to draw the histogram": [ "选择直方图的容器数" @@ -2923,7 +2926,6 @@ "Show Metric": ["显示指标"], "Show Metric Names": ["显示指标名"], "Show Range Filter": ["显示范围过滤器"], - "Show Row level security filter": ["显示行级安全过滤"], "Show Saved Query": ["显示保存的查询"], "Show Table": ["显示表"], "Show Timestamp": ["显示时间戳"], @@ -3133,13 +3135,15 @@ "Superset encountered an unexpected error.": ["报告计划意外错误。"], "Supported databases": ["已支持数据库"], "Survey Responses": ["调查结果"], - "Swap Groups and Columns": ["交换组和列"], "Swap rows and columns": ["交换组和列"], "Symbol": ["符号"], "Symbol of two ends of edge line": ["边线两端的符号"], "Symbol size": ["符号的大小"], "Sync columns from source": ["从源同步列"], "Syntax": ["语法"], + "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s": [ + "" + ], "TABLES": ["表"], "THU": ["星期四"], "TUE": ["星期二"], @@ -3457,6 +3461,9 @@ "指定点半径的度量单位" ], "The user seems to have been deleted": ["用户已经被删除"], + "The user/password combination is not valid (Incorrect password for user).": [ + "" + ], "The username \"%(username)s\" does not exist.": [ "指标 '%(username)s' 不存在" ], @@ -3567,7 +3574,7 @@ "This can be either an IP address (e.g. 127.0.0.1) or a domain name (e.g. mydatabase.com).": [ "这可以是一个IP地址(例如127.0.0.1)或一个域名(例如127.0.0.1)" ], - "This chart emits/applies cross-filters to other charts that use the same dataset": [ + "This chart applies cross-filters to charts whose datasets contain columns with the same name.": [ "" ], "This chart has been moved to a different filter scope.": [ @@ -3774,7 +3781,6 @@ "Track job": ["跟踪任务"], "Transformable": ["转换"], "Transparent": ["透明"], - "Transpose Pivot": ["转置透视图"], "Transpose pivot": ["转置透视图"], "Tree Chart": ["树状图"], "Tree layout": ["布局"], @@ -3824,6 +3830,8 @@ "" ], "Unable to create chart without a query id.": [""], + "Unable to decode value": [""], + "Unable to encode value": [""], "Unable to find such a holiday: [%(holiday)s]": [ "找不到这样的假期:[{}]" ], @@ -3930,9 +3938,6 @@ "Used internally to identify the plugin. Should be set to the package name from the pluginʼs package.json": [ "在内部用于标识插件。应该在插件的 package.json 内被设置为包名。" ], - "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location.\n\n This chart is being deprecated and we recommend checking out Pivot Table V2 instead!": [ - "用于通过将多个统计数据分组来总结一组数据" - ], "Used to summarize a set of data by grouping together multiple statistics along two axes. Examples: Sales numbers by region and month, tasks by status and assignee, active users by age and location. Not the most visually stunning visualization, but highly informative and versatile.": [ "用于通过将多个统计信息分组在一起来汇总一组数据" ], @@ -3947,6 +3952,9 @@ ], "User query": ["用户查询"], "Username": ["用户名"], + "Uses Gaussian Kernel Density Estimation to visualize spatial distribution of data": [ + "" + ], "Uses a gauge to showcase progress of a metric towards a target. The position of the dial represents the progress and the terminal value in the gauge represents the target value.": [ "使用一个度量来展示实现目标的度量的进展" ], @@ -4445,6 +4453,7 @@ "e.g. world_population": ["世界人口"], "e.g. xy12345.us-east-2.aws": [""], "e.g., a \"user id\" column": ["时间序列的列"], + "error dark": [""], "every": ["任意"], "every day of the month": ["每月的每一天"], "every day of the week": ["一周的每一天"], @@ -4461,7 +4470,6 @@ ], "function type icon": [""], "geohash (square)": [""], - "green": ["绿色"], "heatmap: values are normalized across the entire heatmap": [""], "hour": ["小时"], "image-rendering CSS attribute of the canvas object that defines how the browser scales up the image": [ @@ -4520,7 +4528,6 @@ "query": ["查询"], "reboot": ["重启"], "recents": ["最近"], - "red": ["红色"], "report": ["报告"], "reports": ["报告"], "restore zoom": [""], @@ -4550,7 +4557,6 @@ "y": [""], "y: values are normalized within each row": [""], "year": ["年"], - "yellow": ["黄色"], "zoom area": [""] } } diff --git a/superset/translations/zh/LC_MESSAGES/messages.po b/superset/translations/zh/LC_MESSAGES/messages.po index 03eb7969d3..a8ca83c4b7 100644 --- a/superset/translations/zh/LC_MESSAGES/messages.po +++ b/superset/translations/zh/LC_MESSAGES/messages.po @@ -18,7 +18,7 @@ msgid "" msgstr "" "Project-Id-Version: Apache Superset 0.22.1\n" "Report-Msgid-Bugs-To: zhouyao94@qq.com\n" -"POT-Creation-Date: 2023-04-07 19:09+0200\n" +"POT-Creation-Date: 2023-05-23 16:30-0300\n" "PO-Revision-Date: 2019-01-04 22:19+0800\n" "Last-Translator: cdmikechen \n" "Language: zh\n" @@ -38,7 +38,7 @@ msgid "" " " msgstr "此过滤条件是从看板上下文继承的。保存图表时不会保存。" -#: superset/reports/notifications/email.py:88 +#: superset/reports/notifications/email.py:89 #, python-format msgid "" "\n" @@ -57,12 +57,12 @@ msgid "" "in the GeoJSON" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:364 +#: superset-frontend/src/explore/components/SaveModal.tsx:399 #, fuzzy msgid " a dashboard OR " msgstr "保存看板" -#: superset-frontend/src/explore/components/SaveModal.tsx:366 +#: superset-frontend/src/explore/components/SaveModal.tsx:401 #, fuzzy msgid " a new one" msgstr "改变为" @@ -96,7 +96,7 @@ msgstr "" "标准,则需要定义表达式和类型,以便将字符串转换为日期或时间戳。注意:当前不支持时区。如果时间以epoch格式存储,请输入 `epoch_s` or" " `epoch_ms` 。如果没有指定任何模式,我们可以通过额外的参数在每个数据库/列名级别上使用可选的默认值。" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:334 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:340 #, fuzzy msgid " to add calculated columns" msgstr "计算列" @@ -107,12 +107,12 @@ msgid " to add metrics" msgstr "添加指标" #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:382 -#, fuzzy, python-format +#, fuzzy msgid " to edit or add columns and metrics." msgstr "%s 列与计量指标" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:323 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:358 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:329 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:364 msgid " to mark a column as a time column" msgstr "" @@ -120,7 +120,7 @@ msgstr "" msgid " to open SQL Lab. From there you can save the query as a dataset." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:333 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:332 msgid " to visualize your data." msgstr "" @@ -128,7 +128,7 @@ msgstr "" msgid "!= (Is not equal)" msgstr "!= (不等于)" -#: superset/security/analytics_db_safety.py:44 +#: superset/security/analytics_db_safety.py:48 #, python-format msgid "%(dialect)s cannot be used as a data source for security reasons." msgstr "出于安全原因,%(dialect)s SQLite数据库不能用作数据源。" @@ -143,7 +143,7 @@ msgstr "" "%(message)s\n" "这可能由以下因素触发:%(issues)s" -#: superset/reports/notifications/email.py:168 +#: superset/reports/notifications/email.py:171 #, python-format msgid "%(name)s.csv" msgstr "" @@ -173,14 +173,14 @@ msgstr "示例 %(tableName)s 将出现在此处" msgid "%(other)s saved queries will appear here" msgstr "最近查看的图表、看板和保存的查询将显示在此处" -#: superset/reports/notifications/email.py:177 +#: superset/reports/notifications/email.py:180 #, python-format msgid "%(prefix)s %(title)s" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:345 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:363 -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:377 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:338 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:356 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:370 #, python-format msgid "%(rows)d rows returned" msgstr "%(rows)d行被检索到" @@ -203,19 +203,19 @@ msgid_plural "" "\"%(undefinedParameter)s\"?" msgstr[0] "用 %(suggestion)s 替换 \"%(undefinedParameter)s\" 吗?" -#: superset/views/core.py:384 +#: superset/views/core.py:385 #, python-format msgid "" "%(user)s was granted the role %(role)s that gives access to the " "%(datasource)s" msgstr "授予 %(user)s %(role)s 角色来访问 %(datasource)s 数据库" -#: superset/views/core.py:2672 +#: superset/views/core.py:2709 #, python-format msgid "%(user)s's profile" msgstr "%(user)s 的信息" -#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2327 +#: superset/databases/commands/validate_sql.py:73 superset/views/core.py:2369 #, python-format msgid "" "%(validator)s was unable to check your query.\n" @@ -232,25 +232,25 @@ msgid "%s Error" msgstr "%s 异常" #: superset-frontend/src/components/ImportModal/index.tsx:298 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1300 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1355 #, fuzzy, python-format msgid "%s PASSWORD" msgstr "密码" #: superset-frontend/src/components/ImportModal/index.tsx:318 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1318 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1373 #, python-format msgid "%s SSH TUNNEL PASSWORD" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:341 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1336 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1391 #, python-format msgid "%s SSH TUNNEL PRIVATE KEY" msgstr "" #: superset-frontend/src/components/ImportModal/index.tsx:363 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1356 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1411 #, python-format msgid "%s SSH TUNNEL PRIVATE KEY PASSWORD" msgstr "" @@ -260,17 +260,17 @@ msgstr "" msgid "%s Selected" msgstr "%s 已选定" -#: superset-frontend/src/pages/DatasetList/index.tsx:808 +#: superset-frontend/src/pages/DatasetList/index.tsx:830 #, python-format msgid "%s Selected (%s Physical, %s Virtual)" msgstr "%s 个被选中 (%s 个物理, %s 个虚拟)" -#: superset-frontend/src/pages/DatasetList/index.tsx:801 +#: superset-frontend/src/pages/DatasetList/index.tsx:823 #, python-format msgid "%s Selected (Physical)" msgstr "%s 个被选中(物理)" -#: superset-frontend/src/pages/DatasetList/index.tsx:794 +#: superset-frontend/src/pages/DatasetList/index.tsx:816 #, python-format msgid "%s Selected (Virtual)" msgstr "%s 个被选中(虚拟)" @@ -280,8 +280,8 @@ msgstr "%s 个被选中(虚拟)" msgid "%s aggregates(s)" msgstr "%s 聚合" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:274 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:371 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:280 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:377 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/index.tsx:346 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:323 #, python-format @@ -318,8 +318,8 @@ msgstr[0] "%s 异常" msgid "%s saved metric(s)" msgstr "%s 列与计量指标" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:636 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:652 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:639 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:655 #, fuzzy, python-format msgid "%s updated" msgstr "上次更新 %s" @@ -336,7 +336,7 @@ msgstr "%s%s" msgid "%s-%s of %s" msgstr "%s-%s 总计 %s" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:115 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:116 msgid "(Removed)" msgstr "(已删除)" @@ -386,22 +386,22 @@ msgstr "" msgid "+ %s more" msgstr "" -#: superset/views/database/forms.py:153 +#: superset/views/database/forms.py:163 msgid "," msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:656 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:652 msgid "" "-- Note: Unless you save your query, these tabs will NOT persist if you " "clear your cookies or change browsers.\n" "\n" msgstr "-- 注意:除非您保存查询,否则如果清除cookie或更改浏览器时,这些选项卡将不会保留。" -#: superset/views/database/forms.py:154 +#: superset/views/database/forms.py:164 msgid "." msgstr "" -#: superset-frontend/src/pages/DatasetList/index.tsx:791 +#: superset-frontend/src/pages/DatasetList/index.tsx:813 msgid "0 Selected" msgstr "0个被选中" @@ -501,7 +501,7 @@ msgstr "刷新频率" msgid "1 year start frequency" msgstr "刷新频率" -#: superset/db_engine_specs/base.py:101 +#: superset/db_engine_specs/base.py:102 msgid "10 minute" msgstr "10分钟" @@ -517,7 +517,7 @@ msgstr "周" msgid "104 weeks ago" msgstr "" -#: superset/db_engine_specs/base.py:102 +#: superset/db_engine_specs/base.py:103 msgid "15 minute" msgstr "15分钟" @@ -637,7 +637,7 @@ msgstr "30天" msgid "30 days ago" msgstr "30天" -#: superset/db_engine_specs/base.py:103 +#: superset/db_engine_specs/base.py:104 msgid "30 minute" msgstr "30分钟" @@ -646,7 +646,7 @@ msgstr "30分钟" msgid "30 minutes" msgstr "30分钟" -#: superset/db_engine_specs/base.py:98 +#: superset/db_engine_specs/base.py:99 msgid "30 second" msgstr "30秒钟" @@ -666,7 +666,7 @@ msgstr "" msgid "4 weeks (freq=4W-MON)" msgstr "" -#: superset/db_engine_specs/base.py:100 +#: superset/db_engine_specs/base.py:101 msgid "5 minute" msgstr "5分钟" @@ -675,7 +675,7 @@ msgstr "5分钟" msgid "5 minutes" msgstr "5分钟" -#: superset/db_engine_specs/base.py:97 +#: superset/db_engine_specs/base.py:98 msgid "5 second" msgstr "5秒" @@ -704,7 +704,7 @@ msgstr "周一为一周开始" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:167 #: superset-frontend/src/explore/controls.jsx:261 -#: superset/db_engine_specs/base.py:105 +#: superset/db_engine_specs/base.py:106 msgid "6 hour" msgstr "6小时" @@ -792,16 +792,16 @@ msgstr ">= (大于等于)" msgid "A Big Number" msgstr "大数字" -#: superset/views/database/forms.py:184 +#: superset/views/database/forms.py:194 #, fuzzy msgid "A comma separated list of columns that should be parsed as dates" msgstr "应作为日期解析的列的逗号分隔列表。" -#: superset/views/database/forms.py:367 +#: superset/views/database/forms.py:377 msgid "A comma separated list of columns that should be parsed as dates." msgstr "应作为日期解析的列的逗号分隔列表。" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:433 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 #, fuzzy msgid "A comma-separated list of schemas that files are allowed to upload to." msgstr "允许以逗号分割的CSV文件上传" @@ -810,6 +810,12 @@ msgstr "允许以逗号分割的CSV文件上传" msgid "A database with the same name already exists." msgstr "已存在同名的数据库。" +#: superset/views/database/forms.py:145 +msgid "" +"A dictionary with column names and their data types if you need to change" +" the defaults. Example: {\"user_id\":\"integer\"}" +msgstr "" + #: superset/views/dynamic_plugins.py:52 msgid "" "A full URL pointing to the location of the built plugin (could be hosted " @@ -876,17 +882,17 @@ msgstr "对 [时间] 配置的引用,会将粒度考虑在内" msgid "A report named \"%(name)s\" already exists" msgstr "数据集 %(name)s 已存在" -#: superset-frontend/src/explore/components/SaveModal.tsx:333 +#: superset-frontend/src/explore/components/SaveModal.tsx:368 msgid "A reusable dataset will be saved with your chart." msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:309 +#: superset-frontend/src/components/ReportModal/index.tsx:308 #, fuzzy msgid "A screenshot of the dashboard will be sent to your email at" msgstr "计划的报告将作为PNG发送到您的电子邮件" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:963 -#: superset/connectors/sqla/views.py:458 +#: superset/connectors/sqla/views.py:365 msgid "" "A set of parameters that become available in the query using Jinja " "templating syntax" @@ -931,8 +937,8 @@ msgstr "应用" msgid "APR" msgstr "四月" -#: superset-frontend/src/pages/DatabaseList/index.tsx:312 -#: superset-frontend/src/pages/DatabaseList/index.tsx:478 +#: superset-frontend/src/pages/DatabaseList/index.tsx:323 +#: superset-frontend/src/pages/DatabaseList/index.tsx:489 msgid "AQE" msgstr "AQE(异步执行查询)" @@ -960,7 +966,7 @@ msgstr "关于" msgid "Access" msgstr "访问" -#: superset/initialization/__init__.py:431 +#: superset/initialization/__init__.py:425 msgid "Access requests" msgstr "访问请求" @@ -973,7 +979,7 @@ msgstr "" msgid "Access token" msgstr "上一个" -#: superset/views/core.py:317 +#: superset/views/core.py:318 msgid "Access was requested" msgstr "请求访问" @@ -981,7 +987,7 @@ msgstr "请求访问" msgid "Action" msgstr "操作" -#: superset/initialization/__init__.py:393 +#: superset/initialization/__init__.py:387 msgid "Action Log" msgstr "操作日志" @@ -992,9 +998,10 @@ msgstr "操作日志" #: superset-frontend/src/pages/ChartList/index.tsx:569 #: superset-frontend/src/pages/CssTemplateList/index.tsx:229 #: superset-frontend/src/pages/DashboardList/index.tsx:477 -#: superset-frontend/src/pages/DatabaseList/index.tsx:448 -#: superset-frontend/src/pages/DatasetList/index.tsx:488 +#: superset-frontend/src/pages/DatabaseList/index.tsx:459 +#: superset-frontend/src/pages/DatasetList/index.tsx:499 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:327 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:216 #: superset-frontend/src/pages/SavedQueryList/index.tsx:437 #: superset-frontend/src/pages/Tags/index.tsx:171 msgid "Actions" @@ -1027,18 +1034,19 @@ msgstr "空值" msgid "Actual values" msgstr "空值" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:35 -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:55 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:67 #: superset-frontend/src/explore/controls.jsx:78 #: superset-frontend/src/explore/controls.jsx:101 msgid "Adaptive formatting" msgstr "自动匹配格式化" -#: superset-frontend/src/components/ReportModal/index.tsx:229 +#: superset-frontend/src/components/ReportModal/index.tsx:228 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:377 #: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 #: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 msgid "Add" msgstr "新增" @@ -1058,7 +1066,7 @@ msgstr "新增CSS模板" msgid "Add Chart" msgstr "添加图表" -#: superset/connectors/sqla/views.py:74 +#: superset/connectors/sqla/views.py:73 msgid "Add Column" msgstr "添加列" @@ -1074,7 +1082,7 @@ msgstr "添加数据库" msgid "Add Log" msgstr "新增日志" -#: superset/connectors/sqla/views.py:209 +#: superset/connectors/sqla/views.py:208 msgid "Add Metric" msgstr "添加指标" @@ -1082,9 +1090,10 @@ msgstr "添加指标" msgid "Add Report" msgstr "添加报告" -#: superset/connectors/sqla/views.py:292 -msgid "Add Row level security filter" -msgstr "添加行级安全过滤" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +#, fuzzy +msgid "Add Rule" +msgstr "日期格式化" #: superset/views/sql_lab/views.py:54 msgid "Add Saved Query" @@ -1099,11 +1108,11 @@ msgstr "添加插件" msgid "Add a dataset" msgstr "添加数据集" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:262 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:272 msgid "Add a new tab" msgstr "添加新的标签页" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:286 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:296 msgid "Add a new tab to create SQL Query" msgstr "" @@ -1135,24 +1144,28 @@ msgstr "添加注释" msgid "Add annotation layer" msgstr "添加注释层" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:300 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:306 msgid "Add calculated columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:297 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:303 msgid "Add calculated temporal columns to dataset in \"Edit datasource\" modal" msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:167 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:197 #, fuzzy msgid "Add cross-filter" msgstr "增加过滤条件" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:139 +msgid "Add custom scoping" +msgstr "" + #: superset-frontend/src/features/alerts/AlertReportModal.tsx:375 msgid "Add delivery method" msgstr "添加通知方法" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:330 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:340 #, fuzzy msgid "Add extra connection information." msgstr "无效账户信息" @@ -1225,7 +1238,7 @@ msgstr "活动图表的ID" msgid "Add the name of the dashboard" msgstr "保存并转到看板" -#: superset-frontend/src/explore/components/SaveModal.tsx:351 +#: superset-frontend/src/explore/components/SaveModal.tsx:386 msgid "Add to dashboard" msgstr "添加到看板" @@ -1250,7 +1263,7 @@ msgstr[0] "添加到看板" msgid "Additional Parameters" msgstr "附加参数" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1787 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1843 msgid "Additional fields may be required" msgstr "" @@ -1262,16 +1275,16 @@ msgstr "附加信息" msgid "Additional metadata" msgstr "附加元数据" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:57 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:54 msgid "Additional padding for legend." msgstr "图示附加的padding值。" -#: superset/db_engine_specs/base.py:1847 -#: superset/db_engine_specs/clickhouse.py:214 +#: superset/db_engine_specs/base.py:1885 +#: superset/db_engine_specs/clickhouse.py:221 msgid "Additional parameters" msgstr "编辑模板参数" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:444 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 #, fuzzy msgid "Additional settings." msgstr "条件格式设置" @@ -1287,17 +1300,18 @@ msgstr "附加文本到数据前(后),例如:单位" msgid "Additive" msgstr "附加" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:75 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:85 msgid "Adjust how this database will interact with SQL Lab." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:221 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:231 msgid "Adjust performance settings of this database." msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:132 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:91 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:64 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:127 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:93 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:76 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:186 @@ -1306,7 +1320,7 @@ msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:939 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:771 #: superset-frontend/src/explore/components/controls/DateFilterControl/utils/constants.ts:34 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1811 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1867 msgid "Advanced" msgstr "进阶" @@ -1406,7 +1420,6 @@ msgid "" "produce the cluster label." msgstr "聚合函数应用于每个群集中的点列表以产生群集标签。" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:63 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:202 msgid "" "Aggregate function to apply when pivoting and computing the total rows " @@ -1419,12 +1432,15 @@ msgid "" " values to a dynamic color scale" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:52 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:110 +#, fuzzy +msgid "Aggregation" +msgstr "合计" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:176 msgid "Aggregation function" msgstr "聚合功能" -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:593 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:162 #, fuzzy msgid "Alert" @@ -1504,7 +1520,7 @@ msgstr "告警验证器配置错误。" msgid "Alerts" msgstr "告警" -#: superset/initialization/__init__.py:410 +#: superset/initialization/__init__.py:404 msgid "Alerts & Reports" msgstr "告警和报告" @@ -1530,8 +1546,8 @@ msgstr "对齐 +/-" #: superset-frontend/src/pages/DashboardList/index.tsx:528 #: superset-frontend/src/pages/DashboardList/index.tsx:550 #: superset-frontend/src/pages/DashboardList/index.tsx:600 -#: superset-frontend/src/pages/DatabaseList/index.tsx:465 -#: superset-frontend/src/pages/DatabaseList/index.tsx:485 +#: superset-frontend/src/pages/DatabaseList/index.tsx:476 +#: superset-frontend/src/pages/DatabaseList/index.tsx:496 #: superset-frontend/src/pages/Home/index.tsx:205 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:354 #: superset-frontend/src/pages/SavedQueryList/index.tsx:453 @@ -1540,7 +1556,7 @@ msgid "All" msgstr "所有" #: superset-frontend/src/pages/AllEntities/index.tsx:76 -#: superset/initialization/__init__.py:376 +#: superset/initialization/__init__.py:370 #, fuzzy msgid "All Entities" msgstr "所有过滤" @@ -1552,13 +1568,18 @@ msgstr "所有过滤" msgid "All Text" msgstr "所有文本" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:200 #: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:59 -#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:69 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/useFilterScope.ts:60 #: superset-frontend/src/dashboard/util/getFilterScopeNodesTree.js:85 #: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:128 msgid "All charts" msgstr "所有图表" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ChartsScopingListPanel.tsx:146 +msgid "All charts/global scoping" +msgstr "" + #: superset-frontend/src/dashboard/util/getFilterFieldNodesTree.js:44 msgid "All filters" msgstr "所有过滤" @@ -1568,7 +1589,7 @@ msgstr "所有过滤" msgid "All filters (%(filterCount)d)" msgstr "所有过滤(%(filterCount)d)" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:49 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FilterScope/state.ts:36 msgid "All panels" msgstr "应用于所有面板" @@ -1576,7 +1597,7 @@ msgstr "应用于所有面板" msgid "All panels with this column will be affected by this filter" msgstr "包含此列的所有面板都将受到此过滤条件的影响" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:107 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:117 #: superset/views/database/mixins.py:184 msgid "Allow CREATE TABLE AS" msgstr "允许 CREATE TABLE AS" @@ -1585,7 +1606,7 @@ msgstr "允许 CREATE TABLE AS" msgid "Allow CREATE TABLE AS option in SQL Lab" msgstr "在 SQL 编辑器中允许 CREATE TABLE AS 选项" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:121 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:131 #: superset/views/database/mixins.py:185 msgid "Allow CREATE VIEW AS" msgstr "允许 CREATE VIEW AS" @@ -1598,7 +1619,7 @@ msgstr "在 SQL 编辑器中允许 CREATE VIEW AS 选项" msgid "Allow Csv Upload" msgstr "允许Csv上传" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:154 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:164 #: superset/views/database/mixins.py:186 msgid "Allow DML" msgstr "允许 DML" @@ -1607,15 +1628,15 @@ msgstr "允许 DML" msgid "Allow columns to be rearranged" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:110 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:120 msgid "Allow creation of new tables based on queries" msgstr "允许基于查询创建新表" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:124 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:134 msgid "Allow creation of new views based on queries" msgstr "允许基于查询创建新视图" -#: superset-frontend/src/pages/DatabaseList/index.tsx:329 +#: superset-frontend/src/pages/DatabaseList/index.tsx:340 msgid "Allow data manipulation language" msgstr "允许数据操作语言" @@ -1625,12 +1646,12 @@ msgid "" "their changes won't persist for the next time they open the chart." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:411 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:421 #, fuzzy msgid "Allow file uploads to database" msgstr "选择要上传到数据库的Excel文件。" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:157 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:167 msgid "" "Allow manipulation of the database using non-SELECT statements such as " "UPDATE, DELETE, CREATE, etc." @@ -1648,11 +1669,11 @@ msgstr "允许多节点选择" msgid "Allow sending multiple polygons as a filter event" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:186 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:196 msgid "Allow this database to be explored" msgstr "允许浏览此数据库" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:91 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:101 msgid "Allow this database to be queried in SQL Lab" msgstr "允许在SQL工具箱中查询此数据库" @@ -1694,20 +1715,20 @@ msgstr "发生了一个错误" msgid "An alert named \"%(name)s\" already exists" msgstr "数据集 %(name)s 已存在" -#: superset/common/query_context_processor.py:326 superset/viz.py:1447 +#: superset/common/query_context_processor.py:326 superset/viz.py:1352 msgid "" "An enclosed time range (both start and end) must be specified when using " "a Time Comparison." msgstr "使用时间比较时,必须指定封闭的时间范围(有开始和结束)。" -#: superset/databases/schemas.py:285 +#: superset/databases/schemas.py:289 msgid "" "An engine must be specified when passing individual parameters to a " "database." msgstr "向数据库传递单个参数时必须指定引擎。" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:791 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:141 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:183 #: superset-frontend/src/components/Tags/utils.tsx:67 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:127 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:109 @@ -1722,7 +1743,7 @@ msgstr "发生了一个错误" msgid "An error occurred" msgstr "发生了一个错误" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:317 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:323 msgid "An error occurred saving dataset" msgstr "保存数据集时发生错误" @@ -1733,19 +1754,19 @@ msgstr "保存数据集时发生错误" msgid "An error occurred while accessing the value." msgstr "访问值时出错。" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1368 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1360 msgid "" "An error occurred while collapsing the table schema. Please contact your " "administrator." msgstr "收起表结构时出错。请与管理员联系。" -#: superset-frontend/src/views/CRUD/hooks.ts:304 +#: superset-frontend/src/views/CRUD/hooks.ts:308 #, python-format msgid "An error occurred while creating %ss: %s" msgstr "创建时出错:%ss: %s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1529 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1551 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1530 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1552 msgid "An error occurred while creating the data source" msgstr "创建数据源时发生错误" @@ -1761,7 +1782,7 @@ msgstr "创建值时出错。" msgid "An error occurred while deleting the value." msgstr "删除值时出错。" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1344 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1336 msgid "" "An error occurred while expanding the table schema. Please contact your " "administrator." @@ -1773,8 +1794,8 @@ msgid "An error occurred while fetching %s info: %s" msgstr "获取%s仪表板时出错:%s" #: superset-frontend/src/views/CRUD/hooks.ts:174 -#: superset-frontend/src/views/CRUD/hooks.ts:261 -#: superset-frontend/src/views/CRUD/hooks.ts:349 +#: superset-frontend/src/views/CRUD/hooks.ts:265 +#: superset-frontend/src/views/CRUD/hooks.ts:353 #, python-format msgid "An error occurred while fetching %ss: %s" msgstr "抓取出错:%ss: %s" @@ -1818,7 +1839,7 @@ msgstr "获取看板时出错" msgid "An error occurred while fetching dashboards: %s" msgstr "获取仪表板时出错:%s" -#: superset-frontend/src/pages/DatabaseList/index.tsx:145 +#: superset-frontend/src/pages/DatabaseList/index.tsx:156 #, python-format msgid "An error occurred while fetching database related data: %s" msgstr "获取数据库相关数据时出错:%s" @@ -1835,26 +1856,26 @@ msgstr "获取数据库信息时出错:%s" msgid "An error occurred while fetching dataset datasource values: %s" msgstr "获取数据集数据源信息时出错: %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:510 +#: superset-frontend/src/pages/DatasetList/index.tsx:521 #, python-format msgid "An error occurred while fetching dataset owner values: %s" msgstr "获取数据集所有者值时出错:%s" -#: superset-frontend/src/pages/DatasetList/index.tsx:222 +#: superset-frontend/src/pages/DatasetList/index.tsx:233 msgid "An error occurred while fetching dataset related data" msgstr "获取数据集相关数据时出错" -#: superset-frontend/src/pages/DatasetList/index.tsx:242 +#: superset-frontend/src/pages/DatasetList/index.tsx:253 #, python-format msgid "An error occurred while fetching dataset related data: %s" msgstr "获取数据集相关数据时出错:%s" -#: superset-frontend/src/pages/DatasetList/index.tsx:530 +#: superset-frontend/src/pages/DatasetList/index.tsx:541 #, python-format msgid "An error occurred while fetching datasets: %s" msgstr "获取数据集时出错:%s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1581 +#: superset-frontend/src/SqlLab/components/AceEditorWrapper/index.tsx:120 msgid "An error occurred while fetching function names." msgstr "获取函数名称时出错。" @@ -1863,23 +1884,23 @@ msgstr "获取函数名称时出错。" msgid "An error occurred while fetching owners values: %s" msgstr "获取图表所有者时出错 %s" -#: superset-frontend/src/pages/DatasetList/index.tsx:546 +#: superset-frontend/src/pages/DatasetList/index.tsx:557 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:378 #: superset-frontend/src/pages/SavedQueryList/index.tsx:480 #, python-format msgid "An error occurred while fetching schema values: %s" msgstr "获取结构信息时出错:%s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:799 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:795 msgid "An error occurred while fetching tab state" msgstr "获取tab页状态时出错" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1199 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1224 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1191 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1216 msgid "An error occurred while fetching table metadata" msgstr "获取表格元数据时发生错误" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1296 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1288 msgid "" "An error occurred while fetching table metadata. Please contact your " "administrator." @@ -1895,23 +1916,28 @@ msgstr "获取创建人时出错:%s" msgid "An error occurred while fetching user values: %s" msgstr "获取用户信息出错:%s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:835 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:831 msgid "" "An error occurred while hiding the left bar. Please contact your " "administrator." msgstr "隐藏左栏时出错。请与管理员联系。" -#: superset-frontend/src/views/CRUD/hooks.ts:502 -#: superset-frontend/src/views/CRUD/hooks.ts:518 +#: superset-frontend/src/views/CRUD/hooks.ts:506 +#: superset-frontend/src/views/CRUD/hooks.ts:522 #, python-format msgid "An error occurred while importing %s: %s" msgstr "导入时出错 %s: %s" +#: superset-frontend/src/explore/components/SaveModal.tsx:135 +#, fuzzy +msgid "An error occurred while loading dashboard information." +msgstr "获取看板时出错" + #: superset-frontend/src/components/Chart/chartAction.js:579 msgid "An error occurred while loading the SQL" msgstr "创建数据源时发生错误" -#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:332 +#: superset-frontend/src/dashboard/components/gridComponents/Chart.jsx:325 #, fuzzy msgid "An error occurred while opening Explore" msgstr "精简日志时出错 " @@ -1925,15 +1951,15 @@ msgstr "更新值时出错。" msgid "An error occurred while pruning logs " msgstr "精简日志时出错 " -#: superset-frontend/src/SqlLab/actions/sqlLab.js:892 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:888 msgid "An error occurred while removing query. Please contact your administrator." msgstr "删除查询时出错。请与管理员联系。" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:857 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:853 msgid "An error occurred while removing tab. Please contact your administrator." msgstr "删除tab页时出错。请与管理员联系。" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1396 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1388 msgid "" "An error occurred while removing the table schema. Please contact your " "administrator." @@ -1944,39 +1970,39 @@ msgstr "删除表结构时出错。请与管理员联系。" msgid "An error occurred while rendering the visualization: %s" msgstr "渲染可视化时发生错误:%s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:710 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:706 msgid "" "An error occurred while setting the active tab. Please contact your " "administrator." msgstr "设置活动tab页时出错。请与管理员联系。" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:975 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:967 msgid "" "An error occurred while setting the tab autorun. Please contact your " "administrator." msgstr "设置tab页自动运行时出错。请与管理员联系。" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:915 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:911 msgid "" "An error occurred while setting the tab database ID. Please contact your " "administrator." msgstr "设置tab页数据库ID时出错。请与管理员联系。" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1004 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1128 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:996 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1120 #, fuzzy msgid "" "An error occurred while setting the tab name. Please contact your " "administrator." msgstr "设置tab页标题时出错。请与管理员联系。" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:946 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:942 msgid "" "An error occurred while setting the tab schema. Please contact your " "administrator." msgstr "设置tab页结构时出错。请与管理员联系。" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1154 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1146 msgid "" "An error occurred while setting the tab template parameters. Please " "contact your administrator." @@ -1986,14 +2012,14 @@ msgstr "设置tab页模板参数时出错。请与管理员联系。" msgid "An error occurred while starring this chart" msgstr "以此字符开头时出错" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:251 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:297 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:255 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:301 msgid "" "An error occurred while storing the latest query id in the backend. " "Please contact your administrator if this problem persists." msgstr "在后端存储最新查询id时出错。如果此问题仍然存在,请与管理员联系。" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1095 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1087 msgid "" "An error occurred while storing your query in the backend. To avoid " "losing your changes, please save your query using the \"Save Query\" " @@ -2015,7 +2041,7 @@ msgstr "更新值时出错。" msgid "An unexpected error occurred" msgstr "发生了一个错误" -#: superset/views/core.py:734 +#: superset/views/core.py:745 msgid "An unknown error occurred. Please contact your Superset administrator" msgstr "发生未知错误。请与管理员联系" @@ -2047,7 +2073,7 @@ msgstr "注解层" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/annotationsAndLayers.tsx:36 #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:127 -#: superset/initialization/__init__.py:420 +#: superset/initialization/__init__.py:414 msgid "Annotation Layers" msgstr "注释层" @@ -2199,7 +2225,8 @@ msgstr "无法删除注释。" #: superset-frontend/src/pages/DashboardList/index.tsx:504 #: superset-frontend/src/pages/DashboardList/index.tsx:572 #: superset-frontend/src/pages/DashboardList/index.tsx:586 -#: superset-frontend/src/pages/DatasetList/index.tsx:570 +#: superset-frontend/src/pages/DatasetList/index.tsx:581 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:260 msgid "Any" msgstr "所有" @@ -2214,18 +2241,18 @@ msgid "" "dashboard's individual charts" msgstr "此处选择的任何调色板都将覆盖应用于此看板的各个图表的颜色" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:953 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1008 msgid "Any databases that allow connections via SQL Alchemy URIs can be added. " msgstr "可以添加任何允许通过SQL AlChemy URI进行连接的数据库。" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:967 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1022 msgid "" "Any databases that allow connections via SQL Alchemy URIs can be added. " "Learn about how to connect a database driver " msgstr "可以添加任何允许通过SQL AlChemy URI进行连接的数据库。了解如何连接数据库驱动程序" -#: superset/views/database/forms.py:169 superset/views/database/forms.py:326 -#: superset/views/database/forms.py:457 +#: superset/views/database/forms.py:179 superset/views/database/forms.py:336 +#: superset/views/database/forms.py:467 msgid "Append" msgstr "追加" @@ -2244,7 +2271,7 @@ msgstr "应用的条件 (%d)" msgid "Applied filters: %s" msgstr "应用的条件 (%d)" -#: superset/viz.py:246 +#: superset/viz.py:250 msgid "" "Applied rolling window did not return any data. Please make sure the " "source query satisfies the minimum periods defined in the rolling window." @@ -2253,11 +2280,16 @@ msgstr "应用的滚动窗口(rolling window)未返回任何数据。请确 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/ActionButtons/index.tsx:142 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:856 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:228 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:476 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:231 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:479 msgid "Apply" msgstr "应用" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:100 +#, fuzzy +msgid "Apply conditional color formatting to metric" +msgstr "将条件颜色格式应用于指标" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:386 msgid "Apply conditional color formatting to metrics" msgstr "将条件颜色格式应用于指标" @@ -2307,6 +2339,7 @@ msgstr "您确定要取消吗?" #: superset-frontend/src/pages/ChartList/index.tsx:509 #: superset-frontend/src/pages/DashboardList/index.tsx:418 #: superset-frontend/src/pages/DashboardList/index.tsx:739 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:173 #: superset-frontend/src/pages/Tags/index.tsx:144 msgid "Are you sure you want to delete" msgstr "确定要删除吗" @@ -2333,7 +2366,7 @@ msgstr "确实要删除所选图表吗?" msgid "Are you sure you want to delete the selected dashboards?" msgstr "确实要删除选定的仪表板吗?" -#: superset-frontend/src/pages/DatasetList/index.tsx:741 +#: superset-frontend/src/pages/DatasetList/index.tsx:763 msgid "Are you sure you want to delete the selected datasets?" msgstr "确实要删除选定的数据集吗?" @@ -2345,8 +2378,13 @@ msgstr "确实要删除选定的图层吗?" msgid "Are you sure you want to delete the selected queries?" msgstr "您确实要删除选定的查询吗?" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:305 +#, fuzzy +msgid "Are you sure you want to delete the selected rules?" +msgstr "确实要删除选定的图层吗?" + #: superset-frontend/src/pages/Tags/index.tsx:282 -#, fuzzy, python-format +#, fuzzy msgid "Are you sure you want to delete the selected tags?" msgstr "确实要删除选定的 %s 吗?" @@ -2354,7 +2392,7 @@ msgstr "确实要删除选定的 %s 吗?" msgid "Are you sure you want to delete the selected templates?" msgstr "确实要删除选定的模板吗?" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:426 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:434 #, fuzzy msgid "Are you sure you want to overwrite this dataset?" msgstr "确实要删除选定的数据集吗?" @@ -2363,7 +2401,7 @@ msgstr "确实要删除选定的数据集吗?" msgid "Are you sure you want to proceed?" msgstr "您确定要继续执行吗?" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:174 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:216 msgid "Are you sure you want to save and apply changes?" msgstr "确实要保存并应用更改吗?" @@ -2405,7 +2443,7 @@ msgstr "箭头" msgid "Assign a set of parameters as" msgstr "数据集参数无效。" -#: superset/connectors/sqla/views.py:476 +#: superset/connectors/sqla/views.py:383 msgid "Associated Charts" msgstr "关联的图表" @@ -2413,9 +2451,9 @@ msgstr "关联的图表" msgid "Async Execution" msgstr "异步执行查询" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:295 -#: superset-frontend/src/pages/DatabaseList/index.tsx:309 -#: superset-frontend/src/pages/DatabaseList/index.tsx:475 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:305 +#: superset-frontend/src/pages/DatabaseList/index.tsx:320 +#: superset-frontend/src/pages/DatabaseList/index.tsx:486 msgid "Asynchronous query execution" msgstr "异步执行查询" @@ -2434,7 +2472,7 @@ msgstr "在" msgid "Auto Zoom" msgstr "数据缩放" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:530 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 msgid "Autocomplete" msgstr "自动补全" @@ -2460,7 +2498,7 @@ msgstr "可用分类模式:" msgid "Average" msgstr "大" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:233 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:71 #, fuzzy msgid "Average value" msgstr "目标值" @@ -2497,10 +2535,10 @@ msgstr "轴线降序" msgid "BOOLEAN" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:366 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1051 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1068 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1088 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:373 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1106 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1123 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1143 msgid "Back" msgstr "返回" @@ -2510,7 +2548,7 @@ msgstr "返回" msgid "Back to all" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:300 +#: superset-frontend/src/pages/DatabaseList/index.tsx:311 #: superset/views/database/mixins.py:200 msgid "Backend" msgstr "后端" @@ -2526,7 +2564,7 @@ msgstr "条形栏的值" msgid "Bad formula." msgstr "日期格式化" -#: superset/viz.py:2509 superset/viz.py:2545 +#: superset/viz.py:2452 superset/viz.py:2492 msgid "Bad spatial key" msgstr "错误的空间字段" @@ -2562,6 +2600,12 @@ msgstr "条形栏的值" msgid "Bar orientation" msgstr "方向" +#: superset-frontend/src/features/rls/constants.ts:28 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:263 +#, fuzzy +msgid "Base" +msgstr "数据库" + #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:239 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:382 msgid "Base layer map style" @@ -2575,12 +2619,12 @@ msgstr "基于指标" msgid "Based on granularity, number of time periods to compare against" msgstr "根据粒度、要比较的时间阶段" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:237 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:228 msgid "Based on what should series be ordered on the chart and legend" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:854 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1723 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1779 msgid "Basic" msgstr "基础" @@ -2611,7 +2655,7 @@ msgid "Before" msgstr "之前" #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:37 -#: superset/viz.py:1286 +#: superset/viz.py:1186 msgid "Big Number" msgstr "数字" @@ -2620,11 +2664,11 @@ msgid "Big Number Font Size" msgstr "数字的字体大小" #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:36 -#: superset/viz.py:1252 +#: superset/viz.py:1150 msgid "Big Number with Trendline" msgstr "数字和趋势线" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:89 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:355 msgid "Bottom" msgstr "底端" @@ -2655,7 +2699,6 @@ msgstr "自下而上" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:261 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:277 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:263 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:251 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:195 @@ -2675,6 +2718,26 @@ msgid "" " the axis range. It won't narrow the data's extent." msgstr "Y轴的边界。当空时,边界是根据数据的最小/最大值动态定义的。请注意,此功能只会扩展轴范围。它不会缩小数据范围。" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:373 +#, fuzzy +msgid "" +"Bounds for the primary Y-axis. When left empty, the bounds are " +"dynamically defined based on the min/max of the data. Note that this " +"feature will only expand the axis range. It won't narrow the data's " +"extent." +msgstr "Y轴的边界。当空时,边界是根据数据的最小/最大值动态定义的。请注意,此功能只会扩展轴范围。它不会缩小数据范围。" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:411 +#, fuzzy +msgid "" +"Bounds for the secondary Y-axis. Only works when Independent Y-axis\n" +" bounds are enabled. When left empty, the bounds are " +"dynamically defined\n" +" based on the min/max of the data. Note that this feature " +"will only expand\n" +" the axis range. It won't narrow the data's extent." +msgstr "Y轴的边界。当空时,边界是根据数据的最小/最大值动态定义的。请注意,此功能只会扩展轴范围。它不会缩小数据范围。" + #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/BoxPlot/index.js:26 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/index.ts:58 #: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/createMetadata.ts:27 @@ -2686,7 +2749,7 @@ msgid "Breakdowns" msgstr "分解" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bubble/index.js:32 -#: superset/viz.py:1171 +#: superset/viz.py:1065 msgid "Bubble Chart" msgstr "气泡图" @@ -2718,14 +2781,15 @@ msgstr "重构" #: superset-frontend/src/pages/ChartList/index.tsx:789 #: superset-frontend/src/pages/CssTemplateList/index.tsx:262 #: superset-frontend/src/pages/DashboardList/index.tsx:662 -#: superset-frontend/src/pages/DatasetList/index.tsx:596 +#: superset-frontend/src/pages/DatasetList/index.tsx:607 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:293 #: superset-frontend/src/pages/SavedQueryList/index.tsx:177 #: superset-frontend/src/pages/Tags/index.tsx:267 msgid "Bulk select" msgstr "批量选择" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bullet/index.js:32 -#: superset/viz.py:1222 +#: superset/viz.py:1118 msgid "Bullet Chart" msgstr "子弹图" @@ -2741,7 +2805,7 @@ msgstr "子弹图" msgid "Business" msgstr "商业" -#: superset/connectors/sqla/views.py:165 +#: superset/connectors/sqla/views.py:164 msgid "Business Data Type" msgstr "" @@ -2772,16 +2836,16 @@ msgstr "使用度量值作为排序关键字" msgid "CANCEL" msgstr "取消" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1520 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1575 #, fuzzy msgid "CREATE DATASET" msgstr "修改数据集" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:585 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:579 msgid "CREATE TABLE AS" msgstr "允许 CREATE TABLE AS" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:596 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:590 msgid "CREATE VIEW AS" msgstr "允许 CREATE VIEW AS" @@ -2808,7 +2872,7 @@ msgstr "CSS" msgid "CSS Styles" msgstr "堆积样式" -#: superset/initialization/__init__.py:286 superset/views/css_templates.py:38 +#: superset/initialization/__init__.py:288 superset/views/css_templates.py:38 msgid "CSS Templates" msgstr "CSS 模板" @@ -2842,26 +2906,26 @@ msgstr "CSS 模板" msgid "CSV Upload" msgstr "CSV上传" -#: superset/views/database/views.py:287 +#: superset/views/database/views.py:290 #, python-format msgid "" "CSV file \"%(csv_filename)s\" uploaded to table \"%(table_name)s\" in " "database \"%(db_name)s\"" msgstr "csv 文件 \"%(csv_filename)s\" 上传到数据库 \"%(db_name)s\" 中的表 \"%(table_name)s\"" -#: superset/views/database/views.py:160 +#: superset/views/database/views.py:161 msgid "CSV to Database configuration" msgstr "csv 到数据库配置" -#: superset-frontend/src/pages/DatabaseList/index.tsx:344 +#: superset-frontend/src/pages/DatabaseList/index.tsx:355 msgid "CSV upload" msgstr "CSV上传" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:130 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:140 msgid "CTAS & CVAS SCHEMA" msgstr "CTAS和CVAS方案" -#: superset/sql_lab.py:440 +#: superset/sql_lab.py:432 msgid "" "CTAS (create table as select) can only be run with a query where the last" " statement is a SELECT. Please make sure your query has a SELECT as its " @@ -2874,7 +2938,7 @@ msgstr "" msgid "CTAS Schema" msgstr "CTAS 模式" -#: superset/sql_lab.py:457 +#: superset/sql_lab.py:449 msgid "" "CVAS (create view as select) can only be run with a query with a single " "SELECT statement. Please make sure your query has only a SELECT " @@ -2891,7 +2955,7 @@ msgstr "CVAS (create view as select)查询有多条语句。" msgid "CVAS (create view as select) query is not a SELECT statement." msgstr "CVAS (create view as select)查询不是SELECT语句。" -#: superset/connectors/sqla/views.py:486 superset/views/chart/mixin.py:76 +#: superset/connectors/sqla/views.py:393 superset/views/chart/mixin.py:76 msgid "Cache Timeout" msgstr "缓存超时" @@ -2910,16 +2974,16 @@ msgstr "缓存时间" msgid "Cached" msgstr "已缓存" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:349 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:351 #, python-format msgid "Cached %s" msgstr "缓存于%s" -#: superset/viz.py:562 +#: superset/viz.py:578 msgid "Cached value not found" msgstr "缓存的值未找到" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:53 #, fuzzy msgid "Calculate contribution per series or row" msgstr "计算每个系列或总计的贡献" @@ -2942,7 +3006,7 @@ msgid "Calculation type" msgstr "计算类型" #: superset-frontend/plugins/legacy-plugin-chart-calendar/src/index.js:32 -#: superset/viz.py:1080 +#: superset/viz.py:972 msgid "Calendar Heatmap" msgstr "时间热力图" @@ -2956,17 +3020,17 @@ msgstr "无法将顶级tab页移动到嵌套tab页中" msgid "Can select multiple values" msgstr "允许选择多个值" -#: superset/viz.py:1810 +#: superset/viz.py:1727 msgid "Can't have overlap between Series and Breakdowns" msgstr "Series 和 Breakdown 之间不能有重叠" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:206 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:759 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:263 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:185 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 -#: superset-frontend/src/components/Modal/Modal.tsx:262 -#: superset-frontend/src/components/ReportModal/index.tsx:220 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:205 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:753 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:265 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:227 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:268 +#: superset-frontend/src/components/Modal/Modal.tsx:269 +#: superset-frontend/src/components/ReportModal/index.tsx:219 #: superset-frontend/src/dashboard/components/FilterBoxMigrationModal.tsx:72 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:649 #: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:151 @@ -2974,14 +3038,14 @@ msgstr "Series 和 Breakdown 之间不能有重叠" #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:76 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:62 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:311 -#: superset-frontend/src/explore/components/SaveModal.tsx:379 +#: superset-frontend/src/explore/components/SaveModal.tsx:413 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:843 #: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:117 #: superset/templates/superset/request_access.html:34 msgid "Cancel" msgstr "取消" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:314 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:324 msgid "Cancel query on window unload event" msgstr "取消窗口上传事件的查询" @@ -2997,7 +3061,7 @@ msgstr "无法删除附加了数据集的数据库" msgid "Cannot have multiple credentials for the SSH Tunnel" msgstr "" -#: superset/views/core.py:723 +#: superset/views/core.py:734 #, python-format msgid "" "Cannot import dashboard: %(db_error)s.\n" @@ -3067,7 +3131,7 @@ msgstr "显示百分比" msgid "Category and Value" msgstr "缩放和移动" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:229 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:67 #, fuzzy msgid "Category name" msgstr "查询名称" @@ -3082,15 +3146,15 @@ msgstr "目标节点类别" msgid "Category, Value and Percentage" msgstr "" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:103 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:107 msgid "Cell Padding" msgstr "单元填充" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:117 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:121 msgid "Cell Radius" msgstr "单元格半径" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:91 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:95 msgid "Cell Size" msgstr "单元尺寸" @@ -3098,7 +3162,7 @@ msgstr "单元尺寸" msgid "Cell bars" msgstr "单元格柱状图" -#: superset-frontend/src/components/FilterableTable/index.tsx:431 +#: superset-frontend/src/components/FilterableTable/index.tsx:303 msgid "Cell content" msgstr "单元格内容" @@ -3111,6 +3175,7 @@ msgstr "序列限制" msgid "Center" msgstr "中心对齐" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/Heatmap.tsx:32 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/Hex.jsx:33 #, fuzzy msgid "Centroid (Longitude and Latitude): " @@ -3133,7 +3198,7 @@ msgstr "认证细节" #: superset-frontend/src/pages/ChartList/index.tsx:699 #: superset-frontend/src/pages/DashboardList/index.tsx:580 -#: superset-frontend/src/pages/DatasetList/index.tsx:564 +#: superset-frontend/src/pages/DatasetList/index.tsx:575 msgid "Certified" msgstr "认证" @@ -3164,7 +3229,7 @@ msgstr "更改列的顺序。" msgid "Change order of rows." msgstr "更改行的顺序。" -#: superset/connectors/sqla/views.py:478 +#: superset/connectors/sqla/views.py:385 msgid "Changed By" msgstr "修改人" @@ -3211,7 +3276,7 @@ msgstr "禁止更改此图表" msgid "Changing this control takes effect instantly" msgstr "更改此控件立即生效。" -#: superset/datasets/commands/exceptions.py:181 +#: superset/datasets/commands/exceptions.py:198 msgid "Changing this dataset is forbidden" msgstr "没有权限更新此数据集" @@ -3229,15 +3294,16 @@ msgstr "没有权限更新此数据集" msgid "Changing this report is forbidden" msgstr "禁止更改此报告" -#: superset/views/database/forms.py:196 +#: superset/views/database/forms.py:206 #, fuzzy msgid "Character to interpret as decimal point" msgstr "将字符解释为小数点的字符。" -#: superset/views/database/forms.py:375 +#: superset/views/database/forms.py:385 msgid "Character to interpret as decimal point." msgstr "将字符解释为小数点的字符。" +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:51 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:449 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:405 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:69 @@ -3245,11 +3311,11 @@ msgstr "将字符解释为小数点的字符。" #: superset-frontend/src/features/home/RightMenu.tsx:219 #: superset-frontend/src/pages/ChartList/index.tsx:369 #: superset-frontend/src/pages/ChartList/index.tsx:799 -#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:90 +#: superset/views/chart/mixin.py:84 superset/views/chart/views.py:96 msgid "Chart" msgstr "图表" -#: superset/views/core.py:1727 +#: superset/views/core.py:1762 #, python-format msgid "Chart %(id)s not found" msgstr "图表 %(id)s 没有找到" @@ -3258,7 +3324,7 @@ msgstr "图表 %(id)s 没有找到" msgid "Chart Cache Timeout" msgstr "表缓存超时" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:437 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:442 #, fuzzy, python-format msgid "Chart Data: %s" msgstr "上次更新 %s" @@ -3268,7 +3334,7 @@ msgstr "上次更新 %s" msgid "Chart ID" msgstr "图表 ID" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:77 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:81 #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:53 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:55 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:61 @@ -3290,7 +3356,7 @@ msgstr "图表 ID" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:41 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:82 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:58 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:59 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:131 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:107 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:74 @@ -3335,34 +3401,34 @@ msgstr "数据源" msgid "Chart Title" msgstr "图表标题" -#: superset-frontend/src/explore/actions/saveModalActions.js:127 +#: superset-frontend/src/explore/actions/saveModalActions.js:121 #, fuzzy, python-format msgid "Chart [%s] has been overwritten" msgstr "图表 [{}] 已经覆盖" -#: superset-frontend/src/explore/actions/saveModalActions.js:124 +#: superset-frontend/src/explore/actions/saveModalActions.js:118 #, fuzzy, python-format msgid "Chart [%s] has been saved" msgstr "图表 [{}] 已经保存" -#: superset-frontend/src/explore/actions/saveModalActions.js:145 +#: superset-frontend/src/explore/actions/saveModalActions.js:139 #, fuzzy, python-format msgid "Chart [%s] was added to dashboard [%s]" msgstr "图表 [{}] 已经添加到看板 [{}]" -#: superset/views/core.py:1077 +#: superset/views/core.py:1099 msgid "Chart [{}] has been overwritten" msgstr "图表 [{}] 已经覆盖" -#: superset/views/core.py:1073 +#: superset/views/core.py:1095 msgid "Chart [{}] has been saved" msgstr "图表 [{}] 已经保存" -#: superset/views/core.py:1102 +#: superset/views/core.py:1124 msgid "Chart [{}] was added to dashboard [{}]" msgstr "图表 [{}] 已经添加到看板 [{}]" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:228 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:238 msgid "Chart cache timeout" msgstr "图表缓存超时" @@ -3418,11 +3484,11 @@ msgid "Chart last modified" msgstr "最后修改" #: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:99 -#, fuzzy, python-format +#, fuzzy msgid "Chart last modified by" msgstr "上次修改人 %s" -#: superset-frontend/src/explore/components/SaveModal.tsx:320 +#: superset-frontend/src/explore/components/SaveModal.tsx:355 msgid "Chart name" msgstr "图表名称" @@ -3432,7 +3498,7 @@ msgid "Chart options" msgstr "图表选项" #: superset-frontend/src/features/datasets/AddDataset/EditDataset/UsageTab/index.tsx:76 -#, fuzzy, python-format +#, fuzzy msgid "Chart owners" msgstr "图表所有者:%s" @@ -3454,7 +3520,7 @@ msgstr "图表标题" msgid "Chart type" msgstr "图表类型" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:315 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:314 msgid "Chart type requires a dataset" msgstr "" @@ -3470,7 +3536,7 @@ msgstr "图表标题" #: superset-frontend/src/pages/Home/index.tsx:399 #: superset-frontend/src/profile/components/CreatedContent.tsx:104 #: superset-frontend/src/profile/components/Favorites.tsx:102 -#: superset/initialization/__init__.py:257 superset/views/chart/mixin.py:25 +#: superset/initialization/__init__.py:259 superset/views/chart/mixin.py:25 #: superset/views/dashboard/mixin.py:80 msgid "Charts" msgstr "图表" @@ -3502,7 +3568,7 @@ msgstr "检查玫瑰图是否应该使用线段面积而不是线段半径来进 msgid "Check out this chart in dashboard:" msgstr "在仪表盘中查看此图表" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:474 msgid "Check out this chart: " msgstr "看看这张图表:" @@ -3532,11 +3598,11 @@ msgstr "选中以包括时间粒度下拉菜单" msgid "Child label position" msgstr "子标签位置" -#: superset/viz.py:2370 +#: superset/viz.py:2307 msgid "Choice of [Label] must be present in [Group By]" msgstr "[标签] 的选择项必须出现在 [Group By]" -#: superset/viz.py:2378 +#: superset/viz.py:2315 msgid "Choice of [Point Radius] must be present in [Group By]" msgstr "[点半径] 的选择项必须出现在 [Group By]" @@ -3549,7 +3615,7 @@ msgstr "选择文件" msgid "Choose a chart or dashboard not both" msgstr "选择图表或看板,不能都全部选择" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:924 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:979 msgid "Choose a database..." msgstr "选择数据库" @@ -3584,15 +3650,11 @@ msgstr "选择一个源和一个目标" msgid "Choose a target" msgstr "选择一个目标" -#: superset/connectors/sqla/views.py:327 -msgid "Choose a unique name" -msgstr "" - #: superset-frontend/src/pages/ChartCreation/index.tsx:404 msgid "Choose chart type" msgstr "选择图表类型" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:745 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:739 msgid "Choose one of the available databases from the panel on the left." msgstr "从左侧的面板中选择一个可用的数据库" @@ -3670,7 +3732,8 @@ msgid "" "showcase a view into the underlying data or to show aggregated metrics." msgstr "数据集的典型的逐行逐列电子表格视图。使用表格显示底层数据的视图或显示聚合指标。" -#: superset/connectors/sqla/views.py:365 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:454 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:144 msgid "Clause" msgstr "从句" @@ -3682,7 +3745,7 @@ msgstr "清除" msgid "Clear all" msgstr "清楚所有" -#: superset-frontend/src/components/Table/index.tsx:206 +#: superset-frontend/src/components/Table/index.tsx:210 #, fuzzy msgid "Clear all data" msgstr "清楚所有" @@ -3710,19 +3773,19 @@ msgstr "单击锁以进行更改。" msgid "Click the lock to prevent further changes." msgstr "单击锁定以防止进一步更改。" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1955 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2012 msgid "" "Click this link to switch to an alternate form that allows you to input " "the SQLAlchemy URL for this database manually." msgstr "单击此链接可切换到备用表单,该表单允许您手动输入此数据库的SQLAlChemy URL。" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1771 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1827 msgid "" "Click this link to switch to an alternate form that exposes only the " "required fields needed to connect this database." msgstr "单击此链接可切换到仅显示连接此数据库所需的必填字段的备用表单。" -#: superset-frontend/src/components/Table/index.tsx:213 +#: superset-frontend/src/components/Table/index.tsx:217 msgid "Click to cancel sorting" msgstr "" @@ -3732,16 +3795,10 @@ msgstr "点击编辑" #: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:27 #, fuzzy, python-format -msgid "Click to edit %s in a new tab" -msgstr "单击以编辑标签" - -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:32 -#, fuzzy, python-format msgid "Click to edit %s." msgstr "点击编辑" #: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:28 -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:33 #, fuzzy msgid "Click to edit chart." msgstr "点击编辑" @@ -3763,27 +3820,27 @@ msgstr "点击强制刷新" msgid "Click to see difference" msgstr "点击查看差异" -#: superset-frontend/src/components/Table/index.tsx:212 +#: superset-frontend/src/components/Table/index.tsx:216 #, fuzzy msgid "Click to sort ascending" msgstr "按照升序进行排序" -#: superset-frontend/src/components/Table/index.tsx:211 +#: superset-frontend/src/components/Table/index.tsx:215 #, fuzzy msgid "Click to sort descending" msgstr "降序" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:83 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:132 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:52 #: superset-frontend/src/components/ErrorMessage/ErrorAlert.tsx:209 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:219 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:224 #: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:786 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:408 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:414 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:246 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:511 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:339 #: superset-frontend/src/explore/components/controls/ViewQueryModalFooter.tsx:36 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1109 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1164 msgid "Close" msgstr "关闭" @@ -3817,17 +3874,17 @@ msgstr "全部折叠" msgid "Collapse data panel" msgstr "全部折叠" -#: superset-frontend/src/components/Table/index.tsx:210 +#: superset-frontend/src/components/Table/index.tsx:214 #, fuzzy msgid "Collapse row" msgstr "全部折叠" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:598 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:599 #, fuzzy msgid "Collapse tab content" msgstr "单元格内容" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:197 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 msgid "Collapse table preview" msgstr "折叠表的预览" @@ -3849,7 +3906,7 @@ msgstr "颜色指标" msgid "Color Scheme" msgstr "配色方案" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:129 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:133 msgid "Color Steps" msgstr "色彩 Steps" @@ -3873,8 +3930,8 @@ msgid "Color of the target location" msgstr "目标节点名称" #: superset-frontend/src/explore/components/controls/ColorSchemeControl/index.tsx:87 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:214 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:218 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:217 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:221 #: superset-frontend/src/explore/controlPanels/sections.tsx:60 #: superset-frontend/src/explore/controls.jsx:460 msgid "Color scheme" @@ -3894,8 +3951,8 @@ msgstr "颜色" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:367 #: superset-frontend/src/dashboard/components/gridComponents/new/NewColumn.jsx:31 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/getControlItemsMap.tsx:112 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:204 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:250 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:207 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:256 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:137 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:140 #: superset-frontend/src/explore/components/controls/SpatialControl.jsx:194 @@ -3903,7 +3960,7 @@ msgstr "颜色" #: superset-frontend/src/filters/components/Range/controlPanel.ts:39 #: superset-frontend/src/filters/components/Select/controlPanel.ts:49 #: superset-frontend/src/filters/components/Time/controlPanel.ts:37 -#: superset/connectors/sqla/views.py:155 +#: superset/connectors/sqla/views.py:154 msgid "Column" msgstr "列" @@ -3919,13 +3976,18 @@ msgstr "列\"%(column)s\"不是数字或不在查询结果中" msgid "Column Configuration" msgstr "检查配置" +#: superset/views/database/forms.py:144 +#, fuzzy +msgid "Column Data Types" +msgstr "数据缓存已加载" + #: superset-frontend/src/explore/components/DataTableControl/index.tsx:194 #, fuzzy msgid "Column Formatting" msgstr "条件格式设置" -#: superset/views/database/forms.py:222 superset/views/database/forms.py:383 -#: superset/views/database/forms.py:474 +#: superset/views/database/forms.py:232 superset/views/database/forms.py:393 +#: superset/views/database/forms.py:484 msgid "Column Label(s)" msgstr "字段标签" @@ -3943,6 +4005,11 @@ msgstr "包含纬度数据的列" msgid "Column containing longitude data" msgstr "包含经度数据的列" +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:69 +#, fuzzy +msgid "Column datatype" +msgstr "列名" + #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:206 #, fuzzy msgid "Column header tooltip" @@ -3952,20 +4019,20 @@ msgstr "详细提示" msgid "Column is required" msgstr "列是必填项" -#: superset/views/database/forms.py:384 superset/views/database/forms.py:475 +#: superset/views/database/forms.py:394 superset/views/database/forms.py:485 msgid "" "Column label for index column(s). If None is given and Dataframe Index is" " True, Index Names are used." msgstr "索引列的列标签。如果为None, 并且数据框索引为 true, 则使用 \"索引名称\"。" -#: superset/views/database/forms.py:223 +#: superset/views/database/forms.py:233 #, fuzzy msgid "" "Column label for index column(s). If None is given and Dataframe Index is" " checked, Index Names are used" msgstr "索引列的列标签。如果为None, 并且数据框索引为 true, 则使用 \"索引名称\"。" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:77 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:90 #, fuzzy msgid "Column name" msgstr "列名" @@ -3984,24 +4051,24 @@ msgstr "聚合引用的列未定义:%(column)s" msgid "Column select" msgstr "选择列" -#: superset/views/database/forms.py:211 +#: superset/views/database/forms.py:221 #, fuzzy msgid "" "Column to use as the row labels of the dataframe. Leave empty if no index" " column" msgstr "字段作为数据文件的行标签使用。如果没有索引字段,则留空。" -#: superset/views/database/forms.py:342 +#: superset/views/database/forms.py:352 msgid "" "Column to use as the row labels of the dataframe. Leave empty if no index" " column." msgstr "字段作为数据文件的行标签使用。如果没有索引字段,则留空。" -#: superset/views/database/forms.py:414 +#: superset/views/database/forms.py:424 msgid "Columnar File" msgstr "列式存储文件" -#: superset/views/database/views.py:565 +#: superset/views/database/views.py:568 #, python-format msgid "" "Columnar file \"%(columnar_filename)s\" uploaded to table " @@ -4010,7 +4077,7 @@ msgstr "" "Excel 文件 \"%(columnar_filename)s\" 上传到数据库 \"%(db_name)s\" 中的表 " "\"%(table_name)s\"" -#: superset/views/database/views.py:440 +#: superset/views/database/views.py:443 msgid "Columnar to Database configuration" msgstr "列式存储文件到数据库配置" @@ -4026,16 +4093,16 @@ msgstr "列式存储文件到数据库配置" #: superset-frontend/src/explore/controls.jsx:244 #: superset-frontend/src/explore/fixtures.tsx:97 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:53 -#: superset/connectors/sqla/views.py:72 +#: superset/connectors/sqla/views.py:71 msgid "Columns" msgstr "列" -#: superset/views/database/forms.py:183 +#: superset/views/database/forms.py:193 #, fuzzy msgid "Columns To Be Parsed as Dates" msgstr "应作为日期解析的列的逗号分隔列表。" -#: superset/views/database/forms.py:231 +#: superset/views/database/forms.py:241 #, fuzzy msgid "Columns To Read" msgstr "显示总计" @@ -4045,7 +4112,7 @@ msgstr "显示总计" msgid "Columns missing in dataset: %(invalid_columns)s" msgstr "数据源中缺少列:%(invalid_columns)s" -#: superset/viz.py:577 +#: superset/viz.py:593 #, python-format msgid "Columns missing in datasource: %(invalid_columns)s" msgstr "数据源中缺少列:%(invalid_columns)s" @@ -4086,10 +4153,6 @@ msgstr "行上分组所依据的列" msgid "Columns to show" msgstr "要显示的字段" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:85 -msgid "Combine Metrics" -msgstr "整合指标" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:250 msgid "Combine metrics" msgstr "整合指标" @@ -4147,6 +4210,7 @@ msgstr "比较不同活动在共享时间线视图中所花费的时间长度。 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:37 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Scatter/index.js:35 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:35 @@ -4191,6 +4255,11 @@ msgstr "计算对总数的贡献值" msgid "Condition" msgstr "条件" +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:99 +#, fuzzy +msgid "Conditional Formatting" +msgstr "条件格式设置" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:385 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:504 msgid "Conditional formatting" @@ -4245,15 +4314,15 @@ msgstr "配置如何在这里显示您的覆盖。" msgid "Confirm overwrite" msgstr "确认保存" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:180 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:222 msgid "Confirm save" msgstr "确认保存" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1059 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1097 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1656 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1695 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1857 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1114 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1152 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1712 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 msgid "Connect" msgstr "连接" @@ -4265,9 +4334,9 @@ msgstr "" msgid "Connect Google Sheets as tables to this database" msgstr "将Google Sheet作为表格连接到此数据库" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1660 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1700 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1861 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1716 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1918 msgid "Connect a database" msgstr "连接数据库" @@ -4275,24 +4344,24 @@ msgstr "连接数据库" msgid "Connect database" msgstr "连接数据库" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1768 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1824 msgid "Connect this database using the dynamic form instead" msgstr "使用动态参数连接此数据库" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1950 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:2007 msgid "Connect this database with a SQLAlchemy URI string instead" msgstr "使用SQLAlchemy URI链接此数据库" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:225 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:227 msgid "Connection" msgstr "连接" #: superset/databases/commands/exceptions.py:107 -#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1430 +#: superset/databases/commands/exceptions.py:124 superset/views/core.py:1471 msgid "Connection failed, please check your connection settings" msgstr "连接失败,请检查您的连接配置" -#: superset-frontend/src/views/CRUD/hooks.ts:697 +#: superset-frontend/src/views/CRUD/hooks.ts:701 msgid "Connection looks good!" msgstr "连接测试成功!" @@ -4317,7 +4386,7 @@ msgstr "连续式" msgid "Contribution" msgstr "贡献" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:42 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 msgid "Contribution Mode" msgstr "贡献模式" @@ -4370,8 +4439,8 @@ msgstr "复制链接" msgid "Copy message" msgstr "复制信息" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:683 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1469 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:679 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1461 #: superset-frontend/src/SqlLab/reducers/sqlLab.js:107 #, python-format msgid "Copy of %s" @@ -4382,7 +4451,7 @@ msgid "Copy partition query to clipboard" msgstr "将分区查询复制到剪贴板" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:329 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:468 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:471 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:340 #, fuzzy msgid "Copy permalink to clipboard" @@ -4409,7 +4478,7 @@ msgstr "" msgid "Copy the name of the database you are trying to connect to." msgstr "复制尝试连接的数据库名" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:273 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:271 msgid "Copy to Clipboard" msgstr "复制到剪贴板" @@ -4429,7 +4498,12 @@ msgstr "相关性" msgid "Cost estimate" msgstr "成本估算" -#: superset/views/utils.py:498 +#: superset/db_engine_specs/ocient.py:259 +#, fuzzy, python-format +msgid "Could not connect to database: \"%(database)s\"" +msgstr "不能连接到数据库\"%(database)s\"" + +#: superset/views/utils.py:496 msgid "Could not determine datasource type" msgstr "无法确定数据源类型" @@ -4438,7 +4512,7 @@ msgstr "无法确定数据源类型" msgid "Could not fetch all saved charts" msgstr "无法获取所有保存的图表" -#: superset/views/utils.py:514 +#: superset/views/utils.py:512 msgid "Could not find viz object" msgstr "找不到可视化对象" @@ -4446,7 +4520,7 @@ msgstr "找不到可视化对象" msgid "Could not load database driver" msgstr "无法加载数据库驱动程序" -#: superset/views/core.py:1413 +#: superset/views/core.py:1454 #, python-format msgid "Could not load database driver: %(driver_name)s" msgstr "无法加载数据库驱动程序:%(driver_name)s" @@ -4455,6 +4529,11 @@ msgstr "无法加载数据库驱动程序:%(driver_name)s" msgid "Could not load database driver: {}" msgstr "无法加载数据库驱动程序:{}" +#: superset/db_engine_specs/ocient.py:264 +#, python-format +msgid "Could not resolve hostname: \"%(host)s\"." +msgstr "" + #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:179 #, fuzzy msgid "Count" @@ -4496,12 +4575,12 @@ msgid "Country Field Type" msgstr "国家字段的类型" #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/index.js:33 -#: superset/viz.py:2044 +#: superset/viz.py:1969 msgid "Country Map" msgstr "国家地图" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:767 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:761 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:770 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/Footer.tsx:96 msgid "Create" msgstr "创建" @@ -4512,10 +4591,10 @@ msgid "Create Chart" msgstr "面积图" #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:380 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:331 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:321 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:332 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:356 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:330 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:327 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:338 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:362 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:419 #, fuzzy msgid "Create a dataset" @@ -4562,7 +4641,7 @@ msgstr "创建新图表" msgid "Create new filter set" msgstr "创建新的过滤器" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:135 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:145 msgid "Create or select schema..." msgstr "创建或者选择模式" @@ -4585,7 +4664,7 @@ msgstr "创建日期" #: superset-frontend/src/pages/CssTemplateList/index.tsx:273 #: superset-frontend/src/pages/DashboardList/index.tsx:358 #: superset-frontend/src/pages/DashboardList/index.tsx:545 -#: superset-frontend/src/pages/DatabaseList/index.tsx:365 +#: superset-frontend/src/pages/DatabaseList/index.tsx:376 #: superset-frontend/src/pages/Tags/index.tsx:128 #: superset-frontend/src/pages/Tags/index.tsx:183 msgid "Created by" @@ -4616,9 +4695,8 @@ msgstr "导入图表失败,原因未知" msgid "Creating a data source and creating a new tab" msgstr "创建数据源,并弹出一个新的标签页" -#: superset/connectors/sqla/views.py:366 superset/views/chart/mixin.py:77 -#: superset/views/dashboard/mixin.py:84 superset/views/dashboard/views.py:185 -#: superset/views/database/mixins.py:189 +#: superset/views/chart/mixin.py:77 superset/views/dashboard/mixin.py:84 +#: superset/views/dashboard/views.py:185 superset/views/database/mixins.py:189 msgid "Creator" msgstr "作者" @@ -4627,15 +4705,27 @@ msgstr "作者" msgid "Crimson" msgstr "操作" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:122 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:152 msgid "Cross-filter will be applied to all of the charts that use this dataset." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:134 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:164 #, fuzzy msgid "Cross-filtering is not enabled for this dashboard." msgstr "此看板中没有过滤条件。" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:169 +#, fuzzy +msgid "Cross-filtering is not enabled in this dashboard" +msgstr "此看板中没有过滤条件。" + +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:414 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:302 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:176 +#, fuzzy +msgid "Cross-filtering scoping" +msgstr "交叉筛选作用域" + #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/VerticalCollapse.tsx:82 #, fuzzy msgid "Cross-filters" @@ -4662,7 +4752,7 @@ msgstr "自定义插件" msgid "Custom Plugins" msgstr "自定义插件" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:385 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:391 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:231 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:475 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:478 @@ -4673,8 +4763,7 @@ msgstr "自定义SQL" msgid "Custom SQL ad-hoc metrics are not enabled for this dataset" msgstr "此数据集无法启用自定义SQL即席查询、" -#: superset/connectors/sqla/utils.py:194 superset/errors.py:145 -#: superset/models/helpers.py:129 superset/models/helpers.py:864 +#: superset/errors.py:145 superset/models/helpers.py:138 msgid "Custom SQL fields cannot contain sub-queries." msgstr "" @@ -4698,7 +4787,7 @@ msgstr "自定义列" msgid "Cyclic dependency detected" msgstr "" -#: superset/connectors/sqla/views.py:256 +#: superset/connectors/sqla/views.py:255 msgid "D3 Format" msgstr "D3 格式" @@ -4708,7 +4797,7 @@ msgstr "D3 格式" msgid "D3 format" msgstr "D3 格式" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:22 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:27 #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/controlPanel.tsx:146 msgid "D3 format syntax: https://github.com/d3/d3-format" msgstr "D3插件格式语法: https://github.com/d3/d3-time-format" @@ -4725,7 +4814,7 @@ msgstr "D3数字格式,用于-1.0和1.0之间的数字,当您希望小数和 msgid "D3 time format for datetime columns" msgstr "D3时间格式的时间列" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:53 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:62 msgid "D3 time format syntax: https://github.com/d3/d3-time-format" msgstr "D3时间插件格式语法: https://github.com/d3/d3-time-format" @@ -4748,7 +4837,7 @@ msgstr "十二月" msgid "DELETE" msgstr "删除" -#: superset-frontend/src/pages/DatabaseList/index.tsx:332 +#: superset-frontend/src/pages/DatabaseList/index.tsx:343 msgid "DML" msgstr "DML(数据操作语言)" @@ -4778,12 +4867,12 @@ msgstr "黑暗模式" msgid "Dashboard" msgstr "看板" -#: superset-frontend/src/explore/actions/saveModalActions.js:135 +#: superset-frontend/src/explore/actions/saveModalActions.js:129 #, fuzzy, python-format msgid "Dashboard [%s] just got created and chart [%s] was added to it" msgstr "看板 [{}] 刚刚被创建,并且图表 [{}] 已被添加到其中" -#: superset/views/core.py:1122 +#: superset/views/core.py:1144 msgid "Dashboard [{}] just got created and chart [{}] was added to it" msgstr "看板 [{}] 刚刚被创建,并且图表 [{}] 已被添加到其中" @@ -4849,7 +4938,7 @@ msgstr "看板" #: superset-frontend/src/pages/Home/index.tsx:385 #: superset-frontend/src/profile/components/CreatedContent.tsx:101 #: superset-frontend/src/profile/components/Favorites.tsx:99 -#: superset/initialization/__init__.py:249 superset/views/chart/mixin.py:78 +#: superset/initialization/__init__.py:251 superset/views/chart/mixin.py:78 #: superset/views/dashboard/mixin.py:24 msgid "Dashboards" msgstr "仪表盘" @@ -4875,7 +4964,7 @@ msgstr "看板" #: superset-frontend/src/explore/components/ControlPanelsContainer.tsx:708 #: superset-frontend/src/features/home/RightMenu.tsx:169 -#: superset/initialization/__init__.py:244 +#: superset/initialization/__init__.py:246 msgid "Data" msgstr "数据" @@ -4883,7 +4972,7 @@ msgstr "数据" msgid "Data Table" msgstr "数据表" -#: superset/datasets/commands/exceptions.py:197 +#: superset/datasets/commands/exceptions.py:214 msgid "Data URI is not allowed." msgstr "" @@ -4897,14 +4986,14 @@ msgstr "" msgid "Data Zoom" msgstr "数据缩放" -#: superset/sqllab/commands/results.py:116 superset/views/core.py:2195 +#: superset/sqllab/commands/results.py:116 superset/views/core.py:2231 msgid "" "Data could not be deserialized from the results backend. The storage " "format might have changed, rendering the old data stake. You need to re-" "run the original query." msgstr "无法从结果后端反序列化数据。存储格式可能已经改变,呈现了旧的数据桩。您需要重新运行原始查询。" -#: superset/sqllab/commands/results.py:75 superset/views/core.py:2148 +#: superset/sqllab/commands/results.py:75 superset/views/core.py:2184 msgid "" "Data could not be retrieved from the results backend. You need to re-run " "the original query." @@ -4918,7 +5007,7 @@ msgstr "" msgid "Data preview" msgstr "数据预览" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:283 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:278 #, fuzzy msgid "Data refreshed" msgstr "上次刷新的元数据" @@ -4938,51 +5027,51 @@ msgstr "数据帧(DataFrame)至少包括一个序列" msgid "DataFrame must include temporal column" msgstr "数据帧(DataFrame)必须包含时间列" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:275 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:274 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:388 -#: superset-frontend/src/pages/DatabaseList/index.tsx:267 -#: superset-frontend/src/pages/DatabaseList/index.tsx:296 -#: superset-frontend/src/pages/DatasetList/index.tsx:349 -#: superset-frontend/src/pages/DatasetList/index.tsx:520 +#: superset-frontend/src/pages/DatabaseList/index.tsx:278 +#: superset-frontend/src/pages/DatabaseList/index.tsx:307 +#: superset-frontend/src/pages/DatasetList/index.tsx:360 +#: superset-frontend/src/pages/DatasetList/index.tsx:531 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:241 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:349 #: superset-frontend/src/pages/SavedQueryList/index.tsx:287 #: superset-frontend/src/pages/SavedQueryList/index.tsx:448 -#: superset/connectors/sqla/views.py:479 superset/connectors/sqla/views.py:480 +#: superset/connectors/sqla/views.py:386 superset/connectors/sqla/views.py:387 #: superset/templates/superset/import_dashboards.html:53 -#: superset/views/database/forms.py:137 superset/views/database/forms.py:305 -#: superset/views/database/forms.py:436 superset/views/database/mixins.py:188 +#: superset/views/database/forms.py:137 superset/views/database/forms.py:315 +#: superset/views/database/forms.py:446 superset/views/database/mixins.py:188 #: superset/views/sql_lab/views.py:83 msgid "Database" msgstr "数据库" -#: superset/views/database/views.py:478 +#: superset/views/database/views.py:481 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " "for columnar uploads. Please contact your Superset Admin." msgstr "数据库 \"%(database_name)s\" schema \"%(schema_name)s\" 不允许用于excel上传。请联系管理员。" -#: superset/views/database/views.py:179 +#: superset/views/database/views.py:180 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " "for csv uploads. Please contact your Superset Admin." msgstr "数据库 \"%(database_name)s\" schema \"%(schema_name)s\" 不允许用于csv上传。请联系管理员。" -#: superset/views/database/views.py:318 +#: superset/views/database/views.py:321 #, python-format msgid "" "Database \"%(database_name)s\" schema \"%(schema_name)s\" is not allowed " "for excel uploads. Please contact your Superset Admin." msgstr "数据库 \"%(database_name)s\" schema \"%(schema_name)s\" 不允许用于excel上传。请联系管理员。" -#: superset/initialization/__init__.py:241 +#: superset/initialization/__init__.py:243 #, fuzzy msgid "Database Connections" msgstr "测试连接" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1467 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1522 msgid "Database Creation Error" msgstr "数据库创建错误" @@ -4991,9 +5080,9 @@ msgid "Database URL" msgstr "数据库URL" #: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:122 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:827 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:849 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1150 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:882 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:904 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1205 #, fuzzy msgid "Database connected" msgstr "选择将要连接的数据库" @@ -5020,7 +5109,7 @@ msgstr "数据库不允许此数据操作。" msgid "Database does not exist" msgstr "数据库不存在" -#: superset/connectors/sqla/models.py:1793 superset/models/helpers.py:1966 +#: superset/models/helpers.py:2063 msgid "Database does not support subqueries" msgstr "数据库不支持子查询" @@ -5030,7 +5119,7 @@ msgid "" "documentation page for installation instructions: " msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:429 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 msgid "Database error" msgstr "数据库错误" @@ -5043,8 +5132,8 @@ msgid "Database is required for alerts" msgstr "警报需要数据库" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:113 -#: superset/db_engine_specs/base.py:1845 -#: superset/db_engine_specs/clickhouse.py:209 +#: superset/db_engine_specs/base.py:1880 +#: superset/db_engine_specs/clickhouse.py:212 msgid "Database name" msgstr "数据库名称" @@ -5056,7 +5145,7 @@ msgstr "数据集不允许被修改" msgid "Database not found." msgstr "数据库没有找到" -#: superset/views/core.py:1179 +#: superset/views/core.py:1201 #, fuzzy, python-format msgid "Database not found: %(id)s" msgstr "数据源id不存在:%(id)s" @@ -5070,25 +5159,25 @@ msgstr "数据库参数无效" msgid "Database passwords" msgstr "数据库端口" -#: superset/db_engine_specs/base.py:1842 -#: superset/db_engine_specs/clickhouse.py:206 +#: superset/db_engine_specs/base.py:1876 +#: superset/db_engine_specs/clickhouse.py:208 #: superset/db_engine_specs/databricks.py:52 msgid "Database port" msgstr "数据库端口" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:811 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:853 #, fuzzy msgid "Database settings updated" msgstr "数据库无法更新" -#: superset-frontend/src/pages/DatabaseList/index.tsx:258 +#: superset-frontend/src/pages/DatabaseList/index.tsx:269 #: superset-frontend/src/profile/components/Security.tsx:47 #: superset/views/database/mixins.py:33 msgid "Databases" msgstr "数据库" -#: superset/views/database/forms.py:219 superset/views/database/forms.py:380 -#: superset/views/database/forms.py:471 +#: superset/views/database/forms.py:229 superset/views/database/forms.py:390 +#: superset/views/database/forms.py:481 msgid "Dataframe Index" msgstr "Dataframe索引" @@ -5100,7 +5189,7 @@ msgstr "Dataframe索引" #: superset-frontend/src/pages/ChartCreation/index.tsx:390 #: superset-frontend/src/pages/ChartList/index.tsx:391 #: superset-frontend/src/pages/ChartList/index.tsx:678 -#: superset-frontend/src/pages/DatasetList/index.tsx:606 +#: superset-frontend/src/pages/DatasetList/index.tsx:617 msgid "Dataset" msgstr "数据集" @@ -5109,7 +5198,7 @@ msgstr "数据集" msgid "Dataset %(name)s already exists" msgstr "数据集 %(name)s 已存在" -#: superset-frontend/src/explore/components/SaveModal.tsx:331 +#: superset-frontend/src/explore/components/SaveModal.tsx:366 #, fuzzy msgid "Dataset Name" msgstr "数据集名称" @@ -5122,29 +5211,29 @@ msgstr "数据集列删除失败。" msgid "Dataset column not found." msgstr "数据集行删除失败。" -#: superset/datasets/commands/exceptions.py:157 +#: superset/datasets/commands/exceptions.py:174 msgid "Dataset could not be created." msgstr "无法创建数据集。" -#: superset/datasets/commands/exceptions.py:165 +#: superset/datasets/commands/exceptions.py:182 msgid "Dataset could not be deleted." msgstr "无法删除数据集" -#: superset/datasets/commands/exceptions.py:193 +#: superset/datasets/commands/exceptions.py:210 #, fuzzy msgid "Dataset could not be duplicated." msgstr "无法更新数据集。" -#: superset/datasets/commands/exceptions.py:161 -#: superset/datasets/commands/exceptions.py:173 +#: superset/datasets/commands/exceptions.py:178 +#: superset/datasets/commands/exceptions.py:190 msgid "Dataset could not be updated." msgstr "无法更新数据集。" -#: superset/datasets/commands/exceptions.py:149 +#: superset/datasets/commands/exceptions.py:166 msgid "Dataset does not exist" msgstr "数据集不存在" -#: superset-frontend/src/pages/DatasetList/index.tsx:185 +#: superset-frontend/src/pages/DatasetList/index.tsx:196 #, fuzzy msgid "Dataset imported" msgstr "数据库端口" @@ -5166,22 +5255,22 @@ msgstr "数据集指标没找到" msgid "Dataset name" msgstr "数据集名称" -#: superset/datasets/commands/exceptions.py:153 +#: superset/datasets/commands/exceptions.py:170 msgid "Dataset parameters are invalid." msgstr "数据集参数无效。" -#: superset/dashboards/api.py:430 +#: superset/dashboards/api.py:415 #, python-format msgid "Dataset schema is invalid, caused by: %(error)s" msgstr "" -#: superset/datasets/commands/exceptions.py:169 +#: superset/datasets/commands/exceptions.py:186 msgid "Dataset(s) could not be bulk deleted." msgstr "数据集无法批量删除" -#: superset-frontend/src/pages/DatasetList/index.tsx:589 +#: superset-frontend/src/pages/DatasetList/index.tsx:600 #: superset-frontend/src/profile/components/Security.tsx:61 -#: superset/initialization/__init__.py:265 +#: superset/initialization/__init__.py:267 msgid "Datasets" msgstr "数据集" @@ -5204,12 +5293,12 @@ msgstr "数据源" msgid "Datasource & Chart Type" msgstr "数据源 & 图表类型" -#: superset/commands/exceptions.py:131 +#: superset/commands/exceptions.py:135 #, fuzzy msgid "Datasource does not exist" msgstr "数据集不存在" -#: superset/commands/exceptions.py:123 +#: superset/commands/exceptions.py:127 msgid "Datasource type is invalid" msgstr "" @@ -5226,8 +5315,7 @@ msgstr "时间格式" msgid "Date filter" msgstr "日期过滤器" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:131 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:71 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:144 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:151 #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:135 @@ -5248,11 +5336,11 @@ msgstr "自动匹配格式化" msgid "Date/Time" msgstr "日期/时间" -#: superset/connectors/sqla/views.py:163 +#: superset/connectors/sqla/views.py:162 msgid "Datetime Format" msgstr "时间格式" -#: superset/connectors/sqla/models.py:1237 superset/models/helpers.py:1427 +#: superset/models/helpers.py:1502 msgid "" "Datetime column not provided as part table configuration and is required " "by this type of chart" @@ -5262,7 +5350,7 @@ msgstr "没有提供该表配置的日期时间列,它是此类型图表所必 msgid "Datetime format" msgstr "时间格式" -#: superset/db_engine_specs/base.py:106 +#: superset/db_engine_specs/base.py:107 msgid "Day" msgstr "天" @@ -5275,7 +5363,7 @@ msgstr "" msgid "Days %s" msgstr "%s天" -#: superset/connectors/sqla/models.py:1936 superset/models/helpers.py:988 +#: superset/connectors/sqla/models.py:1222 superset/models/helpers.py:1024 msgid "Db engine did not return all queried columns" msgstr "数据库引擎未返回所有查询的列" @@ -5288,47 +5376,56 @@ msgstr "激活" msgid "December" msgstr "十二月" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:70 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:89 msgid "Decides which column to sort the base axis by." msgstr "" -#: superset/views/database/forms.py:194 superset/views/database/forms.py:373 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:160 +msgid "Decides which measure to sort the base axis by." +msgstr "" + +#: superset/views/database/forms.py:204 superset/views/database/forms.py:383 msgid "Decimal Character" msgstr "十进制字符" -#: superset/viz.py:2743 +#: superset/viz.py:2700 msgid "Deck.gl - 3D Grid" msgstr "Deck.gl - 3D网格" -#: superset/viz.py:2859 +#: superset/viz.py:2825 msgid "Deck.gl - 3D HEX" msgstr "Deck.gl - 3D六角曲面" -#: superset/viz.py:2899 +#: superset/viz.py:2890 msgid "Deck.gl - Arc" msgstr "Deck.gl - 弧度" -#: superset/viz.py:2880 +#: superset/viz.py:2869 msgid "Deck.gl - GeoJSON" msgstr "Deck.gl - 地理json" -#: superset/viz.py:2468 +#: superset/viz.py:2848 +#, fuzzy +msgid "Deck.gl - Heatmap" +msgstr "圆弧图" + +#: superset/viz.py:2406 msgid "Deck.gl - Multiple Layers" msgstr "多图层" -#: superset/viz.py:2775 +#: superset/viz.py:2735 msgid "Deck.gl - Paths" msgstr "Deck.gl - 路径" -#: superset/viz.py:2826 +#: superset/viz.py:2789 msgid "Deck.gl - Polygon" msgstr "Deck.gl - 多角形" -#: superset/viz.py:2662 +#: superset/viz.py:2612 msgid "Deck.gl - Scatter plot" msgstr "Deck.gl - 散点图" -#: superset/viz.py:2714 +#: superset/viz.py:2668 msgid "Deck.gl - Screen Grid" msgstr "Deck.gl - 屏幕网格" @@ -5336,7 +5433,7 @@ msgstr "Deck.gl - 屏幕网格" msgid "Default" msgstr "默认" -#: superset/connectors/sqla/views.py:484 +#: superset/connectors/sqla/views.py:391 msgid "Default Endpoint" msgstr "默认端点" @@ -5468,11 +5565,13 @@ msgstr "定义步骤应出现在两个数据点之间的开始、中间还是结 #: superset-frontend/src/pages/CssTemplateList/index.tsx:338 #: superset-frontend/src/pages/DashboardList/index.tsx:427 #: superset-frontend/src/pages/DashboardList/index.tsx:712 -#: superset-frontend/src/pages/DatasetList/index.tsx:418 -#: superset-frontend/src/pages/DatasetList/index.tsx:751 +#: superset-frontend/src/pages/DatasetList/index.tsx:429 +#: superset-frontend/src/pages/DatasetList/index.tsx:773 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:182 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:313 #: superset-frontend/src/pages/SavedQueryList/index.tsx:542 #: superset-frontend/src/pages/Tags/index.tsx:153 -#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:663 +#: superset-frontend/src/pages/Tags/index.tsx:290 superset/views/base.py:664 msgid "Delete" msgstr "删除" @@ -5485,11 +5584,11 @@ msgstr "需要删除 %s 吗?" msgid "Delete Annotation?" msgstr "删除注释?" -#: superset-frontend/src/pages/DatabaseList/index.tsx:529 +#: superset-frontend/src/pages/DatabaseList/index.tsx:551 msgid "Delete Database?" msgstr "确定删除数据库?" -#: superset-frontend/src/pages/DatasetList/index.tsx:723 +#: superset-frontend/src/pages/DatasetList/index.tsx:745 msgid "Delete Dataset?" msgstr "确定删除数据集?" @@ -5510,7 +5609,7 @@ msgstr "删除报表?" msgid "Delete Template?" msgstr "删除模板?" -#: superset/views/base.py:663 +#: superset/views/base.py:664 msgid "Delete all Really?" msgstr "确定删除全部?" @@ -5522,7 +5621,7 @@ msgstr "删除注释" msgid "Delete dashboard tab?" msgstr "是否删除仪表盘tab页?" -#: superset-frontend/src/pages/DatabaseList/index.tsx:405 +#: superset-frontend/src/pages/DatabaseList/index.tsx:416 msgid "Delete database" msgstr "删除数据库" @@ -5544,6 +5643,11 @@ msgstr "删除模板" msgid "Delete this container and save to remove this message." msgstr "删除此容器并保存以删除此邮件。" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:108 +#, fuzzy +msgid "Deleted" +msgstr "删除" + #: superset/annotation_layers/annotations/api.py:504 #, python-format msgid "Deleted %(num)d annotation" @@ -5556,7 +5660,7 @@ msgid "Deleted %(num)d annotation layer" msgid_plural "Deleted %(num)d annotation layers" msgstr[0] "选择一个注释图层" -#: superset/charts/api.py:524 +#: superset/charts/api.py:521 #, python-format msgid "Deleted %(num)d chart" msgid_plural "Deleted %(num)d charts" @@ -5568,13 +5672,13 @@ msgid "Deleted %(num)d css template" msgid_plural "Deleted %(num)d css templates" msgstr[0] "删除了 %(num)d 个css模板" -#: superset/dashboards/api.py:760 +#: superset/dashboards/api.py:745 #, python-format msgid "Deleted %(num)d dashboard" msgid_plural "Deleted %(num)d dashboards" msgstr[0] "删除了 %(num)d 个看板" -#: superset/datasets/api.py:783 +#: superset/datasets/api.py:789 #, python-format msgid "Deleted %(num)d dataset" msgid_plural "Deleted %(num)d datasets" @@ -5586,19 +5690,30 @@ msgid "Deleted %(num)d report schedule" msgid_plural "Deleted %(num)d report schedules" msgstr[0] "已经删除了 %(num)d 个报告时间表" +#: superset/row_level_security/api.py:349 +#, fuzzy, python-format +msgid "Deleted %(num)d rules" +msgid_plural "Deleted %(num)d rules" +msgstr[0] "删除了 %(num)d 个图表" + #: superset/queries/saved_queries/api.py:222 #, python-format msgid "Deleted %(num)d saved query" msgid_plural "Deleted %(num)d saved queries" msgstr[0] "已经删除 %(num)d 个保存的查询" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:94 +#, fuzzy, python-format +msgid "Deleted %s" +msgstr "已删除:%s" + #: superset-frontend/src/features/home/SavedQueries.tsx:172 #: superset-frontend/src/pages/AlertReportList/index.tsx:183 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:90 #: superset-frontend/src/pages/AnnotationList/index.tsx:117 #: superset-frontend/src/pages/CssTemplateList/index.tsx:93 -#: superset-frontend/src/pages/DatabaseList/index.tsx:158 -#: superset-frontend/src/pages/DatasetList/index.tsx:653 +#: superset-frontend/src/pages/DatabaseList/index.tsx:169 +#: superset-frontend/src/pages/DatasetList/index.tsx:664 #: superset-frontend/src/pages/SavedQueryList/index.tsx:242 #: superset-frontend/src/reports/actions/reports.js:158 #: superset-frontend/src/views/CRUD/utils.tsx:272 @@ -5617,7 +5732,7 @@ msgstr "" msgid "Delimited long & lat single column" msgstr "经度&纬度单列限定" -#: superset/views/database/forms.py:150 +#: superset/views/database/forms.py:160 msgid "Delimiter" msgstr "分隔符" @@ -5645,32 +5760,34 @@ msgstr "降序" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:55 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Line/index.js:45 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:40 +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 msgid "Deprecated" msgstr "过时" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:83 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:114 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:96 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:127 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:46 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/index.ts:44 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:55 #: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/index.ts:44 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:157 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:156 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:183 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:261 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:265 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:860 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1206 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1210 -#: superset-frontend/src/components/ReportModal/index.tsx:294 +#: superset-frontend/src/components/ReportModal/index.tsx:293 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/DividerConfigForm.tsx:51 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:1158 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:367 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:385 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:465 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:154 #: superset-frontend/src/pages/AnnotationList/index.tsx:161 -#: superset/connectors/sqla/views.py:157 superset/connectors/sqla/views.py:251 -#: superset/connectors/sqla/views.py:362 superset/connectors/sqla/views.py:491 -#: superset/views/chart/mixin.py:80 superset/views/sql_lab/views.py:84 +#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:398 superset/views/chart/mixin.py:80 +#: superset/views/sql_lab/views.py:84 msgid "Description" msgstr "描述" @@ -5683,7 +5800,7 @@ msgstr "说明(见列表)" msgid "Description Columns" msgstr "列描述" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:49 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:50 msgid "Description text that shows up below your Big Number" msgstr "在大数字下面显示描述文本" @@ -5752,7 +5869,7 @@ msgstr "" msgid "Dimensions" msgstr "维度" -#: superset/viz.py:2005 +#: superset/viz.py:1928 msgid "Directed Force Layout" msgstr "有向图" @@ -5762,11 +5879,11 @@ msgstr "有向图" msgid "Directional" msgstr "方向" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:202 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:212 msgid "Disable SQL Lab data preview queries" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:205 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:215 msgid "" "Disable data preview when fetching table metadata in SQL Lab. Useful to " "avoid browser performance issues when using databases with very wide " @@ -5806,7 +5923,6 @@ msgstr "显示列级别合计" msgid "Display configuration" msgstr "显示配置" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:87 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:252 msgid "" "Display metrics side by side within each column, as opposed to each " @@ -5817,15 +5933,11 @@ msgstr "在每个列中并排显示指标,而不是每个指标并排显示每 msgid "Display row level total" msgstr "显示行级合计" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:38 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:39 #, fuzzy msgid "Display settings" msgstr "计划设置" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:78 -msgid "Display total row/column" -msgstr "显示总行 / 列" - #: superset-frontend/plugins/plugin-chart-echarts/src/Graph/index.ts:35 msgid "" "Displays connections between entities in a graph structure. Useful for " @@ -5845,7 +5957,7 @@ msgstr "基于某列进行分布" msgid "Distribution" msgstr "分布" -#: superset/viz.py:1801 +#: superset/viz.py:1717 msgid "Distribution - Bar Chart" msgstr "分布 - 柱状图" @@ -5863,7 +5975,7 @@ msgstr "是否用圆环圈替代饼图?" msgid "Documentation" msgstr "文档" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:40 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 msgid "Domain" msgstr "主域" @@ -5877,19 +5989,19 @@ msgstr "圆环圈" msgid "Dotted" msgstr "已编辑" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:480 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:482 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:292 #, fuzzy msgid "Download" msgstr "下载为图片" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:317 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:504 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:512 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:329 msgid "Download as image" msgstr "下载为图片" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:264 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:262 msgid "Download to CSV" msgstr "下载到CSV" @@ -5942,20 +6054,20 @@ msgstr "绘制次要y轴记号的分割线" msgid "Draw split lines for minor y-axis ticks" msgstr "绘制次要y轴记号的分割线" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:181 -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:191 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:206 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:216 msgid "Drill by" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:172 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:199 msgid "Drill by is not available for this data point" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:170 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:197 msgid "Drill by is not yet supported for this chart type" msgstr "" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:154 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:420 #, fuzzy, python-format msgid "Drill by: %s" msgstr "排序 %s" @@ -5984,62 +6096,38 @@ msgstr "" msgid "Drill to detail: %s" msgstr "" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:206 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:184 #, fuzzy msgid "Drop a column here or click" msgid_plural "Drop columns here or click" msgstr[0] "将列拖放到此处或单击" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:335 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:330 #, fuzzy msgid "Drop a column/metric here or click" msgid_plural "Drop columns/metrics here or click" msgstr[0] "将列/指标放在此处或单击" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:248 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 #, fuzzy msgid "Drop a temporal column here or click" msgstr "将列拖放到此处或单击" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:216 -#, fuzzy -msgid "Drop column here" -msgid_plural "Drop columns here" -msgstr[0] "将列拖放到此处" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:340 -#, fuzzy -msgid "Drop column or metric here" -msgid_plural "Drop columns or metrics here" -msgstr[0] "将列或指标放在此处" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndSelectLabel.tsx:83 -msgid "Drop columns here" -msgstr "将列拖放到此处" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:402 -msgid "Drop columns or metrics here" -msgstr "将列或指标拖放到此处" - -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:401 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:405 msgid "Drop columns/metrics here or click" msgstr "将列/指标拖放到此处或单击" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/dndControls.tsx:247 -msgid "Drop temporal column here" -msgstr "将时间列拖放到此处" - #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/DualLine/index.js:32 msgid "Dual Line Chart" msgstr "双线图" #: superset-frontend/src/features/datasets/DuplicateDatasetModal.tsx:64 -#: superset-frontend/src/pages/DatasetList/index.tsx:472 +#: superset-frontend/src/pages/DatasetList/index.tsx:483 #, fuzzy msgid "Duplicate" msgstr "复制tab页" -#: superset/views/datasource/views.py:122 +#: superset/views/datasource/views.py:124 #, python-format msgid "Duplicate column name(s): %(columns)s" msgstr "重复的列名%(columns)s" @@ -6065,7 +6153,7 @@ msgstr "复制tab页" msgid "Duration" msgstr "持续时间" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:239 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:249 #, fuzzy msgid "" "Duration (in seconds) of the caching timeout for charts of this database." @@ -6094,26 +6182,26 @@ msgid "" "undefined." msgstr "此图表的缓存超时前的持续时间(秒)。请注意,如果未定义则默认为数据集的超时时间。" -#: superset/connectors/sqla/views.py:462 +#: superset/connectors/sqla/views.py:369 msgid "" "Duration (in seconds) of the caching timeout for this table. A timeout of" " 0 indicates that the cache never expires. Note this defaults to the " "database timeout if undefined." msgstr "此表的缓存超时持续时间(以秒为单位)。超时为0表示缓存永远不会过期。注意,如果未定义,这默认为数据库的超时。" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:261 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:271 msgid "" "Duration (in seconds) of the metadata caching timeout for schemas of this" " database. If left unset, the cache never expires." msgstr "此数据库图表的缓存超时持续时间(以秒为单位)。超时为0表示缓存永远不会过期。注意,如果未定义,这默认为永不过期。" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:282 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:292 msgid "" "Duration (in seconds) of the metadata caching timeout for tables of this " "database. If left unset, the cache never expires. " msgstr "此数据库图表的缓存超时持续时间(以秒为单位)。超时为0表示缓存永远不会过期。注意,如果未定义,缓存为永不过期。" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:50 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:59 msgid "Duration in ms (1.40008 => 1ms 400µs 80ns)" msgstr "持续时间(毫秒)(1.40008 => 1ms 400µs 80ns)" @@ -6122,7 +6210,7 @@ msgstr "持续时间(毫秒)(1.40008 => 1ms 400µs 80ns)" msgid "Duration in ms (100.40008 => 100ms 400µs 80ns)" msgstr "持续时间(毫秒)(1.40008 => 1ms 400µs 80ns)" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:49 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:58 #: superset-frontend/src/explore/controls.jsx:89 msgid "Duration in ms (66000 => 1m 6s)" msgstr "持续时间(毫秒)(66000 => 1m 6s)" @@ -6161,7 +6249,7 @@ msgstr "" msgid "ECharts" msgstr "ECharts图表" -#: superset/reports/notifications/email.py:130 +#: superset/reports/notifications/email.py:133 #, fuzzy msgid "EMAIL_REPORTS_CTA" msgstr "激活邮件报告" @@ -6172,12 +6260,12 @@ msgstr "激活邮件报告" msgid "END (EXCLUSIVE)" msgstr "结束" -#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:171 +#: superset-frontend/packages/superset-ui-core/src/chart/components/SuperChartCore.tsx:175 #, fuzzy msgid "ERROR" msgstr "错误" -#: superset-frontend/src/views/CRUD/hooks.ts:700 +#: superset-frontend/src/views/CRUD/hooks.ts:704 #, python-format msgid "ERROR: %s" msgstr "错误: %s" @@ -6208,8 +6296,9 @@ msgstr "边缘宽度" #: superset-frontend/src/pages/AlertReportList/index.tsx:385 #: superset-frontend/src/pages/ChartList/index.tsx:553 #: superset-frontend/src/pages/DashboardList/index.tsx:461 -#: superset-frontend/src/pages/DatabaseList/index.tsx:431 -#: superset-frontend/src/pages/DatasetList/index.tsx:452 +#: superset-frontend/src/pages/DatabaseList/index.tsx:442 +#: superset-frontend/src/pages/DatasetList/index.tsx:463 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:200 msgid "Edit" msgstr "编辑" @@ -6238,7 +6327,7 @@ msgstr "编辑图表" msgid "Edit Chart Properties" msgstr "编辑图表属性" -#: superset/connectors/sqla/views.py:75 +#: superset/connectors/sqla/views.py:74 msgid "Edit Column" msgstr "编辑列" @@ -6250,7 +6339,7 @@ msgstr "编辑看板" msgid "Edit Database" msgstr "编辑数据库" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:199 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:241 msgid "Edit Dataset " msgstr "编辑数据集" @@ -6258,7 +6347,7 @@ msgstr "编辑数据集" msgid "Edit Log" msgstr "编辑日志" -#: superset/connectors/sqla/views.py:210 +#: superset/connectors/sqla/views.py:209 msgid "Edit Metric" msgstr "编辑指标" @@ -6270,15 +6359,16 @@ msgstr "编辑插件" msgid "Edit Report" msgstr "编辑报表" -#: superset/connectors/sqla/views.py:293 -msgid "Edit Row level security filter" -msgstr "编辑行级安全过滤" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:337 +#, fuzzy +msgid "Edit Rule" +msgstr "光模式" #: superset/views/sql_lab/views.py:55 msgid "Edit Saved Query" msgstr "编辑保存的查询" -#: superset/connectors/sqla/views.py:387 +#: superset/connectors/sqla/views.py:294 msgid "Edit Table" msgstr "编辑表" @@ -6295,9 +6385,9 @@ msgstr "添加注释层" msgid "Edit annotation layer properties" msgstr "编辑注释图层属性" -#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:74 +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:122 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailModal.tsx:44 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:212 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:217 #: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:405 #, fuzzy msgid "Edit chart" @@ -6312,7 +6402,7 @@ msgstr "编辑图表属性" msgid "Edit dashboard" msgstr "编辑仪表盘" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1700 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1756 msgid "Edit database" msgstr "编辑数据库" @@ -6322,7 +6412,7 @@ msgstr "编辑数据集" #: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:243 #: superset-frontend/src/components/ReportModal/HeaderReportDropdown/index.tsx:264 -#: superset-frontend/src/components/ReportModal/index.tsx:212 +#: superset-frontend/src/components/ReportModal/index.tsx:211 msgid "Edit email report" msgstr "编辑邮件报告" @@ -6347,7 +6437,7 @@ msgstr "编辑模板" msgid "Edit template parameters" msgstr "编辑模板参数" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:717 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:718 #: superset-frontend/src/dashboard/components/DashboardGrid.jsx:242 #, fuzzy msgid "Edit the dashboard" @@ -6373,8 +6463,9 @@ msgstr "编辑过滤条件集合" msgid "Either the database is spelled incorrectly or does not exist." msgstr "数据库拼写不正确或不存在。" -#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:654 -#: superset/db_engine_specs/redshift.py:67 +#: superset/db_engine_specs/mysql.py:150 superset/db_engine_specs/presto.py:681 +#: superset/db_engine_specs/redshift.py:71 +#: superset/db_engine_specs/starrocks.py:122 #, python-format msgid "Either the username \"%(username)s\" or the password is incorrect." msgstr "用户名\"%(username)s\"或密码不正确" @@ -6445,12 +6536,12 @@ msgstr "空集合" msgid "Empty column" msgstr "我的列" -#: superset/charts/data/api.py:363 +#: superset/charts/data/api.py:366 #, fuzzy msgid "Empty query result" msgstr "查询为空?" -#: superset/connectors/sqla/models.py:1243 superset/models/helpers.py:1433 +#: superset/models/helpers.py:1508 msgid "Empty query?" msgstr "查询为空?" @@ -6463,11 +6554,11 @@ msgstr "" msgid "Enable 'Allow file uploads to database' in any database's settings" msgstr "" -#: superset/connectors/sqla/views.py:482 +#: superset/connectors/sqla/views.py:389 msgid "Enable Filter Select" msgstr "启用过滤器选择" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:139 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:159 #, fuzzy msgid "Enable cross-filtering" msgstr "交叉筛选作用域" @@ -6504,7 +6595,7 @@ msgstr "启用图形漫游" msgid "Enable node dragging" msgstr "启用节点拖动" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:170 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:180 msgid "Enable query cost estimation" msgstr "启用查询成本估算" @@ -6513,7 +6604,7 @@ msgstr "启用查询成本估算" msgid "Enable server side pagination of results (experimental feature)" msgstr "支持服务器端结果分页(实验功能)" -#: superset/viz.py:2567 +#: superset/viz.py:2514 msgid "" "Encountered invalid NULL spatial entry," " please consider filtering those " @@ -6563,18 +6654,18 @@ msgstr "起始时间不可以大于当前时间" msgid "Engine \"%(engine)s\" cannot be configured through parameters." msgstr "引擎 \"%(engine)s\" 不能通过参数配置。" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:476 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:480 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:512 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:516 msgid "Engine Parameters" msgstr "引擎参数" -#: superset/databases/schemas.py:298 +#: superset/databases/schemas.py:302 msgid "" "Engine spec \"InvalidEngine\" does not support being configured via " "individual parameters." msgstr "引擎\"InvalidEngine\"不支持通过单独的参数进行配置。" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:366 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:376 msgid "Enter CA_BUNDLE" msgstr "进入CA_BUNDLE" @@ -6583,7 +6674,7 @@ msgstr "进入CA_BUNDLE" msgid "Enter Primary Credentials" msgstr "上传验证文件" -#: superset/views/database/forms.py:151 +#: superset/views/database/forms.py:161 #, fuzzy msgid "Enter a delimiter for this data" msgstr "输入标签的新标题" @@ -6596,14 +6687,14 @@ msgstr "输入此工作表的名称" msgid "Enter a new title for the tab" msgstr "输入标签的新标题" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:234 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:255 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:276 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:244 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:265 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:286 msgid "Enter duration in seconds" msgstr "输入间隔时间(秒)" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:265 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:367 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:369 msgid "Enter fullscreen" msgstr "全屏" @@ -6630,7 +6721,7 @@ msgstr "相同的日期大小" msgid "Equal to (=)" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:140 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:182 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:139 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:298 #: superset-frontend/src/explore/components/EmbedCodeContent.jsx:57 @@ -6639,22 +6730,22 @@ msgstr "" msgid "Error" msgstr "错误" -#: superset/connectors/sqla/models.py:1650 superset/models/helpers.py:1843 +#: superset/models/helpers.py:1919 #, python-format msgid "Error in jinja expression in HAVING clause: %(msg)s" msgstr "jinja表达式中的HAVING子句出错:%(msg)s" -#: superset/connectors/sqla/models.py:1145 +#: superset/connectors/sqla/models.py:1105 superset/models/helpers.py:835 #, python-format msgid "Error in jinja expression in RLS filters: %(msg)s" msgstr "jinja表达式中的 RLS filters 出错:%(msg)s" -#: superset/connectors/sqla/models.py:1633 superset/models/helpers.py:1831 +#: superset/models/helpers.py:1901 #, python-format msgid "Error in jinja expression in WHERE clause: %(msg)s" msgstr "jinja表达式中的WHERE子句出错:%(msg)s" -#: superset/connectors/sqla/models.py:826 +#: superset/connectors/sqla/models.py:789 #, python-format msgid "Error in jinja expression in fetch values predicate: %(msg)s" msgstr "获取jinja表达式中的谓词的值出错:%(msg)s" @@ -6678,7 +6769,7 @@ msgstr "获取图表时出错" msgid "Error while fetching data: %s" msgstr "获取数据时出错:%s" -#: superset/connectors/sqla/models.py:953 superset/models/helpers.py:1029 +#: superset/connectors/sqla/models.py:914 superset/models/helpers.py:1072 #, python-format msgid "Error while rendering virtual dataset query: %(msg)s" msgstr "保存查询时出错:%(msg)s" @@ -6688,12 +6779,12 @@ msgstr "保存查询时出错:%(msg)s" msgid "Error: %(error)s" msgstr "" -#: superset/views/core.py:820 superset/views/core.py:1918 +#: superset/views/core.py:842 superset/views/core.py:1955 #, python-format msgid "Error: %(msg)s" msgstr "" -#: superset/views/core.py:817 +#: superset/views/core.py:839 #, fuzzy msgid "Error: permalink state not found" msgstr "未找到报表计划状态" @@ -6706,7 +6797,7 @@ msgstr "运行选定的查询" msgid "Estimate selected query cost" msgstr "运行选定的查询" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:621 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:615 msgid "Estimate the cost before running a query" msgstr "在运行查询之前计算执行计划" @@ -6728,7 +6819,7 @@ msgstr "事件名称" msgid "Event definition" msgstr "事件定义" -#: superset/viz.py:2933 +#: superset/viz.py:2927 msgid "Event flow" msgstr "事件流" @@ -6775,11 +6866,11 @@ msgstr "例子" msgid "Examples" msgstr "示例" -#: superset/views/database/forms.py:278 +#: superset/views/database/forms.py:288 msgid "Excel File" msgstr "Excel文件" -#: superset/views/database/views.py:424 +#: superset/views/database/views.py:427 #, python-format msgid "" "Excel file \"%(excel_filename)s\" uploaded to table \"%(table_name)s\" in" @@ -6788,7 +6879,7 @@ msgstr "" "Excel 文件 \"%(excel_filename)s\" 上传到数据库 \"%(db_name)s\" 中的表 " "\"%(table_name)s\"" -#: superset/views/database/views.py:303 +#: superset/views/database/views.py:306 msgid "Excel to Database configuration" msgstr "Excel 到数据库配置" @@ -6796,6 +6887,11 @@ msgstr "Excel 到数据库配置" msgid "Exclude selected values" msgstr "排除选定的值" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:405 +#, fuzzy +msgid "Excluded roles" +msgstr "包含系列" + #: superset-frontend/src/SqlLab/components/HighlightedSql/index.tsx:82 msgid "Executed SQL" msgstr "已执行的SQL" @@ -6812,17 +6908,17 @@ msgstr "任务ID" msgid "Execution log" msgstr "操作日志" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:411 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:419 #, fuzzy msgid "Existing dataset" msgstr "丢失数据集" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:264 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:366 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:368 msgid "Exit fullscreen" msgstr "退出全屏" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:92 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:90 #, fuzzy msgid "Expand" msgstr "和" @@ -6835,12 +6931,12 @@ msgstr "全部展开" msgid "Expand data panel" msgstr "" -#: superset-frontend/src/components/Table/index.tsx:209 +#: superset-frontend/src/components/Table/index.tsx:213 #, fuzzy msgid "Expand row" msgstr "标题行" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:197 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:194 msgid "Expand table preview" msgstr "展开表格预览" @@ -6857,6 +6953,7 @@ msgid "" msgstr "" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:38 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/index.js:37 @@ -6871,11 +6968,11 @@ msgid "Experimental" msgstr "实验" #: superset-frontend/src/SqlLab/components/ExploreCtasResultsButton/index.tsx:91 -#: superset/views/core.py:987 +#: superset/views/core.py:1009 msgid "Explore" msgstr "探索" -#: superset/views/core.py:985 +#: superset/views/core.py:1007 #, python-format msgid "Explore - %(table)s" msgstr "查看 - %(table)s" @@ -6891,9 +6988,9 @@ msgstr "在数据探索视图中探索结果集" #: superset-frontend/src/pages/ChartList/index.tsx:854 #: superset-frontend/src/pages/DashboardList/index.tsx:445 #: superset-frontend/src/pages/DashboardList/index.tsx:720 -#: superset-frontend/src/pages/DatabaseList/index.tsx:415 -#: superset-frontend/src/pages/DatasetList/index.tsx:434 -#: superset-frontend/src/pages/DatasetList/index.tsx:759 +#: superset-frontend/src/pages/DatabaseList/index.tsx:426 +#: superset-frontend/src/pages/DatasetList/index.tsx:445 +#: superset-frontend/src/pages/DatasetList/index.tsx:781 #: superset-frontend/src/pages/SavedQueryList/index.tsx:550 #: superset/views/dashboard/views.py:65 msgid "Export" @@ -6907,7 +7004,7 @@ msgstr "导出看板?" msgid "Export query" msgstr "导出查询" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:485 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:487 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:316 #, fuzzy msgid "Export to .CSV" @@ -6918,20 +7015,21 @@ msgstr "导出到YAML格式" msgid "Export to .JSON" msgstr "导出到YAML格式" +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:506 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:335 #, fuzzy msgid "Export to Excel" msgstr "导出到YAML格式" -#: superset/views/base.py:606 +#: superset/views/base.py:607 msgid "Export to YAML" msgstr "导出到YAML格式" -#: superset/views/base.py:606 +#: superset/views/base.py:607 msgid "Export to YAML?" msgstr "导出到YAML?" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:496 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:498 #, fuzzy msgid "Export to full .CSV" msgstr "导出全量CSV" @@ -6944,12 +7042,12 @@ msgstr "" msgid "Export to pivoted .CSV" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:88 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:98 msgid "Expose database in SQL Lab" msgstr "在SQL工具箱中展示数据库" -#: superset-frontend/src/pages/DatabaseList/index.tsx:354 -#: superset-frontend/src/pages/DatabaseList/index.tsx:460 +#: superset-frontend/src/pages/DatabaseList/index.tsx:365 +#: superset-frontend/src/pages/DatabaseList/index.tsx:471 #: superset/views/database/mixins.py:183 msgid "Expose in SQL Lab" msgstr "在 SQL 工具箱中公开" @@ -6958,12 +7056,12 @@ msgstr "在 SQL 工具箱中公开" msgid "Expose this DB in SQL Lab" msgstr "在 SQL 工具箱中公开这个数据库" -#: superset/connectors/sqla/views.py:161 +#: superset/connectors/sqla/views.py:160 msgid "Expression" msgstr "表达式" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:908 -#: superset/connectors/sqla/views.py:257 superset/connectors/sqla/views.py:494 +#: superset/connectors/sqla/views.py:256 superset/connectors/sqla/views.py:401 #: superset/views/database/mixins.py:193 msgid "Extra" msgstr "扩展" @@ -7032,8 +7130,8 @@ msgstr "因素" msgid "Factor to multiply the metric by" msgstr "" -#: superset/views/database/forms.py:167 superset/views/database/forms.py:324 -#: superset/views/database/forms.py:455 +#: superset/views/database/forms.py:177 superset/views/database/forms.py:334 +#: superset/views/database/forms.py:465 msgid "Fail" msgstr "失败" @@ -7044,16 +7142,16 @@ msgid "Failed" msgstr "失败" #: superset-frontend/src/SqlLab/actions/sqlLab.js:210 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:346 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:350 msgid "Failed at retrieving results" msgstr "检索结果失败" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:500 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:496 #, python-format msgid "Failed at stopping query. %s" msgstr "停止查询失败。 %s" -#: superset-frontend/src/components/ReportModal/index.tsx:343 +#: superset-frontend/src/components/ReportModal/index.tsx:342 msgid "Failed to create report" msgstr "" @@ -7062,24 +7160,38 @@ msgstr "" msgid "Failed to execute %(query)s" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:97 +msgid "Failed to generate chart edit URL" +msgstr "" + #: superset-frontend/src/pages/Chart/index.tsx:57 msgid "Failed to load chart data" msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:402 #: superset-frontend/src/pages/Chart/index.tsx:69 msgid "Failed to load chart data." msgstr "" +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:149 +msgid "Failed to load dimensions for drill by" +msgstr "" + #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSimpleTabContent/useAdvancedDataTypes.ts:70 #, fuzzy msgid "Failed to retrieve advanced type" msgstr "检索结果失败" +#: superset-frontend/src/dashboard/actions/dashboardInfo.ts:125 +#, fuzzy +msgid "Failed to save cross-filter scoping" +msgstr "交叉筛选作用域" + #: superset/errors.py:143 superset/sqllab/sql_json_executer.py:189 msgid "Failed to start remote query on a worker." msgstr "无法启动远程查询" -#: superset-frontend/src/components/ReportModal/index.tsx:342 +#: superset-frontend/src/components/ReportModal/index.tsx:341 msgid "Failed to update report" msgstr "" @@ -7103,15 +7215,15 @@ msgstr "收藏" msgid "February" msgstr "二月" -#: superset/connectors/sqla/views.py:488 +#: superset/connectors/sqla/views.py:395 msgid "Fetch Values Predicate" msgstr "取值谓词" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:538 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:531 msgid "Fetch data preview" msgstr "获取数据预览" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:352 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:354 #, python-format msgid "Fetched %s" msgstr "刷新于 %s" @@ -7180,12 +7292,18 @@ msgid "Filter Settings" msgstr "新的过滤器" #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:825 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:362 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:372 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:373 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:134 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:255 msgid "Filter Type" msgstr "过滤类型" #: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:28 -msgid "Filter box" -msgstr "过滤器" +#, fuzzy +msgid "Filter box (deprecated)" +msgstr "未选择过滤条件。" #: superset-frontend/src/dashboard/components/SliceAdder.jsx:351 #, fuzzy @@ -7204,7 +7322,7 @@ msgstr "过滤条件的过滤配置" msgid "Filter has default value" msgstr "过滤器默认值" -#: superset-frontend/src/components/Table/index.tsx:197 +#: superset-frontend/src/components/Table/index.tsx:201 #, fuzzy msgid "Filter menu" msgstr "过滤值" @@ -7221,7 +7339,7 @@ msgstr "过滤值" msgid "Filter only displays values relevant to selections made in other filters." msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:289 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:283 msgid "Filter results" msgstr "过滤结果" @@ -7258,7 +7376,7 @@ msgstr "过滤值(区分大小写)" msgid "Filter value is required" msgstr "需要默认值" -#: superset/connectors/sqla/models.py:1549 superset/models/helpers.py:1754 +#: superset/models/helpers.py:1815 msgid "Filter value list cannot be empty" msgstr "不能为空" @@ -7266,7 +7384,7 @@ msgstr "不能为空" msgid "Filter your charts" msgstr "过滤您的图表" -#: superset/connectors/sqla/views.py:159 +#: superset/connectors/sqla/views.py:158 msgid "Filterable" msgstr "可过滤" @@ -7274,7 +7392,7 @@ msgstr "可过滤" #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/Header/index.tsx:109 #: superset-frontend/src/explore/controls.jsx:446 #: superset-frontend/src/visualizations/FilterBox/controlPanel.jsx:35 -#: superset/viz.py:2142 +#: superset/viz.py:2071 msgid "Filters" msgstr "过滤" @@ -7300,7 +7418,7 @@ msgstr "过滤配置" msgid "Filters out of scope (%d)" msgstr "筛选器超出范围(%d)" -#: superset/connectors/sqla/views.py:342 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:435 msgid "" "Filters with the same group key will be ORed together within the group, " "while different filter groups will be ANDed together. Undefined group " @@ -7316,9 +7434,9 @@ msgstr "" "'region'),filter子句将应用过滤 (department = 'Finance' OR department = " "'Marketing') 和 (region = 'Europe')" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1077 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1125 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1857 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1132 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1180 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1914 msgid "Finish" msgstr "完成" @@ -7376,7 +7494,7 @@ msgstr "列表中最大值的字体大小" msgid "Font size for the smallest value in the list" msgstr "列表中最小值的字体大小" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:173 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:183 msgid "" "For Bigquery, Presto and Postgres, shows a button to compute cost before " "running a query." @@ -7392,7 +7510,7 @@ msgid "" "function, refer to the" msgstr "" -#: superset/connectors/sqla/views.py:336 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:408 msgid "" "For regular filters, these are the roles this filter will be applied to. " "For base filters, these are the roles that the filter DOES NOT apply to, " @@ -7403,27 +7521,27 @@ msgstr "对于常规过滤,这些是此过滤将应用于的角色。对于基 msgid "Force" msgstr "强制" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:141 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:151 msgid "" "Force all tables and views to be created in this schema when clicking " "CTAS or CVAS in SQL Lab." msgstr "在SQL工具箱中点击CTAS or CVAS强制创建所有数据表或视图" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:83 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:84 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:157 #, fuzzy msgid "Force date format" msgstr "日期格式化" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:381 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:383 msgid "Force refresh" msgstr "强制刷新" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:292 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:291 msgid "Force refresh schema list" msgstr "强制刷新数据" -#: superset-frontend/src/components/TableSelector/index.tsx:317 +#: superset-frontend/src/components/TableSelector/index.tsx:307 msgid "Force refresh table list" msgstr "强制刷新数据" @@ -7440,11 +7558,11 @@ msgstr "" msgid "Forest Green" msgstr "刷新频率" -#: superset/explore/commands/get.py:87 superset/views/core.py:834 +#: superset/explore/commands/get.py:87 superset/views/core.py:856 msgid "Form data not found in cache, reverting to chart metadata." msgstr "" -#: superset/explore/commands/get.py:95 superset/views/core.py:840 +#: superset/explore/commands/get.py:95 superset/views/core.py:862 msgid "Form data not found in cache, reverting to dataset metadata." msgstr "" @@ -7454,7 +7572,7 @@ msgstr "" msgid "Formattable" msgstr "格式表" -#: superset-frontend/src/components/ReportModal/index.tsx:255 +#: superset-frontend/src/components/ReportModal/index.tsx:254 msgid "Formatted CSV attached in email" msgstr "在邮件中附件CSV" @@ -7510,7 +7628,7 @@ msgstr "节点之间的摩擦" msgid "Friday" msgstr "星期五" -#: superset/utils/date_parser.py:267 superset/viz.py:392 +#: superset/utils/date_parser.py:267 superset/viz.py:403 msgid "From date cannot be larger than to date" msgstr "起始时间不可以大于当前时间" @@ -7585,7 +7703,7 @@ msgstr "按日期单位获取最后的日期。" msgid "Get the specify date for the holiday" msgstr "获取指定节假日的日期" -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:713 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:714 msgid "Go to the edit mode to configure the dashboard and add charts" msgstr "" @@ -7642,20 +7760,23 @@ msgstr "分组" msgid "Group By filter plugin" msgstr "分组过滤插件" -#: superset/viz.py:927 -msgid "Group By' and 'Columns' can't overlap" -msgstr "“Group by”列和字段不能重叠" - #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/shared.ts:59 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:84 msgid "Group By, Metrics or Percentage Metrics must have a value" msgstr "分组、指标或百分比指标必须具有值" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:433 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:139 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:267 +#, fuzzy +msgid "Group Key" +msgstr "分组" + #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/FiltersConfigForm.tsx:323 msgid "Group by" msgstr "分组" -#: superset/connectors/sqla/views.py:158 +#: superset/connectors/sqla/views.py:157 msgid "Groupable" msgstr "可分组" @@ -7683,12 +7804,12 @@ msgstr "已创建" msgid "Header" msgstr "标题行" -#: superset/views/database/forms.py:244 superset/views/database/forms.py:331 +#: superset/views/database/forms.py:254 superset/views/database/forms.py:341 msgid "Header Row" msgstr "标题行" #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/index.js:38 -#: superset/viz.py:2249 +#: superset/viz.py:2183 msgid "Heatmap" msgstr "热力图" @@ -7714,7 +7835,7 @@ msgstr "标记线的标签" msgid "Hide Line" msgstr "隐藏Layer" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:394 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:396 #, fuzzy msgid "Hide chart description" msgstr "切换图表说明" @@ -7743,12 +7864,12 @@ msgid "Hierarchy" msgstr "层次" #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/index.js:37 -#: superset/viz.py:1743 +#: superset/viz.py:1656 msgid "Histogram" msgstr "直方图" #: superset-frontend/src/pages/Home/index.tsx:333 -#: superset/initialization/__init__.py:233 +#: superset/initialization/__init__.py:235 msgid "Home" msgstr "主页" @@ -7756,7 +7877,7 @@ msgstr "主页" msgid "Horizon Chart" msgstr "地平线图" -#: superset/viz.py:2310 +#: superset/viz.py:2246 msgid "Horizon Charts" msgstr "水平图" @@ -7765,7 +7886,7 @@ msgstr "水平图" msgid "Horizontal" msgstr "比例" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:166 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:192 #, fuzzy msgid "Horizontal (Top)" msgstr "水平对齐" @@ -7778,12 +7899,12 @@ msgstr "水平对齐" msgid "Host" msgstr "主机" -#: superset/db_engine_specs/base.py:1839 -#: superset/db_engine_specs/clickhouse.py:203 +#: superset/db_engine_specs/base.py:1872 +#: superset/db_engine_specs/clickhouse.py:204 msgid "Hostname or IP address" msgstr "主机名或IP" -#: superset/db_engine_specs/base.py:104 +#: superset/db_engine_specs/base.py:105 msgid "Hour" msgstr "小时" @@ -7840,7 +7961,7 @@ msgstr "Id" msgid "Id of root node of the tree." msgstr "树的根节点的ID。" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:391 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:401 msgid "" "If Presto or Trino, all the queries in SQL Lab are going to be executed " "as the currently logged on user who must have permission to run them. If " @@ -7863,7 +7984,7 @@ msgstr "" "如果使用Presto,SQL 工具箱中的所有查询都将被当前登录的用户执行,并且这些用户必须拥有运行它们的权限。
如果启用 Hive " "和hive.server2.enable.doAs,将作为服务帐户运行查询,但会根据hive.server2.proxy.user的属性伪装当前登录用户。" -#: superset/views/database/forms.py:164 +#: superset/views/database/forms.py:174 #, fuzzy msgid "If Table Already Exists" msgstr "过滤器已存在" @@ -7872,7 +7993,7 @@ msgstr "过滤器已存在" msgid "If a metric is specified, sorting will be done based on the metric value" msgstr "如果指定了度量,则将根据该度量值进行排序" -#: superset/views/database/forms.py:238 +#: superset/views/database/forms.py:248 msgid "" "If duplicate columns are not overridden, they will be presented as \"X.1," " X.2 ...X.x\"" @@ -7882,7 +8003,7 @@ msgstr "" msgid "If selected, please set the schemas allowed for csv upload in Extra." msgstr "如果选择,请额外设置csv上传允许的模式。" -#: superset/views/database/forms.py:318 superset/views/database/forms.py:449 +#: superset/views/database/forms.py:328 superset/views/database/forms.py:459 msgid "" "If table exists do one of the following: Fail (do nothing), Replace (drop" " and recreate table) or Append (insert data)." @@ -7901,7 +8022,7 @@ msgstr "" msgid "Ignore time" msgstr "忽略时间" -#: superset-frontend/src/components/ReportModal/index.tsx:252 +#: superset-frontend/src/components/ReportModal/index.tsx:251 msgid "Image (PNG) embedded in email" msgstr "使用邮箱发送图片(PNG)" @@ -7909,7 +8030,7 @@ msgstr "使用邮箱发送图片(PNG)" msgid "Image download failed, please refresh and try again." msgstr "图片发送失败,请刷新或重试" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:386 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:396 msgid "Impersonate logged in user (Presto, Trino, Drill, Hive, and GSheets)" msgstr "模拟登录用户 (Presto, Trino, Drill & Hive)" @@ -7930,11 +8051,11 @@ msgstr "导入 %s" msgid "Import Dashboard(s)" msgstr "导入看板" -#: superset/initialization/__init__.py:337 +#: superset/initialization/__init__.py:331 msgid "Import Dashboards" msgstr "导入看板" -#: superset/connectors/sqla/views.py:386 +#: superset/connectors/sqla/views.py:293 msgid "Import a table definition" msgstr "导入一个已定义的表" @@ -7959,15 +8080,15 @@ msgstr "导入看板" msgid "Import database failed for an unknown reason" msgstr "导入数据库失败,原因未知" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1912 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1969 msgid "Import database from file" msgstr "从文件中导入数据库" -#: superset/datasets/commands/exceptions.py:185 +#: superset/datasets/commands/exceptions.py:202 msgid "Import dataset failed for an unknown reason" msgstr "因为未知的原因导入数据集失败" -#: superset-frontend/src/pages/DatasetList/index.tsx:620 +#: superset-frontend/src/pages/DatasetList/index.tsx:631 msgid "Import datasets" msgstr "导入数据集" @@ -7994,7 +8115,7 @@ msgstr "在" msgid "Include Series" msgstr "包含系列" -#: superset-frontend/src/components/ReportModal/index.tsx:295 +#: superset-frontend/src/components/ReportModal/index.tsx:294 msgid "Include a description that will be sent with your report" msgstr "" @@ -8012,7 +8133,7 @@ msgstr "包含时间" msgid "Index" msgstr "我的编辑" -#: superset/views/database/forms.py:210 superset/views/database/forms.py:341 +#: superset/views/database/forms.py:220 superset/views/database/forms.py:351 msgid "Index Column" msgstr "索引字段" @@ -8051,12 +8172,25 @@ msgstr "即时过滤" msgid "Intensity" msgstr "强度" -#: superset/views/database/forms.py:190 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:85 +#, fuzzy +msgid "Intensity Radius" +msgstr "点半径" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:86 +msgid "Intensity Radius is the radius at which the weight is distributed" +msgstr "" + +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:69 +msgid "Intensity is the value multiplied by the weight to obtain the final weight" +msgstr "" + +#: superset/views/database/forms.py:200 #, fuzzy msgid "Interpret Datetime Format Automatically" msgstr "使用Pandas自动解释日期时间格式。" -#: superset/views/database/forms.py:191 +#: superset/views/database/forms.py:201 #, fuzzy msgid "Interpret the datetime format automatically" msgstr "使用Pandas自动解释日期时间格式。" @@ -8087,6 +8221,18 @@ msgstr "间隔开始列" msgid "Intervals" msgstr "间隔" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:68 +#, fuzzy +msgid "Intesity" +msgstr "强度" + +#: superset/db_engine_specs/ocient.py:274 +#, fuzzy +msgid "" +"Invalid Connection String: Expecting String of the form " +"'ocient://user:pass@host:port/database'." +msgstr "连接字符串无效,有效字符串通常如下:driver://user:password@database-host/database-name" + #: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:114 msgid "Invalid JSON" msgstr "无效的JSON" @@ -8100,7 +8246,7 @@ msgstr "无效的结果类型:%(result_type)s" msgid "Invalid certificate" msgstr "无效认证" -#: superset/views/core.py:1422 +#: superset/views/core.py:1463 msgid "" "Invalid connection string, a valid string usually follows:\n" "'DRIVER://USER:PASSWORD@DB-HOST/DATABASE-NAME'" @@ -8134,15 +8280,15 @@ msgstr "无效cron表达式" msgid "Invalid cumulative operator: %(operator)s" msgstr "累积运算符无效:%(operator)s" -#: superset/connectors/sqla/views.py:181 superset/datasets/schemas.py:44 +#: superset/connectors/sqla/views.py:180 superset/datasets/schemas.py:44 msgid "Invalid date/timestamp format" msgstr "无效的日期/时间戳格式" -#: superset/viz.py:2160 +#: superset/viz.py:2091 msgid "Invalid filter configuration, please select a column" msgstr "过滤器配置无效,请选择一个列" -#: superset/connectors/sqla/models.py:1623 superset/models/helpers.py:1820 +#: superset/models/helpers.py:1891 #, python-format msgid "Invalid filter operation type: %(op)s" msgstr "选择框的操作类型无效: %(op)s" @@ -8167,7 +8313,7 @@ msgstr "错误的经纬度配置。" msgid "Invalid longitude/latitude" msgstr "无效的经度/纬度" -#: superset/utils/core.py:1364 +#: superset/utils/core.py:1373 #, fuzzy, python-format msgid "Invalid metric object: %(metric)s" msgstr "无效的指标对象" @@ -8186,7 +8332,12 @@ msgstr "%(rolling_type)s 的选项无效:%(options)s" msgid "Invalid permalink key" msgstr "" -#: superset/common/query_actions.py:228 +#: superset/db_engine_specs/ocient.py:292 +#, python-format +msgid "Invalid reference to column: \"%(column)s\"" +msgstr "" + +#: superset/common/query_actions.py:227 #, python-format msgid "Invalid result type: %(result_type)s" msgstr "无效的结果类型:%(result_type)s" @@ -8196,7 +8347,7 @@ msgstr "无效的结果类型:%(result_type)s" msgid "Invalid rolling_type: %(type)s" msgstr "无效的滚动类型:%(type)s" -#: superset/viz.py:2530 +#: superset/viz.py:2474 #, python-format msgid "Invalid spatial point encountered: %s" msgstr "遇到无效的空间点:%s" @@ -8207,7 +8358,7 @@ msgstr "遇到无效的空间点:%s" msgid "Invalid state." msgstr "无效认证" -#: superset/reports/commands/create.py:144 +#: superset/reports/commands/create.py:142 #, python-format msgid "Invalid tab ids: %s(tab_ids)" msgstr "" @@ -8216,7 +8367,7 @@ msgstr "" msgid "Inverse selection" msgstr "反选" -#: superset-frontend/src/components/Table/index.tsx:205 +#: superset-frontend/src/components/Table/index.tsx:209 #, fuzzy msgid "Invert current page" msgstr "百分比变化" @@ -8236,7 +8387,7 @@ msgstr "维度" msgid "Is false" msgstr "禁用" -#: superset/views/base_api.py:143 +#: superset/views/base_api.py:149 msgid "Is favorite" msgstr "收藏" @@ -8255,13 +8406,13 @@ msgstr "非空" msgid "Is null" msgstr "非空" -#: superset/views/base_api.py:171 +#: superset/views/base_api.py:177 msgid "Is tagged" msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:362 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:370 -#: superset/connectors/sqla/views.py:162 +#: superset/connectors/sqla/views.py:161 msgid "Is temporal" msgstr "时间条件" @@ -8306,7 +8457,7 @@ msgstr "JSON 元数据" msgid "JSON metadata is invalid!" msgstr "无效 JSON" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 msgid "" "JSON string containing additional connection configuration. This is used " "to provide connection information for systems like Hive, Presto and " @@ -8343,18 +8494,18 @@ msgstr "" msgid "Jinja templating" msgstr "编辑模板" -#: superset/views/database/forms.py:233 +#: superset/views/database/forms.py:243 #, fuzzy msgid "Json list of the column names that should be read" msgstr "应作为日期解析的列的逗号分隔列表。" -#: superset/views/database/forms.py:464 +#: superset/views/database/forms.py:474 msgid "" "Json list of the column names that should be read. If not None, only " "these columns will be read from the file." msgstr "Json应读取的列名列表。如果不是“无”,则仅从文件中读取这些列" -#: superset/views/database/forms.py:203 +#: superset/views/database/forms.py:213 #, fuzzy msgid "" "Json list of the values that should be treated as null. Examples: [\"\"] " @@ -8364,7 +8515,7 @@ msgstr "" "应视为null的值的Json列表。例如:[\"\"], [\"None\", \"N/A\"], [\"nan\", " "\"null\"]。警告:Hive数据库仅支持单个值。用 [\"\"] 代表空字符串。" -#: superset/views/database/forms.py:394 +#: superset/views/database/forms.py:404 msgid "" "Json list of the values that should be treated as null. Examples: [\"\"]," " [\"None\", \"N/A\"], [\"nan\", \"null\"]. Warning: Hive database " @@ -8416,8 +8567,8 @@ msgstr "过滤" msgid "LIMIT" msgstr "行限制" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:80 -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:109 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:93 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:122 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:169 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:251 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:255 @@ -8495,7 +8646,7 @@ msgstr "大" msgid "Last" msgstr "上一" -#: superset/connectors/sqla/views.py:481 superset/views/database/mixins.py:190 +#: superset/connectors/sqla/views.py:388 superset/views/database/mixins.py:190 msgid "Last Changed" msgstr "更新时间" @@ -8522,7 +8673,7 @@ msgstr " %s 最后一个可用值" #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:177 #: superset-frontend/src/pages/ChartList/index.tsx:445 #: superset-frontend/src/pages/CssTemplateList/index.tsx:158 -#: superset-frontend/src/pages/DatabaseList/index.tsx:380 +#: superset-frontend/src/pages/DatabaseList/index.tsx:391 msgid "Last modified" msgstr "最后修改" @@ -8580,7 +8731,7 @@ msgstr "最远修改" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:28 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:100 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:90 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:87 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:371 msgid "Left" msgstr "左边" @@ -8612,7 +8763,7 @@ msgstr "左边距,以像素为单位,为轴标签留出更多空间" msgid "Left to Right" msgstr "从左到右" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:144 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:147 msgid "Left value" msgstr "左值" @@ -8625,7 +8776,6 @@ msgstr "左值" #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:30 #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:34 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/index.js:30 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:33 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:34 #: superset-frontend/plugins/legacy-plugin-chart-sankey/src/index.js:40 #: superset-frontend/plugins/legacy-plugin-chart-sunburst/src/index.js:33 @@ -8641,15 +8791,16 @@ msgstr "左值" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/index.js:35 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/index.js:29 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/index.ts:42 +#: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:36 #: superset-frontend/src/visualizations/TimeTable/index.ts:35 msgid "Legacy" msgstr "遗产" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:154 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:158 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:289 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:115 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:156 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:102 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:99 msgid "Legend" msgstr "图示" @@ -8658,7 +8809,7 @@ msgstr "图示" msgid "Legend Format" msgstr "数值格式" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:95 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:92 #, fuzzy msgid "Legend Orientation" msgstr "方向" @@ -8668,7 +8819,7 @@ msgstr "方向" msgid "Legend Position" msgstr "标签位置" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:75 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:72 msgid "Legend type" msgstr "图示类型" @@ -8814,7 +8965,7 @@ msgid "Lines encoding" msgstr "轴线升序" #: superset-frontend/src/pages/SavedQueryList/index.tsx:226 -#: superset-frontend/src/views/CRUD/hooks.ts:673 +#: superset-frontend/src/views/CRUD/hooks.ts:677 msgid "Link Copied!" msgstr "链接成功!" @@ -8843,7 +8994,7 @@ msgstr "要用行标记的值列表" msgid "List of values to mark with triangles" msgstr "要用三角形标记的值列表" -#: superset-frontend/src/components/TableSelector/index.tsx:187 +#: superset-frontend/src/components/TableSelector/index.tsx:184 #, fuzzy msgid "List updated" msgstr "上一季度" @@ -8874,8 +9025,8 @@ msgid "Loading" msgstr "加载中..." #: superset-frontend/plugins/plugin-chart-handlebars/src/components/Handlebars/HandlebarsViewer.tsx:74 -#: superset-frontend/src/components/Select/AsyncSelect.tsx:495 -#: superset-frontend/src/components/Select/Select.tsx:470 +#: superset-frontend/src/components/Select/AsyncSelect.tsx:496 +#: superset-frontend/src/components/Select/Select.tsx:477 #: superset-frontend/src/components/Select/utils.tsx:152 #: superset-frontend/src/dashboard/components/gridComponents/DynamicComponent.tsx:165 #: superset-frontend/src/explore/components/RowCountLabel/index.tsx:40 @@ -8905,13 +9056,13 @@ msgstr "对数轴" msgid "Logarithmic scale on primary y-axis" msgstr "对数刻度在主y轴上" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:432 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:449 msgid "Logarithmic scale on secondary y-axis" msgstr "二次y轴上的对数刻度" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:396 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:420 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:429 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:437 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:446 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:222 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:225 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:210 @@ -8983,28 +9134,28 @@ msgstr "五月" msgid "MON" msgstr "星期一" -#: superset/connectors/sqla/views.py:490 +#: superset/connectors/sqla/views.py:397 msgid "Main Datetime Column" msgstr "主日期列" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:283 +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:292 #, fuzzy msgid "" "Make sure that the controls are configured properly and the datasource " "contains data for the selected time range" msgstr "此查询没有返回任何结果。如果希望返回结果,请确保所有过滤选择的配置正确,并且数据源包含所选时间范围的数据。" -#: superset/views/core.py:1717 +#: superset/views/core.py:1752 msgid "" "Malformed request. slice_id or table_name and db_name arguments are " "expected" msgstr "格式错误的请求。需要使用 slice_id 或 table_name 和 db_name 参数" -#: superset/initialization/__init__.py:277 -#: superset/initialization/__init__.py:289 -#: superset/initialization/__init__.py:341 -#: superset/initialization/__init__.py:412 -#: superset/initialization/__init__.py:425 +#: superset/initialization/__init__.py:279 +#: superset/initialization/__init__.py:291 +#: superset/initialization/__init__.py:335 +#: superset/initialization/__init__.py:406 +#: superset/initialization/__init__.py:419 msgid "Manage" msgstr "管理" @@ -9023,7 +9174,7 @@ msgstr "管理你的数据库" msgid "Mandatory" msgstr "必填参数" -#: superset/views/database/forms.py:350 +#: superset/views/database/forms.py:360 msgid "Mangle Duplicate Columns" msgstr "混合重复列" @@ -9043,6 +9194,8 @@ msgstr "使用Y轴的对数刻度" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:25 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:100 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:25 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:67 @@ -9065,7 +9218,7 @@ msgstr "地图样式" msgid "MapBox" msgstr "MapBox地图" -#: superset/viz.py:2322 +#: superset/viz.py:2258 msgid "Mapbox" msgstr "箱图" @@ -9073,11 +9226,11 @@ msgstr "箱图" msgid "March" msgstr "三月" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:53 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:50 msgid "Margin" msgstr "边距(margin)" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:348 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:354 msgid "Mark a column as temporal in \"Edit datasource\" modal" msgstr "" @@ -9156,7 +9309,7 @@ msgid "" "this insures that the circle respects this maximum radius." msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:232 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:70 #, fuzzy msgid "Maximum value" msgstr "最大" @@ -9209,7 +9362,7 @@ msgstr "中" msgid "Menu actions trigger" msgstr "" -#: superset-frontend/src/components/ReportModal/index.tsx:237 +#: superset-frontend/src/components/ReportModal/index.tsx:236 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:403 msgid "Message content" msgstr "消息内容" @@ -9218,8 +9371,8 @@ msgstr "消息内容" msgid "Metadata" msgstr "元数据" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:450 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:454 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:486 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:490 msgid "Metadata Parameters" msgstr "元数据参数" @@ -9244,13 +9397,12 @@ msgstr "方法" #: superset-frontend/src/explore/controls.jsx:167 #: superset-frontend/src/explore/controls.jsx:168 #: superset-frontend/src/visualizations/TimeTable/TimeTable.jsx:121 -#: superset/connectors/sqla/views.py:250 +#: superset/connectors/sqla/views.py:249 msgid "Metric" msgstr "指标" -#: superset/connectors/sqla/models.py:1264 -#: superset/connectors/sqla/models.py:1847 superset/models/helpers.py:1192 -#: superset/models/helpers.py:1448 +#: superset/connectors/sqla/models.py:1133 superset/models/helpers.py:1236 +#: superset/models/helpers.py:1529 #, python-format msgid "Metric '%(metric)s' does not exist" msgstr "指标 '%(metric)s' 不存在" @@ -9285,7 +9437,7 @@ msgstr "度量因子从 `since` 到 `until` 的变化" msgid "Metric for node values" msgstr "节点值的度量" -#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:106 +#: superset-frontend/packages/superset-ui-chart-controls/src/components/labelUtils.tsx:119 #, fuzzy msgid "Metric name" msgstr "查询名称" @@ -9311,6 +9463,7 @@ msgstr "显示底部标题的度量值" msgid "Metric to sort the results by" msgstr "按照指标的结果进行排序" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:139 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:78 msgid "Metric used as a weight for the grid's coloring" msgstr "" @@ -9351,7 +9504,7 @@ msgstr "如果存在序列或行限制,则用于定义顶部序列的排序方 #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:395 #: superset-frontend/src/explore/controls.jsx:152 #: superset-frontend/src/features/datasets/AddDataset/EditDataset/index.tsx:54 -#: superset/connectors/sqla/views.py:207 +#: superset/connectors/sqla/views.py:206 msgid "Metrics" msgstr "指标" @@ -9434,11 +9587,11 @@ msgstr "" #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:85 #: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:89 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:155 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:152 msgid "Minimum threshold in percentage points for showing labels." msgstr "标签显示百分比最小阈值" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:231 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:69 #, fuzzy msgid "Minimum value" msgstr "空值" @@ -9461,7 +9614,7 @@ msgstr "量规轴上的最小值" msgid "Minor Split Line" msgstr "小的分模线" -#: superset/db_engine_specs/base.py:99 +#: superset/db_engine_specs/base.py:100 msgid "Minute" msgstr "分钟" @@ -9493,12 +9646,13 @@ msgstr "混和时间序列" #: superset-frontend/src/dashboard/components/AddSliceCard/AddSliceCard.tsx:278 #: superset-frontend/src/pages/AlertReportList/index.tsx:335 #: superset-frontend/src/pages/DashboardList/index.tsx:347 -#: superset-frontend/src/pages/DatasetList/index.tsx:364 +#: superset-frontend/src/pages/DatasetList/index.tsx:375 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:152 #: superset-frontend/src/pages/SavedQueryList/index.tsx:369 #: superset-frontend/src/pages/Tags/index.tsx:118 -#: superset/connectors/sqla/views.py:367 superset/connectors/sqla/views.py:495 -#: superset/views/dashboard/mixin.py:85 superset/views/dashboard/views.py:186 -#: superset/views/database/mixins.py:199 superset/views/sql_lab/views.py:85 +#: superset/connectors/sqla/views.py:402 superset/views/dashboard/mixin.py:85 +#: superset/views/dashboard/views.py:186 superset/views/database/mixins.py:199 +#: superset/views/sql_lab/views.py:85 msgid "Modified" msgstr "已修改" @@ -9513,7 +9667,7 @@ msgstr "最后修改 %s" #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:81 #: superset-frontend/src/pages/ChartList/index.tsx:431 #: superset-frontend/src/pages/DashboardList/index.tsx:326 -#: superset-frontend/src/pages/DatasetList/index.tsx:374 +#: superset-frontend/src/pages/DatasetList/index.tsx:385 msgid "Modified by" msgstr "修改人" @@ -9526,7 +9680,7 @@ msgstr "修改的列:%s" msgid "Monday" msgstr "星期一" -#: superset/db_engine_specs/base.py:108 +#: superset/db_engine_specs/base.py:109 msgid "Month" msgstr "月" @@ -9592,7 +9746,7 @@ msgstr "多方" msgid "Multiple Line Charts" msgstr "复合折线图" -#: superset/views/database/views.py:465 +#: superset/views/database/views.py:468 msgid "" "Multiple file extensions are not allowed for columnar uploads. Please " "make sure all files are of the same extension." @@ -9627,11 +9781,11 @@ msgstr "需要唯一" msgid "Must choose either a chart or a dashboard" msgstr "选择图表或看板,不能都全部选择" -#: superset/viz.py:2346 +#: superset/viz.py:2283 msgid "Must have a [Group By] column to have 'count' as the [Label]" msgstr "[Group By] 列必须要有 ‘count’字段作为 [标签]" -#: superset/viz.py:1752 +#: superset/viz.py:1666 msgid "Must have at least one numeric column specified" msgstr "必须至少指明一个数值列" @@ -9639,7 +9793,7 @@ msgstr "必须至少指明一个数值列" msgid "Must provide credentials for the SSH Tunnel" msgstr "" -#: superset/connectors/sqla/models.py:1582 superset/models/helpers.py:1780 +#: superset/models/helpers.py:1848 msgid "Must specify a value for filters with comparison operators" msgstr "必须为带有比较操作符的过滤器指定一个值吗" @@ -9680,19 +9834,21 @@ msgid "NUMERIC" msgstr "我的指标" #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:73 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:149 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:782 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:212 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:148 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:776 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:214 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:354 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:356 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:789 #: superset-frontend/src/pages/AlertReportList/index.tsx:272 #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:130 #: superset-frontend/src/pages/CssTemplateList/index.tsx:131 -#: superset-frontend/src/pages/DatasetList/index.tsx:334 +#: superset-frontend/src/pages/DatasetList/index.tsx:345 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:130 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:248 #: superset-frontend/src/pages/SavedQueryList/index.tsx:283 #: superset-frontend/src/pages/Tags/index.tsx:109 -#: superset/connectors/sqla/views.py:361 superset/views/chart/mixin.py:85 +#: superset/views/chart/mixin.py:85 msgid "Name" msgstr "名称" @@ -9705,11 +9861,11 @@ msgstr "需要名称" msgid "Name must be unique" msgstr "名称必须是唯一的" -#: superset/views/database/forms.py:406 +#: superset/views/database/forms.py:416 msgid "Name of table to be created from columnar data." msgstr "从列存储数据创建的表的名称。" -#: superset/views/database/forms.py:270 +#: superset/views/database/forms.py:280 msgid "Name of table to be created from excel data." msgstr "从excel数据将创建的表的名称。" @@ -9730,7 +9886,7 @@ msgstr "ID列名称" msgid "Name of the source nodes" msgstr "源节点名称" -#: superset/connectors/sqla/views.py:428 +#: superset/connectors/sqla/views.py:335 msgid "Name of the table that exists in the source database" msgstr "源数据库中存在的表名称" @@ -9788,17 +9944,17 @@ msgstr "新的过滤器" msgid "New header" msgstr "子标题" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:329 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:331 msgid "New tab" msgstr "关闭标签" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:268 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:310 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:278 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:320 msgid "New tab (Ctrl + q)" msgstr "新建Tab页 (Ctrl + q)" -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:269 -#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:311 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:279 +#: superset-frontend/src/SqlLab/components/TabbedSqlEditors/index.jsx:321 msgid "New tab (Ctrl + t)" msgstr "新建Tab页 (Ctrl + t)" @@ -9820,9 +9976,9 @@ msgstr "南丁格尔玫瑰图" #: superset-frontend/src/pages/ChartList/index.tsx:708 #: superset-frontend/src/pages/DashboardList/index.tsx:507 #: superset-frontend/src/pages/DashboardList/index.tsx:589 -#: superset-frontend/src/pages/DatabaseList/index.tsx:468 -#: superset-frontend/src/pages/DatabaseList/index.tsx:488 -#: superset-frontend/src/pages/DatasetList/index.tsx:573 +#: superset-frontend/src/pages/DatabaseList/index.tsx:479 +#: superset-frontend/src/pages/DatabaseList/index.tsx:499 +#: superset-frontend/src/pages/DatasetList/index.tsx:584 msgid "No" msgstr "否" @@ -9844,6 +10000,11 @@ msgstr "没有数据" msgid "No Results" msgstr "无结果" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:235 +#, fuzzy +msgid "No Rules yet" +msgstr "最近" + #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:116 #, fuzzy msgid "No annotation layers" @@ -9881,7 +10042,7 @@ msgstr "没有图表" msgid "No columns" msgstr "没有列" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:242 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:275 #, fuzzy msgid "No columns found" msgstr "找不到兼容的列" @@ -9895,7 +10056,7 @@ msgstr "找不到兼容的列" msgid "No compatible datasets found" msgstr "找不到兼容的列" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:302 #, fuzzy msgid "No compatible schema found" msgstr "找不到兼容的列" @@ -9909,14 +10070,14 @@ msgstr "没有看板" msgid "No dashboards yet" msgstr "没有看板" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:133 -#: superset-frontend/src/components/Table/index.tsx:203 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:134 +#: superset-frontend/src/components/Table/index.tsx:207 #: superset-frontend/src/filters/components/Select/SelectFilterPlugin.tsx:225 #: superset-frontend/src/filters/components/TimeGrain/TimeGrainFilterPlugin.tsx:95 msgid "No data" msgstr "没有数据" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:171 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:191 msgid "No data after filtering or data is NULL for the latest time record" msgstr "过滤后没有数据,或者最新时间记录的数据为NULL" @@ -9937,10 +10098,6 @@ msgstr "没有与您的搜索匹配的数据库" msgid "No description available." msgstr "没有可用的描述" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:174 -msgid "No dimensions available for drill by" -msgstr "" - #: superset-frontend/src/profile/components/Favorites.tsx:61 msgid "No favorite charts yet, go click on stars!" msgstr "暂无收藏的图表,去点击星星吧!" @@ -9959,7 +10116,7 @@ msgstr "无筛选" msgid "No filter is selected." msgstr "未选择过滤条件。" -#: superset-frontend/src/components/Table/index.tsx:200 +#: superset-frontend/src/components/Table/index.tsx:204 #, fuzzy msgid "No filters" msgstr "无筛选" @@ -10003,7 +10160,7 @@ msgid "No results" msgstr "无结果" #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:127 -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:425 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:428 msgid "No results found" msgstr "未找到结果" @@ -10011,7 +10168,7 @@ msgstr "未找到结果" msgid "No results match your filter criteria" msgstr "" -#: superset-frontend/src/components/Chart/ChartRenderer.jsx:280 +#: superset-frontend/src/components/Chart/ChartRenderer.jsx:289 #: superset-frontend/src/explore/components/DataTablesPane/components/useResultsPane.tsx:133 msgid "No results were returned for this query" msgstr "" @@ -10032,15 +10189,15 @@ msgstr "" msgid "No samples were returned for this dataset" msgstr "此数据集没有启用简单的特别度量" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:293 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:311 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:299 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:317 #, fuzzy msgid "No saved expressions found" msgstr "保存表达式" #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:400 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:408 -#, fuzzy, python-format +#, fuzzy msgid "No saved metrics found" msgstr "%s 列与计量指标" @@ -10062,9 +10219,9 @@ msgstr "没有发现这样的列。若要在度量值上筛选,请尝试自定 msgid "No table columns" msgstr "没有时间列" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:292 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:310 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:345 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:298 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:316 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:351 #, fuzzy msgid "No temporal columns found" msgstr "找不到兼容的列" @@ -10094,7 +10251,7 @@ msgid "Node size" msgstr "节点大小" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/advancedAnalytics.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:45 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:49 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:187 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:270 #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:286 @@ -10104,12 +10261,12 @@ msgstr "节点大小" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:402 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:182 #: superset-frontend/plugins/plugin-chart-echarts/src/Tree/controlPanel.tsx:243 -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:82 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/FiltersHeader.tsx:124 #: superset-frontend/src/dashboard/components/nativeFilters/FilterCard/ScopeRow.tsx:82 #: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:196 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:576 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:48 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:51 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx:138 #: superset-frontend/src/explore/controlPanels/sections.tsx:134 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:127 @@ -10194,7 +10351,7 @@ msgstr "十一月" msgid "Now" msgstr "现在" -#: superset/views/database/forms.py:201 +#: superset/views/database/forms.py:211 #, fuzzy msgid "Null Values" msgstr "空值" @@ -10209,11 +10366,11 @@ msgstr "动画" msgid "Null or Empty" msgstr "Null或空" -#: superset/views/database/forms.py:392 +#: superset/views/database/forms.py:402 msgid "Null values" msgstr "空值" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:191 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:195 msgid "Number Format" msgstr "数字格式" @@ -10228,11 +10385,10 @@ msgstr "" #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:60 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:65 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:144 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:117 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:67 #: superset-frontend/plugins/legacy-plugin-chart-treemap/src/controlPanel.ts:67 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:68 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:97 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:137 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:276 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:137 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:113 @@ -10276,21 +10432,21 @@ msgstr "根据粒度、要比较的时间阶段" msgid "Number of periods to ratio against" msgstr "根据粒度、要比较的时间阶段" -#: superset/views/database/forms.py:255 +#: superset/views/database/forms.py:265 #, fuzzy msgid "Number of rows of file to read" msgstr "要读取的文件行数。" -#: superset/views/database/forms.py:361 +#: superset/views/database/forms.py:371 msgid "Number of rows of file to read." msgstr "要读取的文件行数。" -#: superset/views/database/forms.py:261 +#: superset/views/database/forms.py:271 #, fuzzy msgid "Number of rows to skip at start of file" msgstr "在文件开始时跳过的行数。" -#: superset/views/database/forms.py:355 +#: superset/views/database/forms.py:365 msgid "Number of rows to skip at start of file." msgstr "在文件开始时跳过的行数。" @@ -10314,15 +10470,15 @@ msgstr "数值范围" msgid "OCT" msgstr "十月" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:184 -#: superset-frontend/src/components/Modal/Modal.tsx:231 -#: superset-frontend/src/components/Table/index.tsx:198 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:226 +#: superset-frontend/src/components/Modal/Modal.tsx:238 +#: superset-frontend/src/components/Table/index.tsx:202 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:865 msgid "OK" msgstr "确认" #: superset-frontend/src/components/ImportModal/index.tsx:267 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1379 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1434 msgid "OVERWRITE" msgstr "覆盖" @@ -10335,7 +10491,7 @@ msgstr "十月" msgid "Offline" msgstr "离线" -#: superset/connectors/sqla/views.py:485 +#: superset/connectors/sqla/views.py:392 msgid "Offset" msgstr "偏移" @@ -10376,27 +10532,27 @@ msgstr "一个或多个控件作为主列" msgid "One or many metrics to display" msgstr "一个或多个指标显示" -#: superset/datasets/commands/exceptions.py:90 +#: superset/datasets/commands/exceptions.py:107 msgid "One or more columns already exist" msgstr "一个或多个列已存在" -#: superset/datasets/commands/exceptions.py:80 +#: superset/datasets/commands/exceptions.py:97 msgid "One or more columns are duplicated" msgstr "一个或多个列被复制" -#: superset/datasets/commands/exceptions.py:70 +#: superset/datasets/commands/exceptions.py:87 msgid "One or more columns do not exist" msgstr "一个或多个字段不存在" -#: superset/datasets/commands/exceptions.py:119 +#: superset/datasets/commands/exceptions.py:136 msgid "One or more metrics already exist" msgstr "一个或多个度量已存在" -#: superset/datasets/commands/exceptions.py:109 +#: superset/datasets/commands/exceptions.py:126 msgid "One or more metrics are duplicated" msgstr "一个或多个指标重复" -#: superset/datasets/commands/exceptions.py:99 +#: superset/datasets/commands/exceptions.py:116 msgid "One or more metrics do not exist" msgstr "一个或多个指标不存在" @@ -10412,7 +10568,7 @@ msgstr "查询中指定的一个或多个参数的格式不正确。" msgid "One or more parameters specified in the query are missing." msgstr "查询中指定的一个或多个参数丢失。" -#: superset/views/core.py:1992 +#: superset/views/core.py:2029 #, fuzzy msgid "" "One or more required fields are missing in the request. Please try again," @@ -10423,23 +10579,23 @@ msgstr "请求中缺少一个或多个必填字段。请重试,如果问题仍 msgid "One ore more annotation layers failed loading." msgstr "一个或多个注释层加载失败。" -#: superset/sql_lab.py:230 +#: superset/sql_lab.py:228 msgid "Only SELECT statements are allowed against this database." msgstr "此数据库只允许使用 `SELECT` 语句" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:133 msgid "Only Total" msgstr "仅总计" -#: superset/connectors/sqla/utils.py:123 +#: superset/connectors/sqla/utils.py:122 msgid "Only `SELECT` statements are allowed" msgstr "将 SELECT 语句复制到剪贴板" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:29 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:34 msgid "Only applies when \"Label Type\" is not set to a percentage." msgstr "" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:26 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:31 msgid "Only applies when \"Label Type\" is set to show values." msgstr "" @@ -10447,18 +10603,18 @@ msgstr "" msgid "Only selected panels will be affected by this filter" msgstr "只有选定的面板将受此过滤条件的影响" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:139 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:136 msgid "" "Only show the total value on the stacked chart, and not show on the " "selected category" msgstr "仅在堆积图上显示合计值,而不在所选类别上显示" -#: superset/connectors/sqla/utils.py:132 +#: superset/connectors/sqla/utils.py:131 msgid "Only single queries supported" msgstr "仅支持单个查询" -#: superset/views/database/forms.py:119 superset/views/database/forms.py:288 -#: superset/views/database/forms.py:426 +#: superset/views/database/forms.py:119 superset/views/database/forms.py:298 +#: superset/views/database/forms.py:436 #, python-format msgid "Only the following file extensions are allowed: %(allowed_extensions)s" msgstr "仅允许以下文件扩展名:%(allowed_extensions)s" @@ -10507,7 +10663,7 @@ msgstr "在 SQL 工具箱中打开" msgid "Open query in SQL Lab" msgstr "在 SQL 工具箱中打开查询" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:298 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:308 #: superset/views/database/mixins.py:104 msgid "" "Operate the database in asynchronous mode, meaning that the queries are " @@ -10518,8 +10674,8 @@ msgstr "" "以异步模式操作数据库,这意味着查询是在远程worker上执行的,而不是在web服务器本身上执行的, 这假设您有一个Celery worker " "setup以及一个执行后端。有关更多信息,请参考安装文档。" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:126 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:130 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:129 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:133 msgid "Operator" msgstr "运算符" @@ -10528,7 +10684,7 @@ msgstr "运算符" msgid "Operator undefined for aggregator: %(name)s" msgstr "未定义聚合器的运算符:%(name)s" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:381 msgid "" "Optional CA_BUNDLE contents to validate HTTPS requests. Only available on" " certain database engines." @@ -10552,14 +10708,9 @@ msgstr "数据列的可选名称" msgid "Optional warning about use of this metric" msgstr "关于使用此指标的可选警告" -#: superset/connectors/sqla/views.py:328 -msgid "Optionally add a detailed description" -msgstr "" - # 以下部分来源于 superset-ui 项目 #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:39 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:68 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:108 #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/controlPanel.ts:74 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:45 #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controlPanel.tsx:70 @@ -10572,7 +10723,7 @@ msgstr "" msgid "Options" msgstr "设置" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:918 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:973 msgid "Or choose from a list of other databases we support:" msgstr "或者从我们支持的其他数据库列表中选择:" @@ -10590,7 +10741,7 @@ msgstr "按选定列对结果进行排序" msgid "Ordering" msgstr "排序" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:83 #, fuzzy msgid "Orientation" msgstr "方向" @@ -10600,7 +10751,7 @@ msgstr "方向" msgid "Orientation of bar chart" msgstr "树的方向" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:158 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:184 #, fuzzy msgid "Orientation of filter bar" msgstr "树的方向" @@ -10617,7 +10768,7 @@ msgstr "起点" msgid "Original table column order" msgstr "原始表列顺序" -#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:36 +#: superset-frontend/packages/superset-ui-chart-controls/src/utils/D3Formatting.ts:56 #: superset-frontend/src/components/Chart/DrillDetail/DrillDetailPane.tsx:130 #: superset-frontend/src/explore/components/DataTableControl/index.tsx:143 #: superset-frontend/src/explore/controls.jsx:79 @@ -10629,10 +10780,10 @@ msgid "Orthogonal" msgstr "正交化" #: superset-frontend/src/explore/components/controls/VizTypeControl/VizTypeGallery.tsx:126 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:443 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:938 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:479 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:993 #: superset-frontend/src/features/home/EmptyState.tsx:112 -#: superset/views/database/forms.py:155 superset/views/database/forms.py:161 +#: superset/views/database/forms.py:165 superset/views/database/forms.py:171 msgid "Other" msgstr "其他" @@ -10689,15 +10840,15 @@ msgstr "编辑时间范围" #: superset-frontend/src/components/ImportModal/index.tsx:426 #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:493 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:459 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:463 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:464 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:148 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:251 msgid "Overwrite" msgstr "覆盖" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:249 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:192 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:247 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 msgid "Overwrite & Explore" msgstr "覆写和浏览" @@ -10706,12 +10857,12 @@ msgstr "覆写和浏览" msgid "Overwrite Dashboard [%s]" msgstr "覆盖看板 [%s]" -#: superset/views/database/forms.py:237 +#: superset/views/database/forms.py:247 #, fuzzy msgid "Overwrite Duplicate Columns" msgstr "混合重复列" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:404 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:412 #, fuzzy msgid "Overwrite existing" msgstr "继续编辑" @@ -10727,11 +10878,11 @@ msgstr "" #: superset-frontend/src/pages/AlertReportList/index.tsx:452 #: superset-frontend/src/pages/ChartList/index.tsx:608 #: superset-frontend/src/pages/DashboardList/index.tsx:523 -#: superset-frontend/src/pages/DatasetList/index.tsx:500 +#: superset-frontend/src/pages/DatasetList/index.tsx:511 msgid "Owner" msgstr "所有者" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:235 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:237 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:567 #: superset-frontend/src/components/MetadataBar/ContentConfig.tsx:93 #: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:408 @@ -10746,14 +10897,14 @@ msgstr "所有者" #: superset-frontend/src/features/alerts/AlertReportModal.tsx:384 #: superset-frontend/src/pages/AlertReportList/index.tsx:324 #: superset-frontend/src/pages/DashboardList/index.tsx:369 -#: superset-frontend/src/pages/DatasetList/index.tsx:389 -#: superset/connectors/sqla/views.py:489 superset/views/chart/mixin.py:82 +#: superset-frontend/src/pages/DatasetList/index.tsx:400 +#: superset/connectors/sqla/views.py:396 superset/views/chart/mixin.py:82 #: superset/views/dashboard/mixin.py:81 msgid "Owners" msgstr "所有者" -#: superset/commands/exceptions.py:108 -#: superset/datasets/commands/exceptions.py:144 +#: superset/commands/exceptions.py:112 +#: superset/datasets/commands/exceptions.py:161 msgid "Owners are invalid" msgstr "所有者无效" @@ -10795,7 +10946,7 @@ msgid "Pandas resample rule" msgstr "Pandas 重新采样的规则" #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/index.js:33 -#: superset/viz.py:2219 +#: superset/viz.py:2152 msgid "Parallel Coordinates" msgstr "平行坐标" @@ -10820,7 +10971,7 @@ msgstr "" msgid "Parent" msgstr "父类" -#: superset/views/database/forms.py:366 +#: superset/views/database/forms.py:376 msgid "Parse Dates" msgstr "解析日期" @@ -10838,7 +10989,7 @@ msgstr "占比" msgid "Partition Chart" msgstr "分区图" -#: superset/viz.py:3071 +#: superset/viz.py:3069 msgid "Partition Diagram" msgstr "分区图" @@ -10858,7 +11009,7 @@ msgstr "高度与父高度的比例低于此值的分区将被修剪" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:154 #: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:132 -#: superset/db_engine_specs/base.py:1838 +#: superset/db_engine_specs/base.py:1870 #: superset/db_engine_specs/clickhouse.py:202 msgid "Password" msgstr "密码" @@ -10912,7 +11063,7 @@ msgstr "百分比指标" #: superset-frontend/plugins/plugin-chart-echarts/src/Pie/controlPanel.tsx:81 #: superset-frontend/plugins/plugin-chart-echarts/src/Sunburst/controlPanel.tsx:85 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:151 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:148 msgid "Percentage threshold" msgstr "百分比阈值" @@ -10930,7 +11081,7 @@ msgstr "百分比阈值" msgid "Percentages" msgstr "百分比" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:219 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:229 msgid "Performance" msgstr "" @@ -10966,8 +11117,8 @@ msgid "Person or group that has certified this metric" msgstr "认证此指标的个人或团体" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1114 -#: superset-frontend/src/pages/DatasetList/index.tsx:342 -#: superset-frontend/src/pages/DatasetList/index.tsx:560 +#: superset-frontend/src/pages/DatasetList/index.tsx:353 +#: superset-frontend/src/pages/DatasetList/index.tsx:571 msgid "Physical" msgstr "物理信息" @@ -10975,7 +11126,7 @@ msgstr "物理信息" msgid "Physical (table or view)" msgstr "物理(表或视图)" -#: superset-frontend/src/pages/DatasetList/index.tsx:273 +#: superset-frontend/src/pages/DatasetList/index.tsx:284 msgid "Physical dataset" msgstr "物化数据集" @@ -10984,27 +11135,27 @@ msgstr "物化数据集" msgid "Pick a dimension from which categorical colors are defined" msgstr "" -#: superset/viz.py:769 +#: superset/viz.py:795 msgid "Pick a granularity in the Time section or uncheck 'Include Time'" msgstr "在“时间”部分选择一个粒度,或取消选中“包含时间”" -#: superset/viz.py:1605 +#: superset/viz.py:1514 msgid "Pick a metric for left axis!" msgstr "为左轴选择一个指标!" -#: superset/viz.py:1607 +#: superset/viz.py:1516 msgid "Pick a metric for right axis!" msgstr "为右轴选择一个指标!" -#: superset/viz.py:1195 +#: superset/viz.py:1090 msgid "Pick a metric for x, y and size" msgstr "为 x 轴,y 轴和大小选择一个指标" -#: superset/viz.py:1234 +#: superset/viz.py:1131 msgid "Pick a metric to display" msgstr "选择一个指标来显示" -#: superset/viz.py:1260 superset/viz.py:1294 +#: superset/viz.py:1159 superset/viz.py:1195 msgid "Pick a metric!" msgstr "选择一个指标!" @@ -11021,7 +11172,7 @@ msgstr "为这个数据库选择一个昵称以在Superset中显示" msgid "Pick a set of deck.gl charts to layer on top of one another" msgstr "" -#: superset/viz.py:1390 superset/viz.py:1653 +#: superset/viz.py:1294 superset/viz.py:1564 msgid "Pick a time granularity for your time series" msgstr "为您的时间序列选择一个时间粒度" @@ -11029,15 +11180,15 @@ msgstr "为您的时间序列选择一个时间粒度" msgid "Pick a title for you annotation." msgstr "为您的注释选择一个标题" -#: superset/viz.py:1815 +#: superset/viz.py:1732 msgid "Pick at least one field for [Series]" msgstr "为 [序列] 选择至少一个字段" -#: superset/viz.py:857 superset/viz.py:1813 +#: superset/viz.py:887 superset/viz.py:1730 msgid "Pick at least one metric" msgstr "选择至少一个指标" -#: superset/viz.py:1943 +#: superset/viz.py:1863 msgid "Pick exactly 2 columns as [Source / Target]" msgstr "为 [来源 / 目标] 选择两个列" @@ -11064,19 +11215,10 @@ msgstr "饼图形状" msgid "Pin" msgstr "Pin" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:45 -msgid "Pivot Options" -msgstr "透视表选项" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:60 -#: superset/viz.py:894 msgid "Pivot Table" msgstr "透视表" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:32 -msgid "Pivot Table (legacy)" -msgstr "" - #: superset/utils/pandas_postprocessing/pivot.py:70 msgid "Pivot operation must include at least one aggregate" msgstr "数据透视操作必须至少包含一个聚合" @@ -11097,7 +11239,7 @@ msgstr "每个序列的像素高度" msgid "Pixels" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:71 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 msgid "Plain" msgstr "" @@ -11109,7 +11251,7 @@ msgstr "" msgid "Please apply filter changes" msgstr "请应用滤镜更改" -#: superset/sqllab/query_render.py:120 +#: superset/sqllab/query_render.py:118 msgid "" "Please check your query and confirm that all template parameters are " "surround by double braces, for example, \"{{ ds }}\". Then, try running " @@ -11117,8 +11259,8 @@ msgid "" msgstr "请检查查询并确认所有模板参数都用双大括号括起来,例如 \"{{ ds }}\"。然后,再次尝试运行查询" #: superset/db_engine_specs/athena.py:56 -#: superset/db_engine_specs/bigquery.py:210 -#: superset/db_engine_specs/postgres.py:161 +#: superset/db_engine_specs/bigquery.py:211 +#: superset/db_engine_specs/postgres.py:160 #: superset/db_engine_specs/snowflake.py:117 #, python-format msgid "" @@ -11126,7 +11268,7 @@ msgid "" "\"%(syntax_error)s\". Then, try running your query again." msgstr "请检查查询中 \"%(syntax_error)s\" 处或附近的语法错误。然后,再次尝试运行查询。“" -#: superset/db_engine_specs/gsheets.py:80 superset/db_engine_specs/mysql.py:170 +#: superset/db_engine_specs/gsheets.py:82 superset/db_engine_specs/mysql.py:170 #, python-format msgid "" "Please check your query for syntax errors near \"%(server_error)s\". " @@ -11134,28 +11276,19 @@ msgid "" msgstr "请检查查询中\"%(server_error)s\"附近的语法错误然后,再次尝试运行查询" #: superset/sqllab/query_render.py:38 superset/views/core.py:199 -#, fuzzy, python-format +#, fuzzy msgid "" "Please check your template parameters for syntax errors and make sure " "they match across your SQL query and Set Parameters. Then, try running " "your query again." msgstr "请检查查询中 \"%(syntax_error)s\" 处或附近的语法错误。然后,再次尝试运行查询。“" -#: superset/viz.py:911 -#, fuzzy -msgid "Please choose at least one 'Group by' field" -msgstr "请至少选择一个分组字段 " - -#: superset/viz.py:3229 +#: superset/viz.py:3234 #, fuzzy msgid "Please choose at least one groupby" msgstr "请至少选择一个分组字段 " -#: superset/viz.py:923 -msgid "Please choose at least one metric" -msgstr "请至少选择一个指标" - -#: superset/viz.py:1610 +#: superset/viz.py:1519 msgid "Please choose different metrics on left and right axis" msgstr "请在左右轴上选择不同的指标" @@ -11171,18 +11304,20 @@ msgstr "请在左右轴上选择不同的指标" #: superset-frontend/src/pages/DashboardList/index.tsx:415 #: superset-frontend/src/pages/DashboardList/index.tsx:701 #: superset-frontend/src/pages/DashboardList/index.tsx:756 -#: superset-frontend/src/pages/DatasetList/index.tsx:740 +#: superset-frontend/src/pages/DatasetList/index.tsx:762 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:170 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:304 #: superset-frontend/src/pages/SavedQueryList/index.tsx:533 #: superset-frontend/src/pages/Tags/index.tsx:141 #: superset-frontend/src/pages/Tags/index.tsx:281 msgid "Please confirm" msgstr "请确认" -#: superset-frontend/src/dashboard/actions/dashboardState.js:442 +#: superset-frontend/src/dashboard/actions/dashboardState.js:447 msgid "Please confirm the overwrite values." msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:624 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:641 msgid "Please enter a SQLAlchemy URI to test" msgstr "请输入要测试的SQLAlchemy URI" @@ -11190,11 +11325,11 @@ msgstr "请输入要测试的SQLAlchemy URI" msgid "Please filter set name" msgstr "请筛选集合名称" -#: superset/db_engine_specs/postgres.py:125 +#: superset/db_engine_specs/postgres.py:124 msgid "Please re-enter the password." msgstr "请重新输入密码。" -#: superset-frontend/src/views/CRUD/hooks.ts:435 +#: superset-frontend/src/views/CRUD/hooks.ts:439 msgid "Please re-export your file and try importing again" msgstr "" @@ -11221,7 +11356,7 @@ msgstr "请先保存您的仪表盘,然后尝试创建一个新的电子邮件 msgid "Please select both a Dataset and a Chart type to proceed" msgstr "请同时选择数据集和图表类型以继续" -#: superset/viz.py:1193 +#: superset/viz.py:1088 msgid "Please use 3 different metric labels" msgstr "请在左右轴上选择不同的指标" @@ -11236,7 +11371,7 @@ msgid "" "multiple metrics across all of the samples or rows in the data." msgstr "垂直地绘制数据中每一行的单个指标,并将它们链接成一行。此图表用于比较数据中所有样本或行中的多个指标。" -#: superset/initialization/__init__.py:275 +#: superset/initialization/__init__.py:277 msgid "Plugins" msgstr "插件" @@ -11336,13 +11471,17 @@ msgid "Port" msgstr "报告" #: superset/db_engine_specs/mssql.py:98 -#: superset/db_engine_specs/postgres.py:135 -#: superset/db_engine_specs/presto.py:672 -#: superset/db_engine_specs/redshift.py:77 +#: superset/db_engine_specs/postgres.py:134 +#: superset/db_engine_specs/presto.py:699 +#: superset/db_engine_specs/redshift.py:81 #, python-format msgid "Port %(port)s on hostname \"%(hostname)s\" refused the connection." msgstr "主机名 \"%(hostname)s\" 上的端口 %(port)s 拒绝连接。" +#: superset/db_engine_specs/ocient.py:269 +msgid "Port out of range 0-65535" +msgstr "" + #: superset/views/dashboard/mixin.py:86 msgid "Position JSON" msgstr "位置JSON" @@ -11380,7 +11519,7 @@ msgstr "预滤器可用值" msgid "Pre-filter is required" msgstr "预过滤是必须的" -#: superset/connectors/sqla/views.py:440 +#: superset/connectors/sqla/views.py:347 msgid "" "Predicate applied when fetching distinct value to populate the filter " "control component. Supports jinja template syntax. Applies only when " @@ -11422,7 +11561,7 @@ msgstr "预览 %s" msgid "Previous" msgstr "之前" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:346 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:348 #, fuzzy msgid "Previous Line" msgstr "之前" @@ -11445,6 +11584,11 @@ msgstr "主键" msgid "Primary or secondary y-axis" msgstr "主或次y轴" +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 +#, fuzzy +msgid "Primary y-axis Bounds" +msgstr "主轴格式" + #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:387 msgid "Primary y-axis format" msgstr "主轴格式" @@ -11462,7 +11606,7 @@ msgstr "" msgid "Private Key Password" msgstr "Broker的密码" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:269 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:271 #, fuzzy msgid "Proceed" msgstr "红色" @@ -11543,11 +11687,11 @@ msgstr "把您的代码放在这里" msgid "Python datetime string pattern" msgstr "Python日期格式模板" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1530 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1585 msgid "QUERY DATA IN SQL LAB" msgstr "" -#: superset/db_engine_specs/base.py:109 +#: superset/db_engine_specs/base.py:110 msgid "Quarter" msgstr "季度" @@ -11561,9 +11705,9 @@ msgstr " %s 季度" msgid "Queries" msgstr "序列" -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:41 -#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:51 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:43 +#: superset-frontend/packages/superset-ui-chart-controls/src/sections/echartsTimeSeriesQuery.tsx:53 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:36 #: superset-frontend/plugins/legacy-plugin-chart-chord/src/controlPanel.ts:30 #: superset-frontend/plugins/legacy-plugin-chart-country-map/src/controlPanel.ts:33 #: superset-frontend/plugins/legacy-plugin-chart-event-flow/src/controlPanel.tsx:90 @@ -11574,7 +11718,6 @@ msgstr "序列" #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-parallel-coordinates/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:36 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:32 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:34 #: superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/controlPanel.ts:26 #: superset-frontend/plugins/legacy-plugin-chart-sankey/src/controlPanel.ts:30 @@ -11585,6 +11728,7 @@ msgstr "序列" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/controlPanel.ts:44 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/controlPanel.ts:54 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/controlPanel.ts:43 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:55 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:43 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/controlPanel.ts:41 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/controlPanel.ts:60 @@ -11598,7 +11742,7 @@ msgstr "序列" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:361 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Pie/controlPanel.ts:31 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/TimePivot/controlPanel.ts:44 -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:33 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:34 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:35 #: superset-frontend/plugins/plugin-chart-echarts/src/BoxPlot/controlPanel.ts:44 #: superset-frontend/plugins/plugin-chart-echarts/src/Funnel/controlPanel.tsx:43 @@ -11614,7 +11758,7 @@ msgstr "序列" #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:152 #: superset-frontend/plugins/plugin-chart-word-cloud/src/plugin/controlPanel.ts:30 #: superset-frontend/plugins/preset-chart-xy/src/BoxPlot/controlPanel.ts:26 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1479 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1471 #: superset-frontend/src/explore/components/ControlPanelsContainer.test.tsx:63 #: superset-frontend/src/explore/controlPanels/sections.tsx:94 #: superset-frontend/src/filters/components/GroupBy/controlPanel.ts:34 @@ -11626,7 +11770,7 @@ msgstr "序列" msgid "Query" msgstr "查询" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:361 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:363 #, python-format msgid "Query %s: %s" msgstr "查询 %s: %s " @@ -11641,11 +11785,11 @@ msgstr "查询 A" msgid "Query B" msgstr "查询 B" -#: superset/initialization/__init__.py:366 +#: superset/initialization/__init__.py:360 msgid "Query History" msgstr "历史查询" -#: superset/commands/exceptions.py:138 +#: superset/commands/exceptions.py:142 #, fuzzy msgid "Query does not exist" msgstr "图表没有找到" @@ -11661,7 +11805,7 @@ msgstr "历史查询" msgid "Query imported" msgstr "查询模式" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:465 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 msgid "Query in a new tab" msgstr "在新标签中查询" @@ -11686,11 +11830,11 @@ msgstr "查询名称" msgid "Query preview" msgstr "查询预览" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:422 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:415 msgid "Query was stopped" msgstr "查询被终止。" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:498 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:494 msgid "Query was stopped." msgstr "查询被终止。" @@ -11703,6 +11847,16 @@ msgstr "范围类型" msgid "RGB Color" msgstr "RGB颜色" +#: superset/row_level_security/commands/exceptions.py:29 +#, fuzzy +msgid "RLS Rule could not be deleted." +msgstr "这个查询无法被加载" + +#: superset/row_level_security/commands/exceptions.py:25 +#, fuzzy +msgid "RLS Rule not found." +msgstr "找不到报表计划。" + #: superset-frontend/plugins/plugin-chart-echarts/src/Radar/controlPanel.tsx:159 msgid "Radar" msgstr "雷达" @@ -11835,7 +11989,7 @@ msgstr "记录数" msgid "Rectangle" msgstr "长方形" -#: superset/connectors/sqla/views.py:446 +#: superset/connectors/sqla/views.py:353 msgid "Redirects to this endpoint when clicking on the table from the table list" msgstr "点击表列表中的表时将重定向到此端点" @@ -11863,7 +12017,7 @@ msgstr "参考 " msgid "Referenced columns not available in DataFrame." msgstr "引用的列在数据帧(DataFrame)中不可用。" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:549 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:542 msgid "Refetch results" msgstr "重新获取结果" @@ -11918,10 +12072,17 @@ msgstr "时间序列的列" msgid "Regex" msgstr "绿色" -#: superset/connectors/sqla/views.py:329 +#: superset-frontend/src/features/rls/constants.ts:24 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:262 +#, fuzzy +msgid "Regular" +msgstr "圆" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:364 +#, fuzzy msgid "" "Regular filters add where clauses to queries if a user belongs to a role " -"referenced in the filter. Base filters apply filters to all queries " +"referenced in the filter, base filters apply filters to all queries " "except the roles defined in the filter, and can be used to define what " "users can see if no RLS filters within a filter group apply to them." msgstr "常规过滤将where子句添加到查询中,以确定用户是否属于过滤中引用的角色。基本过滤将应用于除过滤中定义的角色之外的所有查询,并且可以用于定义在没有应用RLS过滤组的情况下,哪些用户可以看到内容。" @@ -11967,7 +12128,7 @@ msgstr "24小时后提醒我" msgid "Remove" msgstr "删除" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:164 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:194 #, fuzzy msgid "Remove cross-filter" msgstr "预过滤" @@ -12001,8 +12162,8 @@ msgstr "重命名标签" msgid "Rendering" msgstr "渲染" -#: superset/views/database/forms.py:168 superset/views/database/forms.py:325 -#: superset/views/database/forms.py:456 +#: superset/views/database/forms.py:178 superset/views/database/forms.py:335 +#: superset/views/database/forms.py:466 msgid "Replace" msgstr "替换" @@ -12016,12 +12177,11 @@ msgstr "替换" #: superset-frontend/plugins/plugin-chart-echarts/src/Radar/index.ts:66 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:61 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:52 -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:593 #: superset-frontend/src/pages/ExecutionLogList/index.tsx:163 msgid "Report" msgstr "报表" -#: superset-frontend/src/components/ReportModal/index.tsx:282 +#: superset-frontend/src/components/ReportModal/index.tsx:281 #, fuzzy msgid "Report Name" msgstr "报告名称" @@ -12142,7 +12302,7 @@ msgid "Request Permissions" msgstr "请求权限" #: superset/charts/data/api.py:153 superset/charts/data/api.py:243 -#: superset/charts/data/api.py:309 +#: superset/charts/data/api.py:312 #, python-format msgid "Request is incorrect: %(error)s" msgstr "请求不正确: %(error)s" @@ -12151,7 +12311,7 @@ msgstr "请求不正确: %(error)s" msgid "Request is not JSON" msgstr "请求不是JSON" -#: superset/views/datasource/views.py:75 +#: superset/views/datasource/views.py:77 msgid "Request missing data field." msgstr "请求丢失的数据字段。" @@ -12160,14 +12320,14 @@ msgstr "请求丢失的数据字段。" msgid "Request timed out" msgstr "请求不是JSON" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:94 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:98 -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:105 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:97 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:101 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:108 #: superset-frontend/src/explore/components/controls/FilterBoxItemControl/index.jsx:252 msgid "Required" msgstr "必填" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:342 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:341 msgid "Required control values have been removed" msgstr "" @@ -12190,12 +12350,12 @@ msgstr "Pandas 重新采样的填充方法" msgid "Resample operation requires DatetimeIndex" msgstr "透视操作至少需要一个索引" -#: superset-frontend/src/components/Table/index.tsx:199 +#: superset-frontend/src/components/Table/index.tsx:203 #, fuzzy msgid "Reset" msgstr "最近" -#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:293 +#: superset-frontend/src/SqlLab/components/SqlEditorLeftBar/index.tsx:280 msgid "Reset state" msgstr "状态重置" @@ -12219,14 +12379,15 @@ msgstr "还原过滤条件" msgid "Results" msgstr "结果" +#: superset-frontend/src/components/Chart/DrillBy/useResultsTableView.tsx:58 #: superset-frontend/src/explore/components/DataTablesPane/DataTablesPane.tsx:212 #: superset-frontend/src/explore/components/DataTablesPane/components/ResultsPaneOnDashboard.tsx:84 #, fuzzy, python-format msgid "Results %s" msgstr "结果" -#: superset/sql_lab.py:410 superset/sqllab/commands/results.py:59 -#: superset/views/core.py:2133 +#: superset/sql_lab.py:402 superset/sqllab/commands/results.py:59 +#: superset/views/core.py:2169 msgid "Results backend is not configured." msgstr "后端未配置结果" @@ -12253,12 +12414,12 @@ msgstr "经纬度互换" msgid "Rich Tooltip" msgstr "详细提示" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:178 msgid "Rich tooltip" msgstr "详细提示" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/components/ColumnConfigControl/constants.tsx:102 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:91 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:372 msgid "Right" msgstr "高度" @@ -12283,7 +12444,7 @@ msgstr "右轴指标" msgid "Right to Left" msgstr "右到左" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:157 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:160 msgid "Right value" msgstr "右侧的值" @@ -12295,7 +12456,7 @@ msgstr "" msgid "Role" msgstr "用户信息" -#: superset/views/core.py:407 +#: superset/views/core.py:408 #, python-format msgid "Role %(r)s was extended to provide the access to the datasource %(ds)s" msgstr "扩展角色 %(r)s 以提供对 datasource %(ds)s 的访问" @@ -12304,8 +12465,10 @@ msgstr "扩展角色 %(r)s 以提供对 datasource %(ds)s 的访问" #: superset-frontend/src/dashboard/components/PropertiesModal/PropertiesModal.test.tsx:389 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:548 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:551 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:406 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:415 #: superset-frontend/src/profile/components/Security.tsx:35 -#: superset/connectors/sqla/views.py:364 superset/views/dashboard/mixin.py:82 +#: superset/views/dashboard/mixin.py:82 msgid "Roles" msgstr "角色" @@ -12353,7 +12516,7 @@ msgstr "滚动函数" msgid "Rolling window" msgstr "滚动窗口" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:361 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:371 #: superset/views/database/mixins.py:195 msgid "Root certificate" msgstr "根证书" @@ -12384,32 +12547,30 @@ msgstr "应用于词云中的单词的旋转方式" msgid "Round cap" msgstr "国家地图" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:46 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:50 #: superset-frontend/src/dashboard/components/gridComponents/new/NewRow.jsx:31 msgid "Row" msgstr "行" -#: superset/initialization/__init__.py:295 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:70 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:302 +#: superset/initialization/__init__.py:436 msgid "Row Level Security" msgstr "行级安全" -#: superset/views/database/forms.py:245 +#: superset/views/database/forms.py:255 #, fuzzy msgid "" "Row containing the headers to use as column names (0 is first line of " "data). Leave empty if there is no header row" msgstr "作为列名的带有标题的行(0是第一行数据)。如果没有标题行则留空。" -#: superset/views/database/forms.py:332 +#: superset/views/database/forms.py:342 msgid "" "Row containing the headers to use as column names (0 is first line of " "data). Leave empty if there is no header row." msgstr "作为列名的带有标题的行(0是第一行数据)。如果没有标题行则留空。" -#: superset/connectors/sqla/views.py:290 -msgid "Row level security filter" -msgstr "行级安全过滤" - #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:247 #: superset-frontend/src/explore/controls.jsx:340 msgid "Row limit" @@ -12432,7 +12593,7 @@ msgstr "每页行数,0 表示没有分页" msgid "Rows subtotal position" msgstr "行小计的位置" -#: superset/views/database/forms.py:254 superset/views/database/forms.py:360 +#: superset/views/database/forms.py:264 superset/views/database/forms.py:370 msgid "Rows to Read" msgstr "读取的行" @@ -12442,10 +12603,20 @@ msgstr "读取的行" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:504 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:233 #: superset-frontend/src/explore/controlPanels/sections.tsx:230 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:286 msgid "Rule" msgstr "规则" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:54 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:355 +#, fuzzy +msgid "Rule Name" +msgstr "查询名称" + +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:253 +msgid "Rule added" +msgstr "" + +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:53 msgid "Run" msgstr "执行" @@ -12464,12 +12635,12 @@ msgstr "运行一个查询,在此会显示结果" msgid "Run in SQL Lab" msgstr "在 SQL 工具箱中执行" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:309 -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:319 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:311 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:321 msgid "Run query" msgstr "运行查询" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:131 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:132 msgid "Run query (Ctrl + Return)" msgstr "执行运行 (Ctrl + Return)" @@ -12477,7 +12648,7 @@ msgstr "执行运行 (Ctrl + Return)" msgid "Run query in a new tab" msgstr "在新标签中运行查询" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:52 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:51 msgid "Run selection" msgstr "运行选定的查询" @@ -12486,7 +12657,7 @@ msgstr "运行选定的查询" msgid "Running" msgstr "正在执行" -#: superset/sql_lab.py:488 +#: superset/sql_lab.py:480 #, python-format msgid "Running statement %(statement_num)s out of %(statement_count)s" msgstr "" @@ -12508,8 +12679,8 @@ msgstr "" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1088 #: superset-frontend/src/features/home/commonMenuData.ts:22 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:312 -#: superset/initialization/__init__.py:354 -#: superset/initialization/__init__.py:362 +#: superset/initialization/__init__.py:348 +#: superset/initialization/__init__.py:356 msgid "SQL" msgstr "SQL" @@ -12517,17 +12688,17 @@ msgstr "SQL" msgid "SQL Copied!" msgstr "SQL复制成功!" -#: superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:253 msgid "SQL Expression" msgstr "SQL表达式" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:73 -#: superset/initialization/__init__.py:349 -#: superset/initialization/__init__.py:371 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:83 +#: superset/initialization/__init__.py:343 +#: superset/initialization/__init__.py:365 msgid "SQL Lab" msgstr "SQL 工具箱" -#: superset/connectors/sqla/views.py:492 +#: superset/connectors/sqla/views.py:399 msgid "SQL Lab View" msgstr "SQL Lab 视图" @@ -12651,7 +12822,7 @@ msgstr "" msgid "Samples" msgstr "重新采样" -#: superset/datasets/commands/exceptions.py:177 +#: superset/datasets/commands/exceptions.py:194 #, fuzzy msgid "Samples for dataset could not be retrieved." msgstr "无法创建数据集。" @@ -12661,7 +12832,7 @@ msgstr "无法创建数据集。" msgid "Samples for datasource could not be retrieved." msgstr "无法创建数据集。" -#: superset/viz.py:1935 +#: superset/viz.py:1854 msgid "Sankey" msgstr "蛇形图" @@ -12690,25 +12861,26 @@ msgstr "星期六" #: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:66 #: superset-frontend/src/SqlLab/components/SaveDatasetActionButton/index.tsx:80 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:199 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:214 -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:246 -#: superset-frontend/src/components/ReportModal/index.tsx:229 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:288 +#: superset-frontend/src/components/ReportModal/index.tsx:228 #: superset-frontend/src/dashboard/components/Header/index.jsx:607 #: superset-frontend/src/dashboard/components/Header/index.jsx:609 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:112 #: superset-frontend/src/dashboard/components/RefreshIntervalModal.tsx:148 #: superset-frontend/src/dashboard/components/SaveModal.tsx:211 #: superset-frontend/src/dashboard/components/filterscope/FilterScopeSelector.jsx:794 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingModal.tsx:304 #: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterSets/EditSection.tsx:156 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/Footer/Footer.tsx:71 #: superset-frontend/src/explore/components/DatasourcePanel/index.tsx:492 #: superset-frontend/src/explore/components/ExploreChartHeader/index.jsx:268 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:458 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:462 #: superset-frontend/src/explore/components/PropertiesModal/index.tsx:329 -#: superset-frontend/src/explore/components/SaveModal.tsx:415 +#: superset-frontend/src/explore/components/SaveModal.tsx:449 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:463 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:418 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:424 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:147 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:261 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:521 @@ -12718,30 +12890,31 @@ msgstr "星期六" #: superset-frontend/src/features/annotationLayers/AnnotationLayerModal.tsx:230 #: superset-frontend/src/features/annotations/AnnotationModal.tsx:272 #: superset-frontend/src/features/cssTemplates/CssTemplateModal.tsx:218 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1695 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1751 #: superset-frontend/src/features/datasets/AddDataset/Header/index.tsx:52 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:325 msgid "Save" msgstr "保存" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:191 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:246 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:190 msgid "Save & Explore" msgstr "保存和浏览" -#: superset-frontend/src/explore/components/SaveModal.tsx:396 +#: superset-frontend/src/explore/components/SaveModal.tsx:430 msgid "Save & go to dashboard" msgstr "保存并转到看板" -#: superset-frontend/src/explore/components/SaveModal.tsx:395 +#: superset-frontend/src/explore/components/SaveModal.tsx:429 #, fuzzy msgid "Save & go to new dashboard" msgstr "保存并转到看板" -#: superset-frontend/src/explore/components/SaveModal.tsx:308 +#: superset-frontend/src/explore/components/SaveModal.tsx:343 msgid "Save (Overwrite)" msgstr "保存(覆盖)" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:199 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:198 #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:306 msgid "Save as" msgstr "另存为" @@ -12756,16 +12929,16 @@ msgstr "选择数据源" msgid "Save as dataset" msgstr "选择数据源" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:394 -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:214 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:402 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:213 msgid "Save as new" msgstr "保存为新的" -#: superset-frontend/src/explore/components/SaveModal.tsx:412 +#: superset-frontend/src/explore/components/SaveModal.tsx:446 msgid "Save as new chart" msgstr "创建新图表" -#: superset-frontend/src/explore/components/SaveModal.tsx:316 +#: superset-frontend/src/explore/components/SaveModal.tsx:351 #, fuzzy msgid "Save as..." msgstr "另存为 ..." @@ -12779,7 +12952,7 @@ msgstr "另存为:" msgid "Save changes" msgstr "放弃更改" -#: superset-frontend/src/explore/components/SaveModal.tsx:432 +#: superset-frontend/src/explore/components/SaveModal.tsx:466 msgid "Save chart" msgstr "图表保存" @@ -12787,7 +12960,7 @@ msgstr "图表保存" msgid "Save dashboard" msgstr "保存看板" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:106 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:105 #, fuzzy msgid "Save dataset" msgstr "修改数据集" @@ -12796,11 +12969,11 @@ msgstr "修改数据集" msgid "Save for this session" msgstr "保存此会话" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:350 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:356 msgid "Save or Overwrite Dataset" msgstr "" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:202 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:201 msgid "Save query" msgstr "保存查询" @@ -12808,28 +12981,28 @@ msgstr "保存查询" msgid "Save the query to enable this feature" msgstr "请保存查询以启用共享" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:250 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:248 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:465 #: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopoverTrigger.tsx:149 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricPopoverTrigger.tsx:252 msgid "Save this query as a virtual dataset to continue exploring" msgstr "" -#: superset-frontend/src/explore/components/SaveModal.tsx:414 +#: superset-frontend/src/explore/components/SaveModal.tsx:448 #, fuzzy msgid "Save to new dashboard" msgstr "保存并转到看板" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:265 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:271 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:382 msgid "Saved" msgstr "保存" -#: superset/initialization/__init__.py:358 +#: superset/initialization/__init__.py:352 msgid "Saved Queries" msgstr "已保存查询" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:249 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:255 msgid "Saved expressions" msgstr "保存表达式" @@ -12889,12 +13062,12 @@ msgid "" msgstr "时间序列散点图在水平轴上以线性单位表示时间,点按顺序连接。它显示了两个变量之间的统计关系" #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:239 -#: superset-frontend/src/components/ReportModal/index.tsx:306 +#: superset-frontend/src/components/ReportModal/index.tsx:305 #: superset-frontend/src/pages/AlertReportList/index.tsx:276 msgid "Schedule" msgstr "调度" -#: superset-frontend/src/components/ReportModal/index.tsx:212 +#: superset-frontend/src/components/ReportModal/index.tsx:211 #, fuzzy msgid "Schedule a new email report" msgstr "为图表配置电子邮件报告" @@ -12911,7 +13084,7 @@ msgstr "分享查询" msgid "Schedule settings" msgstr "计划设置" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:524 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:518 msgid "Schedule the query periodically" msgstr "定期调度查询" @@ -12930,32 +13103,32 @@ msgstr "计划时间" msgid "Scheduled task executor not found" msgstr "未找到报表计划状态" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:299 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:221 -#: superset-frontend/src/pages/DatasetList/index.tsx:354 -#: superset-frontend/src/pages/DatasetList/index.tsx:536 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:298 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:223 +#: superset-frontend/src/pages/DatasetList/index.tsx:365 +#: superset-frontend/src/pages/DatasetList/index.tsx:547 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:250 #: superset-frontend/src/pages/SavedQueryList/index.tsx:297 #: superset-frontend/src/pages/SavedQueryList/index.tsx:469 -#: superset/connectors/sqla/views.py:483 superset/views/database/forms.py:144 -#: superset/views/database/forms.py:311 superset/views/database/forms.py:442 +#: superset/connectors/sqla/views.py:390 superset/views/database/forms.py:154 +#: superset/views/database/forms.py:321 superset/views/database/forms.py:452 msgid "Schema" msgstr "模式" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:247 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:257 msgid "Schema cache timeout" msgstr "图表缓存超时" -#: superset/views/core.py:1164 +#: superset/views/core.py:1186 #, fuzzy msgid "Schema undefined" msgstr "未命名" -#: superset/connectors/sqla/views.py:429 +#: superset/connectors/sqla/views.py:336 msgid "Schema, as used only in some databases like Postgres, Redshift and DB2" msgstr "模式,只在一些数据库中使用,比如Postgres、Redshift和DB2" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:419 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:429 #, fuzzy msgid "Schemas allowed for File upload" msgstr "模式允许使用CSV上传" @@ -12969,7 +13142,7 @@ msgstr "停止" msgid "Scoping" msgstr "范围" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:70 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:67 msgid "Scroll" msgstr "" @@ -12985,15 +13158,15 @@ msgstr "" #: superset-frontend/src/pages/ChartList/index.tsx:724 #: superset-frontend/src/pages/CssTemplateList/index.tsx:293 #: superset-frontend/src/pages/DashboardList/index.tsx:516 -#: superset-frontend/src/pages/DatabaseList/index.tsx:492 -#: superset-frontend/src/pages/DatasetList/index.tsx:577 +#: superset-frontend/src/pages/DatabaseList/index.tsx:503 +#: superset-frontend/src/pages/DatasetList/index.tsx:588 #: superset-frontend/src/pages/SavedQueryList/index.tsx:494 #: superset-frontend/src/pages/Tags/index.tsx:204 #: superset/templates/appbuilder/general/widgets/search.html:40 msgid "Search" msgstr "搜索" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:294 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:296 msgid "Search / Filter" msgstr "搜索 / 过滤" @@ -13017,12 +13190,12 @@ msgstr "搜索框" msgid "Search by query text" msgstr "按查询文本搜索" -#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:207 +#: superset-frontend/src/components/Chart/DrillBy/DrillByMenuItems.tsx:232 #, fuzzy msgid "Search columns" msgstr "使用列" -#: superset-frontend/src/components/Table/index.tsx:202 +#: superset-frontend/src/components/Table/index.tsx:206 #, fuzzy msgid "Search in filters" msgstr "搜索 / 过滤" @@ -13036,7 +13209,7 @@ msgstr "用户角色" msgid "Search..." msgstr "搜索..." -#: superset/db_engine_specs/base.py:96 +#: superset/db_engine_specs/base.py:97 msgid "Second" msgstr "秒" @@ -13050,10 +13223,15 @@ msgid "Secondary Metric" msgstr "次计量指标" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:408 +#, fuzzy +msgid "Secondary y-axis Bounds" +msgstr "次级y轴格式" + +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:425 msgid "Secondary y-axis format" msgstr "次级y轴格式" -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:417 +#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:434 msgid "Secondary y-axis title" msgstr "二级轴标题" @@ -13066,15 +13244,15 @@ msgstr "%s 秒" msgid "Secure Extra" msgstr "安全" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:336 -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:341 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:346 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:351 msgid "Secure extra" msgstr "安全" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:329 -#: superset/initialization/__init__.py:297 -#: superset/initialization/__init__.py:395 -#: superset/initialization/__init__.py:433 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:339 +#: superset/initialization/__init__.py:389 +#: superset/initialization/__init__.py:427 +#: superset/initialization/__init__.py:438 msgid "Security" msgstr "安全" @@ -13097,25 +13275,25 @@ msgstr "查看更少" msgid "See more" msgstr "查看更多" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:412 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:405 #, fuzzy msgid "See query details" msgstr "已保存查询" -#: superset-frontend/src/components/TableSelector/index.tsx:288 +#: superset-frontend/src/components/TableSelector/index.tsx:277 msgid "See table schema" msgstr "选择表" -#: superset-frontend/src/explore/components/SaveModal.tsx:363 +#: superset-frontend/src/explore/components/SaveModal.tsx:398 #: superset-frontend/src/explore/components/controls/VizTypeControl/index.tsx:131 msgid "Select" msgstr "批量选择" #: superset-frontend/src/components/AsyncSelect/index.jsx:41 #: superset-frontend/src/components/Select/AsyncSelect.tsx:123 -#: superset-frontend/src/components/Select/Select.tsx:103 +#: superset-frontend/src/components/Select/Select.tsx:104 #: superset-frontend/src/explore/components/controls/SelectAsyncControl/index.tsx:106 -#: superset-frontend/src/explore/components/controls/SelectControl.jsx:230 +#: superset-frontend/src/explore/components/controls/SelectControl.jsx:235 msgid "Select ..." msgstr "选择 ..." @@ -13127,11 +13305,11 @@ msgstr "添加通知方法" msgid "Select Viz Type" msgstr "选择一个可视化类型" -#: superset/views/database/forms.py:415 +#: superset/views/database/forms.py:425 msgid "Select a Columnar file to be uploaded to a database." msgstr "选择要上传到数据库的Excel文件。" -#: superset/views/database/forms.py:279 +#: superset/views/database/forms.py:289 msgid "Select a Excel file to be uploaded to a database." msgstr "选择要上传到数据库的Excel文件。" @@ -13139,7 +13317,7 @@ msgstr "选择要上传到数据库的Excel文件。" msgid "Select a column" msgstr "反选所有" -#: superset-frontend/src/explore/components/SaveModal.tsx:357 +#: superset-frontend/src/explore/components/SaveModal.tsx:392 msgid "Select a dashboard" msgstr "看板" @@ -13162,7 +13340,7 @@ msgstr "选择将要连接的数据库" msgid "Select a database to upload the file to" msgstr "选择将要连接的数据库" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:744 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:738 msgid "Select a database to write a query" msgstr "选择要写入查询的数据库" @@ -13176,7 +13354,7 @@ msgstr "维度" msgid "Select a file to be uploaded to the database" msgstr "选择一个CSV文件上传到数据库." -#: superset/views/database/forms.py:145 +#: superset/views/database/forms.py:155 #, fuzzy msgid "Select a schema if the database supports this" msgstr "指定一个Schema(需要数据库支持)" @@ -13189,12 +13367,12 @@ msgstr "选择一个可视化类型" msgid "Select aggregate options" msgstr "选择总选项" -#: superset-frontend/src/components/Table/index.tsx:207 +#: superset-frontend/src/components/Table/index.tsx:211 #, fuzzy msgid "Select all data" msgstr "反选所有" -#: superset-frontend/src/components/Table/index.tsx:201 +#: superset-frontend/src/components/Table/index.tsx:205 #, fuzzy msgid "Select all items" msgstr "反选所有" @@ -13203,6 +13381,11 @@ msgstr "反选所有" msgid "Select any columns for metadata inspection" msgstr "选择任意列进行元数据巡检" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:132 +#, fuzzy +msgid "Select chart" +msgstr "所有图表" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/controlPanel.js:45 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:103 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/LineMulti/controlPanel.ts:138 @@ -13213,13 +13396,13 @@ msgstr "所有图表" msgid "Select color scheme" msgstr "线性颜色方案" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:208 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:211 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopoverSqlTabContent/index.jsx:61 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:322 msgid "Select column" msgstr "时间列" -#: superset-frontend/src/components/Table/index.tsx:204 +#: superset-frontend/src/components/Table/index.tsx:208 #, fuzzy msgid "Select current page" msgstr "选择父级过滤" @@ -13229,8 +13412,8 @@ msgstr "选择父级过滤" msgid "Select database & schema" msgstr "选择表" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:272 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:280 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:271 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:279 #, fuzzy msgid "Select database or type to search databases" msgstr "选择表或输入表名" @@ -13240,7 +13423,7 @@ msgstr "选择表或输入表名" msgid "Select database table" msgstr "删除数据库" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1791 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1847 msgid "" "Select databases require additional fields to be completed in the " "Advanced tab to successfully connect the database. Learn what " @@ -13279,7 +13462,7 @@ msgstr "选择运营商" msgid "Select or type a value" msgstr "选择或键入一个值" -#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:410 +#: superset-frontend/src/SqlLab/components/SaveDatasetModal/index.tsx:418 #, fuzzy msgid "Select or type dataset name" msgstr "选择表或输入表名" @@ -13292,8 +13475,8 @@ msgstr "运行选定的查询" msgid "Select saved metrics" msgstr "选择保存指标" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:297 -#: superset-frontend/src/components/DatabaseSelector/index.tsx:304 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:296 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:303 #, fuzzy msgid "Select schema or type to search schemas" msgstr "选择表或输入表名" @@ -13302,7 +13485,7 @@ msgstr "选择表或输入表名" msgid "Select scheme" msgstr "选择表" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:304 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:307 msgid "Select start and end date" msgstr "选择开始和结束时间" @@ -13310,8 +13493,8 @@ msgstr "选择开始和结束时间" msgid "Select subject" msgstr "选择主题" +#: superset-frontend/src/components/TableSelector/index.tsx:284 #: superset-frontend/src/components/TableSelector/index.tsx:295 -#: superset-frontend/src/components/TableSelector/index.tsx:306 #, fuzzy msgid "Select table or type to search tables" msgstr "选择表或输入表名" @@ -13321,6 +13504,23 @@ msgstr "选择表或输入表名" msgid "Select the Annotation Layer you would like to use." msgstr "选择注释层类型" +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:191 +msgid "" +"Select the charts to which you want to apply cross-filters in this " +"dashboard. Deselecting a chart will exclude it from being filtered when " +"applying cross-filters from any chart on the dashboard. You can select " +"\"All charts\" to apply cross-filters to all charts that use the same " +"dataset or contain the same column name in the dashboard." +msgstr "" + +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:188 +msgid "" +"Select the charts to which you want to apply cross-filters when " +"interacting with this chart. You can select \"All charts\" to apply " +"filters to all charts that use the same dataset or contain the same " +"column name in the dashboard." +msgstr "" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/Shared_DeckGL.jsx:392 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/utilities/sharedDndControls.jsx:37 #, fuzzy @@ -13367,7 +13567,7 @@ msgstr "九月" msgid "Sequential" msgstr "顺序" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:47 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:51 msgid "Series" msgstr "序列" @@ -13385,7 +13585,7 @@ msgstr "序列限制" msgid "Series Limit Sort Descending" msgstr "降序" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:255 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:246 #, fuzzy msgid "Series Order" msgstr "图示类型" @@ -13459,13 +13659,13 @@ msgid "Settings for time series" msgstr "时间序列设置" #: superset-frontend/src/dashboard/components/Header/HeaderActionsDropdown/index.jsx:325 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:464 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:467 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:338 #: superset-frontend/src/features/home/SavedQueries.tsx:211 msgid "Share" msgstr "分享" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:469 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:472 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:343 msgid "Share chart by email" msgstr "通过电子邮件分享图表”" @@ -13475,7 +13675,7 @@ msgstr "通过电子邮件分享图表”" msgid "Share permalink by email" msgstr "通过电子邮件分享图表”" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1429 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1421 msgid "Shared query" msgstr "已分享的查询" @@ -13484,7 +13684,7 @@ msgstr "已分享的查询" msgid "Shared query fields" msgstr "已保存查询" -#: superset/views/database/forms.py:298 +#: superset/views/database/forms.py:308 msgid "Sheet Name" msgstr "Sheet名称" @@ -13534,7 +13734,7 @@ msgstr "查看CSS模板" msgid "Show Chart" msgstr "显示图表" -#: superset/connectors/sqla/views.py:73 +#: superset/connectors/sqla/views.py:72 msgid "Show Column" msgstr "显示列" @@ -13568,11 +13768,11 @@ msgstr "查看日志" msgid "Show Markers" msgstr "显示标记" -#: superset/connectors/sqla/views.py:208 +#: superset/connectors/sqla/views.py:207 msgid "Show Metric" msgstr "显示指标" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:178 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:182 msgid "Show Metric Names" msgstr "显示指标名" @@ -13580,15 +13780,11 @@ msgstr "显示指标名" msgid "Show Range Filter" msgstr "显示范围过滤器" -#: superset/connectors/sqla/views.py:291 -msgid "Show Row level security filter" -msgstr "显示行级安全过滤" - #: superset/views/sql_lab/views.py:53 msgid "Show Saved Query" msgstr "显示保存的查询" -#: superset/connectors/sqla/views.py:385 +#: superset/connectors/sqla/views.py:292 msgid "Show Table" msgstr "显示表" @@ -13610,11 +13806,11 @@ msgstr "显示趋势线" msgid "Show Upper Labels" msgstr "显示标签" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:110 msgid "Show Value" msgstr "显示值" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:164 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:168 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:315 #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:184 msgid "Show Values" @@ -13647,7 +13843,7 @@ msgstr "显示轴线刻度" msgid "Show cell bars" msgstr "显示单元格的栏" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:395 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:397 #, fuzzy msgid "Show chart description" msgstr "切换图表说明" @@ -13685,7 +13881,7 @@ msgstr "显示标签" msgid "Show labels when the node has children." msgstr "当节点有子节点时显示标签" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:39 msgid "Show legend" msgstr "显示图例" @@ -13722,7 +13918,7 @@ msgstr "显示进度" msgid "Show rows total" msgstr "显示总计行数" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:116 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:113 msgid "Show series values on the chart" msgstr "显示栏上的值" @@ -13749,7 +13945,6 @@ msgid "" " apply to the result." msgstr "显示所选指标的总聚合。注意行限制并不应用于结果" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:76 #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/metrics.tsx:105 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:365 msgid "Show totals" @@ -13794,7 +13989,7 @@ msgstr "显示单个指标相对于给定目标的进度。填充越高,度量 msgid "Showing %s of %s" msgstr "显示 %s个 总计 %s个" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:184 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:181 msgid "Shows a list of all series available at that point in time" msgstr "详细提示显示了该时间点的所有序列的列表。" @@ -13814,7 +14009,7 @@ msgstr "显示数据集的组成,方法是将给定矩形分割为较小的矩 msgid "Significance Level" msgstr "显著性" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:341 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/ColumnSelectPopover.tsx:347 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterEditPopover/index.jsx:212 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:436 #: superset-frontend/src/explore/components/controls/MetricControl/AdhocMetricEditPopover/index.jsx:439 @@ -13863,24 +14058,24 @@ msgstr "标记的大小也适用于预测观察。”" msgid "Sizes of vehicles" msgstr "工具尺寸" -#: superset/views/database/forms.py:177 +#: superset/views/database/forms.py:187 msgid "Skip Blank Lines" msgstr "跳过空白行" -#: superset/views/database/forms.py:174 +#: superset/views/database/forms.py:184 msgid "Skip Initial Space" msgstr "跳过初始空格" -#: superset/views/database/forms.py:260 superset/views/database/forms.py:354 +#: superset/views/database/forms.py:270 superset/views/database/forms.py:364 msgid "Skip Rows" msgstr "跳过行" -#: superset/views/database/forms.py:178 +#: superset/views/database/forms.py:188 #, fuzzy msgid "Skip blank lines rather than interpreting them as Not A Number values" msgstr "跳过空白行而不是把它们解释为NaN值。" -#: superset/views/database/forms.py:174 +#: superset/views/database/forms.py:184 #, fuzzy msgid "Skip spaces after delimiter" msgstr "在分隔符之后跳过空格。" @@ -13918,7 +14113,7 @@ msgstr "时间序列平滑线是折线图的变体。没有角度和硬边,平 msgid "Solid" msgstr "" -#: superset/commands/exceptions.py:115 +#: superset/commands/exceptions.py:119 msgid "Some roles do not exist" msgstr "看板" @@ -13927,7 +14122,7 @@ msgstr "看板" msgid "Something went wrong." msgstr "抱歉,出了点问题。请稍后再试。" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:864 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:919 #, python-format msgid "Sorry there was an error fetching database information: %s" msgstr "抱歉,获取数据库信息时出错:%s" @@ -13946,7 +14141,7 @@ msgstr "抱歉,发生错误" msgid "Sorry, an error occurred" msgstr "抱歉,发生错误" -#: superset-frontend/src/dashboard/actions/dashboardState.js:357 +#: superset-frontend/src/dashboard/actions/dashboardState.js:359 #, fuzzy msgid "Sorry, an unknown error occurred" msgstr "抱歉,发生错误" @@ -13978,14 +14173,14 @@ msgstr "抱歉,似乎没有数据" msgid "Sorry, there was an error saving this %s: %s" msgstr "抱歉,这个看板在获取图表时发生错误:%s" -#: superset-frontend/src/dashboard/actions/dashboardState.js:360 +#: superset-frontend/src/dashboard/actions/dashboardState.js:362 #, python-format msgid "Sorry, there was an error saving this dashboard: %s" msgstr "抱歉,这个看板在获取图表时发生错误:%s" #: superset-frontend/src/features/queries/SyntaxHighlighterCopy.tsx:76 #: superset-frontend/src/pages/SavedQueryList/index.tsx:229 -#: superset-frontend/src/views/CRUD/hooks.ts:676 +#: superset-frontend/src/views/CRUD/hooks.ts:680 msgid "Sorry, your browser does not support copying." msgstr "抱歉,您的浏览器不支持复制操作。使用 Ctrl / Cmd + C!" @@ -13995,7 +14190,7 @@ msgstr "抱歉,您的浏览器不支持复制操作。使用 Ctrl / Cmd + C! #: superset-frontend/src/components/ListView/CardSortSelect.tsx:82 #: superset-frontend/src/components/ListView/CardSortSelect.tsx:83 -#: superset-frontend/src/components/Table/index.tsx:208 +#: superset-frontend/src/components/Table/index.tsx:212 msgid "Sort" msgstr "排序:" @@ -14013,12 +14208,12 @@ msgstr "降序" msgid "Sort Metric" msgstr "排序指标" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:247 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:238 #, fuzzy msgid "Sort Series Ascending" msgstr "升序排序" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:227 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:224 #, fuzzy msgid "Sort Series By" msgstr "排序 " @@ -14094,7 +14289,7 @@ msgstr "排序指标" msgid "Sort rows by" msgstr "排序 " -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:250 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:241 msgid "Sort series in ascending order" msgstr "" @@ -14126,6 +14321,7 @@ msgstr "数据库名称" msgid "Sparkline" msgstr "标记线" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:978 msgid "Spatial" msgstr "空间" @@ -14134,23 +14330,23 @@ msgstr "空间" msgid "Specific Date/Time" msgstr "具体日期/时间" -#: superset/views/database/forms.py:312 superset/views/database/forms.py:443 +#: superset/views/database/forms.py:322 superset/views/database/forms.py:453 msgid "Specify a schema (if database flavor supports this)." msgstr "指定一个Schema(需要数据库支持)" -#: superset/views/database/forms.py:351 +#: superset/views/database/forms.py:361 msgid "Specify duplicate columns as \"X.0, X.1\"." msgstr "将重复列指定为“x.0,x.1”。" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:711 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:705 msgid "Specify name to CREATE TABLE AS schema in: public" msgstr "" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:710 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:704 msgid "Specify name to CREATE VIEW AS schema in: public" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:515 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:551 msgid "" "Specify the database version. This should be used with Presto in order to" " enable query cost estimation." @@ -14175,7 +14371,7 @@ msgstr "参数" msgid "Square miles" msgstr "序列" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:85 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:83 #, fuzzy msgid "Stack" msgstr "堆叠" @@ -14190,7 +14386,7 @@ msgstr "已保存查询" #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:161 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:115 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:128 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:125 msgid "Stack series on top of each other" msgstr "叠加系列" @@ -14210,7 +14406,7 @@ msgstr "堆叠条形图" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/controlPanel.ts:52 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:111 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:124 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:121 #: superset-frontend/src/explore/fixtures.tsx:58 msgid "Stacked Style" msgstr "堆积样式" @@ -14282,7 +14478,7 @@ msgstr "状态" msgid "State" msgstr "状态" -#: superset/sql_lab.py:511 +#: superset/sql_lab.py:503 #, python-format msgid "Statement %(statement_num)s out of %(statement_count)s" msgstr "" @@ -14334,21 +14530,21 @@ msgid "" "irregular intervals." msgstr "“时间序列步进折线图(也称为步进图)是折线图的一种变体,但线条在数据点之间形成一系列步进。当您希望显示不规则间隔发生的变化时,步进图可能很有用。”" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:47 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:46 #: superset-frontend/src/explore/components/RunQueryButton/index.tsx:45 msgid "Stop" msgstr "停止" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:337 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:339 msgid "Stop query" msgstr "停止查询" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:116 #, fuzzy msgid "Stop running (Ctrl + e)" msgstr "停止运行 (Ctrl + x)" -#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:114 +#: superset-frontend/src/SqlLab/components/RunQueryActionButton/index.tsx:115 msgid "Stop running (Ctrl + x)" msgstr "停止运行 (Ctrl + x)" @@ -14356,7 +14552,7 @@ msgstr "停止运行 (Ctrl + x)" msgid "Stopped an unsafe database connection" msgstr "已停止不安全的数据库连接" -#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/constants.ts:84 #, fuzzy msgid "Stream" msgstr "直方图" @@ -14375,7 +14571,7 @@ msgstr "将图形拉向中心" msgid "Stretched style" msgstr "堆积样式" -#: superset/views/database/forms.py:299 +#: superset/views/database/forms.py:309 msgid "Strings used for sheet names (default is the first sheet)." msgstr "用于sheet名称的字符串(默认为第一个sheet)。" @@ -14407,11 +14603,11 @@ msgstr "风格" msgid "Style the ends of the progress bar with a round cap" msgstr "用圆帽设置进度条末端的样式" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:56 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 msgid "Subdomain" msgstr "子域" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:47 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:48 msgid "Subheader" msgstr "子标题" @@ -14423,8 +14619,8 @@ msgstr "子标题的字体大小" msgid "Submit" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:472 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:678 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:471 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:676 #: superset/charts/post_processing.py:161 #: superset/charts/post_processing.py:178 msgid "Subtotal" @@ -14436,7 +14632,7 @@ msgstr "" msgid "Success" msgstr "成功" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:193 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:195 #, fuzzy msgid "Successfully changed dataset!" msgstr "修改数据集" @@ -14471,7 +14667,7 @@ msgstr "指定期间内的值总和" msgid "Sum values" msgstr "空值" -#: superset/viz.py:1888 +#: superset/viz.py:1805 msgid "Sunburst" msgstr "环状层次图" @@ -14497,7 +14693,7 @@ msgid "Superset Embedded SDK documentation." msgstr "" #: superset-frontend/src/dashboard/components/AnchorLink/index.tsx:72 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:470 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:473 msgid "Superset chart" msgstr "选择图表" @@ -14513,7 +14709,7 @@ msgstr "警报在执行查询时发现错误。" msgid "Superset encountered an unexpected error." msgstr "报告计划意外错误。" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:920 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 msgid "Supported databases" msgstr "已支持数据库" @@ -14521,11 +14717,7 @@ msgstr "已支持数据库" msgid "Survey Responses" msgstr "调查结果" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:101 -msgid "Swap Groups and Columns" -msgstr "交换组和列" - -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:254 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:256 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:311 #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:435 #, fuzzy @@ -14576,6 +14768,11 @@ msgstr "从源同步列" msgid "Syntax" msgstr "语法" +#: superset/db_engine_specs/ocient.py:282 +#, python-format +msgid "Syntax Error: %(qualifier)s input \"%(input)s\" expecting \"%(expected)s" +msgstr "" + #: superset-frontend/src/pages/QueryHistoryList/index.tsx:268 #: superset-frontend/src/pages/SavedQueryList/index.tsx:315 msgid "TABLES" @@ -14609,36 +14806,36 @@ msgstr "选项卡名字" msgid "Tab title" msgstr "选项卡标题" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:26 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:55 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:39 #: superset-frontend/plugins/plugin-chart-table/src/index.ts:45 -#: superset-frontend/src/components/TableSelector/index.tsx:290 +#: superset-frontend/src/components/Chart/DrillBy/useDisplayModeToggle.tsx:57 +#: superset-frontend/src/components/TableSelector/index.tsx:279 #: superset-frontend/src/visualizations/TimeTable/index.ts:26 -#: superset/connectors/sqla/views.py:160 superset/connectors/sqla/views.py:255 -#: superset/connectors/sqla/views.py:477 superset/views/chart/mixin.py:86 +#: superset/connectors/sqla/views.py:159 superset/connectors/sqla/views.py:254 +#: superset/connectors/sqla/views.py:384 superset/views/chart/mixin.py:86 msgid "Table" msgstr "表" -#: superset/views/core.py:1740 +#: superset/views/core.py:1775 #, python-format msgid "Table %(table)s wasn't found in the database %(db)s" msgstr "在数据库 %(db)s 中找不到表 %(table)s" -#: superset/views/database/forms.py:317 superset/views/database/forms.py:448 +#: superset/views/database/forms.py:327 superset/views/database/forms.py:458 msgid "Table Exists" msgstr "表已存在处理" -#: superset/connectors/sqla/views.py:487 superset/views/database/forms.py:128 -#: superset/views/database/forms.py:269 superset/views/database/forms.py:405 +#: superset/connectors/sqla/views.py:394 superset/views/database/forms.py:128 +#: superset/views/database/forms.py:279 superset/views/database/forms.py:415 msgid "Table Name" msgstr "表名" -#: superset/viz.py:698 +#: superset/viz.py:722 msgid "Table View" msgstr "表视图" -#: superset/datasets/commands/exceptions.py:130 +#: superset/datasets/commands/exceptions.py:147 #, python-format msgid "" "Table [%(table_name)s] could not be found, please double check your " @@ -14651,7 +14848,7 @@ msgid "" "connection, schema, and table name, error: {}" msgstr "找不到 [%{table}s] 表,请仔细检查您的数据库连接、Schema 和 表名" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:268 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:278 msgid "Table cache timeout" msgstr "图表缓存超时" @@ -14665,8 +14862,8 @@ msgstr "标题栏" msgid "Table loading" msgstr "启用预测中" -#: superset/views/database/forms.py:132 superset/views/database/forms.py:273 -#: superset/views/database/forms.py:409 +#: superset/views/database/forms.py:132 superset/views/database/forms.py:283 +#: superset/views/database/forms.py:419 msgid "Table name cannot contain a schema" msgstr "" @@ -14674,15 +14871,22 @@ msgstr "" msgid "Table name undefined" msgstr "表名未定义" +#: superset/db_engine_specs/ocient.py:287 +#, fuzzy, python-format +msgid "Table or View \"%(table)s\" does not exist." +msgstr "指标 '%(username)s' 不存在" + #: superset-frontend/plugins/legacy-plugin-chart-paired-t-test/src/index.js:26 msgid "" "Table that visualizes paired t-tests, which are used to understand " "statistical differences between groups." msgstr "可视化检验的表格,用于了解各组之间的统计差异" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:384 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:393 #: superset-frontend/src/pages/QueryHistoryList/index.tsx:287 #: superset-frontend/src/pages/SavedQueryList/index.tsx:334 -#: superset/connectors/sqla/views.py:363 superset/connectors/sqla/views.py:384 +#: superset/connectors/sqla/views.py:291 msgid "Tables" msgstr "数据表" @@ -14733,7 +14937,7 @@ msgstr "无法删除数据集" #: superset-frontend/src/pages/SavedQueryList/index.tsx:382 #: superset-frontend/src/pages/SavedQueryList/index.tsx:487 #: superset-frontend/src/pages/Tags/index.tsx:279 -#: superset/initialization/__init__.py:384 +#: superset/initialization/__init__.py:378 msgid "Tags" msgstr "标签" @@ -14761,7 +14965,7 @@ msgstr "树形图中图块的目标高宽比。" msgid "Target category" msgstr "目标类别" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:173 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:176 msgid "Target value" msgstr "目标值" @@ -14771,7 +14975,7 @@ msgstr "模板名称" #: superset-frontend/src/SqlLab/components/TemplateParamsEditor/index.tsx:99 #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:962 -#: superset/connectors/sqla/views.py:493 +#: superset/connectors/sqla/views.py:400 msgid "Template parameters" msgstr "模板参数" @@ -14781,7 +14985,7 @@ msgid "" "coming from the controls." msgstr "模板链接,可以包含{{度量}}或来自控件的其他值。" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:317 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:327 msgid "" "Terminate running queries when browser window closed or navigated to " "another page. Available for Presto, Hive, MySQL, Postgres and Snowflake " @@ -14805,7 +15009,7 @@ msgstr "文本" msgid "Text align" msgstr "文本对齐" -#: superset-frontend/src/components/ReportModal/index.tsx:248 +#: superset-frontend/src/components/ReportModal/index.tsx:247 msgid "Text embedded in email" msgstr "邮件中嵌入的文本" @@ -14852,7 +15056,7 @@ msgid "" " the filters list?" msgstr "" -#: superset/views/core.py:372 +#: superset/views/core.py:373 msgid "The access requests seem to have been deleted" msgstr "访问请求已被删除" @@ -14870,12 +15074,12 @@ msgid "" "associated with more than one category, only the first will be used." msgstr "用于分配颜色的源节点类别。如果一个节点与多个类别关联,则只使用第一个类别" -#: superset/common/query_context_processor.py:586 +#: superset/common/query_context_processor.py:585 #, fuzzy msgid "The chart datasource does not exist" msgstr "图表不存在" -#: superset/common/query_context_processor.py:584 +#: superset/common/query_context_processor.py:583 msgid "The chart does not exist" msgstr "图表不存在" @@ -14929,14 +15133,14 @@ msgstr "该看板已成功保存。" msgid "The data source seems to have been deleted" msgstr "数据源已经被删除" -#: superset/connectors/sqla/views.py:115 +#: superset/connectors/sqla/views.py:114 msgid "" "The data type that was inferred by the database. It may be necessary to " "input a type manually for expression-defined columns in some cases. In " "most case users should not need to alter this." msgstr "由数据库推断的数据类型。在某些情况下,可能需要为表达式定义的列手工输入一个类型。在大多数情况下,用户不需要修改这个数据类型。" -#: superset-frontend/src/pages/DatabaseList/index.tsx:515 +#: superset-frontend/src/pages/DatabaseList/index.tsx:529 #, python-format msgid "" "The database %s is linked to %s charts that appear on %s dashboards and " @@ -14979,11 +15183,11 @@ msgstr "数据库返回意外错误。" msgid "The database was deleted." msgstr "数据集已保存" -#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2002 +#: superset/datasets/commands/duplicate.py:60 superset/views/core.py:2039 msgid "The database was not found." msgstr "数据库没有找到" -#: superset-frontend/src/pages/DatasetList/index.tsx:710 +#: superset-frontend/src/pages/DatasetList/index.tsx:724 #, python-format msgid "" "The dataset %s is linked to %s charts that appear on %s dashboards. Are " @@ -14992,11 +15196,11 @@ msgid "" msgstr "数据集 %s 已经链接到 %s 图表和 %s 看板内。确定要继续吗?删除数据集将破坏这些对象。" #: superset-frontend/src/components/Chart/Chart.jsx:88 -#: superset/views/utils.py:274 +#: superset/views/utils.py:272 msgid "The dataset associated with this chart no longer exists" msgstr "这个图表所链接的数据集可能被删除了。" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:168 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:210 msgid "" "The dataset configuration exposed here\n" " affects all the charts using this dataset.\n" @@ -15005,7 +15209,7 @@ msgid "" " in undesirable ways." msgstr "这里公开的数据集配置会影响使用此数据集的所有图表。请注意,更改此处的设置可能会以未预想的方式影响其他图表。" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:129 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:164 #: superset-frontend/src/pages/ChartCreation/index.tsx:261 msgid "The dataset has been saved" msgstr "数据集已保存" @@ -15014,7 +15218,7 @@ msgstr "数据集已保存" msgid "The dataset linked to this chart may have been deleted." msgstr "这个图表所链接的数据集可能被删除了。" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1496 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1488 msgid "The datasource couldn't be loaded" msgstr "这个查询无法被加载" @@ -15028,7 +15232,7 @@ msgid "" " Supports markdown." msgstr "作为为小部件标题可以在仪表板视图中显示的描述,支持markdown格式语法。" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:104 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:108 msgid "The distance between cells, in pixels" msgstr "单元格之间的距离,以像素为单位" @@ -15044,7 +15248,7 @@ msgstr "缓存失效前的持续时间(以秒为单位)" msgid "The encoding format of the lines" msgstr "是否规范化直方图" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:495 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:531 msgid "" "The engine_params object gets unpacked into the sqlalchemy.create_engine " "call." @@ -15059,6 +15263,7 @@ msgid "" "%(columns)s. " msgstr " `series_columns`中的下列条目在 `columns` 中缺失: %(columns)s. " +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:111 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:67 msgid "The function to use when aggregating points into groups" msgstr "" @@ -15069,9 +15274,9 @@ msgid "The host \"%(hostname)s\" might be down and can't be reached." msgstr "主机 \"%(hostname)s\" 可能已关闭,无法连接到" #: superset/db_engine_specs/mssql.py:103 -#: superset/db_engine_specs/postgres.py:140 -#: superset/db_engine_specs/presto.py:664 -#: superset/db_engine_specs/redshift.py:82 +#: superset/db_engine_specs/postgres.py:139 +#: superset/db_engine_specs/presto.py:691 +#: superset/db_engine_specs/redshift.py:86 #, python-format msgid "" "The host \"%(hostname)s\" might be down, and can't be reached on port " @@ -15083,9 +15288,9 @@ msgid "The host might be down, and can't be reached on the provided port." msgstr "主机可能宕机了,无法在所提供的端口上连接到它" #: superset/db_engine_specs/mssql.py:93 -#: superset/db_engine_specs/postgres.py:130 -#: superset/db_engine_specs/presto.py:659 -#: superset/db_engine_specs/redshift.py:72 +#: superset/db_engine_specs/postgres.py:129 +#: superset/db_engine_specs/presto.py:686 +#: superset/db_engine_specs/redshift.py:76 #, python-format msgid "The hostname \"%(hostname)s\" cannot be resolved." msgstr "无法解析主机名 \"%(hostname)s\" " @@ -15099,7 +15304,7 @@ msgstr "提供的主机名无法解析。" msgid "The id of the active chart" msgstr "活动图表的ID" -#: superset/connectors/sqla/views.py:418 +#: superset/connectors/sqla/views.py:325 msgid "" "The list of charts associated with this table. By altering this " "datasource, you may change how these associated charts behave. Also note " @@ -15136,7 +15341,7 @@ msgid "" "%{key}s is invalid." msgstr "额外字段中的元数据参数配置不正确。键 %{key}s 无效。" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:469 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:505 msgid "" "The metadata_params object gets unpacked into the sqlalchemy.MetaData " "call." @@ -15158,7 +15363,7 @@ msgstr "" "显示值所需的滚动周期的最小值。例如,如果您想累积 7 天的总额,您可能希望您的“最小周期”为 7,以便显示的所有数据点都是 7 " "个区间的总和。这将隐藏掉前 7 个阶段的“加速”效果" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:130 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:134 msgid "The number color \"steps\"" msgstr "色彩 \"Steps\" 数字" @@ -15168,7 +15373,7 @@ msgid "" " can be used to move UTC time to local time." msgstr "用于移动时间列的小时数(负数或正数)。这可用于将UTC时间移动到本地时间" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:308 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:301 #, python-format msgid "" "The number of results displayed is limited to %(rows)d by the " @@ -15178,7 +15383,7 @@ msgstr "" "显示的结果数由配置DISPLAY_MAX_rows限制为 %(rows)d 。请添加其他限制/筛选器或下载到csv以查看更多行数,限制为 " "%(limit)d " -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:314 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:307 #, python-format msgid "" "The number of results displayed is limited to %(rows)d. Please add " @@ -15186,22 +15391,22 @@ msgid "" "more rows up to the %(limit)d limit." msgstr "显示的结果数限制为 %(rows)d。请添加其他筛选器,下载到csv,或与管理员联系以查看 %(limit)d 的更多行”" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:365 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:358 #, fuzzy, python-format msgid "The number of rows displayed is limited to %(rows)d by the dropdown." msgstr "显示的行数通过限制下拉框限制为 %(rows)d 。" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:334 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:327 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the limit dropdown." msgstr "显示的行数通过限制下拉框限制为 %(rows)d 。" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:326 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:319 #, python-format msgid "The number of rows displayed is limited to %(rows)d by the query" msgstr "查询将显示的行数限制为 %(rows)d " -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:339 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:332 #, python-format msgid "" "The number of rows displayed is limited to %(rows)d by the query and " @@ -15217,13 +15422,13 @@ msgstr "终止缓存前的时间(秒)" msgid "The object does not exist in the given database." msgstr "源数据库中存在的表的名称" -#: superset/sqllab/query_render.py:96 +#: superset/sqllab/query_render.py:94 #, python-format msgid "The parameter %(parameters)s in your query is undefined." msgid_plural "The following parameters in your query are undefined: %(parameters)s." msgstr[0] "查询中的以下参数未定义:%(parameters)s 。" -#: superset/db_engine_specs/postgres.py:120 +#: superset/db_engine_specs/postgres.py:119 #, python-format msgid "The password provided for username \"%(username)s\" is incorrect." msgstr "用户名 \"%(username)s\" 提供的密码不正确。" @@ -15276,7 +15481,7 @@ msgstr "" "需要以下数据库的密码才能将其与图表一起导入。请注意,数据库配置的 \"Secure Extra\" 和 \"Certificate\" " "部分不在导出文件中,如果需要,应在导入后手动添加。" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1284 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1339 #, fuzzy msgid "" "The passwords for the databases below are needed in order to import them." @@ -15299,7 +15504,7 @@ msgid "" "\"freq\" expressions." msgstr "旋转时间的周期性。" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:118 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:122 msgid "The pixel radius" msgstr "像素半径" @@ -15323,7 +15528,7 @@ msgstr "数据库参数无效" msgid "The primary metric is used to define the arc segment sizes" msgstr "主计量指标用于定义弧段大小。" -#: superset/views/core.py:2212 +#: superset/views/core.py:2248 msgid "The provided `rows` argument is not a valid integer." msgstr "提供的 `rows` 参数不是有效整数。" @@ -15332,13 +15537,13 @@ msgid "The query associated with the results was deleted." msgstr "删除与结果关联的查询。" #: superset/sqllab/commands/export.py:63 superset/sqllab/commands/results.py:91 -#: superset/views/core.py:2162 +#: superset/views/core.py:2198 msgid "" "The query associated with these results could not be found. You need to " "re-run the original query." msgstr "找不到与这些结果相关联的查询。你需要重新运行查询" -#: superset/sqllab/query_render.py:117 +#: superset/sqllab/query_render.py:115 msgid "The query contains one or more malformed template parameters." msgstr "该查询包含一个或多个格式不正确的模板参数。" @@ -15357,11 +15562,11 @@ msgstr "查询在 %(sqllab_timeout)s 秒后被终止。它可能太复杂,或 msgid "The query has a syntax error." msgstr "查询有语法错误。" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:519 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:512 msgid "The query returned no data" msgstr "查询无结果" -#: superset/sql_lab.py:301 +#: superset/sql_lab.py:297 #, python-format msgid "" "The query was killed after %(sqllab_timeout)s seconds. It might be too " @@ -15402,14 +15607,14 @@ msgstr "后端存储的结果以不同的格式存储,而且不再可以反序 msgid "The rich tooltip shows a list of all series for that point in time" msgstr "详细提示显示了该时间点的所有序列的列表。" -#: superset/db_engine_specs/bigquery.py:202 +#: superset/db_engine_specs/bigquery.py:203 #, python-format msgid "" "The schema \"%(schema)s\" does not exist. A valid schema must be used to " "run this query." msgstr "表 \"%(schema)s\" 不存在。必须使用有效的表来运行此查询。" -#: superset/db_engine_specs/presto.py:646 +#: superset/db_engine_specs/presto.py:673 #, python-format msgid "" "The schema \"%(schema_name)s\" does not exist. A valid schema must be " @@ -15420,11 +15625,12 @@ msgstr "表 \"%(schema_name)s\" 不存在。必须使用有效的表来运行此 msgid "The schema was deleted or renamed in the database." msgstr "该列已在数据库中删除或重命名。" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:92 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:96 msgid "The size of the square cell, in pixels" msgstr "平方单元的大小,以像素为单位" -#: superset/views/datasource/views.py:88 +#: superset/datasets/commands/exceptions.py:72 +#: superset/views/datasource/views.py:90 msgid "" "The submitted URL is not considered safe, only use URLs with the same " "domain as Superset." @@ -15438,21 +15644,21 @@ msgstr "提交的有效载荷格式不正确" msgid "The submitted payload has the incorrect schema." msgstr "提交的有效负载的模式不正确。" -#: superset/db_engine_specs/bigquery.py:189 +#: superset/db_engine_specs/bigquery.py:190 #, python-format msgid "" "The table \"%(table)s\" does not exist. A valid table must be used to run" " this query." msgstr "表 \"%(table)s\" 不存在。必须使用有效的表来运行此查询。" -#: superset/db_engine_specs/presto.py:638 +#: superset/db_engine_specs/presto.py:665 #, python-format msgid "" "The table \"%(table_name)s\" does not exist. A valid table must be used " "to run this query." msgstr "表 \"%(table_name)s\" 不存在。必须使用有效的表来运行此查询。" -#: superset/connectors/sqla/views.py:515 +#: superset/connectors/sqla/views.py:422 msgid "" "The table was created. As part of this two-phase configuration process, " "you should now click the edit button by the new table to configure it." @@ -15506,13 +15712,13 @@ msgstr "" "可视化的时间范围。所有相关的时间,例如\"上个月\"、\"过去7天\"、\"现在\"等,都在服务器上使用服务器的本地时间(sans时区)进行计算。所有工具提示和占位符时间均以UTC(无时区)表示。然后,数据库使用引擎的本地时区来评估时间戳。注:如果指定开始时间和、或者结束时间,可以根据ISO" " 8601格式显式设置时区。" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:69 msgid "" "The time unit for each block. Should be a smaller unit than " "domain_granularity. Should be larger or equal to Time Grain" msgstr "每个块的时间单位。应该是主域域粒度更小的单位。应该大于或等于时间粒度" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:53 msgid "The time unit used for the grouping of blocks" msgstr "用于块分组的时间单位" @@ -15530,7 +15736,12 @@ msgstr "指定点半径的度量单位" msgid "The user seems to have been deleted" msgstr "用户已经被删除" -#: superset/db_engine_specs/postgres.py:115 +#: superset/db_engine_specs/ocient.py:251 +msgid "The user/password combination is not valid (Incorrect password for user)." +msgstr "" + +#: superset/db_engine_specs/ocient.py:246 +#: superset/db_engine_specs/postgres.py:114 #, python-format msgid "The username \"%(username)s\" does not exist." msgstr "指标 '%(username)s' 不存在" @@ -15558,16 +15769,16 @@ msgstr "活动图表的ID" msgid "There are associated alerts or reports" msgstr "存在关联的警报或报告" -#: superset/charts/commands/bulk_delete.py:62 -#: superset/charts/commands/delete.py:71 -#: superset/dashboards/commands/bulk_delete.py:63 -#: superset/dashboards/commands/delete.py:64 -#: superset/databases/commands/delete.py:63 +#: superset/charts/commands/bulk_delete.py:61 +#: superset/charts/commands/delete.py:70 +#: superset/dashboards/commands/bulk_delete.py:62 +#: superset/dashboards/commands/delete.py:63 +#: superset/databases/commands/delete.py:62 #, python-format msgid "There are associated alerts or reports: %s," msgstr "存在关联的警报或报告:%s," -#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:710 +#: superset-frontend/src/dashboard/components/DashboardBuilder/DashboardBuilder.tsx:711 #, fuzzy msgid "There are no charts added to this dashboard" msgstr "此看板中没有过滤条件。" @@ -15609,12 +15820,12 @@ msgstr "此组件没有足够的空间。请尝试减小其宽度,或增加目 #: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:66 #: superset-frontend/src/features/datasets/hooks/useDatasetLists.ts:67 -#, fuzzy, python-format +#, fuzzy msgid "There was an error fetching dataset" msgstr "抱歉,获取数据库信息时出错:%s" #: superset-frontend/src/features/datasets/hooks/useGetDatasetRelatedCounts.ts:36 -#, fuzzy, python-format +#, fuzzy msgid "There was an error fetching dataset's related objects" msgstr "抱歉,获取数据库信息时出错:%s" @@ -15624,7 +15835,7 @@ msgstr "抱歉,获取数据库信息时出错:%s" msgid "There was an error fetching tables" msgstr "您的请求有错误" -#: superset-frontend/src/views/CRUD/hooks.ts:589 +#: superset-frontend/src/views/CRUD/hooks.ts:593 #, python-format msgid "There was an error fetching the favorite status: %s" msgstr "获取此看板的收藏夹状态时出现问题:%s。" @@ -15633,20 +15844,25 @@ msgstr "获取此看板的收藏夹状态时出现问题:%s。" msgid "There was an error fetching your recent activity:" msgstr "获取您最近的活动时出错:" +#: superset-frontend/src/components/Chart/DrillBy/DrillByModal.tsx:450 +#, fuzzy +msgid "There was an error loading the chart data" +msgstr "抱歉,这个看板在获取图表时发生错误:" + #: superset-frontend/src/features/datasets/metadataBar/useDatasetMetadataBar.tsx:119 #, fuzzy msgid "There was an error loading the dataset metadata" msgstr "您的请求有错误" -#: superset-frontend/src/components/DatabaseSelector/index.tsx:241 +#: superset-frontend/src/components/DatabaseSelector/index.tsx:240 msgid "There was an error loading the schemas" msgstr "抱歉,这个看板在获取图表时发生错误:" -#: superset-frontend/src/components/TableSelector/index.tsx:194 +#: superset-frontend/src/components/TableSelector/index.tsx:191 msgid "There was an error loading the tables" msgstr "您的请求有错误" -#: superset-frontend/src/views/CRUD/hooks.ts:612 +#: superset-frontend/src/views/CRUD/hooks.ts:616 #, python-format msgid "There was an error saving the favorite status: %s" msgstr "获取此看板的收藏夹状态时出现问题: %s" @@ -15660,14 +15876,20 @@ msgstr "您的请求有错误" #: superset-frontend/src/pages/AnnotationLayerList/index.tsx:93 #: superset-frontend/src/pages/AnnotationList/index.tsx:121 #: superset-frontend/src/pages/CssTemplateList/index.tsx:97 -#: superset-frontend/src/pages/DatabaseList/index.tsx:167 -#: superset-frontend/src/pages/DatasetList/index.tsx:657 +#: superset-frontend/src/pages/DatabaseList/index.tsx:178 +#: superset-frontend/src/pages/DatasetList/index.tsx:668 +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:97 #: superset-frontend/src/pages/SavedQueryList/index.tsx:245 #: superset-frontend/src/views/CRUD/utils.tsx:315 #, python-format msgid "There was an issue deleting %s: %s" msgstr "删除 %s 时出现问题:%s" +#: superset-frontend/src/pages/RowLevelSecurityList/index.tsx:111 +#, fuzzy, python-format +msgid "There was an issue deleting rules: %s" +msgstr "删除 %s 时出现问题:%s" + #: superset-frontend/src/pages/AlertReportList/index.tsx:201 #, python-format msgid "There was an issue deleting the selected %s: %s" @@ -15687,7 +15909,7 @@ msgstr "删除所选图表时出现问题:%s" msgid "There was an issue deleting the selected dashboards: " msgstr "删除所选仪表板时出现问题:" -#: superset-frontend/src/pages/DatasetList/index.tsx:675 +#: superset-frontend/src/pages/DatasetList/index.tsx:686 #, python-format msgid "There was an issue deleting the selected datasets: %s" msgstr "删除选定的数据集时出现问题:%s" @@ -15712,17 +15934,17 @@ msgstr "删除所选模板时出现问题:%s" msgid "There was an issue deleting: %s" msgstr "删除时出现问题:%s" -#: superset-frontend/src/pages/DatasetList/index.tsx:683 -#, fuzzy, python-format +#: superset-frontend/src/pages/DatasetList/index.tsx:694 +#, fuzzy msgid "There was an issue duplicating the dataset." msgstr "删除选定的数据集时出现问题:%s" -#: superset-frontend/src/pages/DatasetList/index.tsx:699 +#: superset-frontend/src/pages/DatasetList/index.tsx:710 #, fuzzy, python-format msgid "There was an issue duplicating the selected datasets: %s" msgstr "删除选定的数据集时出现问题:%s" -#: superset-frontend/src/dashboard/actions/dashboardState.js:129 +#: superset-frontend/src/dashboard/actions/dashboardState.js:127 msgid "There was an issue favoriting this dashboard." msgstr "收藏看板时候出现问题。" @@ -15730,7 +15952,7 @@ msgstr "收藏看板时候出现问题。" msgid "There was an issue fetching reports attached to this dashboard." msgstr "获取此看板的收藏夹状态时出现问题。" -#: superset-frontend/src/dashboard/actions/dashboardState.js:104 +#: superset-frontend/src/dashboard/actions/dashboardState.js:103 msgid "There was an issue fetching the favorite status of this dashboard." msgstr "获取此看板的收藏夹状态时出现问题。" @@ -15764,13 +15986,13 @@ msgstr "预览所选查询时出现问题 %s" msgid "There was an issue previewing the selected query. %s" msgstr "预览所选查询时出现问题。%s" -#: superset/viz.py:1992 +#: superset/viz.py:1915 msgid "" "There's a loop in your Sankey, please provide a tree. Here's a faulty " "link: {}" msgstr "桑基图里面有一个循环,请提供一棵树。这是一个错误的链接:{}" -#: superset/connectors/sqla/views.py:335 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:386 msgid "These are the tables this filter will be applied to." msgstr "这些是将应用此过滤的表。" @@ -15819,10 +16041,10 @@ msgid "" "mydatabase.com)." msgstr "这可以是一个IP地址(例如127.0.0.1)或一个域名(例如127.0.0.1)" -#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:244 +#: superset-frontend/src/dashboard/components/SliceHeader/index.tsx:245 msgid "" -"This chart emits/applies cross-filters to other charts that use the same " -"dataset" +"This chart applies cross-filters to charts whose datasets contain columns" +" with the same name." msgstr "" #: superset-frontend/src/dashboard/actions/dashboardLayout.js:260 @@ -15837,7 +16059,7 @@ msgstr "" msgid "This chart might be incompatible with the filter (datasets don't match)" msgstr "此图表可能与过滤器不兼容(数据集不匹配)" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:322 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:321 msgid "" "This chart type is not supported when using an unsaved query as a chart " "source. " @@ -15850,7 +16072,7 @@ msgid "" " Check the JSON metadata in the Advanced settings" msgstr "此配色方案正被自定义标签颜色覆盖。" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:121 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndColumnSelect.tsx:113 #, fuzzy msgid "This column might be incompatible with current dataset" msgstr "此图表可能与过滤器不兼容(数据集不匹配)" @@ -15898,11 +16120,11 @@ msgid "" "dashboards. Click here to publish this dashboard." msgstr "此看板未发布,它将不会显示在看板列表中。单击此处以发布此看板。" -#: superset-frontend/src/dashboard/actions/dashboardState.js:154 +#: superset-frontend/src/dashboard/actions/dashboardState.js:152 msgid "This dashboard is now hidden" msgstr "无法修改该看板" -#: superset-frontend/src/dashboard/actions/dashboardState.js:153 +#: superset-frontend/src/dashboard/actions/dashboardState.js:151 msgid "This dashboard is now published" msgstr "当前看板 ${nowPublished}" @@ -15916,18 +16138,18 @@ msgid "" " id to the SDK:" msgstr "" -#: superset/views/core.py:1319 +#: superset/views/core.py:1353 msgid "" "This dashboard was changed recently. Please reload dashboard to get " "latest version." msgstr "此看板最近已更新。请重新加载看板以获取最新版本。" -#: superset-frontend/src/dashboard/actions/dashboardState.js:311 -#: superset-frontend/src/dashboard/actions/dashboardState.js:350 +#: superset-frontend/src/dashboard/actions/dashboardState.js:313 +#: superset-frontend/src/dashboard/actions/dashboardState.js:352 msgid "This dashboard was saved successfully." msgstr "该看板已成功保存。" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1119 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1174 msgid "This database is managed externally, and can't be edited in Superset" msgstr "" @@ -15937,7 +16159,7 @@ msgid "" "table." msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:240 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:282 msgid "This dataset is managed externally, and can't be edited in Superset" msgstr "" @@ -15954,7 +16176,7 @@ msgstr "这定义了要在图表上绘制的元素" msgid "This defines the level of the hierarchy" msgstr "该选项定义了层次级别" -#: superset/connectors/sqla/views.py:436 +#: superset/connectors/sqla/views.py:343 msgid "" "This fields acts a Superset view, meaning that Superset will run a query " "against this string as a subquery." @@ -15978,7 +16200,7 @@ msgstr "此过滤器集等同于: \"%s\" " msgid "This functionality is disabled in your environment for security reasons." msgstr "" -#: superset/connectors/sqla/views.py:352 +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:456 msgid "" "This is the condition that will be added to the WHERE clause. For " "example, to only return rows for a particular client, you might define a " @@ -16009,7 +16231,7 @@ msgstr "此 markdown 组件有错误。请还原最近的更改。" msgid "This may be triggered by:" msgstr "这可能由以下因素触发:" -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:258 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndMetricSelect.tsx:256 #, fuzzy msgid "This metric might be incompatible with current dataset" msgstr "此图表可能与过滤器不兼容(数据集不匹配)" @@ -16052,15 +16274,15 @@ msgid "" "associate one dataset with a table.\n" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:85 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:88 msgid "This value should be greater than the left target value" msgstr "这个值应该大于左边的目标值" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:80 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:83 msgid "This value should be smaller than the right target value" msgstr "这个值应该小于正确的目标值" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:141 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:171 #, fuzzy msgid "This visualization type does not support cross-filtering." msgstr "选择可视化类型" @@ -16097,6 +16319,7 @@ msgstr "星期四" #: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:38 #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:26 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:30 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/index.js:39 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Area/index.js:52 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/Bar/index.js:39 @@ -16126,7 +16349,7 @@ msgstr "时间列" msgid "Time Comparison" msgstr "时间比对" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:141 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:145 msgid "Time Format" msgstr "时间格式" @@ -16158,39 +16381,39 @@ msgstr "时间粒度(grain)" msgid "Time Series" msgstr "时间序列" -#: superset/viz.py:1670 +#: superset/viz.py:1581 msgid "Time Series - Bar Chart" msgstr "时间序列 - 柱状图" -#: superset/viz.py:1596 +#: superset/viz.py:1504 msgid "Time Series - Dual Axis Line Chart" msgstr "时间序列-双轴线图" -#: superset/viz.py:1308 +#: superset/viz.py:1209 msgid "Time Series - Line Chart" msgstr "时间序列-折线图" -#: superset/viz.py:1518 +#: superset/viz.py:1424 msgid "Time Series - Multiple Line Charts" msgstr "时间序列-多线图" -#: superset/viz.py:3036 +#: superset/viz.py:3033 msgid "Time Series - Nightingale Rose Chart" msgstr "时间序列 - 南丁格尔玫瑰图" -#: superset/viz.py:2965 +#: superset/viz.py:2961 msgid "Time Series - Paired t-test" msgstr "时间序列 - 配对t检验" -#: superset/viz.py:1725 +#: superset/viz.py:1638 msgid "Time Series - Percent Change" msgstr "时间序列 - 百分比变化" -#: superset/viz.py:1679 +#: superset/viz.py:1590 msgid "Time Series - Period Pivot" msgstr "时间序列 - 周期透视表" -#: superset/viz.py:1733 +#: superset/viz.py:1646 msgid "Time Series - Stacked" msgstr "时间序列 - 堆积图" @@ -16205,7 +16428,7 @@ msgstr "时间序列的列" msgid "Time Shift" msgstr "时间偏移" -#: superset/viz.py:849 +#: superset/viz.py:878 msgid "Time Table View" msgstr "时间表视图" @@ -16216,7 +16439,7 @@ msgstr "时间表视图" msgid "Time column" msgstr "时间列" -#: superset/connectors/sqla/models.py:1392 superset/models/helpers.py:1575 +#: superset/models/helpers.py:1659 #, python-format msgid "Time column \"%(col)s\" does not exist in dataset" msgstr "时间列 \"%(col)s\" 在数据集中不存在" @@ -16301,6 +16524,7 @@ msgid "Time ratio" msgstr "时间粒度(grain)" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/sections.tsx:28 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:32 #: superset-frontend/src/explore/controlPanels/sections.tsx:66 msgid "Time related form attributes" msgstr "时间相关的表单属性" @@ -16424,12 +16648,12 @@ msgstr "超时错误" msgid "Timestamp format" msgstr "时间戳格式" -#: superset-frontend/src/components/ReportModal/index.tsx:326 +#: superset-frontend/src/components/ReportModal/index.tsx:325 #: superset-frontend/src/features/alerts/AlertReportModal.tsx:396 msgid "Timezone" msgstr "时区" -#: superset/connectors/sqla/views.py:427 +#: superset/connectors/sqla/views.py:334 msgid "Timezone offset (in hours) for this datasource" msgstr "数据源的时差(单位:小时)" @@ -16471,31 +16695,27 @@ msgstr "若要在计量值上筛选,请使用自定义SQL选项卡。" msgid "To get a readable URL for your dashboard" msgstr "为看板生成一个可读的 URL" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:288 -#, fuzzy -msgid "Too many columns to filter" -msgstr "需要作为列属性进行透视的一列或多列" - #: superset-frontend/src/visualizations/FilterBox/FilterBoxChartPlugin.js:27 msgid "Tools" msgstr "工具" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:216 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:213 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/CrossFilters/ScopingModal/ScopingTreePanel.tsx:118 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:205 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:211 msgid "Tooltip" msgstr "详细提示" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:201 msgid "Tooltip sort by metric" msgstr "排序指标" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:194 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:191 msgid "Tooltip time format" msgstr "时间格式" #: superset-frontend/packages/superset-ui-chart-controls/src/sections/chartTitle.tsx:29 -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:88 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:85 #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:354 msgid "Top" msgstr "顶部" @@ -16519,14 +16739,14 @@ msgstr "点击回顶部" msgid "Total (%(aggfunc)s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:497 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:562 -#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:784 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:496 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:561 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable/TableRenderers.jsx:782 #, python-format msgid "Total (%(aggregatorName)s)" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:230 +#: superset-frontend/packages/superset-ui-chart-controls/src/constants.ts:68 #, fuzzy msgid "Total value" msgstr "左值" @@ -16541,7 +16761,7 @@ msgstr "显示总计" msgid "Totals" msgstr "显示总计" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:411 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:404 msgid "Track job" msgstr "跟踪任务" @@ -16561,10 +16781,6 @@ msgstr "转换" msgid "Transparent" msgstr "透明" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:99 -msgid "Transpose Pivot" -msgstr "转置透视图" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/controlPanel.tsx:238 msgid "Transpose pivot" msgstr "转置透视图" @@ -16582,7 +16798,7 @@ msgid "Tree orientation" msgstr "方向" #: superset-frontend/plugins/plugin-chart-echarts/src/Treemap/index.ts:60 -#: superset/viz.py:1035 +#: superset/viz.py:925 msgid "Treemap" msgstr "树状地图" @@ -16651,7 +16867,7 @@ msgstr "" msgid "Truncates the specified date to the accuracy specified by the date unit." msgstr "将指定的日期截取为指定的日期单位精度。" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:174 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberViz.tsx:194 msgid "Try applying different filters or ensuring your datasource has data" msgstr "尝试应用不同的筛选器或确保您的数据源包含数据。“" @@ -16673,21 +16889,21 @@ msgstr "星期二" msgid "Tukey" msgstr "查询" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:68 -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:216 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:65 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:218 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:215 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:219 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:272 #: superset-frontend/src/explore/components/controls/TimeSeriesColumnControl/index.jsx:276 -#: superset-frontend/src/pages/DatasetList/index.tsx:343 -#: superset-frontend/src/pages/DatasetList/index.tsx:552 -#: superset/connectors/sqla/views.py:164 superset/connectors/sqla/views.py:253 +#: superset-frontend/src/pages/DatasetList/index.tsx:354 +#: superset-frontend/src/pages/DatasetList/index.tsx:563 +#: superset/connectors/sqla/views.py:163 superset/connectors/sqla/views.py:252 msgid "Type" msgstr "类型" #: superset-frontend/src/components/DeleteModal/index.tsx:92 #: superset-frontend/src/components/ImportModal/index.tsx:397 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1405 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1460 #, python-format msgid "Type \"%s\" to confirm" msgstr "键入 \"%s\" 来确认" @@ -16713,7 +16929,7 @@ msgstr "接受Google Sheets的类型" msgid "Type of comparison, value difference or percentage" msgstr "" -#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:404 +#: superset-frontend/src/visualizations/FilterBox/FilterBox.jsx:407 #, python-format msgid "Type or Select [%s]" msgstr "键入或选择 [%s]" @@ -16743,22 +16959,23 @@ msgstr "URL 参数" msgid "URL slug" msgstr "使用 Slug" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:622 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:618 msgid "Unable to add a new tab to the backend. Please contact your administrator." msgstr "无法将新选项卡添加到后端。请与管理员联系。" -#: superset/db_engine_specs/presto.py:677 +#: superset/db_engine_specs/presto.py:704 #, python-format msgid "Unable to connect to catalog named \"%(catalog_name)s\"." msgstr "无法连接到名为\\%(catalog_name)s\\的目录。" #: superset/db_engine_specs/mysql.py:165 -#: superset/db_engine_specs/postgres.py:148 +#: superset/db_engine_specs/postgres.py:147 +#: superset/db_engine_specs/starrocks.py:127 #, python-format msgid "Unable to connect to database \"%(database)s\"." msgstr "不能连接到数据库\"%(database)s\"" -#: superset/db_engine_specs/bigquery.py:177 +#: superset/db_engine_specs/bigquery.py:178 msgid "" "Unable to connect. Verify that the following roles are set on the service" " account: \"BigQuery Data Viewer\", \"BigQuery Metadata Viewer\", " @@ -16766,10 +16983,18 @@ msgid "" "\"bigquery.readsessions.create\", \"bigquery.readsessions.getData\"" msgstr "" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:218 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:216 msgid "Unable to create chart without a query id." msgstr "" +#: superset/key_value/exceptions.py:66 +msgid "Unable to decode value" +msgstr "" + +#: superset/key_value/exceptions.py:62 +msgid "Unable to encode value" +msgstr "" + #: superset/utils/date_parser.py:393 #, python-format msgid "Unable to find such a holiday: [%(holiday)s]" @@ -16781,19 +17006,19 @@ msgid "" "table." msgstr "" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:589 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:585 msgid "" "Unable to migrate query editor state to backend. Superset will retry " "later. Please contact your administrator if this problem persists." msgstr "无法将查询编辑器状态迁移到后端。系统将稍后重试。如果此问题仍然存在,请与管理员联系。" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:543 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:539 msgid "" "Unable to migrate query state to backend. Superset will retry later. " "Please contact your administrator if this problem persists." msgstr "无法将查询状态迁移到后端。系统将稍后重试。如果此问题仍然存在,请与管理员联系。" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:525 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:521 msgid "" "Unable to migrate table schema state to backend. Superset will retry " "later. Please contact your administrator if this problem persists." @@ -16803,7 +17028,7 @@ msgstr "无法将表结构状态迁移到后端。系统将稍后重试。如果 msgid "Unable to retrieve dashboard colors" msgstr "" -#: superset/views/database/views.py:275 +#: superset/views/database/views.py:278 #, python-format msgid "" "Unable to upload CSV file \"%(filename)s\" to table \"%(table_name)s\" in" @@ -16812,7 +17037,7 @@ msgstr "" "无法将CSV文件 \"%(filename)s\" 上传到数据库 \"%(db_name)s\" 中的表 \"%(table_name)s\" " "内。错误消息:%(error_msg)s" -#: superset/views/database/views.py:553 +#: superset/views/database/views.py:556 #, python-format msgid "" "Unable to upload Columnar file \"%(filename)s\" to table " @@ -16822,7 +17047,7 @@ msgstr "" "无法将Excel文件 \"%(filename)s\" 上传到数据库 \"%(db_name)s\" 中的表 \"%(table_name)s\"" " 内。错误消息:%(error_msg)s" -#: superset/views/database/views.py:412 +#: superset/views/database/views.py:415 #, python-format msgid "" "Unable to upload Excel file \"%(filename)s\" to table \"%(table_name)s\" " @@ -16831,7 +17056,7 @@ msgstr "" "无法将Excel文件 \"%(filename)s\" 上传到数据库 \"%(db_name)s\" 中的表 \"%(table_name)s\"" " 内。错误消息:%(error_msg)s" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:93 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:92 #: superset-frontend/src/SqlLab/components/ScheduleQueryButton/index.tsx:134 msgid "Undefined" msgstr "未命名" @@ -16845,7 +17070,7 @@ msgstr "未定义滚动操作窗口" msgid "Undo the action" msgstr "运行选定的查询" -#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:131 +#: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FilterTitleContainer.tsx:132 msgid "Undo?" msgstr "撤消?" @@ -16855,7 +17080,7 @@ msgid "Unexpected error" msgstr "意外错误。" #: superset/databases/commands/exceptions.py:137 -#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1438 +#: superset/databases/commands/exceptions.py:142 superset/views/core.py:1479 msgid "Unexpected error occurred, please check your logs for details" msgstr "发生意外错误,请检查日志以了解详细信息" @@ -16863,7 +17088,7 @@ msgstr "发生意外错误,请检查日志以了解详细信息" msgid "Unexpected error: " msgstr "意外错误。" -#: superset/views/api.py:109 +#: superset/views/api.py:108 #, fuzzy, python-format msgid "Unexpected time range: %s" msgstr "意外错误。" @@ -16877,7 +17102,7 @@ msgstr "未知" msgid "Unknown MySQL server host \"%(hostname)s\"." msgstr "未知MySQL服务器主机 \"%(hostname)s\"." -#: superset/db_engine_specs/presto.py:1319 +#: superset/db_engine_specs/presto.py:1342 msgid "Unknown Presto Error" msgstr "未知 Presto 错误" @@ -16885,13 +17110,13 @@ msgstr "未知 Presto 错误" msgid "Unknown Status" msgstr "未知状态" -#: superset/connectors/sqla/models.py:1317 superset/models/helpers.py:1498 +#: superset/models/helpers.py:1582 #, python-format msgid "Unknown column used in orderby: %(col)s" msgstr "订单中使用的未知列: %(col)s" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:402 -#: superset-frontend/src/SqlLab/actions/sqlLab.js:480 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:398 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:476 msgid "Unknown error" msgstr "未知错误" @@ -16952,7 +17177,7 @@ msgstr "未命名的查询" msgid "Untitled query" msgstr "未命名的查询" -#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:223 +#: superset-frontend/src/SqlLab/components/SaveQuery/index.tsx:222 msgid "Update" msgstr "更新" @@ -16970,7 +17195,7 @@ msgstr "更新图表已停止" msgid "Upload" msgstr "上传" -#: superset-frontend/src/pages/DatabaseList/index.tsx:202 +#: superset-frontend/src/pages/DatabaseList/index.tsx:213 msgid "Upload CSV" msgstr "上传CSV" @@ -16986,7 +17211,7 @@ msgstr "上传验证文件" msgid "Upload Enabled" msgstr "" -#: superset-frontend/src/pages/DatabaseList/index.tsx:216 +#: superset-frontend/src/pages/DatabaseList/index.tsx:227 msgid "Upload Excel file" msgstr "上传Excel" @@ -16998,7 +17223,7 @@ msgstr "上传Excel" msgid "Upload JSON file" msgstr "上传JSON文件" -#: superset-frontend/src/pages/DatabaseList/index.tsx:209 +#: superset-frontend/src/pages/DatabaseList/index.tsx:220 msgid "Upload columnar file" msgstr "上传列级文件" @@ -17006,7 +17231,7 @@ msgstr "上传列级文件" msgid "Upload columnar file to database" msgstr "上传列级文件" -#: superset-frontend/src/pages/DatabaseList/index.tsx:199 +#: superset-frontend/src/pages/DatabaseList/index.tsx:210 msgid "Upload file to database" msgstr "上传文件到数据库" @@ -17020,7 +17245,7 @@ msgstr "巨大" msgid "Use \"%(menuName)s\" menu instead." msgstr "" -#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:36 +#: superset-frontend/src/dashboard/util/getSliceHeaderTooltip.tsx:31 #, fuzzy, python-format msgid "Use %s to open in a new tab." msgstr "在新标签中查询" @@ -17031,7 +17256,7 @@ msgstr "在新标签中查询" msgid "Use Area Proportions" msgstr "使用面积比例" -#: superset/views/database/forms.py:462 +#: superset/views/database/forms.py:472 msgid "Use Columns" msgstr "使用列" @@ -17047,9 +17272,9 @@ msgstr "使用Y轴的对数刻度" msgid "Use a log scale for the Y-axis" msgstr "使用Y轴的对数刻度" -#: superset/db_engine_specs/base.py:1850 -#: superset/db_engine_specs/clickhouse.py:211 -#: superset/db_engine_specs/databricks.py:57 +#: superset/db_engine_specs/base.py:1889 +#: superset/db_engine_specs/clickhouse.py:216 +#: superset/db_engine_specs/databricks.py:58 msgid "Use an encrypted connection to the database" msgstr "使用到数据库的加密连接" @@ -17060,12 +17285,12 @@ msgid "" " Your chart must be one of these visualization types: [%s]" msgstr "" -#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:86 +#: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.ts:87 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:160 msgid "Use date formatting even when metric value is not a timestamp" msgstr "" -#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:217 +#: superset-frontend/src/components/Datasource/DatasourceModal.tsx:259 msgid "Use legacy datasource editor" msgstr "使用旧数据源编辑器" @@ -17112,16 +17337,6 @@ msgid "" " from the pluginʼs package.json" msgstr "在内部用于标识插件。应该在插件的 package.json 内被设置为包名。" -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/index.js:28 -msgid "" -"Used to summarize a set of data by grouping together multiple statistics " -"along two axes. Examples: Sales numbers by region and month, tasks by " -"status and assignee, active users by age and location.\n" -"\n" -" This chart is being deprecated and we recommend checking out Pivot " -"Table V2 instead!" -msgstr "用于通过将多个统计数据分组来总结一组数据" - #: superset-frontend/plugins/plugin-chart-pivot-table/src/plugin/index.ts:56 msgid "" "Used to summarize a set of data by grouping together multiple statistics " @@ -17165,11 +17380,17 @@ msgstr "用户查询" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:133 #: superset-frontend/src/features/databases/DatabaseModal/SSHTunnelForm.tsx:102 -#: superset/db_engine_specs/base.py:1837 +#: superset/db_engine_specs/base.py:1868 #: superset/db_engine_specs/clickhouse.py:201 msgid "Username" msgstr "用户名" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:27 +msgid "" +"Uses Gaussian Kernel Density Estimation to visualize spatial distribution" +" of data" +msgstr "" + #: superset-frontend/plugins/plugin-chart-echarts/src/Gauge/index.ts:45 msgid "" "Uses a gauge to showcase progress of a metric towards a target. The " @@ -17219,9 +17440,9 @@ msgstr "数值格式" msgid "Value is required" msgstr "需要名称" -#: superset/reports/schemas.py:186 superset/reports/schemas.py:192 -#: superset/reports/schemas.py:198 superset/reports/schemas.py:280 -#: superset/reports/schemas.py:286 superset/reports/schemas.py:293 +#: superset/reports/schemas.py:190 superset/reports/schemas.py:195 +#: superset/reports/schemas.py:200 superset/reports/schemas.py:291 +#: superset/reports/schemas.py:296 superset/reports/schemas.py:302 msgid "Value must be greater than 0" msgstr "`行偏移量` 必须大于或等于0" @@ -17244,16 +17465,16 @@ msgstr "" msgid "Vehicle Types" msgstr "类型" -#: superset/connectors/sqla/views.py:156 superset/connectors/sqla/views.py:252 +#: superset/connectors/sqla/views.py:155 superset/connectors/sqla/views.py:251 msgid "Verbose Name" msgstr "全称" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:503 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:539 #: superset-frontend/src/features/home/RightMenu.tsx:501 msgid "Version" msgstr "版本" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:509 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:545 msgid "Version number" msgstr "版本" @@ -17264,7 +17485,7 @@ msgstr "版本" msgid "Vertical" msgstr "垂直" -#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:162 +#: superset-frontend/src/dashboard/components/nativeFilters/FilterBar/FilterBarSettings/index.tsx:188 #, fuzzy msgid "Vertical (Left)" msgstr "垂直" @@ -17295,7 +17516,7 @@ msgstr "编辑数据集" msgid "View all charts" msgstr "搜索所有图表" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:434 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:440 #, fuzzy msgid "View as table" msgstr "查看样例" @@ -17310,8 +17531,8 @@ msgstr "在 SQL 工具箱中公开" msgid "View keys & indexes (%s)" msgstr "查看键和索引(%s)" -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:415 -#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:417 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:424 +#: superset-frontend/src/dashboard/components/SliceHeaderControls/index.tsx:426 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:394 #: superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/index.jsx:396 msgid "View query" @@ -17332,8 +17553,8 @@ msgstr "已查看 %s" msgid "Viewport" msgstr "视口" -#: superset-frontend/src/pages/DatasetList/index.tsx:342 -#: superset-frontend/src/pages/DatasetList/index.tsx:559 +#: superset-frontend/src/pages/DatasetList/index.tsx:353 +#: superset-frontend/src/pages/DatasetList/index.tsx:570 #, fuzzy msgid "Virtual" msgstr "虚拟信息" @@ -17342,20 +17563,20 @@ msgstr "虚拟信息" msgid "Virtual (SQL)" msgstr "虚拟(SQL)" -#: superset-frontend/src/pages/DatasetList/index.tsx:281 +#: superset-frontend/src/pages/DatasetList/index.tsx:292 msgid "Virtual dataset" msgstr "虚拟数据集" -#: superset/connectors/sqla/models.py:960 superset/connectors/sqla/utils.py:111 -#: superset/models/helpers.py:1036 +#: superset/connectors/sqla/models.py:921 superset/connectors/sqla/utils.py:110 +#: superset/models/helpers.py:1079 msgid "Virtual dataset query cannot be empty" msgstr "虚拟数据集查询必须是只读的" -#: superset/connectors/sqla/models.py:963 superset/models/helpers.py:1039 +#: superset/connectors/sqla/models.py:924 superset/models/helpers.py:1082 msgid "Virtual dataset query cannot consist of multiple statements" msgstr "虚拟数据集查询不能由多个语句组成" -#: superset/connectors/sqla/models.py:928 superset/models/helpers.py:1062 +#: superset/connectors/sqla/models.py:889 superset/models/helpers.py:1105 msgid "Virtual dataset query must be read-only" msgstr "虚拟数据集查询必须是只读的" @@ -17487,7 +17708,7 @@ msgid "" "corresponds to higher frequency." msgstr "可视化列中出现频率最高的单词。字体越大,出现频率越高。" -#: superset/viz.py:141 +#: superset/viz.py:140 msgid "Viz is missing a datasource" msgstr "Viz 缺少一个数据源" @@ -17499,21 +17720,21 @@ msgstr "可视化类型" msgid "WED" msgstr "星期三" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:948 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1003 msgid "Want to add a new database?" msgstr "添加一个新数据库?" #: superset-frontend/src/components/Datasource/DatasourceEditor.jsx:1246 -#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:216 +#: superset-frontend/src/explore/components/controls/DndColumnSelectControl/DndFilterSelect.tsx:214 #: superset-frontend/src/explore/components/controls/FilterControl/AdhocFilterControl/index.jsx:197 msgid "Warning" msgstr "警告!" -#: superset/connectors/sqla/views.py:258 +#: superset/connectors/sqla/views.py:257 msgid "Warning Message" msgstr "告警信息" -#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:286 +#: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:288 msgid "Warning!" msgstr "警告!" @@ -17529,13 +17750,13 @@ msgstr "警告!如果元数据不存在,更改数据集可能会破坏图表 msgid "Was unable to check your query" msgstr "为您的查询设置标签" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1468 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1523 msgid "" "We are unable to connect to your database. Click \"See more\" for " "database-provided information that may help troubleshoot the issue." msgstr "" -#: superset/db_engine_specs/bigquery.py:197 +#: superset/db_engine_specs/bigquery.py:198 #, python-format msgid "We can't seem to resolve column \"%(column)s\" at line %(location)s." msgstr "我们似乎无法解析行 %(location)s 所处的列 \"%(column)\" 。" @@ -17545,8 +17766,8 @@ msgstr "我们似乎无法解析行 %(location)s 所处的列 \"%(column)\" 。" msgid "We can't seem to resolve the column \"%(column_name)s\"" msgstr "我们似乎无法解析列 \"%(column_name)\" 。" -#: superset/db_engine_specs/postgres.py:153 -#: superset/db_engine_specs/presto.py:630 +#: superset/db_engine_specs/postgres.py:152 +#: superset/db_engine_specs/presto.py:657 #, python-format msgid "" "We can't seem to resolve the column \"%(column_name)s\" at line " @@ -17568,7 +17789,7 @@ msgid "" "dataset." msgstr "" -#: superset/db_engine_specs/redshift.py:90 +#: superset/db_engine_specs/redshift.py:94 #, python-format msgid "" "We were unable to connect to your database named \"%(database)s\". Please" @@ -17585,32 +17806,32 @@ msgstr "网络" msgid "Wednesday" msgstr "星期三" -#: superset/db_engine_specs/base.py:107 +#: superset/db_engine_specs/base.py:108 msgid "Week" msgstr "周" -#: superset/db_engine_specs/base.py:113 +#: superset/db_engine_specs/base.py:114 msgid "Week ending Saturday" msgstr "周一为一周结束" -#: superset/db_engine_specs/base.py:112 +#: superset/db_engine_specs/base.py:113 msgid "Week starting Monday" msgstr "周一为一周开始" -#: superset/db_engine_specs/base.py:111 +#: superset/db_engine_specs/base.py:112 msgid "Week starting Sunday" msgstr "周日为一周开始" -#: superset/db_engine_specs/base.py:114 +#: superset/db_engine_specs/base.py:115 msgid "Week_ending Sunday" msgstr "周日为一周结束" -#: superset-frontend/src/components/ReportModal/index.tsx:123 +#: superset-frontend/src/components/ReportModal/index.tsx:122 #, fuzzy msgid "Weekly Report" msgstr "报告" -#: superset-frontend/src/components/ReportModal/index.tsx:122 +#: superset-frontend/src/components/ReportModal/index.tsx:121 #, python-format msgid "Weekly Report for %s" msgstr "" @@ -17624,6 +17845,7 @@ msgstr "" msgid "Weeks %s" msgstr "周 %s" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:138 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/Screengrid.jsx:49 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Screengrid/controlPanel.ts:77 #, fuzzy @@ -17659,7 +17881,7 @@ msgstr[0] "加载此可视化效果时遇到问题。查询设置为 %s 秒后 msgid "What should be shown on the label?" msgstr "标签上需要显示的内容" -#: superset/views/database/forms.py:165 +#: superset/views/database/forms.py:175 #, fuzzy msgid "What should happen if the table already exists" msgstr "过滤器已存在" @@ -17685,7 +17907,7 @@ msgstr "当在 SQL 编辑器中允许 CREATE TABLE AS 选项时,此选项可 msgid "When checked, the map will zoom to your data after each query" msgstr "" -#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:189 +#: superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx:199 msgid "When enabled, users are able to visualize SQL Lab results in Explore." msgstr "启用后,用户可以在Explore中可视化SQL实验室结果。" @@ -17712,11 +17934,11 @@ msgstr "" "当使用 \"自适配过滤条件\" " "时,这可以用来提高获取查询数据的性能。使用此选项可将谓词(WHERE子句)应用于从表中进行选择不同值的查询。通常,这样做的目的是通过对分区或索引的相关时间字段配置相对应的过滤时间来限制扫描。" -#: superset/viz.py:861 +#: superset/viz.py:891 msgid "When using 'Group By' you are limited to use a single metric" msgstr "当使用“Group by”时,只限于使用单个度量。" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:72 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/constants.ts:74 msgid "When using other than adaptive formatting, labels may overlap" msgstr "" @@ -17729,11 +17951,11 @@ msgstr "默认选择第一项(使用此选项时,不能“设置默认值”)" msgid "Whether the progress bar overlaps when there are multiple groups of data" msgstr "当有多组数据时进度条是否重叠" -#: superset/connectors/sqla/views.py:455 +#: superset/connectors/sqla/views.py:362 msgid "Whether the table was generated by the 'Visualize' flow in SQL Lab" msgstr "表是否由 sql 实验室中的 \"可视化\" 流生成" -#: superset/connectors/sqla/views.py:111 +#: superset/connectors/sqla/views.py:110 msgid "" "Whether this column is exposed in the `Filters` section of the explore " "view." @@ -17776,7 +17998,7 @@ msgstr "根据数值是正数还是负数来为其上色" msgid "Whether to display a bar chart background in table columns" msgstr "为指标添加条状图背景" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:45 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:42 msgid "Whether to display a legend for the chart" msgstr "是否显示图表的图示(色块分布)" @@ -17809,14 +18031,14 @@ msgid "" " 5% threshold." msgstr "是否显示标签。" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:157 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:161 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:292 #: superset-frontend/plugins/legacy-plugin-chart-histogram/src/controlPanel.ts:118 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:159 msgid "Whether to display the legend (toggles)" msgstr "是否显示图示(切换)" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:181 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:185 msgid "Whether to display the metric name as a title" msgstr "是否将指标名显示为标题" @@ -17829,7 +18051,7 @@ msgstr "是否显示X轴的最小值和最大值" msgid "Whether to display the min and max values of the Y-axis" msgstr "是否显示Y轴的最小值和最大值" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:167 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:171 #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:318 #: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:187 msgid "Whether to display the numerical values within the cells" @@ -17897,7 +18119,7 @@ msgstr "是否规范化直方图" msgid "Whether to make the histogram cumulative" msgstr "是否规范化直方图" -#: superset/connectors/sqla/views.py:106 +#: superset/connectors/sqla/views.py:105 msgid "" "Whether to make this column available as a [Time Granularity] option, " "column has to be DATETIME or DATETIME-like" @@ -17911,7 +18133,7 @@ msgstr "是否规范化直方图" msgid "Whether to populate autocomplete filters options" msgstr "是否填充自适配过滤条件选项" -#: superset/connectors/sqla/views.py:450 +#: superset/connectors/sqla/views.py:357 msgid "" "Whether to populate the filter's dropdown in the explore view's filter " "section with a list of distinct values fetched from the backend on the " @@ -17941,7 +18163,8 @@ msgstr "是否显示量规图进度" msgid "Whether to show the split lines on the axis" msgstr "是否显示Y轴的最小值和最大值" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:124 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:143 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:174 #, fuzzy msgid "Whether to sort ascending or descending on the base Axis." msgstr "是否忽略空位置" @@ -17973,7 +18196,7 @@ msgstr "是降序还是升序排序" msgid "Whether to sort results by the selected metric in descending order." msgstr "是否按所选指标按降序对结果进行排序。" -#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:207 +#: superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx:204 msgid "Whether to sort tooltip by the selected metric in descending order." msgstr "是否按所选指标按降序对结果进行排序。" @@ -18038,7 +18261,7 @@ msgid "Working timeout" msgstr "执行超时" #: superset-frontend/plugins/legacy-plugin-chart-world-map/src/index.js:33 -#: superset/viz.py:2079 +#: superset/viz.py:2006 msgid "World Map" msgstr "世界地图" @@ -18050,12 +18273,12 @@ msgstr "为您的查询写一段描述" msgid "Write a handlebars template to render the data" msgstr "" -#: superset/views/database/forms.py:219 +#: superset/views/database/forms.py:229 #, fuzzy msgid "Write dataframe index as a column" msgstr "将dataframe index 作为列." -#: superset/views/database/forms.py:380 superset/views/database/forms.py:471 +#: superset/views/database/forms.py:390 superset/views/database/forms.py:481 msgid "Write dataframe index as a column." msgstr "将dataframe index 作为列." @@ -18113,12 +18336,14 @@ msgstr "X轴记号图层" msgid "X bounds" msgstr "X界限" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:122 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:141 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:172 #, fuzzy msgid "X-Axis Sort Ascending" msgstr "升序排序" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:69 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:88 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:156 msgid "X-Axis Sort By" msgstr "" @@ -18178,7 +18403,6 @@ msgid "Y Axis 2 Bounds" msgstr "Y 轴界限" #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:258 -#: superset-frontend/plugins/plugin-chart-echarts/src/MixedTimeseries/controlPanel.tsx:370 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Area/controlPanel.tsx:260 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Line/controlPanel.tsx:248 #: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/Regular/Scatter/controlPanel.tsx:192 @@ -18217,12 +18441,14 @@ msgstr "Y经度标度" msgid "Y bounds" msgstr "Y界限" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:121 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:140 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:171 #, fuzzy msgid "Y-Axis Sort Ascending" msgstr "升序排序" -#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:68 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:87 +#: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/customControls.tsx:155 msgid "Y-Axis Sort By" msgstr "" @@ -18240,7 +18466,7 @@ msgstr "Y 轴界限" msgid "YScale Interval" msgstr "Y轴比例尺间隔" -#: superset/db_engine_specs/base.py:110 +#: superset/db_engine_specs/base.py:111 msgid "Year" msgstr "年" @@ -18265,9 +18491,9 @@ msgstr "年 %s" #: superset-frontend/src/pages/ChartList/index.tsx:707 #: superset-frontend/src/pages/DashboardList/index.tsx:506 #: superset-frontend/src/pages/DashboardList/index.tsx:588 -#: superset-frontend/src/pages/DatabaseList/index.tsx:467 -#: superset-frontend/src/pages/DatabaseList/index.tsx:487 -#: superset-frontend/src/pages/DatasetList/index.tsx:572 +#: superset-frontend/src/pages/DatabaseList/index.tsx:478 +#: superset-frontend/src/pages/DatabaseList/index.tsx:498 +#: superset-frontend/src/pages/DatasetList/index.tsx:583 msgid "Yes" msgstr "是" @@ -18295,7 +18521,7 @@ msgid "" "overwrite?" msgstr "您正在导入一个或多个已存在的仪表板。覆盖可能会导致您丢失一些工作。确定要覆盖吗?" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1394 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1449 msgid "" "You are importing one or more databases that already exist. Overwriting " "might cause you to lose some of your work. Are you sure you want to " @@ -18316,7 +18542,7 @@ msgid "" "want to overwrite?" msgstr "您正在导入一个或多个已存在的图表。覆盖可能会导致您丢失一些工作。您确定要覆盖吗?" -#: superset/views/core.py:2177 +#: superset/views/core.py:2213 msgid "" "You are not authorized to see this query. If you think this is an error, " "please reach out to your administrator." @@ -18335,7 +18561,7 @@ msgstr "" msgid "You can add the components in the edit mode." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:127 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:157 msgid "You can also just click on the chart to apply cross-filter." msgstr "" @@ -18358,7 +18584,7 @@ msgstr "" msgid "You can preview the list of dashboards in the chart settings dropdown." msgstr "" -#: superset-frontend/src/components/Chart/ChartContextMenu.tsx:148 +#: superset-frontend/src/components/Chart/ChartContextMenu/ChartContextMenu.tsx:178 msgid "You can't apply cross-filter on this data point." msgstr "" @@ -18372,7 +18598,7 @@ msgstr "" msgid "You cannot use 45° tick layout along with the time range filter" msgstr "不能将45°刻度线布局与时间范围过滤器一起使用" -#: superset/viz.py:723 +#: superset/viz.py:748 msgid "" "You cannot use [Columns] in combination with [Group " "By]/[Metrics]/[Percentage Metrics]. Please choose one or the other." @@ -18388,7 +18614,7 @@ msgid "You do not have permission to edit this chart" msgstr "您没有编辑此图表的权限" #: superset-frontend/src/components/Tags/utils.tsx:69 -#: superset-frontend/src/dashboard/actions/dashboardState.js:366 +#: superset-frontend/src/dashboard/actions/dashboardState.js:368 #: superset-frontend/src/dashboard/components/PropertiesModal/index.tsx:134 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/ColumnSelect.tsx:111 #: superset-frontend/src/dashboard/components/nativeFilters/FiltersConfigModal/FiltersConfigForm/DatasetSelect.tsx:40 @@ -18400,7 +18626,7 @@ msgstr "您没有编辑此看板的权限" msgid "You do not have permissions to access the datasource(s): %(name)s." msgstr "您没有权限访问该数据源: %(name)s。" -#: superset-frontend/src/dashboard/actions/dashboardState.js:162 +#: superset-frontend/src/dashboard/actions/dashboardState.js:160 msgid "You do not have permissions to edit this dashboard." msgstr "您没有编辑此看板的权限。" @@ -18413,7 +18639,7 @@ msgstr "您没有编辑此看板的权限。" msgid "You don't have access to this dashboard." msgstr "您没有编辑此看板的权限。" -#: superset/datasets/commands/exceptions.py:189 +#: superset/datasets/commands/exceptions.py:206 #, fuzzy msgid "You don't have access to this dataset." msgstr "您没有编辑此看板的权限。" @@ -18432,17 +18658,17 @@ msgstr "您还没有任何的收藏!" msgid "You don't have permission to modify the value." msgstr "您没有编辑此图表的权限" -#: superset/security/manager.py:2267 +#: superset/security/manager.py:2262 #, fuzzy, python-format msgid "You don't have the rights to alter %(resource)s" msgstr "您没有权利修改这个标题。" -#: superset/views/core.py:923 +#: superset/views/core.py:945 #, fuzzy msgid "You don't have the rights to alter this chart" msgstr "您没有权利修改这个标题。" -#: superset/views/core.py:1097 +#: superset/views/core.py:1119 #, fuzzy msgid "You don't have the rights to alter this dashboard" msgstr "您没有权利修改这个标题。" @@ -18451,22 +18677,22 @@ msgstr "您没有权利修改这个标题。" msgid "You don't have the rights to alter this title." msgstr "您没有权利修改这个标题。" -#: superset/views/core.py:929 +#: superset/views/core.py:951 #, fuzzy msgid "You don't have the rights to create a chart" msgstr "您没有授权 " -#: superset/views/core.py:1113 +#: superset/views/core.py:1135 #, fuzzy msgid "You don't have the rights to create a dashboard" msgstr "您没有授权 " -#: superset/views/core.py:644 +#: superset/views/core.py:649 #, fuzzy msgid "You don't have the rights to download as csv" msgstr "您没有授权 " -#: superset/views/core.py:424 +#: superset/views/core.py:425 msgid "You have no permission to approve this request" msgstr "您没有此请求的访问权限" @@ -18478,7 +18704,7 @@ msgstr "您已删除此过滤条件。" msgid "You have unsaved changes." msgstr "您有一些未保存的修改。" -#: superset-frontend/src/dashboard/actions/dashboardState.js:652 +#: superset-frontend/src/dashboard/actions/dashboardState.js:650 #, python-format msgid "" "You have used all %(historyLength)s undo slots and will not be able to " @@ -18487,7 +18713,7 @@ msgid "" msgstr "" #: superset-frontend/src/explore/components/controls/DatasourceControl/index.jsx:300 -#: superset-frontend/src/pages/DatasetList/index.tsx:453 +#: superset-frontend/src/pages/DatasetList/index.tsx:464 msgid "" "You must be a dataset owner in order to edit. Please reach out to a " "dataset owner to request modifications or edit access." @@ -18497,7 +18723,7 @@ msgstr "" msgid "You must pick a name for the new dashboard" msgstr "您必须为新的看板选择一个名称" -#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:525 +#: superset-frontend/src/SqlLab/components/SqlEditor/index.jsx:519 msgid "You must run the query successfully first" msgstr "必须先成功运行查询" @@ -18505,7 +18731,7 @@ msgstr "必须先成功运行查询" msgid "You need to configure HTML sanitization to use CSS" msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:350 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:349 msgid "" "You updated the values in the control panel, but the chart was not " "updated automatically. Run the query by clicking on the \"Update chart\" " @@ -18518,7 +18744,7 @@ msgid "" "match this new dataset have been retained." msgstr "" -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:343 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:342 #, fuzzy msgid "Your chart is not up to date" msgstr "不是最新的" @@ -18531,7 +18757,7 @@ msgstr "" msgid "Your dashboard is too large. Please reduce its size before saving it." msgstr "您的看板太大了。保存前请缩小尺寸。" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1036 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1028 msgid "Your query could not be saved" msgstr "您的查询无法保存" @@ -18539,7 +18765,7 @@ msgstr "您的查询无法保存" msgid "Your query could not be scheduled" msgstr "无法调度您的查询" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1071 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1063 msgid "Your query could not be updated" msgstr "无法更新您的查询" @@ -18549,16 +18775,16 @@ msgid "" "Saved queries" msgstr "您的查询已被调度。要查看查询的详细信息,请跳转到保存查询页面查看。" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1051 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1043 #, fuzzy msgid "Your query was not properly saved" msgstr "您的查询已保存" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1054 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1046 msgid "Your query was saved" msgstr "您的查询已保存" -#: superset-frontend/src/SqlLab/actions/sqlLab.js:1067 +#: superset-frontend/src/SqlLab/actions/sqlLab.js:1059 msgid "Your query was updated" msgstr "您的查询已保存" @@ -18580,20 +18806,20 @@ msgstr "缩放" msgid "Zoom level of the map" msgstr "地图缩放等级" -#: superset-frontend/src/dashboard/actions/dashboardState.js:262 +#: superset-frontend/src/dashboard/actions/dashboardState.js:260 #, fuzzy msgid "[ untitled dashboard ]" msgstr "编辑仪表盘" -#: superset/viz.py:2386 +#: superset/viz.py:2323 msgid "[Longitude] and [Latitude] columns must be present in [Group By]" msgstr "[经度] 和 [纬度] 的选择项必须出现在 [Group By]" -#: superset/viz.py:2336 +#: superset/viz.py:2273 msgid "[Longitude] and [Latitude] must be set" msgstr "[经度] 和 [纬度] 的选择项必须出现在 [Group By]" -#: superset/explore/commands/get.py:121 superset/views/core.py:870 +#: superset/explore/commands/get.py:121 superset/views/core.py:892 msgid "[Missing Dataset]" msgstr "丢失数据集" @@ -18606,7 +18832,7 @@ msgstr "[Superset] 允许访问数据源 %(name)s" msgid "[Untitled]" msgstr "无标题" -#: superset/connectors/base/models.py:252 superset/models/sql_lab.py:228 +#: superset/connectors/base/models.py:262 superset/models/sql_lab.py:216 #, fuzzy msgid "[asc]" msgstr "基础" @@ -18620,7 +18846,7 @@ msgstr "复制" msgid "[dashboard name]" msgstr "[看板名称]" -#: superset/connectors/base/models.py:255 superset/models/sql_lab.py:231 +#: superset/connectors/base/models.py:265 superset/models/sql_lab.py:219 msgid "[desc]" msgstr "" @@ -18645,7 +18871,7 @@ msgstr "长度必须保持一致" msgid "`compare_type` must be `difference`, `percentage` or `ratio`" msgstr "`compare_type` 必须是 `difference`, `percentage` 或 `ratio`" -#: superset/charts/schemas.py:573 +#: superset/charts/schemas.py:654 msgid "`confidence_interval` must be between 0 and 1 (exclusive)" msgstr "`置信区间` 必须介于0和1之间(开区间)" @@ -18668,15 +18894,15 @@ msgstr "未安装程序包 `fbprophet`" msgid "`rename_columns` must have the same length as `columns`." msgstr "长度必须保持一致" -#: superset/charts/schemas.py:1114 +#: superset/charts/schemas.py:1284 msgid "`row_limit` must be greater than or equal to 0" msgstr "`行限制` 必须大于或等于1" -#: superset/charts/schemas.py:1121 +#: superset/charts/schemas.py:1291 msgid "`row_offset` must be greater than or equal to 0" msgstr "`行偏移量` 必须大于或等于0" -#: superset/charts/schemas.py:972 +#: superset/charts/schemas.py:1108 msgid "`width` must be greater or equal to 0" msgstr "`宽度` 必须大于或等于0" @@ -18684,10 +18910,16 @@ msgstr "`宽度` 必须大于或等于0" msgid "aggregate" msgstr "合计" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 #: superset-frontend/src/pages/AlertReportList/index.tsx:110 msgid "alert" msgstr "警报" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:46 +#, fuzzy +msgid "alert dark" +msgstr "警报" + #: superset-frontend/src/pages/AlertReportList/index.tsx:111 msgid "alerts" msgstr "警报" @@ -18830,7 +19062,7 @@ msgid "clear all filters" msgstr "搜索所有过滤选项" #: superset-frontend/src/components/Chart/Chart.jsx:290 -#: superset-frontend/src/explore/components/ExploreChartPanel.jsx:354 +#: superset-frontend/src/explore/components/ExploreChartPanel/index.jsx:353 msgid "click here" msgstr "" @@ -18860,7 +19092,7 @@ msgstr "" msgid "count" msgstr "列" -#: superset-frontend/src/explore/components/SaveModal.tsx:365 +#: superset-frontend/src/explore/components/SaveModal.tsx:400 #, fuzzy msgid "create" msgstr "创建" @@ -18907,16 +19139,16 @@ msgid "dashboards" msgstr "看板" #: superset-frontend/src/features/databases/DatabaseModal/index.tsx:543 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:712 -#: superset-frontend/src/pages/DatabaseList/index.tsx:91 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:729 +#: superset-frontend/src/pages/DatabaseList/index.tsx:102 msgid "database" msgstr "数据库" #: superset-frontend/src/components/Datasource/ChangeDatasourceModal.tsx:117 #: superset-frontend/src/dashboard/components/SliceAdder.jsx:75 #: superset-frontend/src/features/datasets/AddDataset/Footer/index.tsx:61 -#: superset-frontend/src/pages/DatasetList/index.tsx:148 -#: superset-frontend/src/pages/DatasetList/index.tsx:822 +#: superset-frontend/src/pages/DatasetList/index.tsx:159 +#: superset-frontend/src/pages/DatasetList/index.tsx:844 msgid "dataset" msgstr "数据集" @@ -18929,8 +19161,8 @@ msgstr "数据集名称" msgid "date" msgstr "日期" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:44 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:61 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:48 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:65 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:39 msgid "day" msgstr "天" @@ -18962,6 +19194,11 @@ msgstr "Deck.gl - 多角形" msgid "deck.gl Grid" msgstr "圆弧图" +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:30 +#, fuzzy +msgid "deck.gl Heatmap" +msgstr "圆弧图" + #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/Multi/index.js:28 #, fuzzy msgid "deck.gl Multiple Layers" @@ -18996,6 +19233,7 @@ msgstr "圆弧图" #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Geojson/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Grid/index.js:33 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/index.ts:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/index.js:33 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Path/index.js:31 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Polygon/index.js:34 @@ -19082,11 +19320,11 @@ msgstr "" #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/CommonParameters.tsx:112 #: superset-frontend/src/features/databases/DatabaseModal/DatabaseConnectionForm/ValidatedInputField.tsx:29 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:657 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:674 msgid "e.g. world_population" msgstr "世界人口" -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:655 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:672 msgid "e.g. xy12345.us-east-2.aws" msgstr "" @@ -19104,7 +19342,16 @@ msgstr "光模式" msgid "entries" msgstr "序列" -#: superset/connectors/sqla/models.py:1537 superset/models/helpers.py:1742 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 +#, fuzzy +msgid "error" +msgstr "错误" + +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:47 +msgid "error dark" +msgstr "" + +#: superset/models/helpers.py:1803 #, fuzzy msgid "error_message" msgstr "错误信息" @@ -19189,10 +19436,6 @@ msgstr "" msgid "geohash (square)" msgstr "" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 -msgid "green" -msgstr "绿色" - #: superset-frontend/plugins/legacy-plugin-chart-heatmap/src/controlPanel.tsx:168 #, fuzzy msgid "heatmap" @@ -19206,14 +19449,14 @@ msgstr "" #: superset-frontend/src/components/ImportModal/ErrorAlert.tsx:60 #: superset-frontend/src/explore/components/controls/AnnotationLayerControl/AnnotationLayer.jsx:125 #: superset-frontend/src/features/databases/DatabaseModal/ModalHeader.tsx:106 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:975 -#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1800 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1030 +#: superset-frontend/src/features/databases/DatabaseModal/index.tsx:1856 #, fuzzy msgid "here" msgstr "分享" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:43 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:60 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:64 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:40 msgid "hour" msgstr "小时" @@ -19251,7 +19494,7 @@ msgstr "应该为为整数" msgid "joined" msgstr "已加入" -#: superset/views/base.py:595 +#: superset/views/base.py:596 msgid "json isn't valid" msgstr "无效 JSON" @@ -19311,14 +19554,13 @@ msgstr "清除" msgid "log" msgstr "日志" -#: superset/charts/schemas.py:645 +#: superset/charts/schemas.py:735 msgid "" "lower percentile must be greater than 0 and less than 100. Must be lower " "than upper percentile." msgstr "下百分位数必须大于0且小于100。而且必须低于上百分位" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:189 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:58 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:76 #: superset-frontend/src/filters/components/Range/buildQuery.ts:69 #, fuzzy @@ -19328,9 +19570,9 @@ msgstr "最大值" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:187 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:254 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:377 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:56 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:136 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:259 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:119 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:77 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:403 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:531 @@ -19349,15 +19591,14 @@ msgstr "主域" msgid "median" msgstr "" -#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:60 +#: superset-frontend/plugins/plugin-chart-pivot-table/src/PivotTableChart.tsx:62 #: superset-frontend/src/explore/components/controls/FixedOrMetricControl/index.jsx:136 #, fuzzy msgid "metric" msgstr "指标" -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:59 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:188 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:57 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:75 #: superset-frontend/src/filters/components/Range/buildQuery.ts:58 #, fuzzy @@ -19378,8 +19619,8 @@ msgid "monotone" msgstr "月" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:173 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:46 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:63 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:50 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:67 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:37 #: superset-frontend/src/explore/controls.jsx:267 msgid "month" @@ -19390,7 +19631,7 @@ msgid "more than {max} {name}" msgstr "" #: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:53 -#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:78 +#: superset-frontend/plugins/plugin-chart-handlebars/src/plugin/controls/columns.tsx:77 #: superset-frontend/plugins/plugin-chart-table/src/controlPanel.tsx:116 msgid "must have a value" msgstr "必填" @@ -19458,7 +19699,7 @@ msgstr "小时" msgid "or use existing ones from the panel on the right" msgstr "" -#: superset/charts/schemas.py:1143 +#: superset/charts/schemas.py:1313 msgid "orderby column must be populated" msgstr "无法更新您的查询" @@ -19516,7 +19757,7 @@ msgid "" " first is lower than the second value" msgstr "百分位数必须是具有两个数值的列表或元组,其中第一个数值要小于第二个数值" -#: superset/views/core.py:1921 +#: superset/views/core.py:1958 #, fuzzy msgid "permalink state not found" msgstr "未找到报表计划状态" @@ -19573,11 +19814,7 @@ msgstr "最近" msgid "recents" msgstr "最近" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:44 -msgid "red" -msgstr "红色" - -#: superset-frontend/src/features/alerts/AlertReportModal.tsx:563 +#: superset-frontend/src/features/alerts/AlertReportModal.tsx:566 #: superset-frontend/src/pages/AlertReportList/index.tsx:110 msgid "report" msgstr "报告" @@ -19589,7 +19826,7 @@ msgstr "报告" msgid "reports" msgstr "报告" -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:491 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:522 msgid "restore zoom" msgstr "" @@ -19598,6 +19835,11 @@ msgstr "" msgid "right" msgstr "高度" +#: superset-frontend/src/features/rls/RowLevelSecurityModal.tsx:139 +#, fuzzy +msgid "rowlevelsecurity" +msgstr "行级安全" + #: superset-frontend/src/SqlLab/constants.ts:36 #: superset-frontend/src/SqlLab/constants.ts:52 #, fuzzy @@ -19649,7 +19891,6 @@ msgstr "没有触发" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:190 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:256 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:59 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:138 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:405 #: superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberWithTrendline/controlPanel.tsx:185 @@ -19683,16 +19924,22 @@ msgstr "" #: superset-frontend/src/SqlLab/constants.ts:38 #: superset-frontend/src/SqlLab/constants.ts:50 +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:42 #, fuzzy msgid "success" msgstr "成功" +#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:45 +#, fuzzy +msgid "success dark" +msgstr "成功" + #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:186 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:255 #: superset-frontend/plugins/legacy-plugin-chart-partition/src/controlPanel.tsx:378 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:55 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:137 #: superset-frontend/plugins/legacy-plugin-chart-rose/src/controlPanel.tsx:260 +#: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Heatmap/controlPanel.ts:118 #: superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Hex/controlPanel.ts:74 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:404 #: superset-frontend/plugins/legacy-preset-chart-nvd3/src/NVD3Controls.tsx:532 @@ -19740,7 +19987,7 @@ msgstr "撤消?" msgid "unknown type icon" msgstr "未知错误" -#: superset/charts/schemas.py:660 +#: superset/charts/schemas.py:750 msgid "" "upper percentile must be greater than 0 and less than 100. Must be higher" " than lower percentile." @@ -19762,7 +20009,6 @@ msgid "value descending" msgstr "指标降序" #: superset-frontend/plugins/legacy-plugin-chart-map-box/src/controlPanel.ts:191 -#: superset-frontend/plugins/legacy-plugin-chart-pivot-table/src/controlPanel.ts:60 #, fuzzy msgid "var" msgstr "条形图" @@ -19786,13 +20032,13 @@ msgstr "虚拟信息" msgid "viz type" msgstr "可视化类型" -#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:458 +#: superset-frontend/src/SqlLab/components/ResultSet/index.tsx:451 msgid "was created" msgstr "已创建" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:170 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:45 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:62 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:49 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:66 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:38 #: superset-frontend/src/explore/controls.jsx:264 msgid "week" @@ -19827,16 +20073,12 @@ msgid "y: values are normalized within each row" msgstr "" #: superset-frontend/packages/superset-ui-chart-controls/src/shared-controls/sharedControls.tsx:175 -#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:47 +#: superset-frontend/plugins/legacy-plugin-chart-calendar/src/controlPanel.ts:51 #: superset-frontend/src/components/CronPicker/CronPicker.tsx:36 #: superset-frontend/src/explore/controls.jsx:269 msgid "year" msgstr "年" -#: superset-frontend/src/explore/components/controls/ConditionalFormattingControl/FormattingPopoverContent.tsx:43 -msgid "yellow" -msgstr "黄色" - -#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:490 +#: superset-frontend/plugins/plugin-chart-echarts/src/Timeseries/transformProps.ts:521 msgid "zoom area" msgstr "" diff --git a/superset/viz.py b/superset/viz.py index 3bb6204524..65651b68be 100644 --- a/superset/viz.py +++ b/superset/viz.py @@ -28,9 +28,9 @@ import logging import math import re from collections import defaultdict, OrderedDict -from datetime import date, datetime, timedelta +from datetime import datetime, timedelta from itertools import product -from typing import Any, Callable, cast, Optional, TYPE_CHECKING +from typing import Any, cast, Optional, TYPE_CHECKING import geohash import numpy as np @@ -40,7 +40,7 @@ import simplejson as json from dateutil import relativedelta as rdelta from deprecation import deprecated from flask import request -from flask_babel import gettext as __, lazy_gettext as _ +from flask_babel import lazy_gettext as _ from geopy.point import Point from pandas.tseries.frequencies import to_offset @@ -76,14 +76,12 @@ from superset.utils.core import ( get_column_names, get_column_names_from_columns, get_metric_names, - is_adhoc_column, JS_MAX_INTEGER, merge_extra_filters, QueryMode, simple_filter_to_adhoc, ) from superset.utils.date_parser import get_since_until, parse_past_timedelta -from superset.utils.dates import datetime_to_epoch from superset.utils.hashing import md5_sha_from_str if TYPE_CHECKING: @@ -908,149 +906,6 @@ class TimeTableViz(BaseViz): ) -class PivotTableViz(BaseViz): - - """A pivot table view, define your rows, columns and metrics""" - - viz_type = "pivot_table" - verbose_name = _("Pivot Table") - credits = 'a Superset original' - is_timeseries = False - enforce_numerical_metrics = False - - @deprecated(deprecated_in="3.0") - def query_obj(self) -> QueryObjectDict: - query_obj = super().query_obj() - groupby = self.form_data.get("groupby") - columns = self.form_data.get("columns") - metrics = self.form_data.get("metrics") - transpose = self.form_data.get("transpose_pivot") - if not columns: - columns = [] - if not groupby: - groupby = [] - if not groupby: - raise QueryObjectValidationError( - _("Please choose at least one 'Group by' field") - ) - if transpose and not columns: - raise QueryObjectValidationError( - _( - "Please choose at least one 'Columns' field when " - "select 'Transpose Pivot' option" - ) - ) - if not metrics: - raise QueryObjectValidationError(_("Please choose at least one metric")) - deduped_cols = self.dedup_columns(groupby, columns) - - if len(deduped_cols) < (len(groupby) + len(columns)): - raise QueryObjectValidationError(_("Group By' and 'Columns' can't overlap")) - if sort_by := self.form_data.get("timeseries_limit_metric"): - sort_by_label = utils.get_metric_name(sort_by) - if sort_by_label not in utils.get_metric_names(query_obj["metrics"]): - query_obj["metrics"].append(sort_by) - if self.form_data.get("order_desc"): - query_obj["orderby"] = [ - (sort_by, not self.form_data.get("order_desc", True)) - ] - return query_obj - - @staticmethod - @deprecated(deprecated_in="3.0") - def get_aggfunc( - metric: str, df: pd.DataFrame, form_data: dict[str, Any] - ) -> str | Callable[[Any], Any]: - aggfunc = form_data.get("pandas_aggfunc") or "sum" - if pd.api.types.is_numeric_dtype(df[metric]): - # Ensure that Pandas's sum function mimics that of SQL. - if aggfunc == "sum": - return lambda x: x.sum(min_count=1) - # only min and max work properly for non-numerics - return aggfunc if aggfunc in ("min", "max") else "max" - - @staticmethod - @deprecated(deprecated_in="3.0") - def _format_datetime(value: pd.Timestamp | datetime | date | str) -> str: - """ - Format a timestamp in such a way that the viz will be able to apply - the correct formatting in the frontend. - - :param value: the value of a temporal column - :return: formatted timestamp if it is a valid timestamp, otherwise - the original value - """ - tstamp: pd.Timestamp | None = None - if isinstance(value, pd.Timestamp): - tstamp = value - if isinstance(value, (date, datetime)): - tstamp = pd.Timestamp(value) - if isinstance(value, str): - try: - tstamp = pd.Timestamp(value) - except ValueError: - pass - if tstamp: - return f"__timestamp:{datetime_to_epoch(tstamp)}" - # fallback in case something incompatible is returned - return cast(str, value) - - @deprecated(deprecated_in="3.0") - def get_data(self, df: pd.DataFrame) -> VizData: - if df.empty: - return None - - if self.form_data.get("granularity") == "all" and DTTM_ALIAS in df: - del df[DTTM_ALIAS] - - metrics = [utils.get_metric_name(m) for m in self.form_data["metrics"]] - aggfuncs: dict[str, str | Callable[[Any], Any]] = {} - for metric in metrics: - aggfuncs[metric] = self.get_aggfunc(metric, df, self.form_data) - - groupby = self.form_data.get("groupby") or [] - columns = self.form_data.get("columns") or [] - - for column in groupby + columns: - if is_adhoc_column(column): - # TODO: check data type - pass - else: - column_obj = self.datasource.get_column(column) - if column_obj and column_obj.is_temporal: - ts = df[column].apply(self._format_datetime) - df[column] = ts - - if self.form_data.get("transpose_pivot"): - groupby, columns = columns, groupby - - df = df.pivot_table( - index=get_column_names(groupby), - columns=get_column_names(columns), - values=metrics, - aggfunc=aggfuncs, - margins=self.form_data.get("pivot_margins"), - margins_name=__("Total"), - ) - - # Re-order the columns adhering to the metric ordering. - df = df[metrics] - - # Display metrics side by side with each column - if self.form_data.get("combine_metric"): - df = df.stack(0).unstack().reindex(level=-1, columns=metrics) - return dict( - columns=list(df.columns), - html=df.to_html( - na_rep="null", - classes=( - "dataframe table table-striped table-bordered " - "table-condensed table-hover" - ).split(" "), - ), - ) - - class TreemapViz(BaseViz): """Tree map visualisation for hierarchical data.""" diff --git a/tests/integration_tests/viz_tests.py b/tests/integration_tests/viz_tests.py index 30d4d1e183..ac390b3976 100644 --- a/tests/integration_tests/viz_tests.py +++ b/tests/integration_tests/viz_tests.py @@ -15,7 +15,7 @@ # specific language governing permissions and limitations # under the License. # isort:skip_file -from datetime import date, datetime, timezone +from datetime import datetime import logging from math import nan from unittest.mock import Mock, patch @@ -1402,76 +1402,6 @@ class TestBigNumberViz(SupersetTestCase): assert np.isnan(data[2]["y"]) -class TestPivotTableViz(SupersetTestCase): - df = pd.DataFrame( - data={ - "intcol": [1, 2, 3, None], - "floatcol": [0.1, 0.2, 0.3, None], - "strcol": ["a", "b", "c", None], - } - ) - - def test_get_aggfunc_numeric(self): - # is a sum function - func = viz.PivotTableViz.get_aggfunc("intcol", self.df, {}) - assert hasattr(func, "__call__") - assert func(self.df["intcol"]) == 6 - - assert ( - viz.PivotTableViz.get_aggfunc("intcol", self.df, {"pandas_aggfunc": "min"}) - == "min" - ) - assert ( - viz.PivotTableViz.get_aggfunc( - "floatcol", self.df, {"pandas_aggfunc": "max"} - ) - == "max" - ) - - def test_get_aggfunc_non_numeric(self): - assert viz.PivotTableViz.get_aggfunc("strcol", self.df, {}) == "max" - assert ( - viz.PivotTableViz.get_aggfunc("strcol", self.df, {"pandas_aggfunc": "sum"}) - == "max" - ) - assert ( - viz.PivotTableViz.get_aggfunc("strcol", self.df, {"pandas_aggfunc": "min"}) - == "min" - ) - - def test_format_datetime_from_pd_timestamp(self): - tstamp = pd.Timestamp(datetime(2020, 9, 3, tzinfo=timezone.utc)) - assert ( - viz.PivotTableViz._format_datetime(tstamp) == "__timestamp:1599091200000.0" - ) - - def test_format_datetime_from_datetime(self): - tstamp = datetime(2020, 9, 3, tzinfo=timezone.utc) - assert ( - viz.PivotTableViz._format_datetime(tstamp) == "__timestamp:1599091200000.0" - ) - - def test_format_datetime_from_date(self): - tstamp = date(2020, 9, 3) - assert ( - viz.PivotTableViz._format_datetime(tstamp) == "__timestamp:1599091200000.0" - ) - - def test_format_datetime_from_string(self): - tstamp = "2020-09-03T00:00:00" - assert ( - viz.PivotTableViz._format_datetime(tstamp) == "__timestamp:1599091200000.0" - ) - - def test_format_datetime_from_invalid_string(self): - tstamp = "abracadabra" - assert viz.PivotTableViz._format_datetime(tstamp) == tstamp - - def test_format_datetime_from_int(self): - assert viz.PivotTableViz._format_datetime(123) == 123 - assert viz.PivotTableViz._format_datetime(123.0) == 123.0 - - class TestFilterBoxViz(SupersetTestCase): def test_get_data(self): form_data = { diff --git a/tests/unit_tests/charts/test_post_processing.py b/tests/unit_tests/charts/test_post_processing.py index b7cdda6e68..945b337fad 100644 --- a/tests/unit_tests/charts/test_post_processing.py +++ b/tests/unit_tests/charts/test_post_processing.py @@ -1386,7 +1386,7 @@ def test_apply_post_process_without_result_format(): A query without result_format should raise an exception """ result = {"queries": [{"result_format": "foo"}]} - form_data = {"viz_type": "pivot_table"} + form_data = {"viz_type": "pivot_table_v2"} with pytest.raises(Exception) as ex: apply_post_process(result, form_data) diff --git a/tests/unit_tests/conftest.py b/tests/unit_tests/conftest.py index 6a4f1e550c..cbf728dfc7 100644 --- a/tests/unit_tests/conftest.py +++ b/tests/unit_tests/conftest.py @@ -15,12 +15,13 @@ # specific language governing permissions and limitations # under the License. # pylint: disable=redefined-outer-name, import-outside-toplevel - +import functools import importlib import os import unittest.mock from collections.abc import Iterator from typing import Any, Callable +from unittest.mock import patch import pytest from _pytest.fixtures import SubRequest @@ -33,7 +34,7 @@ from superset import security_manager from superset.app import SupersetApp from superset.common.chart_data import ChartDataResultType from superset.common.query_object_factory import QueryObjectFactory -from superset.extensions import appbuilder +from superset.extensions import appbuilder, feature_flag_manager from superset.initialization import SupersetAppInitializer @@ -164,3 +165,38 @@ def dummy_query_object(request, app_context): _datasource_dao=unittest.mock.Mock(), session_maker=unittest.mock.Mock(), ).create(parent_result_type=result_type, **query_object) + + +def with_feature_flags(**mock_feature_flags): + """ + Use this decorator to mock feature flags in tests.integration_tests. + + Usage: + + class TestYourFeature(SupersetTestCase): + + @with_feature_flags(YOUR_FEATURE=True) + def test_your_feature_enabled(self): + self.assertEqual(is_feature_enabled("YOUR_FEATURE"), True) + + @with_feature_flags(YOUR_FEATURE=False) + def test_your_feature_disabled(self): + self.assertEqual(is_feature_enabled("YOUR_FEATURE"), False) + """ + + def mock_get_feature_flags(): + feature_flags = feature_flag_manager._feature_flags or {} + return {**feature_flags, **mock_feature_flags} + + def decorate(test_fn): + def wrapper(*args, **kwargs): + with patch.object( + feature_flag_manager, + "get_feature_flags", + side_effect=mock_get_feature_flags, + ): + test_fn(*args, **kwargs) + + return functools.update_wrapper(wrapper, test_fn) + + return decorate diff --git a/tests/unit_tests/migrations/viz/pivot_table_v1_v2_test.py b/tests/unit_tests/migrations/viz/pivot_table_v1_v2_test.py new file mode 100644 index 0000000000..e7640f2b5e --- /dev/null +++ b/tests/unit_tests/migrations/viz/pivot_table_v1_v2_test.py @@ -0,0 +1,134 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +import json + +from superset.migrations.shared.migrate_viz import MigratePivotTable +from tests.unit_tests.conftest import with_feature_flags + +SOURCE_FORM_DATA = { + "adhoc_filters": [], + "any_other_key": "untouched", + "columns": ["state"], + "combine_metric": True, + "granularity_sqla": "ds", + "groupby": ["name"], + "number_format": "SMART_NUMBER", + "pandas_aggfunc": "sum", + "pivot_margins": True, + "time_range": "100 years ago : now", + "timeseries_limit_metric": "count", + "transpose_pivot": True, + "viz_type": "pivot_table", +} + +TARGET_FORM_DATA = { + "adhoc_filters": [], + "any_other_key": "untouched", + "aggregateFunction": "Sum", + "colTotals": True, + "combineMetric": True, + "form_data_bak": SOURCE_FORM_DATA, + "granularity_sqla": "ds", + "groupbyColumns": ["state"], + "groupbyRows": ["name"], + "rowTotals": True, + "series_limit_metric": "count", + "time_range": "100 years ago : now", + "transposePivot": True, + "valueFormat": "SMART_NUMBER", + "viz_type": "pivot_table_v2", +} + + +@with_feature_flags(GENERIC_CHART_AXES=False) +def test_migration_without_generic_chart_axes() -> None: + source = SOURCE_FORM_DATA.copy() + target = TARGET_FORM_DATA.copy() + upgrade_downgrade(source, target) + + +@with_feature_flags(GENERIC_CHART_AXES=True) +def test_migration_with_generic_chart_axes() -> None: + source = SOURCE_FORM_DATA.copy() + target = TARGET_FORM_DATA.copy() + target["adhoc_filters"] = [ + { + "clause": "WHERE", + "comparator": "100 years ago : now", + "expressionType": "SIMPLE", + "operator": "TEMPORAL_RANGE", + "subject": "ds", + } + ] + target.pop("granularity_sqla") + target.pop("time_range") + upgrade_downgrade(source, target) + + +@with_feature_flags(GENERIC_CHART_AXES=True) +def test_custom_sql_time_column() -> None: + source = SOURCE_FORM_DATA.copy() + source["granularity_sqla"] = { + "expressionType": "SQL", + "label": "ds", + "sqlExpression": "sum(ds)", + } + target = TARGET_FORM_DATA.copy() + target["adhoc_filters"] = [ + { + "clause": "WHERE", + "comparator": None, + "expressionType": "SQL", + "operator": "TEMPORAL_RANGE", + "sqlExpression": "sum(ds)", + "subject": "ds", + } + ] + target["form_data_bak"] = source + target.pop("granularity_sqla") + target.pop("time_range") + upgrade_downgrade(source, target) + + +def upgrade_downgrade(source, target) -> None: + from superset.models.slice import Slice + + dumped_form_data = json.dumps(source) + + slc = Slice( + viz_type=MigratePivotTable.source_viz_type, + datasource_type="table", + params=dumped_form_data, + query_context=f'{{"form_data": {dumped_form_data}}}', + ) + + # upgrade + slc = MigratePivotTable.upgrade_slice(slc) + + # verify form_data + new_form_data = json.loads(slc.params) + assert new_form_data == target + assert new_form_data["form_data_bak"] == source + + # verify query_context + new_query_context = json.loads(slc.query_context) + assert new_query_context["form_data"]["viz_type"] == "pivot_table_v2" + + # downgrade + slc = MigratePivotTable.downgrade_slice(slc) + assert slc.viz_type == MigratePivotTable.source_viz_type + assert json.loads(slc.params) == source